/* Contact Us Page Hero Section - Standard Design */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 500px;
    background-color: #222;
    background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url('/projectbim/img/contactuspage/Rectangle-156.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content {
    text-align: center;
    z-index: 5;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero-subtitle {
    font-size: 16px;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    display: block;
}

.contact-hero-title {
    font-size: var(--font-size-h1);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: var(--color-white);
}

.contact-hero-title span {
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .contact-hero {
        height: 50vh;
        min-height: 400px;
    }

    .contact-hero-title {
        font-size: clamp(28px, 4vw, 42px);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: auto;
        min-height: 350px;
        padding: 60px 0;
        background-attachment: scroll;
        /* Smoother on mobile */
    }

    .contact-hero-content {
        padding: 0 30px;
    }

    .contact-hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .contact-hero-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 300px;
        padding: 50px 0;
    }

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

    .contact-hero-subtitle {
        font-size: 13px;
    }
}