/* Contact Page */

.navbar-dark {
    background: transparent;
}

.navbar-dark .nav-page-link {
    color: #1a1a1a;
}

.navbar-dark .nav-hamburger span {
    background: #1a1a1a;
}

.navbar-dark .nav-cta {
    background: #8295A6;
}

/* Contact Section */
.contact-section {
    padding: 140px 75px 80px;
    background: #F5F5FF;
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.contact-left {
    max-width: 600px;
}

.contact-label {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    display: block;
    margin-bottom: 24px;
}

.contact-heading {
    font-family: 'Syne', sans-serif;
    font-size: 3.2rem;
    white-space: nowrap;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 24px;
}

.contact-subtitle {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-book-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: #8295A6;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 48px;
}

.contact-book-btn:hover {
    background: #6b7f8f;
    transform: translateY(-2px);
}

/* Contact Details */
.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-detail {
    padding-left: 20px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.contact-detail-label {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-detail-value {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group-small {
    max-width: 140px;
}

.form-row .form-group-small + .form-group {
    grid-column: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: white;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #aaa;
}

.form-input:focus {
    border-color: #8295A6;
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-submit {
    background: #8295A6;
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #6b7f8f;
    transform: translateY(-2px);
}

/* Contact Right Image */
.contact-right {
    position: sticky;
    top: 140px;
    border-radius: 24px;
    overflow: hidden;
    height: 700px;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Banner */
.contact-cta-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.contact-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
}

.contact-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 40px;
}

.contact-cta-label {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.contact-cta-heading {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: white;
    line-height: 1.2;
    margin-bottom: 32px;
    max-width: 700px;
}

.contact-cta-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 48px;
    border: 1.5px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-cta-btn:hover {
    background: white;
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-section {
        padding: 140px 40px 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-right {
        position: relative;
        top: 0;
        height: 400px;
        order: -1;
    }

    .contact-left {
        max-width: 100%;
    }

    .contact-heading {
        font-size: 2.8rem;
    }

    .contact-cta-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 120px 20px 40px;
    }

    .contact-heading {
        font-size: 2.2rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row .form-group-small {
        max-width: 100%;
    }

    .contact-right {
        height: 300px;
    }

    .contact-cta-banner {
        height: 400px;
    }

    .contact-cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-heading {
        font-size: 1.8rem;
    }

    .contact-cta-banner {
        height: 350px;
    }

    .contact-cta-heading {
        font-size: 1.6rem;
    }
}