/* Contact Page Styles */

/* Contact Page Header Overrides - Just change colors */
body.contact-page .nav-logo-img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(24%) saturate(1647%) hue-rotate(166deg) brightness(95%) contrast(93%);
    /* Navy blue filter for logo */
}

/* Phone icon with navy blue circle on contact page */
body.contact-page .phone-icon-btn {
    background: rgba(17, 39, 57, 0.05);
    border: 1px solid #112739;
    color: #112739;
}

body.contact-page .phone-icon-btn:hover {
    border-color: #5a7d8f;
    color: #5a7d8f;
    background: rgba(17, 39, 57, 0.1);
}

/* Hide footer CTA on contact page */
body.contact-page .footer-cta {
    display: none;
}

/* Keep normal sticky nav behavior on scroll */
body.contact-page .nav.scrolled .nav-logo-img {
    filter: none;
    /* Reset to normal colors when scrolled */
}

/* Turn logo white when menu is open on desktop too */
body.contact-page.menu-open .nav-logo-img {
    filter: none !important;
}

.contact-main {
    margin-top: 0;
    padding-top: 0;
}

.contact-container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Left Column - Scrolling Content */
.contact-left {
    width: 50%;
    background-color: #ffffff;
    overflow-y: auto;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 220px 60px 80px;
}

/* Contact Introduction */
.contact-intro {
    margin-bottom: 60px;
}

.contact-label {
    color: #112739;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    font-size: 0.75rem;
}

.contact-heading {
    font-family: 'haboro-contrast-normal', 'Georgia', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #112739;
    margin-bottom: 32px;
    line-height: 1.2;
}

.contact-text {
    color: #112739;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 16px;
}

.contact-text:last-child {
    margin-bottom: 0;
}

/* Contact Form Container */
.contact-form-container {
    margin-bottom: 80px;
}

/* Company Info */
.company-info {
    padding-top: 60px;
    border-top: 1px solid rgba(17, 39, 57, 0.15);
}

.company-info-heading {
    font-family: 'haboro-contrast-normal', 'Georgia', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #112739;
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 32px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #112739;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.info-value {
    color: #112739;
    line-height: 1.6;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.info-value:hover {
    color: #a08974;
}

/* Right Column - Fixed Image */
.contact-right {
    width: 50%;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.contact-image-container {
    width: 100%;
    height: 100%;
}

.contact-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Mobile-only: Navy blue phone icon and hamburger menu */
    body.contact-page .phone-icon-btn {
        color: #112739;
    }

    body.contact-page .mobile-menu-btn .hamburger-line {
        background-color: #112739;
    }

    body.contact-page .mobile-menu-btn .menu-text {
        color: #112739;
    }
    
    /* Turn phone icon white when mobile menu is open */
    body.contact-page.menu-open .phone-icon-btn {
        color: #ffffff;
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
    }
    
    /* Turn logo white when mobile menu is open */
    body.contact-page.menu-open .nav-logo-img {
        filter: none !important;
    }

    /* Reset to white when scrolled */
    body.contact-page .nav.scrolled .phone-icon-btn {
        color: #ffffff;
    }

    body.contact-page .nav.scrolled .mobile-menu-btn .hamburger-line {
        background-color: #ffffff;
    }

    body.contact-page .nav.scrolled .mobile-menu-btn .menu-text {
        color: #ffffff;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-left {
        width: 100%;
    }
    
    .contact-content {
        padding: 180px 40px 60px;
    }
    
    .contact-right {
        position: relative;
        width: 100%;
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .contact-content {
        padding: 180px 24px 40px;
    }
    
    .contact-intro {
        margin-bottom: 40px;
    }
    
    .contact-form-container {
        margin-bottom: 60px;
    }
    
    .company-info {
        padding-top: 40px;
    }
    
    .contact-right {
        height: 50vh;
        min-height: 350px;
    }
    .info-label {
        font-size: 1.0rem;
    }
    .info-value {
        font-size: 1.2rem;
    }
    .contact-label{
        font-size: .875rem;
    }
}
