/* ===============================
   CONTACT HERO WITH BG IMAGE
   =============================== */

.contact-hero-section {
    position: relative;
    margin-bottom: 50px;
    border-radius: 18px;
    overflow: hidden;
}

/* Background Image */
.contact-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0;
}

/* Content Wrapper */
.contact-hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

/* Text */
.contact-hero-content {
    max-width: 650px;
    color: #ffffff;
}

.contact-hero-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

.contact-hero-content .highlight {
    margin-top: 15px;
    font-weight: 600;
    color: #4da3ff;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 30px;
    }

    .contact-hero-bg {
        padding: 50px 0;
    }
}
