/* ── PAGE HERO ── */
.main {
    position: relative;
}

.page-hero {
    background: linear-gradient(160deg, var(--blue) 0%, var(--blue-mid) 55%, #0e4d8a 100%);
    padding: 130px 5% 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 20% 50%, rgba(212, 168, 58, .16) 0%, transparent 65%),
        radial-gradient(ellipse 45% 55% at 80% 40%, rgba(212, 168, 58, .10) 0%, transparent 65%);
    pointer-events: none;
}

.breadcrumb {
    font-size: .76rem;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 1.2rem;
    position: relative;
    text-align: left;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 .5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(212, 168, 58, .15);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: .75rem;
    padding: .38rem .9rem;
    margin-bottom: 1.3rem;
    border-radius: 3px;
    position: relative;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 1.2rem;
    position: relative;
}

.page-hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.page-hero>p {
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
    max-width: 580px;
    line-height: 1.85;
    position: relative;
    margin: 0 auto 2.5rem;
}

.page-hero>* {
    animation: fadeUp .7s ease both;
}

.page-hero>p {
    animation-delay: .1s;
}

/* ── FILTER BAR ── */
.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 8px 5%;
    position: sticky;
    top: 104px;
    z-index: 500;
    box-shadow: 0 4px 16px rgba(11,47,94,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-pills {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.f-pill {
    padding: .45rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    color: var(--muted);
    background: var(--bg);
    cursor: pointer;
    transition: all .2s ease;
    user-select: none;
}

.f-pill:hover {
    border-color: var(--blue-light);
    color: var(--blue);
    background: var(--white);
}

.f-pill.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.filter-count {
    font-size: .82rem;
    color: var(--muted);
    white-space: nowrap;
}

.filter-count span {
    color: var(--blue);
    font-weight: 700;
}

/* ── SECTION BASE ── */
section {
    padding: 5rem 5%;
}

/* ── TOURS GRID ── */
.tours-section {
    background: var(--bg);
    padding: 4rem 5%;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

/* ── TOUR CARD ── */
.tour-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(11, 61, 110, .13);
}

.tour-card.hidden {
    display: none;
}

/* Card Image */
.tour-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.tour-card:hover .tour-img img {
    transform: scale(1.06);
}

.tour-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .35);
}

.tour-img-placeholder i {
    font-size: 3.5rem;
    color: rgba(212, 168, 58, .5);
}

.tour-img-placeholder p {
    font-size: .78rem;
}

/* Card badges */
.tour-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.t-badge {
    font-size: .68rem;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    padding: .28rem .65rem;
    border-radius: 3px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.t-badge.popular {
    background: var(--gold);
    color: var(--blue);
}

.t-badge.new {
    background: #2E7D2E;
    color: #fff;
}

.t-badge.luxury {
    background: var(--blue);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.t-badge.family {
    background: #1A5FA0;
    color: #fff;
}

.t-badge.budget {
    background: #5C3A8A;
    color: #fff;
}

/* Wishlist btn */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    font-size: .9rem;
    transition: background .2s, color .2s, transform .2s;
}

.wishlist-btn:hover {
    background: #fff;
    color: #E24B4A;
    transform: scale(1.1);
}

.wishlist-btn.active {
    color: #E24B4A;
}

/* Duration strip */
.tour-duration-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 30, 60, .85) 0%, transparent 100%);
    padding: 1.5rem .9rem .6rem;
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.strip-stat {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, .85);
    font-family: 'Nunito Sans', sans-serif;
}

.strip-stat i {
    color: var(--gold);
    font-size: .72rem;
}

/* Card body */
.tour-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-category {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: .4rem;
}

.tour-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
    line-height: 1.3;
}

.tour-body p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    flex: 1;
}

/* Destinations pills */
.dest-pills {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.dest-pill {
    font-size: .72rem;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
    background: var(--blue-pale);
    color: var(--blue-mid);
    padding: .22rem .65rem;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.dest-pill i {
    font-size: .65rem;
}

/* Highlights */
.tour-highlights {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: 1.1rem;
}

.t-hl {
    font-size: .8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.t-hl i {
    color: var(--gold);
    font-size: .72rem;
    width: 12px;
    flex-shrink: 0;
}

/* Card footer */
.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
    gap: .8rem;
}

.tour-price .from {
    font-size: .7rem;
    color: var(--muted);
    display: block;
    margin-bottom: .1rem;
}

.tour-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.tour-price .pp {
    font-size: .72rem;
    color: var(--muted);
    margin-left: 2px;
}

.tour-price .old-price {
    font-size: .75rem;
    color: var(--muted);
    text-decoration: line-through;
    display: block;
    margin-top: .1rem;
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--gold);
    color: var(--blue);
    padding: .6rem 1.2rem;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    text-decoration: none;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    transition: background .25s, transform .2s;
}

.btn-enquire:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ── FEATURED TOUR — full width highlight ── */
.featured-tour {
    background: var(--blue);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 168, 58, .2);
}

.featured-img {
    position: relative;
    min-height: 360px;
    background: linear-gradient(135deg, #0B3D6E 0%, #1A5FA0 100%);
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .75;
    transition: transform .5s;
}

.featured-tour:hover .featured-img img {
    transform: scale(1.04);
}

.featured-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .3);
}

.featured-img-placeholder i {
    font-size: 5rem;
    color: rgba(212, 168, 58, .4);
}

.featured-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--blue);
    font-size: .7rem;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    padding: .3rem .75rem;
    border-radius: 3px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.featured-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .8rem;
}

.featured-body .tour-category {
    color: var(--gold-light);
}

.featured-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
}

.featured-body h2 em {
    color: var(--gold);
    font-style: italic;
}

.featured-body p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.85;
}

.featured-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.f-meta-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    font-family: 'Nunito Sans', sans-serif;
}

.f-meta-item i {
    color: var(--gold);
    font-size: .8rem;
}

.featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: .8rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    flex-wrap: wrap;
}

.featured-price .from {
    font-size: .7rem;
    color: rgba(255, 255, 255, .5);
    display: block;
}

.featured-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
}

.featured-price .pp {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    margin-left: 3px;
}

/* ── WHY BOOK STRIP ── */
.why-strip {
    background: var(--blue);
    padding: 3rem 5%;
}

.why-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.why-item i {
    font-size: 1.4rem;
    color: var(--gold);
    display: block;
    margin-bottom: .55rem;
}

.why-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: .97rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem;
}

.why-item p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
    margin: 0;
}

/* ── CTA BAND ── */
.cta-band {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 168, 58, .18) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: .9rem;
    position: relative;
}

.cta-band h2 em {
    color: var(--gold);
    font-style: italic;
}

.cta-band>p {
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
    margin-bottom: 2.4rem;
    position: relative;
}

/* ── NO RESULTS ── */
.no-results {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.no-results.show {
    display: block;
}

.no-results i {
    font-size: 3rem;
    color: var(--border);
    display: block;
    margin-bottom: 1rem;
}

.no-results h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: .4rem;
}

.no-results p {
    font-size: .88rem;
    color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .featured-tour {
        grid-template-columns: 1fr;
    }

    .featured-img {
        min-height: 250px;
    }

    .tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 600px) {
    .filter-bar {
        top: 0;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: .8rem;
    }

    .btn-enquire {
        width: 100%;
        justify-content: center;
    }
}

/* ── WHATSAPP BUTTON (Replaces Enquire) ── */
.fas, .fab {
    font-size: 0.94rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: #25D366;
    color: #fff;
    padding: 0.45rem 0.7rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    border: 1.5px solid #25D366;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    transform: translateY(-2px);
    color: #fff;
}

/* Ensure footer buttons align perfectly */
.tour-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 600px) {
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ── VIEW DETAILS BUTTON ── */
.btn-details {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1.5px solid var(--blue-light);
    color: var(--blue-light);
    padding: .45rem 0.7rem;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s, color .25s, border-color .25s, transform .2s;
    flex-shrink: 0;
}
.btn-details:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-1px);
}

/* Featured tour details button */
.featured-footer .btn-details {
    padding: .65rem 1.4rem;
    font-size: .82rem;
    border-color: var(--gold);
    color: var(--gold);
}
.featured-footer .btn-details:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}