.hotel-hero {
    background: url("images/hotel-banner.jpg") center center/cover no-repeat;
    height: 350px;
    position: relative;
}

/* Dark Overlay */
.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Content Position */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading */
.hero-content h1 {
    color: #ffffff;
    font-family: "Georgia", serif;
    font-size: 40px;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hotel-hero {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}
/* ============================= */
/* HOTEL INTRO SECTION ONLY */
/* ============================= */

.hotel-intro {
    padding: 80px 0;
    background: #f6f6f6;
}

/* Scoped container (DO NOT override global .container) */
.hotel-intro>.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.hotel-intro .breadcrumb {
    font-size: 14px;
    margin-bottom: 40px;
}

.hotel-intro .breadcrumb a {
    text-decoration: none;
    color: #333;
}

/* Grid Layout */
.hotel-intro .hotel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Left Content */
.hotel-intro .hotel-content h1 {
    font-family: "Georgia", serif;
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Scoped gold line */
.hotel-intro .gold-line {
    width: 60px;
    height: 2px;
    background: #c7a54a;
    margin-bottom: 30px;
}

.hotel-intro .hotel-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #333;
}

/* Button */
.hotel-intro .gold-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #c7a54a;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.hotel-intro .gold-btn:hover {
    background: #b89333;
}

.hotel-intro .gold-btn .arrow {
    font-size: 18px;
}

/* Image Frame */
.hotel-intro .hotel-image-wrapper {
    background: #dcdcdc;
    padding: 25px;
}

.hotel-intro .image-frame {
    background: #ffffff;
    padding: 20px;
}

.hotel-intro .image-frame img {
    width: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .hotel-intro .hotel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hotel-intro .hotel-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .hotel-intro {
        padding: 60px 0;
    }

    .hotel-intro .hotel-content h1 {
        font-size: 28px;
    }

    .hotel-intro .hotel-content p {
        font-size: 15px;
    }
}
/* ============================= */
/* HOTEL PARTNERS SECTION ONLY */
/* ============================= */

.hotel-partners {
    padding: 100px 0;
    background: #f6f6f6;
    text-align: center;
}

/* Scoped container only inside this section */
.hotel-partners>.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Globe Icon */
.hotel-partners .partner-icon img {
    width: 80px;
    margin-bottom: 25px;
}

/* Title */
.hotel-partners .partner-title {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Scoped gold line */
.hotel-partners .gold-line {
    width: 60px;
    height: 2px;
    background: #c7a54a;
    margin: 20px auto 60px;
}

/* Grid Layout */
.hotel-partners .hotel-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
}

/* Remove default list styling */
.hotel-partners .hotel-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List items */
.hotel-partners .hotel-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    color: #333;
}

/* Gold Check Icon */
.hotel-partners .hotel-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #c7a54a;
    font-size: 14px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .hotel-partners .hotel-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hotel-partners {
        padding: 70px 0;
    }

    .hotel-partners .hotel-list {
        grid-template-columns: 1fr;
    }

    .hotel-partners .partner-title {
        font-size: 12px;
        letter-spacing: 2px;
    }
}
/* ============================= */
/* WHY DESMO SECTION ONLY */
/* ============================= */

.why-desmo-section {
    padding: 100px 0;
    background: #f6f6f6;
}

/* Scoped container */
.why-desmo-section>.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid layout */
.why-desmo-section .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Image frame */
.why-desmo-section .why-image-wrapper {
    display: flex;
    justify-content: center;
}

.why-desmo-section .outer-frame {
    background: #dcdcdc;
    padding: 25px;
}

.why-desmo-section .inner-frame {
    background: #ffffff;
    padding: 20px;
}

.why-desmo-section .inner-frame img {
    width: 100%;
    display: block;
}

/* Content */
.why-desmo-section .why-content h2 {
    font-family: "Georgia", serif;
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Scoped gold line */
.why-desmo-section .gold-line {
    width: 60px;
    height: 2px;
    background: #c7a54a;
    margin-bottom: 30px;
}

.why-desmo-section .why-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #333;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .why-desmo-section .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-desmo-section .why-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .why-desmo-section {
        padding: 70px 0;
    }

    .why-desmo-section .why-content h2 {
        font-size: 26px;
    }

    .why-desmo-section .why-content p {
        font-size: 15px;
    }
}
/* ============================= */
/* LOW AIRFARE CTA SECTION ONLY */
/* ============================= */

.low-airfare-cta {
    background: #f3f3f3;
    padding: 80px 0;
}

/* Scoped container */
.low-airfare-cta>.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CTA Box */
.low-airfare-cta .cta-box {
    text-align: center;
    background: #f7f7f7;
    padding: 60px 40px;
    border-top: 4px solid #c7a54a;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

/* Heading */
.low-airfare-cta .cta-box h2 {
    font-family: "Georgia", serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

.low-airfare-cta .cta-box h2 em {
    font-style: italic;
}

/* Paragraph */
.low-airfare-cta .cta-box p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #444;
}

.low-airfare-cta .cta-box p a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

/* Scoped Button */
.low-airfare-cta .gold-btn {
    display: inline-block;
    background: #c7a54a;
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.low-airfare-cta .gold-btn:hover {
    background: #b89333;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .low-airfare-cta .cta-box h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .low-airfare-cta {
        padding: 60px 0;
    }

    .low-airfare-cta .cta-box {
        padding: 40px 20px;
    }

    .low-airfare-cta .cta-box h2 {
        font-size: 22px;
    }

    .low-airfare-cta .cta-box p {
        font-size: 15px;
    }

    .low-airfare-cta .gold-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}