/* ==========================================================================
   Dreams Tours — Bootstrap theme layer (homepage)
   Brand tokens + small custom pieces layered on top of Bootstrap 5.
   ========================================================================== */
/*:root {
     --brand-green-dark: #1E8449;    
    --brand-green: #27AE60;         
    --brand-gold: #F39C12;          
    --brand-gold-light: #F8C471;   
    --brand-orange: #F39C12;       
    --brand-red: #E74C3C;          
    --brand-magenta: #E74C3C;       
    --brand-cream: #fbf8f1;
    --brand-ink: #1b2a12;
    --gradient-gold: linear-gradient(120deg, #F39C12 0%, #F5B041 100%);
    --gradient-brand: linear-gradient(120deg, #27AE60 0%, #1E8449 100%);
}
*/
:root {
    --brand-green-dark: #3c4a17;
    --brand-green: #59691f;
    --brand-gold: #f2b52b;
    --brand-gold-light: #ffd873;
    --brand-orange: #F39C12;
    --brand-red: #E74C3C;
    /* --brand-magenta: #b81e6b; */
    --brand-cream: #fbf8f1;
    --brand-ink: #23260f;
    --gradient-gold: linear-gradient(120deg, #f2b52b 0%, #f2b52b 100%);
    /* --gradient-gold: linear-gradient(120deg, #f2b52b 0%, #ef7c3c 100%); */
    --gradient-brand: linear-gradient(120deg, #59691f 0%, #3c4a17 100%);
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; }
body {
    font-family: 'Nunito', sans-serif;
    color: #4a4c3d;
    background: var(--brand-cream);
    overflow-x: hidden;
    max-width: 100%;
}
h1, h2, h3, h4, h5, .font-head {
    font-family: 'Fraunces', serif;
    color: var(--brand-green-dark);
    font-weight: 600;
}
.section { padding: 90px 0; }
.bg-cream { background: var(--brand-cream); }
.text-gold { color: var(--brand-orange) !important; }
.text-magenta { color: var(--brand-magenta) !important; }

/* eyebrow pill */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--brand-green-dark);
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }

/* brand buttons */
.btn-gold {
    background: var(--brand-orange);
    color: var(--brand-ink);
    font-weight: 700;
    border: none;
}
.btn-gold:hover { color: var(--brand-ink); transform: translateY(-2px); 
    box-shadow: 0 10px 24px rgba(243,156,18,0.4); background-color: var(--brand-cream);}
.btn-whatsapp { background: #25d366; color: #fff; font-weight: 700; border: none; }
.btn-whatsapp:hover { background: #1fb457; color: #fff; }
.btn-brand { background: var(--brand-green); color: #fff; font-weight: 700; border: none; }
.btn-brand:hover { background: var(--brand-green-dark); color: #fff; }
.btn { border-radius: 50px; padding: 12px 26px; transition: all .25s ease;     cursor: pointer ! IMPORTANT;}

/* ---------------- Topbar ---------------- */
.topbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    color: #eef0e2;
    font-size: 0.82rem;
}
.topbar a { color: #eef0e2; text-decoration: none; }
.topbar a:hover { color: var(--brand-gold-light); }
.topbar .social-link {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.topbar .social-link:hover { background: var(--brand-gold); color: var(--brand-ink); }

/* ---------------- Navbar ---------------- */
.navbar {
    position: fixed;
    top: 46px; left: 0; right: 0;
    z-index: 1040;
    transition: all .3s ease;
    padding-top: 8px; padding-bottom: 8px;
}
.navbar .navbar-inner {
    /* dark glass pill — matches the SLTDA hero card look */
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255,216,115,0.35);
    border-radius: 60px;
    box-shadow: 0 12px 34px rgba(8,10,3,0.42);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 8px 12px 8px 26px;
    width: 100%;
    display: flex;
    align-items: center;
}
.navbar.scrolled { top: 0; padding: 0; background: rgb(255, 255, 255); box-shadow: 0 4px 18px rgba(8,10,3,0.4); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.navbar.scrolled .navbar-inner { border-radius: 0; border-color: transparent; box-shadow: none; background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; padding-top: 6px; padding-bottom: 6px; }
/* light halo keeps the dark-green logo readable on the dark navbar */
.navbar-brand img { height: 48px; filter: drop-shadow(0 0 6px rgba(255,255,255,0.55)); }
.navbar .nav-link {
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
      color: var(--brand-green-dark);
      padding: 0px 15px !important;
     
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--brand-gold); }
/* Animated 3-bar hamburger — matches the inner-page header toggle */
.navbar-toggler {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 34px;
    padding: 8px 0;
    background: transparent;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler .tgl-bar {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--brand-green-dark);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.navbar-toggler[aria-expanded="true"] .tgl-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .tgl-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .tgl-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------- Hero carousel ---------------- */
.hero-carousel .carousel-inner {
    border-bottom-left-radius: 44px;
    border-bottom-right-radius: 44px;
}
.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 620px;
    background-size: cover;
    background-position: center 60%;
    position: relative;
}
.hero-overlay {
    position: absolute; inset: 0;
    /* deeper, dark-green wash so the top of the site feels dark and premium */
    background: linear-gradient(100deg, rgba(15,18,6,0.82) 0%, rgba(28,34,11,0.62) 48%, rgba(60,74,23,0.32) 100%);
}
.hero-caption {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    z-index: 2;
    /* push content clear of the fixed topbar + floating navbar */
    padding-top: 96px;
}
.hero-kicker {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    color: var(--brand-gold-light);
    margin-bottom: 8px;
}
.hero-caption h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.3rem); text-shadow: 0 2px 16px rgba(8,10,3,0.4); }
.hero-caption p { color: #f4f2e8; max-width: 520px; text-shadow: 0 1px 10px rgba(8,10,3,0.35); }
.hero-kicker { text-shadow: 0 1px 10px rgba(8,10,3,0.3); }
.hero-feature { color: #fff; font-weight: 700; font-size: 0.9rem; }
.hero-feature i {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--brand-gold-light);
    margin-right: 10px;
}
/* SLTDA registration card (right side of hero) */
.hero-sltda-card {
    max-width: 380px;
    margin-left: auto;
    padding: 30px 28px;
    border-radius: 22px;
    text-align: center;
    background: rgb(176 176 176 / 0%);
    border: 1px solid rgba(255,216,115,0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(8,10,3,0.35);
}
.hero-sltda-card-logo {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    object-fit: contain;
    box-shadow: 0 10px 26px rgba(8,10,3,0.3);
}
.hero-sltda-card-title {
    margin-top: 16px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}
.hero-sltda-card-text {
    margin: 10px 0 18px;
    font-size: 0.86rem;
    line-height: 1.5;
    color: #eae7d8;
}
.hero-sltda-card-reg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(243,156,18,0.16);
    border: 1px solid rgba(255,216,115,0.35);
}
.hero-sltda-card-reg span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand-gold-light);
}
.hero-sltda-card-reg strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
}
/* modern vertical line indicators on the right edge, with autoplay progress fill */
.hero-carousel .hero-indicators {
    z-index: 3;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    top: 0; bottom: 0;
    left: auto; right: 40px;
    margin: 0;
    padding: 0;
}
.hero-carousel .hero-indicators button {
    width: 5px; height: 34px;
    padding: 0;
    border: none;
    border-radius: 0px;
    background: rgba(255,255,255,0.32);
    opacity: 1;
    overflow: hidden;
    position: relative;
    text-indent: 0;
    transition: height .45s ease, background-color .45s ease;
}
.hero-carousel .hero-indicators button:hover { background: rgba(255,255,255,0.55); }
.hero-carousel .hero-indicators button .indicator-fill {
    position: absolute; top: 0; left: 0; right: 0;
    height: 0;
    border-radius: 50px;
    background: var(--gradient-gold);
}
.hero-carousel .hero-indicators button.active {
    height: 66px;
    background: rgba(255,255,255,0.32);
}
.hero-carousel .hero-indicators button.active .indicator-fill {
    animation: heroIndicatorFill 6s linear forwards;
}
@keyframes heroIndicatorFill { from { height: 0; } to { height: 100%; } }

/* grab-to-drag affordance on the hero */
.hero-carousel .carousel-inner { cursor: grab; }
.hero-carousel .carousel-inner.is-dragging { cursor: grabbing; }
.hero-carousel .carousel-item, .hero-carousel .hero-caption { user-select: none; }
/* keep interactive controls clickable, not draggable */
.hero-carousel .hero-caption a, .hero-carousel .hero-indicators { cursor: auto; }

/* ---------------- Hero search band ---------------- */
.hero-search-wrap {
    position: relative;
    z-index: 20;
    margin-top: -56px;
}
.hero-search {
    display: flex;
    align-items: stretch;
    gap: 6px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(35,38,15,0.22);
    padding: 18px 18px 18px 10px;
}
.hs-field {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 0;
    min-width: 0;
    padding: 4px 12px;
}
.hs-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(243,156,18,0.25);
    background: rgba(243,156,18,0.08);
    color: var(--brand-orange);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.hs-control {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    margin: 0;
    cursor: pointer;
}
.hs-label {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--brand-green-dark);
    line-height: 1.2;
}
.hs-select {
    border: none;
    background: transparent;
    padding: 2px 0 0;
    font-size: 0.86rem;
    font-weight: 600;
    color: #8a8c7d;
    cursor: pointer;
    outline: none;
    width: 100%;
    max-width: 100%;
    text-overflow: ellipsis;
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8c7d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 18px;
}
.hs-select:focus { color: var(--brand-green-dark); }
input.hs-select::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .5; }
.hs-divider {
    width: 1px;
    align-self: center;
    height: 44px;
    background: #ececdf;
    flex-shrink: 0;
}
.hs-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    border-radius: 50px;
    padding: 0 12px 0 30px;
    background: var(--brand-orange);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: box-shadow .25s ease, transform .25s ease;
}
.hs-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(243,156,18,0.45); }
.hs-btn-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-ink);
    display: inline-flex; align-items: center; justify-content: center;
}
.hs-btn-arrow i { transform: rotate(45deg); }

/* trust stats shown inside the floating white card */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
}
.hero-stats-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(35,38,15,0.22);
    position: relative;
}
.hero-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
}
.hero-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 46px;
    background: rgba(39,174,96,0.16);
}
.hero-stat-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--gradient-brand);
    color: var(--brand-gold-light);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 20px rgba(60,74,23,0.18);
}
.hero-stat-num {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    color: var(--brand-green-dark);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.84rem;
    font-weight: 600;
    color: #7c7e6d;
    margin-top: 4px;
}

/* ---------------- Marquee ---------------- */
.marquee {
    background: var(--brand-orange);
    color: var(--brand-ink);
    overflow: hidden;
    padding: 16px 0;
}
.marquee-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: marquee 26s linear infinite;
}
/* .marquee-track span {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Fraunces', serif; font-weight: 700; font-size: 1rem;
    margin-right: 50px;
} */
.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px; 
    font-weight: 700;
    font-size: 1rem;
    margin-right: 40px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- Cards ---------------- */
/* ---------------- Flight booking teaser ---------------- */
/* Its own backdrop so the section reads as distinct from whichever
   sections end up either side of it. */
.flights-teaser {
    background:
        radial-gradient(circle at 88% 12%, rgba(242, 181, 43, 0.14) 0%, transparent 46%),
        radial-gradient(circle at 6% 88%, rgba(89, 105, 31, 0.10) 0%, transparent 42%),
        #fff;
}

.flight-perks {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    gap: 13px;
}

.flight-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #4a4c3d;
}

.flight-perks i {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(242, 181, 43, 0.16);
    color: var(--brand-orange);
    font-size: 0.85rem;
}

/* Clickable preview of the search that lives on flight-booking.php. */
.flight-card {
    display: block;
    padding: 26px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(35, 38, 15, 0.08);
    box-shadow: 0 18px 44px rgba(35, 38, 15, 0.12);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.flight-card:hover,
.flight-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 26px 58px rgba(35, 38, 15, 0.18);
}

.flight-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.flight-card-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brand-green-dark);
}

.flight-card-badge {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-green);
    background: rgba(89, 105, 31, 0.1);
    padding: 5px 11px;
    border-radius: 50px;
}

.flight-card-route,
.flight-card-dates {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.flight-leg {
    flex: 1 1 0;
    min-width: 0;
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--brand-cream);
}

.flight-leg-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9e88;
    margin-bottom: 3px;
}

.flight-leg-value {
    display: block;
    font-weight: 700;
    color: var(--brand-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flight-leg-value.muted { color: #9a9e88; }

.flight-card-swap {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-green);
    color: #fff;
    font-size: 0.75rem;
}

.flight-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 13px 26px;
    border-radius: 50px;
    background: var(--gradient-gold);
    color: var(--brand-ink);
    font-weight: 800;
}

@media (max-width: 575.98px) {
    .flight-card { padding: 20px; }
    .flight-card-route,
    .flight-card-dates { gap: 8px; }
    .flight-leg { padding: 10px 12px; }
    .flight-leg-value { font-size: 0.9rem; }
}

/* Side-by-side legs squeeze airport names into an ellipsis on the narrowest
   phones — stack the route instead so they read in full. */
@media (max-width: 360px) {
    .flight-card-route {
        flex-direction: column;
        align-items: stretch;
    }
    .flight-card-swap {
        align-self: center;
        transform: rotate(90deg);
    }
}

.card { border: none; border-radius: 16px; box-shadow: 0 2px 10px rgba(35,38,15,0.06); transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-8px); box-shadow: 0 16px 34px rgba(35,38,15,0.14); }
.card-img-top { border-top-left-radius: 16px; border-top-right-radius: 16px; height: 210px; object-fit: cover; }
.icon-circle {
    width: 60px; height: 60px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(243,156,18,0.18), rgba(243,156,18,0.18));
    color: var(--brand-orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

/* fade-in-on-scroll (opacity + gentle upward settle, no horizontal slide) */
.js-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s ease, transform .9s ease;
    will-change: opacity, transform;
}
.js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .js-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------- About section (Touria-style) ---------------- */
.about-heading {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    /* font-weight: 800; */
    color: var(--brand-green-dark);
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    /* font-size: clamp(1.9rem, 3.4vw, 2.9rem); */
    line-height: 1.12;
}
/* stacked images on the left */
.about-media { position: relative; padding-bottom: 46px; }
.about-media-main {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(35,38,15,0.16);
}
.about-media-sub {
    position: absolute;
    right: 0; bottom: 0;
    width: 130px; height: 130px;
    object-fit: cover;
    border-radius: 18px;
    border: 5px solid #fff;
    box-shadow: 0 12px 26px rgba(35,38,15,0.18);
}
/* feature card */
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(243,156,18,0.07);
    border: 1px solid rgba(243,156,18,0.12);
    border-radius: 16px;
    padding: 20px;
}
.about-feature-icon {
    flex-shrink: 0;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--brand-orange);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.about-feature-title {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-green-dark);
    margin-bottom: 4px;
}
.about-feature-text { font-size: 0.9rem; color: #7c7e6d; line-height: 1.5; }
/* check list */
.about-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.about-checks li {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; color: var(--brand-green-dark); font-size: 0.95rem;
}
.about-checks li i { color: var(--brand-orange); font-size: 1.05rem; }
/* right tall image + badge */
.about-hero-media { position: relative; }
.about-hero-media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 24px 50px rgba(35,38,15,0.2);
}
.about-exp-badge {
    position: absolute;
    top: 40px; left: -40px;
    width: 132px; height: 132px;
    border-radius: 50%;
    background: var(--brand-orange);
    border: 6px solid #fff;
    box-shadow: 0 16px 34px rgba(243,156,18,0.35);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    color: #fff;
}
.about-exp-num { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.9rem; line-height: 1; }
.about-exp-label { font-size: 0.72rem; font-weight: 700; line-height: 1.2; margin-top: 4px; padding: 0 8px; }

@media (max-width: 991px) {
    .about-exp-badge { left: 16px; top: 16px; width: 108px; height: 108px; }
    .about-hero-media img { height: 420px; }
}

/* ---------------- Tour packages carousel ---------------- */
.tour-carousel-nav { display: flex; gap: 10px; }
.tour-nav {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid #e7e2d3;
    background: #fff;
    color: var(--brand-green-dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all .25s ease;
}
.tour-nav:hover { background: var(--brand-orange); color: #fff; border-color: transparent; transform: translateY(-2px); }
.tour-nav:disabled { opacity: .4; cursor: default; transform: none; background: #fff; color: var(--brand-green-dark); }

.tour-track {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    padding: 8px 4px 28px;
    margin: 0 -4px;
    scrollbar-width: none;              /* Firefox */
    cursor: grab;
}
.tour-track::-webkit-scrollbar { display: none; }   /* WebKit */
.tour-track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.tour-track.is-dragging .tour-card { pointer-events: none; }

.tour-card {
    flex: 0 0 calc((100% - 52px) / 3);   /* 3 cards on desktop */
    scroll-snap-align: start;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(35,38,15,0.08);
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(35,38,15,0.16); }

.tour-card-media { position: relative; height: 220px; overflow: hidden; }
.tour-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
}
.tour-card:hover .tour-card-media img { transform: scale(1.07); }
.tour-card-media-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-brand);
    color: rgba(255,255,255,0.9);
    font-size: 3.2rem;
}
.tour-tag {
    position: absolute; top: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--brand-orange);
    color: #fff; font-weight: 800; font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: .04em;
    padding: 6px 12px; border-radius: 50px;
    box-shadow: 0 6px 16px rgba(243,156,18,0.35);
}
/* .tour-duration {
    position: absolute; bottom: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.92);
    color: var(--brand-green-dark); font-weight: 700; font-size: 0.74rem;
    padding: 6px 12px; border-radius: 50px;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
} */
.tour-duration {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: wheat;
    color: black;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 6px 14px;
    border-radius: 50px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.tour-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.tour-route {
    display: flex; align-items: center; gap: 6px;
    color: var(--brand-magenta); font-weight: 700; font-size: 0.78rem;
    margin-bottom: 8px;
}
.tour-title {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: 1.18rem; line-height: 1.25;
    color: var(--brand-green-dark); margin-bottom: 10px;
}
.tour-summary {
    color: #7c7e6d; font-size: 0.86rem; line-height: 1.5;
    flex: 1; margin-bottom: 18px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.tour-card-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding-top: 16px; border-top: 1px solid #f0ede3;
}
.tour-stops {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 700; font-size: 0.8rem; color: var(--brand-green);
}
.tour-stops i { color: var(--brand-orange); }

@media (max-width: 991px) {
    .tour-card { flex-basis: calc((100% - 26px) / 2); }   /* 2 cards on tablet */
}
@media (max-width: 640px) {
    .tour-card { flex-basis: 84%; }                        /* ~1 card on mobile */
    .tour-carousel-nav { display: none; }
}

.trust-strip { background: var(--gradient-brand); color: #fff; }
.trust-strip .num { font-family: 'Fraunces', serif; font-size: clamp(2rem,3vw,2.6rem); color: var(--brand-gold-light); }

.self-drive { background: var(--gradient-brand); color: #f1efe4; border-radius: 28px; }
.self-drive h2 { color: #fff; }
.req-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 8px 16px; font-size: 0.82rem; }

/* ---------------- Meet Our Drivers ---------------- */
.drivers-section {
    position: relative;
    background: var(--brand-cream);
    color: #4a4c3d;
    overflow: hidden;
}
.drivers-section::after {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243,156,18,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.drivers-eyebrow {
    color: var(--brand-orange);
    background: rgba(243, 156, 18, 0.1);
    border-color: rgba(243, 156, 18, 0.2);
}
.drivers-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--brand-green-dark);
    font-size: clamp(1.8rem, 3.4vw, 2.7rem);
    line-height: 1.15;
    max-width: 820px;
    margin-left: auto; margin-right: auto;
}
.drivers-lead {
    max-width: 760px;
    color: #6d6f5e;
    font-size: 1rem;
    line-height: 1.65;
}
.driver-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #efeadd;
    border-radius: 18px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(35,38,15,0.06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.driver-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(35,38,15,0.12);
    border-color: transparent;
}
.driver-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 62px; height: 62px;
    border-radius: 50%;
    background: var(--brand-orange);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(243,156,18,0.3);
}
.driver-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--brand-green-dark);
    margin-bottom: 8px;
}
.driver-card-text {
    font-size: 0.86rem;
    line-height: 1.5;
    color: #7c7e6d;
    margin: 0;
}

/* ---------------- Quick fare directory (modern table) ---------------- */
.fare-table-wrap {
    /* max-width: 880px; */
    margin: 0 auto;
    background: #fff;
    border: 1px solid #efeadd;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(35,38,15,0.1);
}
/* wider tables (e.g. rental rates) scroll sideways on tablet instead of clipping */
.fare-table-wrap.is-scroll { overflow: hidden; overflow-x: auto; }
.fare-table-wrap.is-scroll .fare-table { min-width: 780px; }
@media (max-width: 640px) {
    .fare-table-wrap.is-scroll .fare-table { min-width: 0; }
}
.fare-table { width: 100%; border-collapse: collapse; }
.fare-table thead th {
   background: var(--brand-cream);
    color: var(--brand-green-dark);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 18px 20px;
    text-align: center;
    white-space: nowrap;
}
.fare-table thead th i { color: var(--brand-gold-light); margin-right: 6px; }
.fare-th-route { text-align: left !important; }
.fare-th-book { text-align: right !important; }
.fare-table tbody td {
    padding: 16px 20px;
    text-align: center;
    vertical-align: middle;
    border-top: 1px solid #f1eee4;
}
.fare-table tbody tr { transition: background .25s ease; }
.fare-table tbody tr:hover { background: #fbf8f1; }
.fare-route-cell {
    text-align: left !important;
    display: flex; align-items: center; gap: 12px;
    font-size: 0.98rem; color: #4a4c3d;
}
.fare-route-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 11px;
    background: rgba(243,156,18,0.1);
    color: var(--brand-orange);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.fare-route-cell strong { color: var(--brand-green-dark); font-weight: 700; }
.fare-route-arrow { color: var(--brand-orange); font-size: 0.8rem; margin: 0 2px; }
.fare-badge {
    display: inline-block;
    min-width:80px;
    padding: 7px 16px;
    border-radius: 50px;
    /* font-family: 'Fraunces', serif; */
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--brand-green-dark);
    background: rgba(39,174,96,0.1);
}
.fare-badge-van { color: var(--brand-red); background: rgba(243,156,18,0.12); }
.fare-vehicle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.96rem;
    line-height: 1.2;
    color: var(--brand-green-dark);
    background: #fff;
    border: 1.5px solid rgba(39,174,96,0.35);
    box-shadow: 0 2px 6px rgba(39,174,96,0.08);
}
.fare-vehicle i { color: var(--brand-orange); font-size: 1.05rem; }
.fare-book-cell { text-align: right !important; }
.fare-book-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
.fare-book-btn:hover { color: #fff; transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 18px rgba(37,211,102,0.45); }

@media (max-width: 640px) {
    .fare-table thead { display: none; }
    .fare-table, .fare-table tbody, .fare-table tr, .fare-table td { display: block; width: 100%; }
    .fare-table tbody tr { padding: 8px 4px 14px; border-top: 1px solid #f1eee4; }
    .fare-table tbody tr:first-child { border-top: none; }
    .fare-table tbody td { border: none; text-align: right; padding: 8px 20px; position: relative; }
    .fare-route-cell { justify-content: flex-start; padding-top: 16px; }
    .fare-table td[data-label]::before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        color: #7c7e6d;
        text-transform: uppercase;
        font-size: 0.72rem;
        letter-spacing: 0.04em;
    }
    .fare-book-cell { text-align: center !important; padding-top: 14px; }
    .fare-book-btn { width: auto; height: auto; border-radius: 50px; padding: 10px 22px; gap: 8px; font-size: 0.9rem; }
    .fare-book-btn::after { content: " Book on WhatsApp"; font-weight: 700; }
}

/* ---------------- Gallery ---------------- */
.section-subtitle {
    max-width: 640px;
    margin-top: 14px;
    color: #6b7154;
    font-size: 1.02rem;
    line-height: 1.6;
}
.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #e9e4d6;
    box-shadow: 0 8px 22px rgba(35, 38, 15, 0.08);
}
.gallery-item:focus-visible { outline: 3px solid var(--brand-gold); outline-offset: 3px; }
.gallery-img {
    display: block;
    border-radius: 14px;
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 16px 14px;
    color: #fff;
    background: linear-gradient(to top, rgba(35, 38, 15, 0.78) 0%, rgba(35, 38, 15, 0.15) 55%, rgba(35, 38, 15, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption { opacity: 1; }
.gallery-caption-title { font-weight: 700; font-size: 0.98rem; line-height: 1.25; text-align: left; }
.gallery-caption i {
    flex: 0 0 auto;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--brand-gold);
    color: var(--brand-ink);
}

/* ---------------- Lightbox ---------------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(12px, 4vw, 48px);
    background: rgba(18, 20, 8, 0.92);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage {
    position: relative;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-img {
    max-width: min(92vw, 1100px);
    max-height: 82vh;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    animation: lb-fade 0.35s ease;
}
.lightbox-img.is-swapping { animation: lb-fade 0.35s ease; }
@keyframes lb-fade { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
.lightbox-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-top: 14px;
    color: #fff;
}
.lightbox-title { font-weight: 700; font-size: 1.05rem; }
.lightbox-counter { font-size: 0.9rem; color: var(--brand-gold-light); letter-spacing: 0.04em; }
.lightbox-close,
.lightbox-nav {
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--brand-gold); color: var(--brand-ink); }
.lightbox-nav {
    flex: 0 0 auto;
    width: 54px; height: 54px;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 2;
}
.lightbox-nav:active { transform: scale(0.92); }
.lightbox-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 46px; height: 46px;
    border-radius: 50%;
    font-size: 1.3rem;
    z-index: 3;
}

@media (max-width: 767.98px) {
    .gallery-img { height: 150px; }
    .gallery-caption { opacity: 1; padding: 12px; background: linear-gradient(to top, rgba(35, 38, 15, 0.82) 0%, rgba(35, 38, 15, 0) 70%); }
    .gallery-caption-title { font-size: 0.82rem; }
    .gallery-caption i { width: 28px; height: 28px; font-size: 0.8rem; }
    .lightbox { gap: 4px; padding: 12px; }
    .lightbox-nav { position: absolute; bottom: 20px; width: 46px; height: 46px; }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }
    .lightbox-img { max-height: 74vh; }
    .lightbox-bar { flex-direction: column; gap: 4px; text-align: center; margin-top: 12px; }
}

.site-footer { background: #262b12; color: #cfd2bd; }
.site-footer a { color: #b4b79c; text-decoration: none; }
.site-footer a:hover { color: var(--brand-gold-light); }
.footer-social {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex; align-items: center; justify-content: center; color: #cfd2bd;
}
.site-footer .logo{
    height: 100px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}
.footer-social:hover { background: var(--brand-gold); color: var(--brand-ink) !important; }

.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 1050;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
    text-decoration: unset;
}

/* ---------------- FAQ ---------------- */
.accordion-button:not(.collapsed) {
    color: var(--brand-green);
    background-color: var(--brand-gold-light);
}
.accordion-button:focus {
     
    box-shadow: var(--brand-cream);
}
/* ---------------- Back-to-top (scroll-progress ring) ---------------- */
.back-to-top {
    position: fixed;
    bottom: 90px; right: 26px;
    z-index: 1049;
    width: 50px; height: 50px;
    display: grid; place-items: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--brand-red);
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.85);
    transition: opacity .35s ease, transform .35s ease, box-shadow .3s ease;
    box-shadow: 0 8px 22px rgba(35,38,15,0.28);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.back-to-top:hover { box-shadow: 0 12px 30px rgba(243,156,18,0.45); }
.back-to-top:hover .back-to-top-icon { transform: translateY(-3px); }
.back-to-top-icon {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1;
    transition: transform .25s ease;
}
.back-to-top .progress-ring {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    transform: rotate(-90deg);
}
.back-to-top .progress-ring circle {
    fill: none;
    stroke-width: 3;
}
.back-to-top .ring-track { stroke: rgba(255,255,255,0.18); }
.back-to-top .ring-bar {
    stroke: var(--brand-gold);
    stroke-linecap: round;
    transition: stroke-dashoffset .12s linear;
}

@media (max-width: 991px) {
    .navbar { top: 0; }
    .navbar .navbar-inner { border-radius: 16px; flex-wrap: wrap; }
    .navbar-collapse { width: 100%; }
    .topbar { display: none; }
    .hero-carousel .carousel-item { height: auto; min-height: 100vh; padding: 120px 0 60px; }
    .hero-caption { position: relative; padding-top: 0; padding-right: 22px; }
    .hero-carousel .carousel-inner { cursor: auto; }
    .hero-carousel .hero-indicators { right: 10px; gap: 10px; }
    .hero-carousel .hero-indicators button { height: 26px; }
    .hero-carousel .hero-indicators button.active { height: 50px; }

    /* SLTDA card: full-width below the text on small screens */
    .hero-sltda-card { max-width: 100%; margin: 8px 0 0; padding: 24px 20px; }

    /* stack the search band on small screens */
    .hero-search-wrap { margin-top: -30px; }
    .hero-search { flex-direction: column; gap: 4px; padding: 14px; border-radius: 18px; }
    .hs-field { width: 100%; padding: 8px 6px; }
    .hs-divider { width: 100%; height: 1px; align-self: stretch; }
    .hs-btn { width: 100%; justify-content: center; padding: 12px 20px; margin-top: 6px; }

    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; padding: 22px 16px; }
    .hero-stat { justify-content: flex-start; gap: 10px; }
    .hero-stat:nth-child(odd)::after { display: none; }
    .hero-stat:nth-child(2)::after { display: none; }
    .hero-stat-icon { width: 46px; height: 46px; font-size: 1.1rem; }
    .navbar .nav-link {
    
    padding: 14px 14px !important;
    border-bottom: 1px solid var(--brand-cream);
    
}
}

/* ---------------- Testimonials / Happy Guests ---------------- */
.tm-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.2);
}
.tm-trust-stars { color: var(--brand-gold); letter-spacing: 2px; font-size: 0.9rem; }
.tm-trust-text { color: #5a6047; font-size: 0.92rem; }
.tm-trust-text strong { color: var(--brand-green-dark); }

/* Two-column layout: fixed image (left) + carousel (right) */
.tm-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 30px;
    align-items: stretch;
}

/* Left intro panel over a fixed image */
.tm-intro {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    min-height: 440px;
}
.tm-intro::before {
    content: '';
    position: absolute; inset: 0;
    /* background: linear-gradient(160deg, rgba(20,24,8,0.9) 0%, rgba(45,56,18,0.76) 55%, rgba(60,74,23,0.6) 100%); */

background: linear-gradient(160deg, rgb(4 4 4 / 90%) 0%, rgb(0 0 0 / 76%) 55%, rgb(0 0 0 / 60%) 100%);
}
.tm-intro-inner { position: relative; z-index: 1; padding: 46px 42px; }
.tm-intro .eyebrow { color: var(--brand-gold-light); background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); }
.tm-intro .section-title { color: #fff; }
.tm-intro .section-subtitle { color: rgba(255,255,255,0.86); margin-top: 14px; max-width: 460px; }
.tm-intro .tm-trust { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.32); }
.tm-intro .tm-trust-text { color: #f1f0e6; }
.tm-intro .tm-trust-text strong { color: #fff; }

/* Right carousel */
.tm-carousel { display: flex; flex-direction: column; justify-content: center; }
.tm-nav { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 16px; }
.tm-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--brand-green);
    background: #fff;
    color: var(--brand-green-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}
.tm-arrow:hover:not(:disabled) { background: var(--brand-green); color: #fff; transform: translateY(-2px); }
.tm-arrow:disabled { opacity: 0.35; cursor: default; }
.tm-viewport { overflow: hidden; padding: 14px 0; margin: -14px 0; }
.tm-track { display: flex; gap: 24px; transition: transform .45s ease; }
.tm-slide { flex: 0 0 calc((100% - 24px) / 2); display: flex; }
.tm-slide .tm-card { width: 100%; }

.tm-card {
    display: flex;
    flex-direction: column;
    margin: 0;
    background: #fff;
    border: 1px solid #efeadb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(35, 38, 15, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.tm-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(35, 38, 15, 0.16); }

/* prominent guest selfie */
.tm-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--gradient-brand);
}
.tm-avatar {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 2.6rem;
    letter-spacing: 1px;
    color: #fff;
    background: var(--gradient-brand);
}
.tm-photo-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tm-card:hover .tm-photo-img { transform: scale(1.06); }
.tm-quote-mark {
    position: absolute;
    right: 16px; bottom: -6px;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--brand-gold);
    color: #fff;
    font-size: 1.05rem;
    box-shadow: 0 8px 18px rgba(243, 156, 18, 0.45);
    z-index: 2;
}
.tm-trip {
    position: absolute;
    left: 14px; bottom: 14px;
    max-width: calc(100% - 74px);
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(15, 18, 6, 0.62);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 2;
}

.tm-body { padding: 26px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.tm-stars { color: var(--brand-gold); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 12px; }
.tm-quote {
    margin: 0 0 18px;
    color: #4a4c3d;
    font-size: 0.98rem;
    line-height: 1.6;
    flex: 1;
}
.tm-meta { display: flex; flex-direction: column; gap: 3px; border-top: 1px solid #f0ebdd; padding-top: 16px; }
.tm-name { font-family: 'Fraunces', serif; font-weight: 700; color: var(--brand-green-dark); font-size: 1.05rem; }
.tm-country { color: #6b7154; font-size: 0.82rem; }
.tm-verified { color: var(--brand-green); font-size: 0.76rem; font-weight: 700; margin-top: 2px; }

@media (max-width: 900px) {
    .tm-layout { grid-template-columns: 1fr; gap: 24px; }
    .tm-intro { min-height: 280px; }
    .tm-intro-inner { padding: 40px 32px; }
}
@media (max-width: 767px) {
    .tm-slide { flex-basis: 100%; }
    .tm-track { gap: 0; }
    .tm-nav { justify-content: center; }
}
@media (max-width: 575.98px) {
    .tm-photo { aspect-ratio: 3 / 2; }
    .tm-avatar { font-size: 2.2rem; }
    .tm-trust { width: 100%; justify-content: center; }
    .tm-trust-text { font-size: 0.84rem; }
}
