/* ── ACCESSIBILITY ── */
.skip-nav {
    position: absolute;
    top: -120px;
    left: 0;
    background: var(--btn-bg);
    color: var(--color);
    padding: 10px 18px;
    font-weight: var(--font-600);
    z-index: 9999;
    border-radius: 0 0 10px 0;
    transition: top .2s;
}

    .skip-nav:focus {
        top: 0;
    }
/* ════════════════════════════════════════
   HERO GALLERY
════════════════════════════════════════ */
.hero-gallery {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    grid-template-rows: 260px 180px;
    gap: 5px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px 0;
}

    .hero-gallery .main-img {
        grid-row: 1 / 3;
        border-radius: 14px 0 0 14px;
        overflow: hidden;
    }

    .hero-gallery .sub-img {
        overflow: hidden;
    }

        .hero-gallery .sub-img:first-of-type {
            border-radius: 0 14px 0 0;
        }

.sub-img-wrap {
    position: relative;
    border-radius: 0 0 14px 0;
    overflow: hidden;
}

    .hero-gallery img, .sub-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }

        .hero-gallery img:hover, .sub-img-wrap img:hover {
            transform: scale(1.05);
        }

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.92);
    color: var(--all-text-main);
    font-weight: var(--font-600);
    border-radius: 6px;
    padding: 6px 14px;
    text-decoration: none;
    position: absolute;
    bottom: 12px;
    right: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
}

/* ════════════════════════════════════════
   PAGE LAYOUT — 2-column
════════════════════════════════════════ */
.page-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px 70px;
    align-items: start;
}

/* ════════════════════════════════════════
   CONTENT COLUMN
════════════════════════════════════════ */
.content-col h1 {
    font-weight: var(--font-700);
    color: var(--all-text-main);
    line-height: 1.25;
    margin-bottom: 14px;
}

    .content-col h1 em {
        font-style: normal;
        background: linear-gradient(90deg, var(--btn-bg), var(--active-menu));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

/* Rating + meta row */
.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
    color: var(--label-color);
}

.stars {
    color: #f59e0b;
    letter-spacing: 2px;
}

.rating-count {
    font-weight: var(--font-700);
    color: var(--all-text-main);
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--other-bg-light);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: var(--font-500);
    color: var(--btn-bg);
}

/* Trust strip */
.trust-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #eaf6f0;
    border: 1px solid #a3d9bc;
    color: #1a7a47;
    font-weight: var(--font-600);
    padding: 5px 11px;
    border-radius: 5px;
}

/* Intro paragraph */
.intro-para {
    color: var(--all-text-sub);
    margin-bottom: 32px;
    padding: 16px 20px;
    background: var(--other-bg-light);
    border-left: 4px solid var(--btn-bg);
    border-radius: 0 10px 10px 0;
    line-height: 1.85;
}

    .intro-para strong {
        color: var(--title-text);
    }

/* Section blocks */
.section-block {
    margin-bottom: 42px;
}

    .section-block h2 {
        font-weight: var(--font-700);
        color: var(--all-text-main);
        margin-bottom: 16px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--border-color);
        display: flex;
        align-items: center;
        gap: 10px;
    }

/* Highlight cards */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.highlight-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 13px;
    align-items: flex-start;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

    .highlight-card:hover {
        box-shadow: var(--box-shadow);
        transform: translateY(-2px);
        border-color: var(--hover);
    }

.highlight-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: #e9e5e5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-card h3 {
    font-weight: var(--font-600);
    color: var(--all-text-main);
    margin: 0px;
}

.highlight-card p {
    line-height: 1.55;
    margin: 4px 0px;
}

/* Live shows grid */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.show-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}

    .show-card:hover {
        box-shadow: var(--box-shadow);
        transform: translateY(-2px);
        border-color: var(--hover);
    }

.show-icon {
    margin-bottom: 8px;
}

.show-card h3 {
    font-weight: var(--font-700);
    color: var(--all-text-main);
    margin-bottom: 4px;
    line-height: 1.3;
}

.show-card p {
    color: var(--label-color);
    line-height: 1.45;
}

/* BBQ Dinner box */
.dinner-box {
    background: var(--other-bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 14px;
}

    .dinner-box h3 {
        font-weight: var(--font-700);
        color: var(--btn-bg);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.dinner-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dinner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--all-text-sub);
}

    .dinner-item::before {
        content: '🍽️';
        flex-shrink: 0;
    }

/* Inclusions / Exclusions */
.incl-excl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.incl-box {
    background: #eaf6f0;
    border: 1px solid #a3d9bc;
    border-radius: 12px;
    padding: 18px;
}

.excl-box {
    background: #fdecea;
    border: 1px solid #f5b0aa;
    border-radius: 12px;
    padding: 18px;
}

.incl-box h3 {
    color: #1a7a47;
    font-weight: var(--font-700);
    margin-bottom: 12px;
}

.excl-box h3 {
    color: var(--btn-two-bg);
    font-weight: var(--font-700);
    margin-bottom: 12px;
}

.incl-excl-list {
    list-style: none;
}

    .incl-excl-list li {
        color: var(--all-text-sub);
        padding: 5px 0;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        border-bottom: 1px solid rgba(0,0,0,.05);
    }

        .incl-excl-list li:last-child {
            border-bottom: none;
        }

.incl-box li::before {
    content: '✔';
    color: #1a7a47;
    flex-shrink: 0;
    font-weight: var(--font-700);
}

.excl-box li::before {
    content: '✘';
    color: var(--btn-two-bg);
    flex-shrink: 0;
    font-weight: var(--font-700);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 28px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 9px;
        top: 6px;
        bottom: 6px;
        width: 2px;
        background: linear-gradient(to bottom, var(--btn-bg), var(--border-color));
    }

.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -23px;
        top: 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--btn-bg);
        border: 2px solid var(--other-bg-light);
        box-shadow: 0 0 0 3px var(--border-color);
    }

.timeline-time {
    font-weight: var(--font-700);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--btn-bg);
    margin-bottom: 1px;
}

.timeline-item h3 {
    font-weight: var(--font-600);
    color: var(--all-text-main);
    margin-bottom: 3px;
}

.timeline-item p {
    color: var(--label-color);
    line-height: 1.6;
}

/* Pricing table */
.pricing-table {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--footer-bg);
}

    .pricing-row:last-child {
        border-bottom: none;
    }

    .pricing-row:nth-child(odd) {
        background: #fff;
    }

    .pricing-row h3 {
        font-weight: var(--font-600);
        color: var(--all-text-main);
    }

.price-label {
    color: var(--label-color);
    margin-top: 2px;
}

.price-val {
    font-weight: var(--font-700);
    color: var(--title-text);
    white-space: nowrap;
}

.book-link {
    background: linear-gradient(135deg, var(--btn-two-bg) 0%, #c4301f 100%);
    color: var(--color-two);
    padding: 7px 15px;
    border-radius: 6px;
    font-weight: var(--font-600);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s;
    max-width: fit-content;
}

    .book-link:hover {
        opacity: .88;
    }

/* Timing cards */
.timing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.timing-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.timing-icon {
    margin-bottom: 6px;
}

.timing-card h3 {
    font-weight: var(--font-600);
    color: var(--label-color);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 4px;
}

.timing-card p {
    font-weight: var(--font-700);
    color: var(--title-text);
}

/* Pickup zone pills */
.pickup-zones {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.zone-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 14px;
    font-weight: var(--font-500);
    color: var(--btn-bg);
}

    .zone-pill::before {
        content: '📍';
    }

/* Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.audience-tag {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    font-weight: var(--font-600);
    transition: border-color .2s, background .2s;
}

    .audience-tag:hover {
        border-color: var(--hover);
        background: var(--other-bg-light);
        color: var(--btn-bg);
    }

.aud-icon {
    display: block;
    margin-bottom: 5px;
}

/* Tips list */
.tips-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .tips-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 13px 16px;
        transition: border-color .2s;
    }

        .tips-list li:hover {
            border-color: var(--hover);
        }

.tip-icon {
    flex-shrink: 0;
}

/* Info box */
.info-box {
    background: #fff8e6;
    border: 1px solid #f5d07a;
    border-radius: 12px;
    padding: 18px 20px;
}

    .info-box ul {
        list-style: none;
    }

    .info-box li {
        color: #b06000;
        padding: 5px 0;
        display: flex;
        gap: 8px;
        border-bottom: 1px solid rgba(176,96,0,.08);
    }

        .info-box li:last-child {
            border-bottom: none;
        }

        .info-box li::before {
            content: 'ⓘ';
            flex-shrink: 0;
        }

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.review-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--active-menu) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: var(--font-700);
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: var(--font-600);
    color: var(--all-text-main);
}

.reviewer-meta {
    color: var(--label-color);
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 7px;
}

.review-text {
    color: var(--all-text-sub);
    line-height: 1.6;
}

.review-verified {
    color: #1a7a47;
    font-weight: var(--font-600);
    margin-top: 7px;
}

/* Related packages */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.related-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: block;
    background: #fff;
}

    .related-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--box-shadow);
        border-color: var(--hover);
    }

    .related-card img {
        width: 100%;
        height: 110px;
        object-fit: cover;
    }

.related-card-body {
    padding: 11px;
}

    .related-card-body h3 {
        font-weight: var(--font-600);
        color: var(--all-text-main);
        margin-bottom: 4px;
    }

    .related-card-body .from {
        color: var(--label-color);
    }

    .related-card-body .rprice {
        font-weight: var(--font-700);
        color: var(--title-text);
    }

/* FAQ */
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 9px;
    overflow: hidden;
    background: #fff;
    transition: border-color .2s;
}

    .faq-item.open {
        border-color: var(--btn-bg);
    }

    .faq-item h3 {
        font-weight: var(--font-600);
        color: var(--all-text-main);
        padding: 15px 18px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

        .faq-item h3::after {
            content: '+';
            color: var(--btn-bg);
            flex-shrink: 0;
            transition: transform .25s;
            font-weight: var(--font-400);
        }

    .faq-item.open h3::after {
        transform: rotate(45deg);
    }

    .faq-item.open h3 {
        color: var(--title-text);
    }

.faq-answer {
    display: none;
    padding: 0 18px 15px;
    color: var(--all-text-sub);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Section sub-intro */
.section-sub {
    color: var(--label-color);
    margin-bottom: 14px;
    line-height: 1.7;
}

/* ════════════════════════════════════════
   BOOKING CARD (Right Column)
════════════════════════════════════════ */
.booking-col {
    position: sticky;
    top: 76px;
}

.booking-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.booking-header {
    background: linear-gradient(135deg, var(--other-bg) 0%, var(--btn-bg) 60%, var(--active-menu) 100%);
    padding: 22px 22px 20px;
    color: #fff;
}

.b-label {
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .75;
    margin-bottom: 3px;
}

.b-price {
    font-weight: var(--font-700);
    color: #fff;
    line-height: 1;
    font-size: 2.2rem;
}

    .b-price sup {
        font-weight: var(--font-600);
        vertical-align: super;
        font-size: 1rem;
    }

.b-price-sub {
    opacity: .7;
    margin-top: 3px;
}

.b-rating {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.b-stars {
    color: #fbbf24;
    letter-spacing: 1px;
}

/* Features list */
.booking-features {
    padding: 16px 22px 0;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--footer-bg);
    color: var(--all-text-sub);
}

    .booking-feature:last-child {
        border-bottom: none;
    }

.bf-icon {
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* ══════════════════════════════
   INQUIRY FORM — dynamic form wrapper
═══════════════════════════════ */
.inquiry-form-wrap {
    padding: 18px 22px;
    border-top: 1px solid var(--footer-bg);
    border-bottom: 1px solid var(--footer-bg);
    background: var(--other-bg-light);
}

.inquiry-form-title {
    font-weight: var(--font-700);
    color: var(--title-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.inquiry-form-wrap .Package_search_containt {
    margin-top: 0 !important;
}

.inquiry-form-wrap .panel_row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inquiry-form-wrap .n_d_div {
    width: 100%;
}

.inquiry-form-wrap .form-control {
    color: var(--all-text-main);
    background: #fff;
    border: 1.5px solid var(--table-head);
    border-radius: 7px;
    padding: 9px 12px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}

    .inquiry-form-wrap .form-control:focus {
        border-color: var(--btn-bg);
        box-shadow: 0 0 0 3px rgba(40,130,197,.12);
    }

    .inquiry-form-wrap .form-control::placeholder {
        color: var(--label-color);
    }

.inquiry-form-wrap .btn {
    display: block;
    width: 100%;
    background: var(--all-text-third);
    color: var(--color-two);
    text-align: center;
    padding: 13px 16px;
    border-radius: 10px;
    font-weight: var(--font-700);
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    letter-spacing: .02em;
}

    .inquiry-form-wrap .btn:hover {
        opacity: .9;
        transform: translateY(-1px);
    }

/* Spinner */
.inquiry-form-wrap .information_loader {
    text-align: center;
    padding: 8px 0;
}

.inquiry-form-wrap .hide {
    display: none;
}

.inquiry-form-wrap .loading-bar-spinner .spinner-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--btn-bg);
    animation: spin .7s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* WhatsApp button */
.whatsapp-btn {
    display: block;
    width: 100%;
    background: #25d366;
    color: #fff;
    text-align: center;
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: var(--font-600);
    text-decoration: none;
    transition: background .2s;
}

    .whatsapp-btn:hover {
        background: #1da851;
    }

.booking-ctas {
    padding: 16px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-trust {
    color: var(--label-color);
    text-align: center;
    line-height: 1.55;
    padding: 0 22px 16px;
}

.urgency-bar {
    background: #fff8e6;
    border-top: 1px solid #f5d07a;
    padding: 10px 16px;
    color: #b06000;
    font-weight: var(--font-600);
    text-align: center;
}

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--active-menu) 100%);
    padding: 52px 40px;
    text-align: center;
}

    .cta-banner h2 {
        font-weight: var(--font-700);
        color: #fff;
        margin-bottom: 10px;
    }

    .cta-banner p {
        color: rgba(255,255,255,.82);
        margin-bottom: 26px;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--btn-two-bg);
    color: var(--color-two);
    padding: 13px 32px;
    border-radius: 8px;
    font-weight: var(--font-700);
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    display: inline-block;
}

    .cta-btn-primary:hover {
        opacity: .9;
        transform: translateY(-2px);
    }

.cta-btn-secondary {
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.7);
    color: #fff;
    padding: 11px 28px;
    border-radius: 8px;
    font-weight: var(--font-600);
    text-decoration: none;
    transition: background .2s;
    display: inline-block;
}

    .cta-btn-secondary:hover {
        background: rgba(255,255,255,.25);
    }

/* ════════════════════════════════════════
   LISTING PAGE — HERO BANNER
════════════════════════════════════════ */
.listing-hero {
    background: url('/assets/project/img/desert-safari-package-bnr.webp') no-repeat;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
    width: 100%;
    background-size: cover;
}
.hero-section-inner{
    z-index: 1;
}
.listing-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--btn-two-bg);
    color: var(--color-two);
    font-weight: var(--font-600);
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.listing-hero h1 {
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
    font-size: 40px;
}

    .listing-hero h1 span {
        /*background: linear-gradient(90deg, #7ec8f5, #a8d8f8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;*/
        color: var(--active-menu);
        font-weight: 800;
    }

.listing-hero p {
    max-width: 580px;
    color: rgba(255,255,255,.88);
    margin-bottom: 30px;
    /*font-weight: var(--font-300);*/
    font-size: 16px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    padding: 12px 24px;
    color: #fff;
    text-align: center;
}

    .hero-stat strong {
        display: block;
        /*font-weight: var(--font-800);*/
        color: #7ec8f5;
        line-height: 1;
    }

    .hero-stat span {
        /*opacity: .85;*/
    }

/* ════════════════════════════════════════
   LISTING PAGE — SECTION INTRO
════════════════════════════════════════ */
.section-intro {
    text-align: center;
    padding: 40px 24px 16px;
}

    .section-intro h2 {
        /*font-weight: var(--font-800);*/
        color: var(--all-text-main);
        margin-bottom: 10px;
        font-size: 28px;
    }

        .section-intro h2 span {
            background: linear-gradient(90deg, var(--btn-bg), var(--active-menu));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    .section-intro p {
        max-width: 750px;
        margin: 0 auto;
        font-size: 18px;
    }

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--btn-bg), var(--active-menu));
    border-radius: 2px;
    margin: 14px auto 18px;
}

/* ════════════════════════════════════════
   LISTING PAGE — PACKAGES GRID
════════════════════════════════════════ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 28px;
    padding: 0 40px 60px;
    max-width: 1240px;
    margin: 0 auto;
}

/* Package card */
.card {
    background: #fff;
    border: 1px solid var(--table-head);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(40,130,197,.08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: var(--box-shadow);
        border-color: var(--hover);
    }

.card-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

    .card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

.card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--btn-bg);
    color: #fff;
    font-weight: var(--font-700);
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

    .badge.premium {
        background: #4a2775;
    }

    .badge.popular {
        background: #1a7a47;
    }

    .badge.exclusive {
        background: #7B3FB5;
    }

.rating-pill {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-weight: var(--font-600);
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}

    .rating-pill svg {
        fill: #f59e0b;
        width: 13px;
        height: 13px;
    }

.card-body {
    padding: 20px 20px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .card-body h3 {
        font-weight: var(--font-700);
        color: var(--all-text-main);
        margin-bottom: 10px;
        line-height: 1.35;
        font-size: 18px;
    }

.card-highlights {
    list-style: none;
    margin-bottom: 16px;
    flex: 1;
}

    .card-highlights li {
        color: var(--all-text-main);
        padding: 3px 0;
        display: flex;
        align-items: center;
        gap: 7px;
    }

        .card-highlights li::before {
            content: '';
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--btn-bg);
            flex-shrink: 0;
        }

.card-meta {
    display: flex;
    gap: 14px;
    color: var(--all-text-main);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

    .card-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .card-meta svg {
        width: 14px;
        height: 14px;
        fill: var(--btn-bg);
        opacity: .6;
    }

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.price-block .from {
    color: var(--all-text-main);
}

.price-block .price {
    font-weight: 700;
    color: var(--title-text);
    line-height: 1;
    font-size: 20px;
}

.price-block .price-sub {
    color: var(--all-text-main);
}

.book-btn {
    background: linear-gradient(135deg, var(--btn-two-bg) 0%, #c4301f 100%);
    color: var(--color-two);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: var(--font-600);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity .2s, transform .2s;
    white-space: nowrap;
}

    .book-btn:hover {
        opacity: .9;
        transform: scale(1.03);
    }

    .book-btn svg {
        width: 14px;
        height: 14px;
        fill: #fff;
    }

/* ════════════════════════════════════════
   LISTING PAGE — SEO EDITORIAL COPY
════════════════════════════════════════ */
.seo-content {
    max-width: 1200px;
    margin: 0 auto 60px;
    /* padding: 0 40px; */
    font-size: 18px;
}

    .seo-content h2 {
        /*font-weight: var(--font-800);*/
        color: var(--all-text-main);
        margin-bottom: 12px;
        text-align: center;
        font-size: 28px;
    }

        .seo-content h2 span {
            background: linear-gradient(90deg, var(--btn-bg), var(--active-menu));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    .seo-content p {
        /*color: var(--all-text-sub);*/
        line-height: 1.8;
        margin-bottom: 14px;
    }

/* ════════════════════════════════════════
   LISTING PAGE — WHY SECTION
════════════════════════════════════════ */
.why-section {
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--active-menu) 100%);
    padding: 60px 40px;
    margin: 0 0 60px;
}

    .why-section h2 {
        /*font-weight: var(--font-800);*/
        color: #fff;
        text-align: center;
        margin-bottom: 10px;
        font-size: 24px;
    }

    .why-section .sub {
        color: rgba(255,255,255,.65);
        text-align: center;
        margin-bottom: 40px;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background: #ffffff;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: background .25s, transform .25s;
}

    .why-card:hover {
        background: rgba(255,255,255,.15);
        color: #ffffff;
    }

.why-icon {
    width: 52px;
    height: 52px;
    background: var(--table-head);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.why-card h3 {
    font-weight: var(--font-700);
    margin-bottom: 6px;
    /*color: #fff;*/
}

.why-card p {
    /*color: rgba(255,255,255,.68);*/
    line-height: 1.5;
}

/* ════════════════════════════════════════
   LISTING PAGE — INQUIRY SECTION
════════════════════════════════════════ */
.inquiry-section {
    max-width: 860px;
    margin: 0 auto 50px;
    padding: 0 40px;
}

.inquiry-card {
    background: var(--other-bg-light);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.inquiry-card-header {
    background: linear-gradient(135deg, var(--other-bg) 0%, var(--btn-bg) 60%, var(--active-menu) 100%);
    padding: 22px 28px 18px;
    color: #fff;
}

    .inquiry-card-header h2 {
        font-weight: var(--font-800);
        margin-bottom: 4px;
        color: #fff;
        font-size: 24px;
    }

    .inquiry-card-header p {
        opacity: .8;
    }

.inquiry-card-body {
    padding: 24px 28px;
}

.inq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.inq-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .inq-group label {
        font-weight: var(--font-700);
        color: var(--all-text-sub);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    /* Reuse .form-control from inquiry-form-wrap but scoped to inq-group */
    .inq-group input {
        color: var(--all-text-main);
        background: #fff;
        border: 1.5px solid var(--border-color);
        border-radius: 8px;
        padding: 10px 13px;
        outline: none;
        transition: border-color .2s, box-shadow .2s;
        width: 100%;
        font-family: inherit;
    }

        .inq-group input:focus {
            border-color: var(--btn-bg);
            box-shadow: 0 0 0 3px rgba(40,130,197,.12);
        }

        .inq-group input::placeholder {
            color: var(--label-color);
        }

.inq-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.inq-submit {
    background: linear-gradient(135deg, var(--btn-two-bg) 0%, #c4301f 100%);
    color: var(--color-two);
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: var(--font-700);
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    letter-spacing: .02em;
    font-family: inherit;
}

    .inq-submit:hover {
        opacity: .9;
        transform: translateY(-1px);
    }

.inq-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: var(--font-600);
    transition: background .2s;
}

    .inq-whatsapp:hover {
        background: #1da851;
    }

.inq-trust {
    /*color: var(--label-color);*/
    margin-top: 10px;
}

    .inq-trust strong {
        color: #1a7a47;
    }

/* ════════════════════════════════════════
   LISTING PAGE — FAQ SECTION
════════════════════════════════════════ */
.faq-section {
    max-width: 860px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

    .faq-section h2 {
        /*font-weight: var(--font-800);*/
        color: var(--all-text-main);
        text-align: center;
        margin-bottom: 8px;
        font-size: 24px;
    }

    .faq-section .divider {
        margin-bottom: 30px;
    }

/* ════════════════════════════════════════
   LISTING PAGE — CTA STRIP
════════════════════════════════════════ */
.cta-strip {
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--active-menu) 100%);
    text-align: center;
    padding: 52px 24px;
}

    .cta-strip h2 {
        font-weight: var(--font-800);
        color: #fff;
        margin-bottom: 10px;
    }

    .cta-strip p {
        color: rgba(255,255,255,.82);
        margin-bottom: 26px;
    }

.btn-white {
    background: #fff;
    color: var(--title-text);
    padding: 13px 32px;
    border-radius: 8px;
    font-weight: var(--font-700);
    text-decoration: none;
    transition: transform .2s;
    display: inline-block;
}

    .btn-white:hover {
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,.8);
    color: #fff;
    padding: 11px 30px;
    border-radius: 8px;
    font-weight: var(--font-600);
    text-decoration: none;
    transition: background .2s;
    display: inline-block;
}

    .btn-outline:hover {
        background: rgba(255,255,255,.15);
    }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 960px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .booking-col {
        position: static;
    }

    .hero-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 250px;
        padding: 16px 20px 0;
    }

        .hero-gallery .main-img {
            grid-row: auto;
            border-radius: 12px;
        }

        .hero-gallery .sub-img, .sub-img-wrap {
            display: none;
        }

    .highlights-grid, .incl-excl-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }

    .shows-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dinner-items {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .breadcrumb-nav {
        padding: 9px 18px;
    }

    .page-layout {
        padding: 18px 18px 48px;
        gap: 28px;
    }

    .hero-gallery {
        padding: 14px 18px 0;
    }

    .cta-banner {
        padding: 36px 18px;
    }

    .timing-grid {
        grid-template-columns: 1fr;
    }

    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ════════════════════════════════════════
   LISTING PAGE RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 768px) {
    .packages-grid {
        padding: 0 20px 40px;
        gap: 20px;
    }

    .listing-hero {
        min-height: 320px;
        padding: 40px 20px;
    }

    .hero-stats {
        gap: 12px;
    }

    .why-section {
        padding: 40px 20px;
    }

    .seo-content,
    .faq-section,
    .inquiry-section {
        padding: 0 20px;
    }

    .inq-grid {
        grid-template-columns: 1fr;
    }

    .inq-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .inq-submit,
    .inq-whatsapp {
        text-align: center;
        justify-content: center;
    }

    .section-intro {
        padding: 24px 20px 12px;
    }
    .listing-hero h1 {
        font-size: 30px;
    }
    .listing-hero p {
        font-size: 14px;
    }
    .section-intro h2 {
        font-size: 24px;
    }
    .seo-content h2 {
        font-size: 24px;
    }
    .section-intro p {
        font-size: 16px;
    }
    .seo-content p {
        font-size: 16px;
    }
    .why-card h3 {
        font-size: 18px;
    }
}
