/* Contact Us Page Refactored Styles */

/* Header Spacer - Hiding to remove whitespace as requested (matching Services) */
.contact-header-spacer {
    display: none;
}

/* Hero Section (Exact match to Services/News) */
.contact-hero {
    position: relative;
    height: 500px;
    /* Exact match to Services */
    display: flex;
    align-items: center;
    padding: 0;
    padding-top: 80px;
    /* Exact match */
    background: linear-gradient(95.29deg, rgba(1, 21, 41, 0.6) 54.94%, rgba(253, 99, 21, 0.6) 101.42%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
}

.contact-page-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 62px;
    /* Exact match */
    line-height: 78px;
    color: #FFFFFF;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Main Content */
.contact-main-content {
    background-color: #F9F9F9;
    /* Very light grey/white background */
    padding: 100px 0;
}

.contact-row {
    display: flex;
    padding: 40px 0;
    align-items: flex-start;
}

.contact-divider {
    height: 1px;
    background-color: #E5E5E5;
    width: 100%;
}

/* Label Column */
.contact-label-col {
    width: 250px;
    /* Fixed width for labels */
    flex-shrink: 0;
    padding-right: 40px;
}

.contact-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0C2742;
    /* Dark Navy */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info Column */
.contact-info-col {
    flex-grow: 1;
    max-width: 800px;
    /* Readability limit */
}

/* Intro Text */
.contact-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    color: #0C2742;
}

/* Address & Info Text */
.contact-address-text,
.contact-email-text,
.contact-phone-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #0C2742;
}

/* Links */
.contact-email-text a {
    color: #0C2742;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.contact-email-text a:hover {
    border-color: #FC6315;
    color: #FC6315;
}

/* Subtext (Availability) */
.contact-phone-sub {
    font-size: 11px;
    color: #8F9FAF;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Muted Text (Two-tone effect) */
.contact-text-muted {
    color: #8F9FAF;
    /* Matches phone sub color and design */
}

/* Social Icons */
.contact-social-icons {
    display: flex;
    align-items: center;
    /* Vertically centers the icons */
    gap: 12px;
    /* Adds space between icons */
    margin-top: -5px;
    /* Fine-tune vertical optical alignment with the label */
}

.social-link-icon {
    display: inline-flex;
    color: #0C2742;
    transition: color 0.3s;
}

.social-link-icon:hover {
    color: #FC6315;
}

.social-link-icon svg {
    width: 32px;
    height: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-label-col {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact-hero-title {
        font-size: 42px;
    }

    .contact-intro-text {
        font-size: 20px;
    }

    .contact-address-text,
    .contact-email-text,
    .contact-phone-text {
        font-size: 18px;
    }
}