/* ========================================
   CONTACT PAGE HERO SECTION
   ======================================== */

.contact-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 350px;
    }

    .contact-hero-content h1 {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 40vh;
        min-height: 300px;
    }
}