/* ============================= */
/* ===== 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;
    }
}
.land-section {
    background: #f4f5f7;
    padding: 80px 8%;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: #333;
    margin-bottom: 60px;
}

/* Layout */
.land-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Left content */
.land-content {
    flex: 1;
}

.land-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #111;
}

.title-underline {
    width: 50px;
    height: 2px;
    background: #c6a354;
    margin-bottom: 30px;
}

.land-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 35px;
    max-width: 550px;
}

/* Gold split button */
.gold-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: #b8933f;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.gold-btn span {
    padding: 14px 28px;
}

.arrow-box {
    background: #b8933f;
    padding: 14px 18px;
    font-size: 18px;
}

/* Image Frame */
.land-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame {
    background: #d9d9d9;
    padding: 40px;
}

.image-frame img {
    display: block;
    width: 420px;
    height: auto;
    background: #fff;
    padding: 20px;
}
@media (max-width: 992px) {
    .land-container {
        flex-direction: column;
        gap: 50px;
    }

    .land-content h1 {
        font-size: 42px;
    }

    .image-frame img {
        width: 100%;
    }
}
.popular-land {
    background: #f4f5f7;
    padding: 100px 8%;
    text-align: center;
}

/* Logo */
.section-logo img {
    width: 90px;
    margin-bottom: 30px;
}

/* Heading */
.popular-land h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #111;
}

/* Subtext */
.section-subtext {
    font-size: 16px;
    color: #444;
    max-width: 750px;
    margin: 0 auto 25px;
}

/* Gold Divider */
.gold-divider {
    width: 60px;
    height: 2px;
    background: #c6a354;
    margin: 20px auto 60px;
}

/* Grid */
.destination-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
    text-align: left;
}

/* Lists */
.destination-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.destination-grid li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #222;
}

/* Gold Check Circle */
.destination-grid li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 2px solid #c6a354;
    border-radius: 50%;
    font-size: 12px;
    color: #c6a354;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 992px) {

    .popular-land h2 {
        font-size: 38px;
    }

    .destination-grid {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .destination-grid ul {
        text-align: left;
    }
}
.why-desmo {
    background: #f4f5f7;
    padding: 100px 8%;
}

.why-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* IMAGE FRAME STYLE */
.why-image-wrapper {
    flex: 1;
}

.image-outer {
    background: #d9d9d9;
    padding: 40px;
}

.image-inner {
    background: #f4f5f7;
    padding: 20px;
}

.image-inner img {
    width: 100%;
    display: block;
}

/* CONTENT */
.why-content {
    flex: 1;
}

.why-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #111;
}

.gold-line {
    width: 50px;
    height: 2px;
    background: #c6a354;
    margin-bottom: 25px;
}

.why-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 35px;
}

/* BUTTON */
.quote-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.quote-btn span:first-child {
    background: #b8933f;
    color: #fff;
    padding: 15px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.arrow-box {
    background: #b89445;
    color: #fff;
    padding: 13px 18px;
    font-size: 18px;
}
@media (max-width: 992px) {

    .why-container {
        flex-direction: column;
        gap: 50px;
    }

    .why-content h2 {
        font-size: 36px;
        text-align: center;
    }

    .gold-line {
        margin: 0 auto 20px;
    }

    .why-content {
        text-align: center;
    }
}
.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;
    }
}
