/* ============================= */
/* ===== CONTACT HERO BANNER === */
/* ============================= */

.contact-hero {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

/* Image */
.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Gradient from Left Side */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Dark from left → transparent right */
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 35%,
        rgba(0,0,0,0.2) 60%,
        rgba(0,0,0,0) 100%
    );

    z-index: 1;
}

/* Text Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ============================= */
/* ===== MOBILE RESPONSIVE ===== */
/* ============================= */

@media (max-width: 768px) {

    .contact-hero {
        height: 240px;
    }

    .hero-content {
        left: 5%;
    }

    .hero-content h1 {
        font-size: 30px;
    }
}


.cta-land {
    background: #f4f5f7;
    padding: 80px 8%;
}

.cta-box {
    border-top: 3px solid #c6a354;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 60px 40px;
    text-align: center;
    background: #ffffff;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #111;
}

.cta-box h2 em {
    font-style: italic;
}

.cta-box h2 strong {
    font-weight: 700;
}

.cta-box p {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
}

.cta-box p strong {
    font-weight: 700;
}

/* Button */
.cta-btn {
    display: inline-block;
    background: #c6a354;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #b8923f;
}
@media (max-width: 768px) {

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 22px;
        line-height: 1.5;
    }

    .cta-box p {
        font-size: 14px;
    }
}