/* ═══════════════════════════════════════════════════════════
   Tour Booking Pro — Pure Black + Premium Glassmorphism
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --tbp-primary:      #D4AF37;
    --tbp-primary-glow: rgba(212,175,55,0.35);
    --tbp-primary-soft: rgba(212,175,55,0.12);
    --tbp-black:        #000000;
    --tbp-black2:       #0a0a0a;
    --tbp-black3:       #111111;
    --glass-bg:         rgba(255,255,255,0.04);
    --glass-bg-hover:   rgba(255,255,255,0.08);
    --glass-border:     rgba(255,255,255,0.10);
    --glass-border-h:   rgba(212,175,55,0.45);
    --glass-shadow:     0 8px 32px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.06) inset;
    --glass-shadow-h:   0 20px 60px rgba(0,0,0,0.8), 0 0 30px rgba(212,175,55,0.12);
    --tbp-text:         #f0f0f0;
    --tbp-text-muted:   rgba(255,255,255,0.5);
    --tbp-text-faint:   rgba(255,255,255,0.3);
    --tbp-radius:       16px;
    --tbp-radius-sm:    10px;
}

*, *::before, *::after { box-sizing: border-box; }
.tbp-single-wrap,
.tbp-archive-wrap {
    background: var(--tbp-black);
    color: var(--tbp-text);
    font-family: 'Poppins', -apple-system, sans-serif;
    min-height: 100vh;
}
.tbp-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── Grid ── */
.tbp-grid { display: grid; gap: 22px; }
.tbp-grid-3 { grid-template-columns: repeat(3,1fr); }
.tbp-grid-2 { grid-template-columns: repeat(2,1fr); }
@media (max-width:1100px) { .tbp-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px)  { .tbp-grid-3,.tbp-grid-2 { grid-template-columns: 1fr; } }

/* ════════════════════════════════════
   LIQUID GLASS CARD BASE
════════════════════════════════════ */
.tbp-glass-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.55), 0 1px 0 rgba(255,255,255,0.08) inset, 0 -1px 0 rgba(0,0,0,0.3) inset;
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    overflow: hidden;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .35s ease;
}
.tbp-glass-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.06), transparent);
    pointer-events:none; z-index:1;
}
.tbp-glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 24px 70px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,175,55,0.15), 0 0 40px rgba(212,175,55,0.15), 0 1px 0 rgba(255,255,255,0.1) inset;
}

/* ── Card image — FULL BRIGHTNESS, no dark filter ── */
.tbp-glass-card .tbp-card-img { position: relative; overflow: hidden; display:block; }
.tbp-glass-card .tbp-card-img img {
    width:100%; height:100%; object-fit:cover; display:block;
    filter: none; /* NO brightness reduction — show images at full quality */
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.tbp-glass-card:hover .tbp-card-img img { transform: scale(1.06); }

.tbp-card-img-placeholder {
    width:100%; height:100%;
    background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.08), transparent 60%), #0a0a0a;
    display:flex; align-items:center; justify-content:center;
    color: rgba(212,175,55,.4);
}
/* Gradient fade at bottom only — doesn't darken the whole image */
.tbp-card-img-fade {
    position:absolute; inset:0; z-index:1;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 40%, transparent 65%);
    pointer-events:none;
}

/* ── Badge ── */
.tbp-glass-card .tbp-badge {
    position:absolute; top:14px; left:14px; z-index:3;
    background: rgba(212,175,55,0.95);
    backdrop-filter: blur(6px);
    color:#000; padding: 5px 12px; border-radius: 30px;
    font-size: 10px; font-weight: 800;
    letter-spacing: .8px; text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(212,175,55,.5);
}

/* ── Price tag ── */
.tbp-glass-card .tbp-price-tag {
    position:absolute; bottom:14px; right:14px; z-index:3;
    background: rgba(5,5,5,0.7);
    border: 1px solid rgba(212,175,55,0.4);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    color: var(--tbp-primary);
    padding: 8px 16px; border-radius: 12px; line-height: 1.1;
    box-shadow: 0 6px 24px rgba(0,0,0,.5);
}
.tbp-price-del { font-size:11px; color:rgba(255,255,255,.4); font-weight:400; display:block; }
.tbp-price-main { font-weight:800; font-size:17px; }
.tbp-glass-card .tbp-price-tag small { font-size:10px; color:rgba(255,255,255,.5); font-weight:500; }

/* ── Card body ── */
.tbp-glass-card .tbp-card-body { position:relative; z-index:2; padding: 19px 21px 21px; }
.tbp-glass-card .tbp-card-body h3 {
    font-size: 16.5px; font-weight:700; margin: 0 0 10px; line-height: 1.35; letter-spacing: -.01em;
}
.tbp-glass-card .tbp-card-body h3 a {
    color: #fff; text-decoration: none;
    transition: color .3s;
}
.tbp-glass-card .tbp-card-body h3 a:hover { color: var(--tbp-primary); }

.tbp-glass-card .tbp-package-info { display:flex; gap:13px; flex-wrap:wrap; margin-bottom:15px; }
.tbp-glass-card .tbp-package-info span {
    color: rgba(255,255,255,.55); font-size: 11.5px;
    display:flex; align-items:center; gap:5px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 4px 10px; border-radius: 8px;
}
.tbp-glass-card .tbp-package-info svg { fill: var(--tbp-primary); flex-shrink:0; }

.tbp-glass-card .tbp-card-footer {
    display:flex; justify-content:space-between; align-items:center;
    padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.08);
}
.tbp-card-rating-wrap { display:flex; align-items:center; gap:5px; }
.tbp-rating-count { color: rgba(255,255,255,.4); font-size:11px; }
.tbp-rating-new {
    color: var(--tbp-primary); font-size:11px; font-weight:700;
    background: rgba(212,175,55,.1); border:1px solid rgba(212,175,55,.25);
    padding:3px 9px; border-radius:20px; text-transform:uppercase; letter-spacing:.5px;
}
.tbp-btn-sm { font-size:12.5px !important; padding:9px 18px !important; border-radius:9px !important; }

/* Destination card */
.tbp-glass-card.tbp-destination-card { display:block; text-decoration:none; }
.tbp-glass-card.tbp-destination-card .tbp-card-img { aspect-ratio: 4/3; }
.tbp-glass-card .tbp-card-location {
    color: rgba(255,255,255,.5); font-size:12.5px;
    display:flex; align-items:center; gap:6px; margin-bottom: 10px;
}
.tbp-glass-card .tbp-card-location svg { fill: var(--tbp-primary); flex-shrink:0; }
.tbp-glass-card .tbp-card-body p { color: rgba(255,255,255,.45); font-size:12.5px; line-height:1.6; margin:0 0 13px; }
.tbp-glass-card .tbp-card-meta {
    display:flex; justify-content:space-between; align-items:center;
    padding-top:13px; border-top: 1px solid rgba(255,255,255,0.08);
}
.tbp-card-packages { color: rgba(255,255,255,.5); font-size:11.5px; display:flex; align-items:center; }
.tbp-card-packages svg { fill: var(--tbp-primary); }
.tbp-card-rating { color: var(--tbp-primary); font-weight:800; font-size:13px; }
.tbp-glass-card.tbp-package-card .tbp-card-img { aspect-ratio: 16/10; }

/* ════════════════════════════════════
   DESTINATION CARD (non-glass fallback)
════════════════════════════════════ */
.tbp-destination-card {
    display: block; text-decoration: none; overflow: hidden;
    border-radius: var(--tbp-radius);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .3s ease;
}
.tbp-destination-card:hover { transform: translateY(-8px); box-shadow: var(--glass-shadow-h); border-color: var(--glass-border-h); }
.tbp-destination-card .tbp-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.tbp-destination-card .tbp-card-img img {
    width:100%; height:100%; object-fit: cover; display: block;
    filter: none; /* FULL BRIGHTNESS */
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.tbp-destination-card:hover .tbp-card-img img { transform: scale(1.06); }
.tbp-card-img::after {
    content:''; position:absolute; inset:0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
    pointer-events:none;
}
.tbp-badge {
    position:absolute; top:14px; left:14px; z-index:2;
    background: var(--tbp-primary); color: #000;
    padding: 4px 13px; border-radius: 30px;
    font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(212,175,55,.4);
}
.tbp-card-body { padding: 18px 20px 20px; }
.tbp-card-body h3 { color: #fff; font-size: 17px; font-weight: 700; margin: 0 0 7px; line-height: 1.3; letter-spacing: -.01em; }
.tbp-card-location { color: var(--tbp-text-muted); font-size: 12.5px; display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.tbp-card-location i { color: var(--tbp-primary); font-size: 11px; }
.tbp-card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.07); }
.tbp-card-packages { color: var(--tbp-text-muted); font-size: 12px; }
.tbp-card-rating { color: var(--tbp-primary); font-weight: 700; font-size: 13px; }
.tbp-destination-card .tbp-card-body { background:rgba(0,0,0,0.5); backdrop-filter:blur(16px); border-top:1px solid rgba(255,255,255,0.07); }

/* ════════════════════════════════════
   PACKAGE CARD
════════════════════════════════════ */
.tbp-package-card {
    display: flex; flex-direction: column; overflow: hidden;
    border-radius: var(--tbp-radius);
    border: 1px solid var(--glass-border); background: var(--glass-bg);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%);
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .3s ease;
}
.tbp-package-card:hover { transform: translateY(-8px); box-shadow: var(--glass-shadow-h); border-color: var(--glass-border-h); }
.tbp-package-card .tbp-card-img { position:relative; overflow:hidden; aspect-ratio:16/10; }
.tbp-package-card .tbp-card-img img {
    width:100%; height:100%; object-fit:cover; display:block;
    filter: none; /* FULL BRIGHTNESS */
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.tbp-package-card:hover .tbp-card-img img { transform: scale(1.06); }
.tbp-price-tag {
    position: absolute; bottom: 14px; right: 14px; z-index:2;
    background: rgba(0,0,0,0.7); border: 1px solid rgba(212,175,55,.35);
    backdrop-filter: blur(12px); color: var(--tbp-primary);
    padding: 7px 15px; border-radius: 10px; font-weight: 800; font-size: 17px; line-height: 1;
}
.tbp-price-tag small { font-size: 11px; color: var(--tbp-text-muted); font-weight: 400; }
.tbp-package-card .tbp-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.tbp-package-card .tbp-card-body h3 { color: #fff; font-size: 16px; font-weight: 700; margin: 0 0 11px; line-height: 1.35; letter-spacing: -.01em; }
.tbp-package-info { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.tbp-package-info span { color: var(--tbp-text-muted); font-size: 12px; display: flex; align-items: center; gap: 5px; }
.tbp-package-info i { color: var(--tbp-primary); font-size: 11px; }
.tbp-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.07); }

/* ════════════════════════════════════
   STARS / BUTTONS
════════════════════════════════════ */
.tbp-stars { color: var(--tbp-primary); font-size: 13px; letter-spacing: 1px; }
.tbp-star-empty { color: rgba(255,255,255,.2); }
.tbp-star-half  { color: var(--tbp-primary); }
.tbp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px 22px; border-radius: 10px; font-weight: 700; font-size: 13px;
    text-decoration: none; transition: all .25s; cursor: pointer; border: none; white-space: nowrap;
}
.tbp-btn-primary { background: var(--tbp-primary); color: #000; box-shadow: 0 4px 20px rgba(212,175,55,.3); }
.tbp-btn-primary:hover { background: #e8c84a; color: #000; box-shadow: 0 6px 28px rgba(212,175,55,.5); transform: translateY(-1px); }
.tbp-btn-outline { background: transparent; color: var(--tbp-primary); border: 1.5px solid var(--tbp-primary); }
.tbp-btn-outline:hover { background: var(--tbp-primary); color: #000; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.tbp-hero {
    position: relative;
    max-width: 1240px;
    margin: 24px auto 0;
    border-radius: 20px;
    overflow: hidden;
}
.tbp-hero img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: none;
}
.tbp-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.20) 40%, rgba(0,0,0,0.0) 70%);
    pointer-events: none;
}
.tbp-hero-content { position:absolute; bottom:36px; left:0; right:0; padding:0 36px; }
.tbp-hero-content h1 { color:#fff; font-size:40px; font-weight:800; margin:0 0 12px; line-height:1.15; letter-spacing: -.02em; text-shadow: 0 2px 20px rgba(0,0,0,.5); }
.tbp-hero-meta { display:flex; gap:22px; flex-wrap:wrap; color: rgba(255,255,255,.9); font-size:13.5px; }
.tbp-hero-meta span { display:flex; align-items:center; gap:7px; }
.tbp-hero-meta i { color: var(--tbp-primary); }
.tbp-hero-cats { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:10px; }
.tbp-hero-cat-tag { background:var(--tbp-primary); color:#000; padding:4px 14px; border-radius:30px; font-size:11px; font-weight:800; text-decoration:none; text-transform:uppercase; letter-spacing:.8px; box-shadow:0 2px 10px rgba(212,175,55,.4); }

/* ════════════════════════════════════
   CONTENT LAYOUT
════════════════════════════════════ */
.tbp-content-layout { display: grid; grid-template-columns: 1fr 400px; gap: 36px; padding: 44px 40px; max-width: 1300px; margin: 0 auto; }
@media (max-width:1100px) { .tbp-content-layout { grid-template-columns:1fr; padding:28px 20px; } }
.tbp-section { margin-bottom: 44px; }
.tbp-section-title { font-size: 21px; font-weight: 800; color: #fff; letter-spacing: -.02em; margin: 0 0 22px; padding-bottom: 12px; border-bottom: 2px solid var(--tbp-primary); display: inline-block; }

/* ════════════════════════════════════
   BOOKING SIDEBAR
════════════════════════════════════ */
.tbp-booking-sidebar { position: sticky; top: 24px; }
.tbp-booking-box {
    background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 30px;
    box-shadow: 0 12px 60px rgba(0,0,0,.7), 0 1px 0 rgba(255,255,255,0.07) inset;
    backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
}
.tbp-booking-price { margin-bottom: 22px; }
.tbp-booking-price .tbp-from { font-size: 10px; color: var(--tbp-text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
.tbp-booking-price .tbp-amount { font-size: 42px; font-weight: 800; color: var(--tbp-primary); line-height: 1; letter-spacing: -.02em; }
.tbp-booking-price .tbp-per { font-size: 13px; color: var(--tbp-text-muted); margin-top:4px; }
.tbp-booking-price .tbp-sale-tag { display:inline-block; background:#e74c3c; color:#fff; padding:2px 9px; border-radius:4px; font-size:10px; font-weight:800; margin-left:8px; vertical-align:middle; }
.tbp-booking-includes { list-style:none; padding:16px 0; margin:0 0 22px; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.tbp-booking-includes li { display:flex; align-items:flex-start; gap:10px; color: var(--tbp-text); font-size:13px; padding:5px 0; line-height:1.4; }
.tbp-booking-includes i { color:var(--tbp-primary); width:16px; flex-shrink:0; margin-top:1px; }
.tbp-booking-includes svg { fill:var(--tbp-primary); width:16px; height:16px; flex-shrink:0; margin-top:1px; }

/* ════════════════════════════════════
   FORMS
════════════════════════════════════ */
.tbp-form { display:flex; flex-direction:column; gap:14px; }
.tbp-form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.tbp-form-group { display:flex; flex-direction:column; gap:6px; }
.tbp-form-group label { font-size:11px; font-weight:700; color: var(--tbp-text-muted); text-transform:uppercase; letter-spacing:.8px; }
.tbp-form-group input,
.tbp-form-group select,
.tbp-form-group textarea {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; color: #fff; padding: 11px 15px; font-size: 14px; font-family: inherit;
    outline: none; transition: border-color .2s, background .2s, box-shadow .2s; width: 100%;
}
.tbp-form-group input::placeholder, .tbp-form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.tbp-form-group input:focus, .tbp-form-group select:focus, .tbp-form-group textarea:focus { border-color: var(--tbp-primary); background: rgba(212,175,55,.06); box-shadow: 0 0 0 3px rgba(212,175,55,.12); }
.tbp-form-group select option { background: #111; color:#fff; }
.tbp-form-group input[type="date"]::-webkit-calendar-picker-indicator { filter:invert(1) opacity(.5); }
.tbp-no-payment { text-align:center; font-size:11.5px; color: var(--tbp-text-faint); margin-top:8px; }
.tbp-form-message { padding:13px 16px; border-radius:10px; font-size:13.5px; font-weight:600; line-height:1.5; }
.tbp-form-message.success { background:rgba(39,174,96,.12); border:1px solid rgba(39,174,96,.4); color:#4fc97e; }
.tbp-form-message.error   { background:rgba(231,76,60,.12);  border:1px solid rgba(231,76,60,.4);  color:#ff6b6b; }
.tbp-price-summary-box { background:rgba(212,175,55,0.07); border:1px solid rgba(212,175,55,0.25); border-radius:10px; padding:13px 18px; display:flex; justify-content:space-between; align-items:center; }
.tbp-price-summary-box span:first-child { color:var(--tbp-text-muted); font-size:13px; }

/* ════════════════════════════════════
   HIGHLIGHTS / INCLUDES / ITINERARY / FAQS
════════════════════════════════════ */
.tbp-highlights { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:11px; }
.tbp-highlights li { display:flex; align-items:flex-start; gap:12px; color: var(--tbp-text); font-size:14px; line-height:1.6; }
.tbp-highlights li::before { content:'✓'; color:var(--tbp-primary); font-weight:900; font-size:15px; flex-shrink:0; margin-top:1px; }
.tbp-highlights-box { background:rgba(212,175,55,0.05); border:1px solid rgba(212,175,55,0.18); border-radius:14px; padding:24px 28px; }
.tbp-inc-exc { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
@media (max-width:640px){ .tbp-inc-exc { grid-template-columns:1fr; } }
.tbp-inc-exc h4 { margin:0 0 14px; font-size:14px; font-weight:700; }
.tbp-inc-list,.tbp-exc-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:9px; }
.tbp-inc-list li,.tbp-exc-list li { display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:var(--tbp-text); line-height:1.55; }
.tbp-inc-list li::before { content:'✓'; color:#4fc97e; font-weight:900; flex-shrink:0; margin-top:2px; }
.tbp-exc-list li::before { content:'✗'; color:#ff6b6b; font-weight:900; flex-shrink:0; margin-top:2px; }
.tbp-itinerary { display:flex; flex-direction:column; position:relative; }
.tbp-itinerary::before { content:''; position:absolute; left:21px; top:0; bottom:0; width:1px; background:linear-gradient(to bottom, var(--tbp-primary), transparent); opacity:.35; }
.tbp-itinerary-item { display:flex; gap:20px; position:relative; padding-bottom:26px; }
.tbp-itinerary-item:last-child { padding-bottom:0; }
.tbp-itinerary-dot { width:44px; height:44px; flex-shrink:0; background: var(--tbp-primary); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:800; color:#000; position:relative; z-index:1; box-shadow: 0 0 0 4px rgba(212,175,55,.15), 0 4px 16px rgba(212,175,55,.3); }
.tbp-itinerary-content { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding:18px 22px; flex:1; backdrop-filter:blur(10px); transition: border-color .25s; }
.tbp-itinerary-content:hover { border-color: rgba(212,175,55,.3); }
.tbp-itinerary-content h4 { color:#fff; margin:0 0 8px; font-size:15px; font-weight:700; }
.tbp-itinerary-content p { color:var(--tbp-text-muted); margin:0; font-size:13.5px; line-height:1.65; }
.tbp-faqs { display:flex; flex-direction:column; gap:10px; }
.tbp-faq-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow:hidden; transition: border-color .25s; }
.tbp-faq-item.active,.tbp-faq-item:hover { border-color:rgba(212,175,55,.3); }
.tbp-faq-question { padding:17px 22px; cursor:pointer; display:flex; justify-content:space-between; align-items:center; color:#fff; font-weight:600; font-size:14.5px; transition:background .2s; }
.tbp-faq-question:hover { background:rgba(255,255,255,.03); }
.tbp-faq-question svg { transition:transform .3s; color:var(--tbp-primary); flex-shrink:0; }
.tbp-faq-item.active .tbp-faq-question svg { transform:rotate(180deg); }
.tbp-faq-answer { display:none; padding:0 22px 18px; color:var(--tbp-text-muted); font-size:13.5px; line-height:1.7; border-top:1px solid rgba(255,255,255,.06); }
.tbp-faq-item.active .tbp-faq-answer { display:block; }

/* ════════════════════════════════════
   GALLERY — REDESIGNED, FULL BRIGHTNESS
════════════════════════════════════ */
.tbp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}
@media (max-width:768px){ .tbp-gallery-grid { grid-template-columns:repeat(2,1fr); gap:8px; } }
@media (max-width:480px){ .tbp-gallery-grid { grid-template-columns:repeat(2,1fr); gap:6px; } }

.tbp-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.08);
    background: #0a0a0a;
    /* Use aspect-ratio but show full image with contain */
}
.tbp-gallery-item img {
    width: 100%;
    height: 220px; /* fixed height so grid looks uniform */
    object-fit: cover; /* cover keeps it looking good in grid */
    object-position: center top; /* show top of image - usually the subject */
    display: block;
    filter: none;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.tbp-gallery-item:hover img { transform: scale(1.04); }
.tbp-gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: border-color .25s, box-shadow .25s;
    pointer-events: none;
}
.tbp-gallery-item:hover::after {
    border-color: var(--tbp-primary);
    box-shadow: 0 0 0 1px rgba(212,175,55,.3) inset, 0 0 16px rgba(212,175,55,.2);
}
.tbp-gallery-item:hover::before {
    content: '⊕';
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: rgba(255,255,255,.9);
    background: rgba(0,0,0,.2);
    pointer-events: none;
}

/* Gallery preview (immersive views row on single page) */
.tbp-gallery-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; border-radius: 14px; overflow: hidden;
}
.tbp-gallery-preview-item {
    overflow: hidden;
    border-radius: 10px;
}
.tbp-gallery-preview-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: none;
    transition: transform .4s;
}
.tbp-gallery-preview-item:hover img { transform: scale(1.03); }
.tbp-gallery-preview-main {
    grid-row: 1/3;
}
.tbp-gallery-preview-main img {
    height: 408px; /* 2x row height + gap */
}
@media (max-width:640px){
    .tbp-gallery-preview-item img { height:130px; }
    .tbp-gallery-preview-main img { height:268px; }
}

/* ════════════════════════════════════
   LIGHTBOX
════════════════════════════════════ */
.tbp-lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,.97); z-index:99999; align-items:center; justify-content:center; backdrop-filter:blur(8px); }
.tbp-lightbox.active { display:flex; }
.tbp-lightbox img { max-width:90vw; max-height:90vh; border-radius:10px; box-shadow:0 20px 80px rgba(0,0,0,.8); filter:none; }
.tbp-lightbox-close { position:absolute; top:22px; right:28px; color:#fff; font-size:34px; cursor:pointer; background:none; border:none; line-height:1; opacity:.7; transition:opacity .2s; }
.tbp-lightbox-close:hover { opacity:1; }
.tbp-lightbox-prev,.tbp-lightbox-next { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); color:#fff; font-size:26px; padding:12px 18px; cursor:pointer; border-radius:8px; transition:background .2s; }
.tbp-lightbox-prev:hover,.tbp-lightbox-next:hover { background:var(--tbp-primary); color:#000; }
.tbp-lightbox-prev { left:22px; } .tbp-lightbox-next { right:22px; }

/* ════════════════════════════════════
   REVIEWS
════════════════════════════════════ */
.tbp-reviews-summary { display:flex; align-items:center; gap:28px; background: rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,.08); border-radius:14px; padding:26px; margin-bottom:24px; backdrop-filter:blur(12px); }
.tbp-reviews-avg { text-align:center; }
.tbp-reviews-avg .tbp-big-rating { font-size:60px; font-weight:900; color:var(--tbp-primary); line-height:1; letter-spacing:-.03em; }
.tbp-reviews-avg .tbp-stars { font-size:18px; display:block; margin:4px 0; }
.tbp-reviews-avg .tbp-reviews-count { font-size:12px; color:var(--tbp-text-muted); }
.tbp-review-item { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,.08); border-radius:12px; padding:20px; margin-bottom:12px; transition:border-color .25s; }
.tbp-review-item:hover { border-color:rgba(212,175,55,.25); }
.tbp-review-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:10px; }
.tbp-review-author { font-weight:700; color:#fff; font-size:14.5px; }
.tbp-review-date   { font-size:12px; color:var(--tbp-text-faint); }
.tbp-review-body   { color:var(--tbp-text-muted); font-size:13.5px; line-height:1.7; }
.tbp-review-form { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,.08); border-radius:14px; padding:26px; margin-top:24px; backdrop-filter:blur(12px); }
.tbp-review-form h3 { color:#fff; margin:0 0 20px; font-size:17px; font-weight:700; }
.tbp-star-rating { display:flex; gap:6px; font-size:32px; cursor:pointer; margin-bottom:16px; }
.tbp-rate-star { color:rgba(255,255,255,.2); transition:color .15s; }
.tbp-rate-star.selected,.tbp-rate-star.hover { color:var(--tbp-primary); }

/* ════════════════════════════════════
   SEARCH BAR — single line
════════════════════════════════════ */
.tbp-search-bar { background: rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,.09); border-radius:18px; padding:22px 26px; margin-bottom:36px; backdrop-filter:blur(20px); box-shadow: 0 8px 40px rgba(0,0,0,.5); }
.tbp-search-bar h3 { color:var(--tbp-text-muted); margin:0 0 14px; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:2px; }
.tbp-filters-grid { display:flex; gap:10px; align-items:center; flex-wrap:nowrap; }
.tbp-filters-grid .tbp-search-field { flex:1 1 0; min-width:0; }
.tbp-filters-grid .tbp-filter-field { flex:0 0 155px; }
.tbp-filters-grid .tbp-search-btn   { flex:0 0 auto; }
.tbp-filters-grid select,.tbp-filters-grid input { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:10px; color:#fff; padding:11px 15px; font-size:13px; width:100%; font-family:'Poppins',sans-serif; transition:border-color .2s, box-shadow .2s; outline:none; }
.tbp-filters-grid select:focus,.tbp-filters-grid input:focus { border-color:var(--tbp-primary); box-shadow:0 0 0 3px rgba(212,175,55,.12); }
.tbp-filters-grid select option { background:#111; }
@media (max-width:768px) {
    .tbp-filters-grid { flex-wrap:wrap; }
    .tbp-filters-grid .tbp-search-field { flex:1 1 100%; }
    .tbp-filters-grid .tbp-filter-field { flex:1 1 calc(50% - 5px); }
    .tbp-filters-grid .tbp-search-btn   { flex:1 1 100%; }
}

/* ════════════════════════════════════
   DESTINATION SINGLE
════════════════════════════════════ */
.tbp-dest-hero {
    position: relative;
    max-width: 1240px;
    margin: 24px auto 0;
    border-radius: 20px;
    overflow: hidden;
}
.tbp-dest-hero img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: none;
}
.tbp-dest-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.0) 70%); pointer-events:none; }
.tbp-dest-hero-content { position:absolute; bottom:44px; left:0; right:0; padding:0 40px; }
.tbp-dest-hero-content h1 { color:#fff; font-size:44px; font-weight:900; margin:0 0 8px; letter-spacing:-.025em; text-shadow:0 2px 20px rgba(0,0,0,.5); }
.tbp-dest-hero-loc { color:rgba(255,255,255,.8); font-size:15px; display:flex; align-items:center; gap:6px; margin:8px 0 0; }
.tbp-dest-info-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:14px; margin-bottom:36px; }
.tbp-dest-info-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,.08); border-radius:12px; padding:18px 16px; text-align:center; backdrop-filter:blur(12px); transition:border-color .25s, transform .25s; }
.tbp-dest-info-card:hover { border-color:rgba(212,175,55,.35); transform:translateY(-3px); }
.tbp-dest-info-icon { font-size:24px; margin-bottom:8px; }
.tbp-dest-info-icon svg { width:28px; height:28px; fill:var(--tbp-primary); margin-bottom:8px; }
.tbp-dest-info-label { font-size:10px; color:var(--tbp-text-muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:5px; }
.tbp-dest-info-value { color:#fff; font-weight:700; font-size:14px; }
.tbp-dest-tags-bar { background: rgba(212,175,55,0.06); border-bottom: 1px solid rgba(212,175,55,0.15); padding: 12px 0; }
.tbp-dest-tags-bar .tbp-container { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.tbp-dest-tag { display:inline-flex; align-items:center; gap:5px; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.35); color: var(--tbp-primary); padding: 5px 14px; border-radius:30px; font-size:12px; font-weight:700; text-decoration:none; letter-spacing:.5px; text-transform:uppercase; transition:all .2s; }
.tbp-dest-tag:hover { background:var(--tbp-primary); color:#000; }
.tbp-related { padding:50px 40px; background: rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.06); }
.tbp-related h2 { color:#fff; font-size:26px; font-weight:800; margin:0 0 28px; letter-spacing:-.02em; }

/* ════════════════════════════════════
   AVAILABILITY CALENDAR
════════════════════════════════════ */
.tbp-availability-cal { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09); border-radius:12px; padding:18px; margin-bottom:18px; }
.tbp-cal-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.tbp-cal-header button { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); color:#fff; padding:5px 11px; border-radius:7px; cursor:pointer; font-size:13px; transition:background .2s,color .2s; }
.tbp-cal-header button:hover { background:var(--tbp-primary); color:#000; border-color:var(--tbp-primary); }
.tbp-cal-title { color:#fff; font-weight:700; font-size:14px; }
.tbp-cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; text-align:center; }
.tbp-cal-day-name { color:var(--tbp-text-faint); font-size:10px; font-weight:700; padding:4px 0; text-transform:uppercase; }
.tbp-cal-day { padding:6px 2px; font-size:12px; border-radius:7px; cursor:pointer; color:rgba(255,255,255,.4); transition:background .2s,color .2s; }
.tbp-cal-day.available { color:#fff; background:rgba(212,175,55,.12); font-weight:600; }
.tbp-cal-day.available:hover { background:var(--tbp-primary); color:#000; }
.tbp-cal-day.unavailable { color:rgba(255,255,255,.2); text-decoration:line-through; cursor:not-allowed; }
.tbp-cal-day.selected { background:var(--tbp-primary) !important; color:#000 !important; font-weight:800; box-shadow:0 2px 12px rgba(212,175,55,.4); }
.tbp-cal-day.empty { visibility:hidden; }
.tbp-cal-legend { display:flex; gap:14px; font-size:11px; margin-top:10px; }
.tbp-cal-legend span { display:flex; align-items:center; gap:5px; color:var(--tbp-text-muted); }
.tbp-cal-legend .dot { width:8px; height:8px; border-radius:50%; }
.tbp-cal-legend .dot-avail { background:var(--tbp-primary); }
.tbp-cal-legend .dot-unavail { background:rgba(255,255,255,.2); }

/* ════════════════════════════════════
   CABS
════════════════════════════════════ */
.tbp-cabs-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:14px; }
.tbp-cab-card { display:flex; align-items:center; gap:14px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09); border-radius:14px; padding:16px 18px; backdrop-filter:blur(12px); transition:transform .3s,border-color .3s,box-shadow .3s; }
.tbp-cab-card:hover { transform:translateY(-4px); border-color:rgba(212,175,55,.4); box-shadow:0 8px 30px rgba(0,0,0,.4); }
.tbp-cab-card.tbp-cab-ac { border-left:3px solid #4fc97e; } .tbp-cab-card.tbp-cab-nonac{ border-left:3px solid #f39c12; }
.tbp-cab-icon { font-size:30px; flex-shrink:0; }
.tbp-cab-info { flex:1; min-width:0; }
.tbp-cab-name { color:#fff; font-weight:700; font-size:14px; margin-bottom:5px; }
.tbp-cab-meta { display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.tbp-cab-capacity { color:var(--tbp-text-muted); font-size:12px; }
.tbp-cab-badge { padding:2px 9px; border-radius:20px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.5px; }
.tbp-cab-badge.tbp-cab-ac    { background:rgba(79,201,126,.15); color:#4fc97e; border:1px solid rgba(79,201,126,.3); }
.tbp-cab-badge.tbp-cab-nonac { background:rgba(243,156,18,.15); color:#f39c12; border:1px solid rgba(243,156,18,.3); }
.tbp-cab-price { text-align:right; flex-shrink:0; }
.tbp-cab-amt { color:var(--tbp-primary); font-weight:800; font-size:16px; display:block; }
.tbp-cab-per { color:var(--tbp-text-muted); font-size:11px; }

/* ════════════════════════════════════
   DESTINATION SLIDER
════════════════════════════════════ */
.tbp-dest-slider-wrap { position: relative; padding: 6px 2px 32px; }
.tbp-dest-slider { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 8px 4px 14px; -webkit-overflow-scrolling: touch; }
.tbp-dest-slider::-webkit-scrollbar { display: none; }
.tbp-ds-card { flex: 0 0 270px; scroll-snap-align: start; display: block; text-decoration: none; }
.tbp-ds-card.tbp-glass-card { border-radius: 20px; }
.tbp-ds-img { position: relative; height: 180px; overflow: hidden; }
.tbp-ds-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: none; /* FULL BRIGHTNESS */
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.tbp-ds-card:hover .tbp-ds-img img { transform: scale(1.07); }
.tbp-ds-img-placeholder { width: 100%; height: 100%; background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.1), transparent 60%), #0a0a0a; display: flex; align-items: center; justify-content: center; font-size: 38px; color: rgba(212,175,55,.35); }
.tbp-ds-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 80%); pointer-events: none; }
.tbp-ds-badge { position: absolute; top: 13px; left: 13px; z-index: 3; background: rgba(212,175,55,0.95); backdrop-filter: blur(6px); color: #000; padding: 5px 12px; border-radius: 30px; font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; box-shadow: 0 4px 14px rgba(212,175,55,.5); display: flex; align-items: center; gap: 4px; }
.tbp-ds-body { position: relative; z-index: 2; padding: 17px 19px 19px; }
.tbp-ds-body h3 { color: #fff; font-size: 16px; font-weight: 700; margin: 0 0 9px; line-height: 1.3; letter-spacing: -.01em; }
.tbp-ds-desc { color: rgba(255,255,255,.55); font-size: 12.5px; line-height: 1.55; margin: 0 0 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tbp-ds-count { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,.6); padding: 5px 12px 5px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.tbp-ds-count::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--tbp-primary); display: inline-block; box-shadow: 0 0 6px rgba(212,175,55,.7); }
.tbp-ds-dots { display: flex; justify-content: center; gap: 7px; padding-top: 4px; }
.tbp-ds-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.18); cursor: pointer; transition: background .3s, width .3s; border: none; padding: 0; }
.tbp-ds-dot:hover { background: rgba(255,255,255,.4); }
.tbp-ds-dot.active { background:var(--tbp-primary); width:22px; border-radius:4px; }

/* ════════════════════════════════════
   ARCHIVE / PAGINATION / EMPTY
════════════════════════════════════ */
.tbp-archive-wrap { background:var(--tbp-black); min-height:100vh; padding:50px 0 60px; }
.tbp-archive-header { text-align:center; margin-bottom:44px; }
.tbp-archive-header h1 { color:#fff; font-size:40px; font-weight:900; margin:0 0 10px; letter-spacing:-.025em; }
.tbp-archive-header p { color:var(--tbp-text-muted); font-size:16px; }
.tbp-public-pagination { display:flex; justify-content:center; gap:8px; margin-top:44px; flex-wrap:wrap; }
.tbp-public-pagination a,.tbp-public-pagination span { padding:9px 18px; border-radius:9px; font-weight:700; font-size:13px; text-decoration:none; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); color:#fff; transition:all .2s; }
.tbp-public-pagination .current { background:var(--tbp-primary); color:#000; border-color:var(--tbp-primary); }
.tbp-public-pagination a:hover { background:var(--tbp-primary); color:#000; border-color:var(--tbp-primary); }
.tbp-no-results { text-align:center; padding:70px 20px; color:var(--tbp-text-muted); grid-column:1/-1; }
.tbp-no-results i { font-size:48px; display:block; margin-bottom:14px; opacity:.4; }
.tbp-loading { display:flex; justify-content:center; align-items:center; padding:50px; grid-column:1/-1; }
.tbp-loading::after { content:''; width:34px; height:34px; border:2.5px solid rgba(255,255,255,.1); border-top-color:var(--tbp-primary); border-radius:50%; animation:tbp-spin .75s linear infinite; }
@keyframes tbp-spin { to { transform:rotate(360deg); } }

/* ════════════════════════════════════
   MISC
════════════════════════════════════ */
.tbp-prose { color:rgba(255,255,255,.75); font-size:15px; line-height:1.85; }
.tbp-prose p { margin:0 0 1em; }
.tbp-prose a { color:var(--tbp-primary); }

/* ════════════════════════════════════
   MOBILE
════════════════════════════════════ */
@media (max-width:768px) {
    .tbp-hero { margin-top:14px; border-radius:12px; }
    .tbp-hero img { max-height:280px; }
    .tbp-hero-content { padding:0 16px; bottom:18px; }
    .tbp-hero-content h1 { font-size:20px; line-height:1.2; }
    .tbp-hero-meta { gap:10px; font-size:12px; }
    .tbp-content-layout { padding:20px 14px; gap:24px; }
    .tbp-booking-box { padding:20px 16px; border-radius:14px; }
    .tbp-booking-price .tbp-amount { font-size:32px; }
    .tbp-form-row { grid-template-columns:1fr; }
    .tbp-section-title { font-size:18px; }
    .tbp-section { margin-bottom:30px; }
    .tbp-highlights-box { padding:16px 18px; }
    .tbp-inc-exc { grid-template-columns:1fr; gap:16px; }
    .tbp-itinerary-dot { width:36px; height:36px; font-size:9px; }
    .tbp-cabs-grid { grid-template-columns:1fr; }
    .tbp-gallery-preview { grid-template-rows:110px 110px; gap:5px; }
    .tbp-dest-hero { border-radius:12px; }
    .tbp-dest-hero img { max-height:300px; }
    .tbp-dest-hero-content { padding:0 16px; bottom:20px; }
    .tbp-dest-hero-content h1 { font-size:24px; }
    .tbp-dest-info-grid { grid-template-columns:repeat(2,1fr); gap:10px; }
    .tbp-related { padding:28px 14px; }
    .tbp-ds-card { flex:0 0 210px; }
    .tbp-ds-img { height:145px; }
    .tbp-reviews-summary { padding:16px; }
    .tbp-review-form { padding:18px 14px; }
    
    
    .tbp-faq-question { font-size:13.5px; padding:14px 16px; }
    .tbp-cal-day { padding:4px 1px; font-size:11px; }
}
@media (max-width:480px) {
    .tbp-hero img { max-height:220px; }
    .tbp-hero-content h1 { font-size:17px; }
    .tbp-dest-hero img { max-height:220px; }
    .tbp-dest-hero-content h1 { font-size:18px; }
    .tbp-grid-3,.tbp-grid-2 { grid-template-columns:1fr; }
    .tbp-dest-info-grid { grid-template-columns:1fr 1fr; }
}

/* ════════════════════════════════════
   DESTINATIONS — Mobile 1+Slider / Desktop Grid
════════════════════════════════════ */

/* Mobile layout — shown only on small screens */
.tbp-dest-mobile-layout { display: none; }

/* Desktop grid — shown only on large screens */
.tbp-dest-desktop-grid { display: grid; }

@media (max-width: 768px) {
    /* Hide desktop grid, show mobile layout */
    .tbp-dest-desktop-grid { display: none !important; }
    .tbp-dest-mobile-layout { display: block; }

    /* First / featured destination card — full width */
    .tbp-dest-featured-card {
        display: block;
        margin-bottom: 16px;
        border-radius: 18px;
        overflow: hidden;
    }
    .tbp-dest-featured-card .tbp-card-img {
        height: 220px;
        aspect-ratio: unset;
    }
    .tbp-dest-featured-card .tbp-card-img img {
        width: 100%; height: 100%; object-fit: cover;
    }
    .tbp-dest-featured-card .tbp-card-body h3 { font-size: 19px; }

    /* Horizontal slider for remaining destinations */
    .tbp-dest-rest-slider {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 4px 2px 10px;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 12px;
    }
    .tbp-dest-rest-slider::-webkit-scrollbar { display: none; }

    .tbp-dest-rest-card {
        flex: 0 0 200px;
        scroll-snap-align: start;
        border-radius: 16px;
        overflow: hidden;
        display: block;
        text-decoration: none;
    }
    .tbp-dest-rest-card .tbp-card-img {
        height: 130px;
        aspect-ratio: unset;
    }
    .tbp-dest-rest-card .tbp-card-img img {
        width: 100%; height: 100%; object-fit: cover;
    }
    .tbp-dest-rest-card .tbp-card-body { padding: 12px 14px 14px; }
    .tbp-dest-rest-card .tbp-card-body h3 { font-size: 14px; margin-bottom: 6px; }
    .tbp-dest-rest-card .tbp-card-location { font-size: 11px; }
    .tbp-dest-rest-card .tbp-card-meta { padding-top: 8px; margin-top: 8px; }
    .tbp-dest-rest-card .tbp-badge { font-size: 9px; padding: 3px 8px; }

    /* Dots for rest slider */
    .tbp-dest-rest-dots {
        display: flex; justify-content: center; gap: 6px; margin-top: 4px;
    }
    .tbp-dest-rest-dot {
        width: 6px; height: 6px; border-radius: 50%;
        background: rgba(255,255,255,.2);
        border: none; padding: 0; cursor: pointer;
        transition: background .3s, width .3s;
    }
    .tbp-dest-rest-dot.active {
        background: var(--tbp-primary); width: 18px; border-radius: 3px;
    }
}

/* ════════════════════════════════════
   MOBILE package cards — single column
════════════════════════════════════ */
@media (max-width: 640px) {
    .tbp-package-card .tbp-card-img { aspect-ratio: 16/9; }
    .tbp-package-card .tbp-card-body h3 { font-size: 15px; }
    .tbp-package-info span { font-size: 11px; padding: 3px 8px; }
}

/* ════════════════════════════════════
   LAKES CARDS
════════════════════════════════════ */
.tbp-lake-card {
    display: block;
    text-decoration: none;
}
.tbp-lake-card .tbp-card-img { aspect-ratio: 4/3; }
.tbp-lake-altitude {
    position: absolute;
    bottom: 14px; left: 14px; z-index: 3;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: #fff; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px;
    display: flex; align-items: center; gap: 4px;
}
.tbp-lake-altitude::before { content: '🏔️'; font-size: 11px; }
.tbp-lake-explore {
    color: var(--tbp-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
}
.tbp-lake-card .tbp-card-body p {
    color: rgba(255,255,255,.5);
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
