/* ============================================================
   siteV2.css — Kayak Zone v2 design styles
   Ported from epictours-web siteV2.css with Kayak Zone's colours.
   Loaded only by _LayoutV2.cshtml — does not affect other pages.
   Class names and the --et-* variable names are kept as in Epic Tours,
   so later Epic Tours changes can be diffed and ported easily.
   ============================================================ */

:root {
    /* Kayak Zone brand (same values as the current site's Bootstrap theme) */
    --et-primary: #1399cb;
    --et-primary-rgb: 19, 153, 203;
    /* Hover and pressed shade: darker than --et-primary-strong so hovers still darken */
    --et-primary-dark: #0b5f7e;
    /* Darker blue from the same theme (its pressed-button border) for small text and for backgrounds
       behind small white text: #1399cb reaches only 3.26:1 on white, this 5.35:1 (WCAG AA). #1399cb
       stays for icons, borders, dots and large text. */
    --et-primary-strong: #0e7398;
    /* Light tints of the brand blue, replacing Epic Tours' light greens */
    --et-primary-tint: #e7f5fa;
    --et-border-tint: #d7e9f0;
    /* Kayak Zone's near-black (footer and headings), replacing Epic Tours' dark greens */
    --et-dark: #0b0a12;
    --et-dark-rgb: 11, 10, 18;
    --et-dark-2: #1b2530;
    --et-ink: #0b0a12;
    /* Kayak Zone's header is white; nav text colours follow in the header port (Phase 2 item 27) */
    --et-nav-bg: #ffffff;
    /* Height of the sticky white navigation bar (48px logo + padding + border). Bars that stick under
       it use this; Epic Tours hard-codes its shorter 56px bar. */
    --v2-nav-h: calc(48px + 1.4rem + 1px);
}

/* ── Reset for v2 pages ── */
/* Bootstrap's own primary colour (buttons, text-primary, links) in Kayak Zone's blue, so utility classes
   on v2 pages don't fall back to Bootstrap's default #0d6efd */
.v2-page {
    --bs-primary: #0e7398;
    --bs-primary-rgb: 14, 115, 152;
    --bs-link-color: #0e7398;
    --bs-link-color-rgb: 14, 115, 152;
    --bs-link-hover-color: #0b5f7e;
    --bs-link-hover-color-rgb: 11, 95, 126;
}
.v2-page .btn-primary {
    --bs-btn-bg: #0e7398; --bs-btn-border-color: #0e7398;
    --bs-btn-hover-bg: #0b5f7e; --bs-btn-hover-border-color: #0b5f7e;
    --bs-btn-active-bg: #0b5f7e; --bs-btn-active-border-color: #0b5f7e;
    --bs-btn-disabled-bg: #0e7398; --bs-btn-disabled-border-color: #0e7398;
}
.v2-page { font-family: 'Inter', sans-serif; background: #f8f9fa; }
.v2-page *, .v2-page *::before, .v2-page *::after { box-sizing: border-box; }

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
.top-bar-v2 {
    background: var(--et-primary-strong);
    padding: .3rem 0;
    font-size: .75rem;
}
.top-bar-v2 a,
.top-bar-v2 span { color: #fff; text-decoration: none; }
.top-bar-v2 a:hover { color: #fff; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.site-nav-v2 {
    background: var(--et-nav-bg);
    position: sticky;
    top: 0;
    z-index: 1040;
}
.site-nav-v2 .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: -.02em;
    text-decoration: none;
}
.site-nav-v2 .navbar-brand span { color: var(--et-primary); }
.site-nav-v2 button.nav-link {
    background: none;
    border: none;
    cursor: pointer;
}
.site-nav-v2 .nav-link {
    color: rgba(255,255,255,.82);
    font-size: .88rem;
    font-weight: 500;
    padding: .5rem .9rem;
}
.site-nav-v2 .nav-link:hover { color: #fff; }
.site-nav-v2 .btn-book {
    background: var(--et-primary-strong);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 600;
    padding: .4rem 1rem;
    text-decoration: none;
}
.site-nav-v2 .btn-book:hover { background: var(--et-primary-dark); color: #fff; }

.nav-icon-btn-v2 {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    border: none;
    color: rgba(255,255,255,.85);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; cursor: pointer;
    text-decoration: none;
    transition: background .15s;
}
.nav-icon-btn-v2:hover { background: rgba(255,255,255,.18); color: #fff; }

.nav-avatar-v2 {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--et-primary), var(--et-primary-dark));
    border: none;
    padding: 0;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 700;
    cursor: pointer; text-decoration: none;
}

.notif-dot-v2 {
    display: inline-block; width: 7px; height: 7px;
    background: #fff; border-radius: 50%;
    margin-left: .3rem;
    animation: blinkV2 1.4s infinite;
    vertical-align: middle;
}
@keyframes blinkV2 { 0%,100%{opacity:1} 50%{opacity:.2} }

.site-nav-v2 .navbar-toggler:focus { box-shadow: none; outline: none; }

/* Compact navbar height */
.site-nav-v2.navbar { padding-top: .7rem; padding-bottom: .7rem; }
.site-nav-v2 .navbar-brand { --bs-navbar-brand-padding-y: 0; }

/* Bootstrap dropdowns inside dark nav (language + profile) */
.site-nav-v2 .v2-lang-menu,
.site-nav-v2 .v2-profile-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    padding: .5rem 0;
    min-width: 160px;
}
.site-nav-v2 .v2-lang-menu .dropdown-item,
.site-nav-v2 .v2-profile-menu .dropdown-item {
    font-size: .85rem;
    color: #343a40;
    padding: .5rem 1.1rem;
    display: flex;
    align-items: center;
}
.site-nav-v2 .v2-lang-menu .dropdown-item:hover,
.site-nav-v2 .v2-profile-menu .dropdown-item:hover { background: var(--et-primary-tint); color: var(--et-primary-strong); }
.site-nav-v2 .v2-profile-menu .dropdown-item.text-danger:hover { background: #fff5f5; color: #dc3545; }

/* Custom dropdown */
.site-nav-v2 .nav-item { position: relative; }
.site-nav-v2 .nav-dropdown {
    position: absolute; top: 100%; left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    min-width: 200px;
    padding: .65rem 0 .5rem;
    display: none; z-index: 1000;
}
.site-nav-v2 .nav-dropdown::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: .65rem;
}
.site-nav-v2 .nav-item:hover .nav-dropdown { display: block; }
.site-nav-v2 .nav-dropdown a {
    display: flex; align-items: center; gap: .5rem;
    padding: .5rem 1.1rem;
    font-size: .85rem; color: #343a40; text-decoration: none;
}
.site-nav-v2 .nav-dropdown a:hover { background: var(--et-primary-tint); color: var(--et-primary-strong); }
.site-nav-v2 .nav-dropdown .v2-divider { height: 1px; background: #e9ecef; margin: .35rem 0; }

.site-nav-v2 .has-sub { position: relative; }
.site-nav-v2 .has-sub:hover .sub-dropdown { display: block; }
.site-nav-v2 .sub-dropdown {
    position: absolute; left: 100%; top: 0;
    background: #fff; border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    min-width: 180px; padding: .5rem 0;
    display: none; z-index: 1001;
}
.site-nav-v2 .sub-dropdown a {
    display: flex; align-items: center; gap: .5rem;
    padding: .5rem 1.1rem; font-size: .85rem; color: #343a40; text-decoration: none;
}
.site-nav-v2 .sub-dropdown a:hover { background: var(--et-primary-tint); color: var(--et-primary-strong); }
.site-nav-v2 button.submenu-arrow {
    background: none; border: none; cursor: pointer; width: 100%;
    display: flex; align-items: center; gap: .5rem;
    padding: .5rem 1.1rem; font-size: .85rem; color: #343a40; text-decoration: none;
}
.site-nav-v2 button.submenu-arrow:hover { background: var(--et-primary-tint); color: var(--et-primary-strong); }
.site-nav-v2 .submenu-arrow::after { content: '›'; margin-left: auto; color: #adb5bd; }

/* ── Kayak Zone: white header ──
   Epic Tours' navbar is dark with light text. Kayak Zone keeps its current white header, so these
   rules turn the text and icon colours dark. Kept as one block so the rules above stay comparable
   with Epic Tours' siteV2.css. */
.site-nav-v2 {
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 12px rgba(var(--et-dark-rgb), .06);
}
.site-nav-v2 .navbar-brand img { height: 48px; width: auto; display: block; }
.site-nav-v2 .nav-link { color: rgba(var(--et-dark-rgb), .82); font-weight: 600; }
.site-nav-v2 .nav-link:hover,
.site-nav-v2 .nav-item:hover > .nav-link,
.site-nav-v2 .nav-item:focus-within > .nav-link { color: var(--et-primary-strong); }
.site-nav-v2 .navbar-toggler { color: var(--et-dark); }
.nav-icon-btn-v2 { background: #f1f3f5; color: #343a40; }
.nav-icon-btn-v2:hover { background: var(--et-primary-tint); color: var(--et-primary-strong); }
.notif-dot-v2 { background: var(--et-primary); }
/* Keyboard users open the menus with Tab, not only with the mouse */
.site-nav-v2 .nav-item:focus-within .nav-dropdown { display: block; }
.site-nav-v2 .nav-dropdown .fi { width: 1.2em; border-radius: 2px; }
@media (max-width: 1199.98px) {
    /* In the collapsed menu the dropdowns open inline instead of floating over the page */
    .site-nav-v2 .navbar-collapse { padding: .5rem 0 1rem; }
    .site-nav-v2 .nav-dropdown { position: static; box-shadow: none; padding: 0 0 .25rem .75rem; min-width: 0; }
    .site-nav-v2 .nav-dropdown::before { display: none; }
}

/* ════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════ */
.v2-hero { position: relative; height: 100vh; min-height: 560px; overflow: hidden; }
.v2-hero-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1s ease;
}
.v2-hero-slide.active { opacity: 1; }
.v2-hero-slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%);
}
.v2-hero-slide:first-child::after {
    background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.72) 100%);
}
@keyframes kenBurnsV2 { from{transform:scale(1)} to{transform:scale(1.08)} }
.v2-hero-slide.active .v2-hero-bg { animation: kenBurnsV2 8s ease-out forwards; }
.v2-hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    will-change: transform;
}
.v2-hero-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff; padding: 0 1rem;
}
.v2-hero-title {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 0 2px 12px rgba(0,0,0,.4); margin-bottom: .75rem;
}
.v2-hero-sub { font-size: 1.05rem; opacity: .9; max-width: 520px; margin: 0 auto 1.75rem; }
.v2-hero-season-label {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 2rem;
    margin-bottom: .85rem;
}
.v2-btn-hero-primary {
    background: var(--et-primary-strong); color: #fff; border: none;
    border-radius: 8px; padding: .7rem 1.6rem;
    font-weight: 700; font-size: .95rem; text-decoration: none;
    display: inline-flex; align-items: center; gap: .4rem; margin: .25rem;
    transition: background .15s;
}
.v2-btn-hero-primary:hover { background: var(--et-primary-dark); color: #fff; }
.v2-btn-hero-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,.8); border-radius: 8px;
    padding: .7rem 1.6rem; font-weight: 700; font-size: .95rem;
    text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; margin: .25rem;
    transition: all .15s;
}
.v2-btn-hero-outline:hover { background: rgba(255,255,255,.15); color: #fff; }
.v2-hero-dots {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: .5rem; z-index: 3;
}
.v2-hero-dot {
    width: 24px; height: 24px; padding: 0; background: transparent; border: none;
    cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
    transition: width .2s;
}
.v2-hero-dot::before {
    content: ''; display: block;
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.4);
    transition: all .2s;
}
.v2-hero-dot.active { width: 38px; }
.v2-hero-dot.active::before { background: #fff; width: 22px; border-radius: 4px; }

/* ════════════════════════════════════════
   USP STRIP
════════════════════════════════════════ */
.v2-usp-strip { background: var(--et-primary-dark); padding: 1.25rem 0; }
.v2-usp-item { display: flex; align-items: center; gap: .6rem; color: #fff; padding: .4rem 1rem; }
.v2-usp-icon { font-size: 1.5rem; opacity: .9; flex-shrink: 0; }
.v2-usp-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem; }
.v2-usp-sub { font-size: .73rem; opacity: .9; margin-top: .1rem; }
.v2-usp-divider { width: 1px; background: rgba(255,255,255,.25); align-self: stretch; }

/* ════════════════════════════════════════
   SECTION HEADINGS
════════════════════════════════════════ */
.v2-section-title {
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.6rem; margin-bottom: .4rem;
}
.v2-section-sub { color: #5a6268; margin-bottom: 1.75rem; }

/* ════════════════════════════════════════
   EVENTS SLIDER
════════════════════════════════════════ */
.v2-events-wrap { position: relative; }
.v2-events-slider {
    display: flex; gap: 1rem; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: .5rem;
}
.v2-events-slider::-webkit-scrollbar { display: none; }
.v2-event-card {
    /* Contains the absolutely positioned .visually-hidden price label, which would
       otherwise escape the slider's scroll clip and widen the page. */
    position: relative;
    min-width: 280px; scroll-snap-align: start;
    border-radius: 12px; overflow: hidden;
    background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08);
    text-decoration: none; color: inherit; transition: transform .2s;
    display: flex; flex-direction: column;
}
.v2-event-card:hover { transform: translateY(-4px); color: inherit; }
.v2-event-card__img { height: 180px; object-fit: cover; width: 100%; transition: transform .4s; display: block; }
.v2-event-card:hover .v2-event-card__img { transform: scale(1.04); }
.v2-event-card__body { padding: .9rem 1rem; flex: 1; display: flex; flex-direction: column; }
.v2-event-card__tag {
    font-size: .72rem; font-weight: 700; color: var(--et-primary-strong);
    text-transform: uppercase; letter-spacing: .05em;
    display: flex; align-items: center; gap: .35rem; flex-wrap: wrap;
    margin-bottom: .3rem;
}
.v2-event-card__badge {
    font-size: .65rem; font-weight: 700; padding: .18em .55em;
    border-radius: 4px; text-transform: uppercase; letter-spacing: .03em;
}
.v2-badge-new { background: #b45309; color: #fff; }
.v2-badge-full { background: #dc3545; color: #fff; }
.v2-badge-confirmed { background: #0e7490; color: #fff; }
.v2-badge-weekday { background: #4f46e5; color: #fff; }
/* Kayak Zone: which kayak types the date offers */
.v2-badge-kayak { background: #15803d; color: #fff; }
.v2-event-card__title {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: .95rem; color: var(--et-ink); margin-bottom: .4rem;
    line-height: 1.3; flex: 1;
}
.v2-event-card__meta {
    font-size: .78rem; color: #6c757d;
    display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: .5rem;
}
.v2-event-card__bottom { margin-top: auto; }
/* Card price block: one dominant price, early birds badge above it, own transport below */
.v2-price { border-top: 1px solid #f1f3f5; padding-top: .55rem; margin-top: .15rem; }
.v2-price__eb {
    display: inline-block;
    font-size: .7rem; font-weight: 700; line-height: 1.4; white-space: nowrap;
    color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca;
    border-radius: 20px; padding: .1rem .5rem; margin-bottom: .3rem;
}
.v2-price__eb--hot { background: #dc2626; border-color: #dc2626; color: #fff; }
.v2-price__row { display: flex; align-items: baseline; gap: .45rem; flex-wrap: wrap; }
/* Deadline sits in the free space right of the price, so the badge above always fits on one line */
.v2-price__deadline {
    margin-left: auto; display: inline-flex; align-items: center; gap: .25rem;
    font-size: .72rem; font-weight: 600; color: #b91c1c; white-space: nowrap;
}
.v2-price__deadline i { font-size: .75rem; }
.v2-price__deadline--hot { font-weight: 700; color: #dc2626; }
.v2-price__now { font-size: 1.35rem; font-weight: 800; color: var(--et-primary); line-height: 1.1; letter-spacing: -.01em; }
.v2-price__was { font-size: .88rem; color: #6b7280; text-decoration: line-through; font-weight: 400; }
.v2-price__own { display: flex; align-items: center; gap: .35rem; font-size: .75rem; color: #4b5563; margin-top: .25rem; }
.v2-price__own i { color: #9ca3af; font-size: .8rem; }
.v2-price__own b { font-weight: 700; color: #374151; }
.v2-price--full .v2-price__now { color: #6b7280; }
.v2-spots {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-top: .4rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .02em;
}
.v2-spots__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.v2-spots--own-only { color: #6c757d; gap: .35rem; }
.v2-spots--own-only i { font-size: .8rem; flex-shrink: 0; }
.v2-spots--ok     { color: #6c757d; }
.v2-spots--ok     .v2-spots__dot { background: #adb5bd; }
.v2-spots--low    { color: #b45309; }
.v2-spots--low    .v2-spots__dot { background: #f59e0b; }
.v2-spots--urgent { color: #c0392b; }
.v2-spots--urgent .v2-spots__dot {
    background: #e74c3c;
    animation: spots-pulse 1.2s ease-in-out infinite;
}
@keyframes spots-pulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.5); opacity: .6; }
}
.v2-event-card__difficulty {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .35rem;
}
.v2-difficulty-track {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.v2-diff-seg {
    width: 14px;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    transition: background .2s;
}
.v2-difficulty-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #6c757d;
}

.v2-slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px; border-radius: 50%;
    background: #fff; border: 1.5px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    z-index: 2; font-size: 1.1rem; color: #495057;
}
.v2-slider-btn:hover { border-color: var(--et-primary-strong); color: var(--et-primary-strong); }
.v2-slider-btn-prev { left: -18px; }
.v2-slider-btn-next { right: -18px; }

/* ════════════════════════════════════════
   BY SEASON
════════════════════════════════════════ */
.v2-season-card {
    position: relative; border-radius: 12px; overflow: hidden;
    height: 200px; cursor: pointer; text-decoration: none; display: block;
}
.v2-season-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.v2-season-card:hover img { transform: scale(1.07); }
.v2-season-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
}
.v2-season-card__label {
    position: absolute; bottom: .9rem; left: 1rem;
    color: #fff; z-index: 1;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* ════════════════════════════════════════
   FEATURED PROGRAM
════════════════════════════════════════ */
.v2-featured-section {
    position: relative; min-height: 420px;
    display: flex; align-items: center; overflow: hidden;
}
.v2-featured-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2-featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 100%);
}
.v2-featured-content { position: relative; z-index: 1; color: #fff; max-width: 520px; }
.v2-featured-badge {
    display: inline-block; background: var(--et-primary-strong); color: #fff;
    font-size: .72rem; font-weight: 800; padding: .25rem .75rem;
    border-radius: 20px; letter-spacing: .07em; margin-bottom: .75rem;
}
.v2-featured-title {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: 2rem; margin-bottom: .75rem;
}
.v2-featured-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .83rem; opacity: .9; margin-bottom: 1rem; }

/* ════════════════════════════════════════
   BLOG
════════════════════════════════════════ */
.v2-blog-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06); height: 100%;
    text-decoration: none; color: inherit; transition: transform .2s; display: block;
}
.v2-blog-card:hover { transform: translateY(-3px); color: inherit; }
.v2-blog-card__img { height: 180px; object-fit: cover; width: 100%; }
.v2-blog-card__body { padding: 1rem; }
.v2-blog-card__tag {
    font-size: .72rem; font-weight: 700; color: var(--et-primary-strong);
    text-transform: uppercase; letter-spacing: .05em;
}
.v2-blog-card__title {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: .95rem; margin: .4rem 0 .5rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.v2-blog-card__meta { font-size: .75rem; color: #6c757d; }

/* ════════════════════════════════════════
   REVIEWS
════════════════════════════════════════ */
.v2-reviews-section { background: var(--et-dark); padding: 4rem 0; color: #fff; }
.v2-review-slide { display: none; text-align: center; max-width: 680px; margin: 0 auto; }
.v2-review-slide.active { display: block; }
.v2-review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; }
.v2-review-text {
    font-size: 1rem; line-height: 1.7; opacity: .9;
    font-style: italic; margin-bottom: 1.25rem;
    display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.v2-review-date { font-size: .78rem; opacity: .55; margin-top: .2rem; }
.v2-review-dots { display: flex; gap: .4rem; justify-content: center; margin-top: 1.5rem; }
.v2-review-dot {
    width: 24px; height: 24px; padding: 0; background: transparent; border: none;
    cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.v2-review-dot::before {
    content: ''; display: block;
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,.3);
    transition: background .2s;
}
.v2-review-dot.active::before { background: #fff; }

/* ════════════════════════════════════════
   BY COUNTRY
════════════════════════════════════════ */
.v2-country-card {
    background: #fff; border-radius: 10px; border: 1.5px solid #e9ecef;
    padding: .85rem 1rem; display: flex; align-items: center; gap: .65rem;
    text-decoration: none; color: #212529; transition: all .15s;
}
.v2-country-card:hover { border-color: var(--et-primary-strong); color: var(--et-primary-strong); }
.v2-country-flag { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.v2-country-name { font-weight: 600; font-size: .88rem; flex: 1; }
.v2-country-count { font-size: .75rem; color: #6c757d; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 575px) {
    .v2-usp-strip .d-flex {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start !important;
    }
    .v2-usp-item { width: 100%; padding: .55rem 1.25rem; }
    .v2-usp-divider { display: none !important; }
}

/* ════════════════════════════════════════
   FOOTER V2
════════════════════════════════════════ */
.v2-footer {
    background: var(--et-dark);
    color: rgba(255,255,255,.7);
    font-size: .82rem;
    padding: 2.5rem 0 1.5rem;
}
.v2-footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
}
.v2-footer-brand span { color: var(--et-primary); }
.v2-footer a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    display: block;
    padding: .18rem 0;
    transition: color .15s;
}
.v2-footer a:hover { color: #fff; }
.v2-footer-head {
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: .65rem;
}
.v2-footer-social a {
    display: inline-block;
    padding: 0;
    margin-right: .5rem;
    font-size: 1.15rem;
    color: rgba(255,255,255,.6);
}
.v2-footer-social a:hover { color: #fff; }
/* Kayak Zone: the footer brand is the logo image rather than Epic Tours' text wordmark */
.v2-footer-brand img { height: 40px; width: auto; display: block; }
.v2-footer-copy {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    font-size: .75rem;
    color: rgba(255,255,255,.6);
}
.v2-see-all-btn.btn-outline-success { --bs-btn-color: var(--et-primary-dark); --bs-btn-border-color: var(--et-primary-dark); }

/* ── Back to top ───────────────────────────────────────────────── */
.back-top {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    padding: .45rem 1.1rem;
    background: rgba(18, 18, 18, .78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .04em;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s, transform .2s, box-shadow .2s;
    z-index: 1050;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.back-top i {
    font-size: 1rem;
    line-height: 1;
}
.back-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    background: rgba(30, 30, 30, .9);
}

/* ════════════════════════════════════════
   UPCOMING EVENTS PAGE
════════════════════════════════════════ */

/* Grid variant: overrides slider min-width */
.v2-event-card--grid { min-width: 0; max-width: none; width: 100%; height: 100%; }

/* Image-based hero */
.v2-events-hero {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--et-ink);
}
.v2-events-hero__bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 60%;
    opacity: .55;
}
.v2-events-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 100%);
}
.v2-events-hero__content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 1.5rem; color: #fff;
}
.v2-events-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: .4rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.v2-events-hero__sub { opacity: .85; font-size: .95rem; margin: 0; text-shadow: 0 1px 4px rgba(0,0,0,.4); }

/* Page section */
.v2-events-layout { padding: 2rem 0 4rem; }

/* Kayak Zone: floating month jump menu on the upcoming events page */
.v2-month-nav { position: fixed; right: 1rem; bottom: 1.5rem; z-index: 1025; /* under the cookie banner (1030) */ display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.v2-month-nav__toggle {
    width: 50px; height: 50px; border-radius: 50%; border: none;
    background: var(--et-primary-strong); color: #fff; font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(var(--et-dark-rgb), .25);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.v2-month-nav__toggle:hover { background: var(--et-primary-dark); }
.v2-month-nav__menu {
    background: #fff; border-radius: 12px; overflow: hidden; min-width: 150px;
    box-shadow: 0 8px 32px rgba(var(--et-dark-rgb), .18);
}
.v2-month-nav__link { display: block; padding: .55rem 1rem; font-size: .88rem; color: #343a40; text-decoration: none; text-transform: capitalize; }
.v2-month-nav__link:hover { background: var(--et-primary-tint); color: var(--et-primary-strong); }
/* Keep the jump button clear of the back-to-top button */
.v2-page:has(.v2-month-nav) .back-top { bottom: 5.5rem; }

/* ── SIDEBAR FILTER ── */
.v2-sidebar-filter { position: sticky; top: 72px; }
.v2-sidebar-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--et-border-tint);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.v2-sidebar-card__header {
    display: flex; align-items: center; gap: .5rem;
    padding: .75rem 1.1rem;
    font-weight: 700; font-size: .875rem;
    color: var(--et-ink);
    border-bottom: 1px solid var(--et-border-tint);
    background: var(--et-primary-tint);
}
.v2-sidebar-card__header i { color: var(--et-primary); }
.v2-sidebar-card__body { padding: 1rem 1.1rem; }
.v2-sidebar-card__footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: .75rem 1.1rem;
    border-top: 1px solid var(--et-border-tint);
}
.v2-sidebar-section-title {
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: #6c757d; margin-bottom: .6rem;
}
.v2-sidebar-divider { border: none; border-top: 1px solid #e9ecef; margin: .85rem 0; }
.v2-sidebar-select {
    width: 100%; font-size: .85rem;
    padding: .4rem .65rem; border-radius: 8px;
    border: 1.5px solid #dee2e6; color: #374151;
    outline: none; cursor: pointer; background: #fff;
    transition: border-color .15s;
}
.v2-sidebar-select:focus { border-color: var(--et-primary); }
.v2-sidebar-check {
    display: flex; align-items: center; gap: .5rem;
    padding: .3rem 0; cursor: pointer; font-size: .85rem;
    color: #374151; width: 100%;
}
.v2-sidebar-check input[type=radio],
.v2-sidebar-check input[type=checkbox] {
    accent-color: var(--et-primary); cursor: pointer;
    width: 15px; height: 15px; flex-shrink: 0;
}
.v2-sidebar-check span:first-of-type { flex: 1; }
.v2-sidebar-count { font-size: .73rem; color: #adb5bd; margin-left: auto; }
.v2-sidebar-btn-apply {
    background: var(--et-primary-strong); color: #fff; border: none;
    border-radius: 8px; padding: .45rem 1.1rem;
    font-weight: 700; font-size: .85rem; cursor: pointer;
    transition: background .15s;
}
.v2-sidebar-btn-apply:hover { background: var(--et-primary-dark); }
.v2-sidebar-btn-clear {
    background: none; border: none; color: #6c757d;
    font-size: .82rem; cursor: pointer; padding: 0;
    text-decoration: underline; transition: color .15s;
}
.v2-sidebar-btn-clear:hover { color: #dc2626; }

/* ── DESKTOP FILTER TOOLBAR ── */
.v2-filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--et-border-tint);
    position: sticky;
    top: var(--v2-nav-h);
    z-index: 900;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    padding: .6rem 0;
}
.v2-filter-toolbar-inner {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

/* Chip rows */
.v2-filter-chips {
    display: flex;
    gap: .4rem;
    overflow-x: auto;
    flex: 1;
    min-width: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.v2-filter-chips::-webkit-scrollbar { display: none; }

/* Chip base */
.v2-chip {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .32rem .85rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 500;
    border: 1.5px solid #dee2e6;
    background: #fff;
    color: #495057;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .15s;
    text-decoration: none;
}
.v2-chip:hover { border-color: var(--et-primary-strong); color: var(--et-primary-strong); background: var(--et-primary-tint); }
.v2-chip--active { background: var(--et-primary-strong); border-color: var(--et-primary-strong); color: #fff; }
.v2-chip--active:hover { background: var(--et-primary-dark); border-color: var(--et-primary-dark); color: #fff; }
.v2-chip--sm { padding: .22rem .65rem; font-size: .76rem; }
.v2-chip-count { opacity: .85; font-size: .75em; }

/* Count */
.v2-filter-count { font-size: .82rem; color: #6c757d; white-space: nowrap; flex-shrink: 0; font-weight: 500; }

/* Sort group */
.v2-filter-sort-group { display: flex; align-items: center; gap: .4rem; flex-shrink: 0; }
.v2-filter-sort-select {
    font-size: .82rem; padding: .32rem .7rem;
    border-radius: 8px; border: 1.5px solid #dee2e6;
    color: #495057; outline: none; cursor: pointer; background: #fff;
    transition: border-color .15s;
}
.v2-filter-sort-select:focus { border-color: var(--et-primary); }

/* Clear */
.v2-filter-clear {
    font-size: .8rem; color: #6b7280; background: none;
    border: none; cursor: pointer; padding: 0;
    text-decoration: underline; text-decoration-style: dotted;
    flex-shrink: 0; transition: color .15s;
}
.v2-filter-clear:hover { color: #dc2626; }

/* ── TOOLBAR FILTER DROPDOWNS ── */
.v2-toolbar-sep {
    width: 1px;
    height: 22px;
    background: #dee2e6;
    flex-shrink: 0;
}

.v2-toolbar-filter-group {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
}

.v2-filter-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .32rem .85rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 500;
    border: 1.5px solid #dee2e6;
    background: #fff;
    color: #495057;
    white-space: nowrap;
    cursor: pointer;
    transition: all .15s;
    line-height: 1.4;
}
.v2-filter-dropdown-btn:hover,
.v2-filter-dropdown-btn[aria-expanded="true"] {
    border-color: var(--et-primary-strong);
    color: var(--et-primary-strong);
}
.v2-filter-dropdown-btn.v2-fdb--active {
    background: var(--et-primary-strong);
    border-color: var(--et-primary-strong);
    color: #fff;
}
.v2-filter-dropdown-btn.v2-fdb--active:hover,
.v2-filter-dropdown-btn.v2-fdb--active[aria-expanded="true"] {
    background: var(--et-primary-dark);
    border-color: var(--et-primary-dark);
    color: #fff;
}

.v2-fdb-chevron { font-size: .6rem; opacity: .65; transition: transform .15s; }
.v2-filter-dropdown-btn[aria-expanded="true"] .v2-fdb-chevron { transform: rotate(180deg); }

.v2-fdb-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background: rgba(255,255,255,.25);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1;
}

/* Dropdown panel */
.v2-filter-dropdown-panel {
    padding: .6rem;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.1) !important;
    min-width: 220px;
    margin-top: .4rem !important;
}

/* Month grid */
.v2-dropdown-month-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .1rem;
}
.v2-dropdown-month-btn--all {
    grid-column: 1 / -1;
}
.v2-dropdown-month-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: .38rem .65rem;
    font-size: .8rem;
    border: none;
    background: none;
    color: #374151;
    border-radius: 7px;
    cursor: pointer;
    transition: background .1s, color .1s;
    white-space: nowrap;
}
.v2-dropdown-month-btn:hover { background: #f3f4f6; color: var(--et-primary-strong); }
.v2-dropdown-month-btn.active { background: var(--et-primary-tint); color: var(--et-primary-strong); font-weight: 600; }

/* Difficulty/Duration chip grid in dropdown */
.v2-dropdown-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
}
.v2-dropdown-chip {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .28rem .65rem;
    border-radius: 14px;
    font-size: .78rem;
    font-weight: 500;
    border: 1.5px solid #dee2e6;
    background: #fff;
    color: #495057;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}
.v2-dropdown-chip:hover { border-color: var(--et-primary-strong); color: var(--et-primary-strong); background: var(--et-primary-tint); }
.v2-dropdown-chip.active { background: var(--et-primary-strong); border-color: var(--et-primary-strong); color: #fff; }
.v2-dropdown-chip.active .v2-chip-count { opacity: .8; }

/* Difficulty sub-row */
.v2-filter-diff-row {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
    padding: .5rem 0 .25rem;
    border-top: 1px solid #f3f4f6;
    margin-top: .3rem;
}
.v2-filter-diff-label {
    font-size: .72rem; font-weight: 700; color: #9ca3af;
    text-transform: uppercase; letter-spacing: .07em; flex-shrink: 0;
}

/* ── MOBILE CONTROLS ── */
.v2-mobile-controls {
    background: #fff;
    border-bottom: 1px solid var(--et-border-tint);
    position: sticky;
    top: var(--v2-nav-h);
    z-index: 900;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.v2-mobile-controls__row1 {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .75rem .4rem;
    border-bottom: 1px solid #f5f5f5;
}
.v2-mobile-filter-btn {
    display: flex; align-items: center; gap: .4rem;
    border: 1.5px solid #dee2e6; background: #fff; border-radius: 8px;
    padding: .38rem .85rem; font-size: .83rem; font-weight: 600; color: #495057;
    cursor: pointer; flex-shrink: 0; transition: all .12s;
}
.v2-mobile-filter-btn.has-filters { border-color: var(--et-primary-strong); color: var(--et-primary-strong); }
.v2-filter-badge {
    background: var(--et-primary-strong); color: #fff;
    font-size: .65rem; font-weight: 800;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.v2-mobile-sort-select {
    flex: 1; font-size: .83rem; padding: .38rem .6rem; border-radius: 8px;
    border: 1.5px solid #dee2e6; color: #495057; outline: none;
    background: #fff; cursor: pointer; transition: border-color .15s;
}
.v2-mobile-sort-select:focus { border-color: var(--et-primary); }
.v2-mobile-controls__row2 {
    display: flex; align-items: center;
    padding: .45rem .75rem .5rem;
    overflow-x: auto; gap: .4rem;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.v2-mobile-controls__row2::-webkit-scrollbar { display: none; }

/* ── FILTER BOTTOM SHEET ── */
.v2-sheet-backdrop {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.45); z-index: 1060;
    backdrop-filter: blur(2px);
}
.v2-sheet-backdrop.open { display: block; }
.v2-filter-sheet {
    position: fixed; left: 0; right: 0; bottom: 0;
    background: #fff; border-radius: 18px 18px 0 0;
    z-index: 1061;
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.32,.72,0,1);
    max-height: 80vh; display: flex; flex-direction: column;
}
.v2-filter-sheet.open { transform: translateY(0); }
.v2-filter-sheet__handle {
    width: 36px; height: 4px; background: #dee2e6;
    border-radius: 2px; margin: .75rem auto .25rem; flex-shrink: 0;
}
.v2-filter-sheet__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: .4rem 1.1rem .75rem; border-bottom: 1px solid #f0f0f0; flex-shrink: 0;
}
.v2-filter-sheet__title {
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem;
}
.v2-filter-sheet__close {
    width: 32px; height: 32px; border-radius: 50%; border: none;
    background: #f0f0f0; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; color: #495057;
}
.v2-filter-sheet__body { overflow-y: auto; padding: 1rem 1.1rem; flex: 1; }
.v2-filter-sheet__section {
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .07em; color: #5a6268; margin: 1rem 0 .5rem;
}
.v2-filter-sheet__section:first-child { margin-top: 0; }
.v2-sheet-chip-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .5rem; }
.v2-sheet-chip {
    display: flex; align-items: center; gap: .3rem;
    padding: .38rem .8rem; border-radius: 20px; font-size: .82rem; font-weight: 500;
    border: 1.5px solid #dee2e6; background: #fff; color: #495057;
    cursor: pointer; transition: all .12s; white-space: nowrap;
}
.v2-sheet-chip.active { background: var(--et-primary-strong); border-color: var(--et-primary-strong); color: #fff; }
.v2-filter-sheet__footer {
    display: flex; gap: .65rem; padding: .85rem 1.1rem;
    border-top: 1px solid #f0f0f0; flex-shrink: 0;
}
.v2-sheet-btn-apply {
    flex: 1; background: var(--et-primary-strong); color: #fff; border: none;
    border-radius: 10px; padding: .7rem; font-weight: 700; font-size: .9rem; cursor: pointer;
    transition: background .15s;
}
.v2-sheet-btn-apply:hover { background: var(--et-primary-dark); }
.v2-sheet-btn-reset {
    background: none; border: 1.5px solid #dee2e6; color: #6c757d;
    border-radius: 10px; padding: .7rem 1rem; font-size: .85rem; cursor: pointer;
    transition: border-color .15s;
}
.v2-sheet-btn-reset:hover { border-color: #dc2626; color: #dc2626; }

/* ── MONTH DIVIDER ── */
.v2-month-divider {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
}
.v2-month-divider:first-of-type { margin-top: 0; }
.v2-month-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--et-primary); flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(var(--et-primary-rgb),.2);
}
.v2-month-divider__name {
    font-size: 1rem; font-weight: 700; color: var(--et-ink); text-transform: capitalize;
    white-space: nowrap;
}
.v2-month-divider__count {
    font-size: .75rem; color: #495057;
    background: #e9ecef; border-radius: 20px;
    padding: .15em .65em; font-weight: 600; white-space: nowrap;
}
.v2-month-divider__line { flex: 1; margin: 0; opacity: .2; border-color: #6c757d; }

/* Empty state */
.v2-events-empty {
    text-align: center;
    padding: 5rem 1rem;
}
.v2-events-empty__icon { font-size: 3rem; color: #d1d5db; margin-bottom: 1rem; }
.v2-events-empty__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: .4rem;
}
.v2-events-empty p { color: #6b7280; font-size: .9rem; margin: 0; }

/* ── No-dates card ── */
.v2-event-card--no-dates .v2-event-card__img { filter: grayscale(30%); }
.v2-no-dates-label { font-size: .78rem; color: #6b7280; font-style: italic; }
.v2-no-dates-section-title {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b7280;
    margin: 2rem 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #e5e7eb;
}

/* ════════════════════════════════════════
   PAYMENT RESULT PAGES
════════════════════════════════════════ */
.v2-payment-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

/* Icon circle */
.v2-payment-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin: 0 auto 1.75rem;
    flex-shrink: 0;
}
.v2-payment-icon--success {
    background: #dcfce7;
    color: var(--et-primary-strong);
    box-shadow: 0 0 0 8px rgba(var(--et-primary-rgb),.1);
}
.v2-payment-icon--cancelled {
    background: #fef9c3;
    color: #b45309;
    box-shadow: 0 0 0 8px rgba(180,83,9,.08);
}

/* Title */
.v2-payment-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: #111;
    margin-bottom: .5rem;
}

/* Lead text */
.v2-payment-lead {
    font-size: 1.05rem;
    color: #374151;
    margin-bottom: .5rem;
}

/* Sub text */
.v2-payment-sub {
    font-size: .92rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Info card (used on both pages) */
.v2-payment-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    padding: 1.4rem 1.6rem;
    margin-bottom: 1.5rem;
    text-align: left;
}
.v2-payment-card__head {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: #111;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.v2-payment-card__head i { font-size: 1.1rem; }

/* Steps list (success page) */
.v2-payment-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.v2-payment-steps li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .92rem;
    color: #374151;
}
.v2-payment-steps__num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--et-primary-strong);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Bank table */
.v2-bank-table {
    width: 100%;
    font-size: .9rem;
    border-collapse: collapse;
}
.v2-bank-table td {
    padding: .4rem 0;
    vertical-align: top;
}
.v2-bank-table td:first-child {
    color: #6b7280;
    white-space: nowrap;
    padding-right: 1.2rem;
    width: 1%;
}
.v2-bank-table td:last-child { font-weight: 600; color: #111; word-break: break-all; }
.v2-bank-table tr + tr td { border-top: 1px solid #f3f4f6; }

/* Contact line */
.v2-payment-contact {
    font-size: .9rem;
    color: #6b7280;
    margin-bottom: 1.75rem;
}
.v2-payment-contact a { color: var(--et-primary-strong); font-weight: 500; text-decoration: none; }
.v2-payment-contact a:hover { text-decoration: underline; }

/* CTA buttons */
.v2-btn-payment-primary {
    background: var(--et-primary-strong);
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: .65rem 2rem;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.v2-btn-payment-primary:hover {
    background: var(--et-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}
.v2-btn-payment-outline {
    background: transparent;
    color: #374151;
    border: 1.5px solid #d1d5db;
    border-radius: 2rem;
    padding: .65rem 2rem;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    text-decoration: none;
    transition: border-color .2s, color .2s, transform .15s;
}
.v2-btn-payment-outline:hover {
    border-color: var(--et-primary-strong);
    color: var(--et-primary-strong);
    transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
    .back-top { display: none !important; }
}

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */

/* Hero */
.ab-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.ab-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ab-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
}
.ab-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 0 3.5rem;
    color: #fff;
    width: 100%;
}
.ab-hero__tag {
    display: inline-block;
    background: var(--et-primary-strong);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .3rem .75rem;
    border-radius: 6px;
    margin-bottom: .85rem;
}
.ab-hero__title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: .75rem;
    max-width: 640px;
}
.ab-hero__sub {
    font-size: 1rem;
    opacity: .85;
    max-width: 520px;
    line-height: 1.65;
    margin: 0;
}

/* Section common */
.ab-section { padding: 5rem 0; }
.ab-section--soft { background: #f9fafb; }
.ab-section-label {
    color: var(--et-primary-strong);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}
.ab-section-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #111827;
}
.ab-section-body {
    font-size: .97rem;
    color: #374151;
    line-height: 1.8;
}

/* Mission */
.ab-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.ab-mission-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.ab-mission-imgs img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}
.ab-mission-imgs img:first-child {
    grid-row: span 2;
    height: 360px;
}
.ab-mission-imgs img:not(:first-child) { height: 170px; }
.ab-highlight {
    background: rgba(var(--et-primary-rgb),.07);
    border-left: 3px solid var(--et-primary);
    padding: .85rem 1.1rem;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #374151;
    font-size: .95rem;
    line-height: 1.7;
    margin: 1.5rem 0;
}

/* Stats bar */
.ab-stats-bar {
    background: var(--et-dark);
    color: #fff;
    padding: 4rem 0;
}
.ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.ab-stat-num {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--et-primary);
    line-height: 1;
}
.ab-stat-label {
    font-size: .92rem;
    opacity: .75;
    margin-top: .35rem;
}

/* Story timeline */
.ab-timeline {
    position: relative;
    padding-left: 2rem;
}
.ab-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}
.ab-timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}
.ab-timeline-item:last-child { margin-bottom: 0; }
.ab-timeline-dot {
    position: absolute;
    left: -2rem;
    top: .2rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ab-timeline-dot--active {
    border-color: var(--et-primary);
    background: var(--et-primary);
}
.ab-timeline-dot--active::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}
.ab-timeline-year {
    color: var(--et-primary-strong);
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: .3rem;
}
.ab-timeline-heading {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .4rem;
    color: #111827;
}
.ab-timeline-desc {
    font-size: .9rem;
    color: #374151;
    line-height: 1.7;
}

/* Activities grid */
.ab-activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.ab-activity-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    display: block;
    text-decoration: none;
    transition: transform .2s;
}
.ab-activity-card:hover { transform: translateY(-3px); }
.ab-activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.ab-activity-card:hover img { transform: scale(1.07); }
.ab-activity-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
}
.ab-activity-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    color: #fff;
    z-index: 1;
}
.ab-activity-card__name { font-weight: 700; font-size: 1rem; margin-bottom: .15rem; }
.ab-activity-card__count { font-size: .8rem; opacity: .8; }
.ab-activity-card__tag {
    position: absolute;
    top: .9rem;
    right: .9rem;
    z-index: 1;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: .75rem;
    padding: .25rem .6rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.3);
}

/* License strip */
.ab-license-strip {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 2.5rem 0;
}
.ab-license-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.ab-license-badge {
    width: 72px;
    height: 72px;
    background: #fff;
    border: 2px solid var(--et-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
}
.ab-license-text h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .25rem; color: #111827; }
.ab-license-text p { font-size: .87rem; color: #6b7280; line-height: 1.6; margin: 0; }
.ab-license-numbers {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    flex-wrap: wrap;
}
.ab-lic-val { font-weight: 800; font-size: 1.05rem; color: var(--et-primary-strong); }
.ab-lic-label { font-size: .75rem; color: #6b7280; }

/* CTA section */
.ab-cta {
    padding: 5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--et-dark), var(--et-dark-2));
    color: #fff;
}
.ab-cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: .75rem; }
.ab-cta p { font-size: 1rem; opacity: .75; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.ab-cta-btn-primary {
    background: var(--et-primary-strong);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: .9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .15s;
}
.ab-cta-btn-primary:hover { background: var(--et-primary-dark); color: #fff; }
.ab-cta-btn-ghost {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 12px;
    padding: .9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .15s;
}
.ab-cta-btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Responsive */
@media (max-width: 991.98px) {
    .ab-mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .ab-activities-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .ab-hero { height: 440px; }
    .ab-hero__title { font-size: 2rem; }
    .ab-license-numbers { margin-left: 0; }
}
@media (max-width: 575.98px) {
    .ab-activities-grid { grid-template-columns: 1fr; }
    .ab-hero { height: 380px; }
    .ab-hero__title { font-size: 1.75rem; }
    .ab-section { padding: 3.5rem 0; }
}

/* ══════════════════════════════════════════
   Team / Guides page  (.tm-*)
══════════════════════════════════════════ */

/* Hero */
.tm-hero {
    background: linear-gradient(135deg, var(--et-dark) 0%, var(--et-dark-2) 100%);
    padding: 4rem 1.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.tm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/about/epic_tours_trekking.webp') center/cover no-repeat;
    opacity: .18;
}
.tm-hero-inner { position: relative; z-index: 1; }
.tm-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: .75rem; }
.tm-hero p { font-size: 1.05rem; opacity: .8; max-width: 560px; margin: 0 auto 1.5rem; line-height: 1.65; }
.tm-hero-stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.tm-h-stat { text-align: center; }
.tm-h-stat-num { font-size: 2rem; font-weight: 800; }
.tm-h-stat-label { font-size: .85rem; opacity: .7; }

/* Wrap */
.tm-wrap { max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }

/* Filter tabs */
.tm-filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.tm-filter-tab {
    padding: .55rem 1.2rem;
    border-radius: 20px;
    border: 1.5px solid #e5e7eb;
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    color: #6b7280;
    transition: all .15s;
}
.tm-filter-tab:hover { border-color: var(--et-primary-strong); color: var(--et-primary-strong); }
.tm-filter-tab.active { background: var(--et-primary-strong); border-color: var(--et-primary-strong); color: #fff; }

/* Featured guide */
.tm-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    margin-bottom: 2.5rem;
}
.tm-featured__photo { position: relative; min-height: 400px; overflow: hidden; }
.tm-featured__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.tm-owner-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--et-primary-strong);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: .35rem .8rem;
    border-radius: 20px;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.tm-featured__info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.tm-featured__role {
    color: var(--et-primary-strong);
    font-weight: 600;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .5rem;
}
.tm-featured__name { font-size: 2rem; font-weight: 800; margin-bottom: .85rem; }
.tm-featured__bio { font-size: .92rem; color: #374151; line-height: 1.75; margin-bottom: 1.5rem; }
.tm-featured__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
.tm-feat-tag {
    background: rgba(var(--et-primary-rgb),.08);
    color: var(--et-primary-dark);
    border-radius: 20px;
    padding: .3rem .75rem;
    font-size: .82rem;
    font-weight: 500;
}

/* Guides grid */
.tm-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Guide card */
.tm-guide-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    position: relative;
}
.tm-guide-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.tm-guide-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: #f9fafb;
}
.tm-guide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .4s ease;
}
.tm-guide-card:hover .tm-guide-img-wrap img { transform: scale(1.06); }

/* CSS hover overlay */
.tm-guide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--et-dark-rgb),.92) 0%, rgba(var(--et-dark-rgb),.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity .3s;
}
.tm-guide-card:hover .tm-guide-overlay { opacity: 1; }
.tm-overlay-bio { color: rgba(255,255,255,.9); font-size: .84rem; line-height: 1.6; }

.tm-guide-body { padding: 1.1rem 1.25rem 1.25rem; }
.tm-guide-name { font-weight: 700; font-size: 1.05rem; margin-bottom: .2rem; }
.tm-guide-role { font-size: .82rem; color: var(--et-primary-strong); font-weight: 600; margin-bottom: .5rem; }
.tm-guide-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.tm-guide-tag {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: .18rem .6rem;
    font-size: .74rem;
    color: #6b7280;
}

/* Values strip */
.tm-values-strip {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 3rem 1.5rem;
}
.tm-values-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.tm-values-inner h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 2rem; color: #1a1a1a; }
.tm-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.tm-value-item { text-align: center; }
.tm-value-icon { font-size: 2rem; margin-bottom: .6rem; }
.tm-value-title { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; color: #1a1a1a; }
.tm-value-desc { font-size: .83rem; color: #6b7280; line-height: 1.55; }

/* Join CTA */
.tm-join-cta {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
    background: linear-gradient(135deg, var(--et-dark), var(--et-dark-2));
    border-radius: 20px;
    padding: 3rem 2rem;
    color: #fff;
}
.tm-join-cta h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .6rem; }
.tm-join-cta p { opacity: .75; margin-bottom: 1.5rem; line-height: 1.65; }
.tm-join-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--et-primary-strong);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .85rem 1.75rem;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
}
.tm-join-btn:hover { background: var(--et-primary-dark); color: #fff; }

/* Profile button */
.tm-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: .75rem;
    background: none;
    border: none;
    padding: 0;
    font-size: .82rem;
    font-weight: 600;
    color: var(--et-primary-strong);
    cursor: pointer;
    text-decoration: none;
    transition: color .15s;
}
.tm-profile-btn:hover { color: var(--et-primary-dark); }
.tm-featured__profile-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: none;
    border: 1.5px solid var(--et-primary);
    border-radius: 8px;
    padding: .5rem 1rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--et-primary-strong);
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
}
.tm-featured__profile-btn:hover { background: var(--et-primary-strong); color: #fff; }

/* Guide profile modal */
.tm-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1050;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.tm-modal-backdrop.open { display: flex; }
.tm-modal {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    display: grid;
    grid-template-columns: 280px 1fr;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.tm-modal-photo {
    position: relative;
    background: #f9fafb;
    flex-shrink: 0;
}
.tm-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.tm-modal-body {
    padding: 2rem 2rem 2rem 1.75rem;
    overflow-y: auto;
}
.tm-modal-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .15s;
}
.tm-modal-close:hover { background: rgba(0,0,0,.7); }
.tm-modal-role {
    color: var(--et-primary-strong);
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .35rem;
}
.tm-modal-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
}
.tm-modal-lines {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25rem;
}
.tm-modal-lines ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.tm-modal-lines ul li {
    font-size: .9rem;
    color: #374151;
    line-height: 1.65;
    padding-left: 1.1rem;
    position: relative;
}
.tm-modal-lines ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--et-primary);
}

/* Responsive */
@media (max-width: 991.98px) {
    .tm-guides-grid { grid-template-columns: repeat(2, 1fr); }
    .tm-featured { grid-template-columns: 1fr; }
    .tm-featured__photo { min-height: 320px; }
    .tm-values-grid { grid-template-columns: repeat(2, 1fr); }
    .tm-hero h1 { font-size: 2rem; }
    /* Modal: stack photo above body, whole modal scrolls */
    .tm-modal { grid-template-columns: 1fr; overflow-y: auto; }
    .tm-modal-photo { height: 260px; }
    .tm-modal-body { overflow-y: visible; }
}
@media (max-width: 575.98px) {
    .tm-guides-grid { grid-template-columns: 1fr; }
    .tm-hero-stats { gap: 1.5rem; }
    .tm-hero h1 { font-size: 1.75rem; }
    .tm-wrap { padding: 2rem 1rem 3rem; }
    .tm-modal-body { padding: 1.5rem; }
    .tm-modal-backdrop { padding: .5rem; }
    .tm-modal { border-radius: 12px; }
}


/* ════════════════════════════════════════
   BLOG — index
════════════════════════════════════════ */
.v2-blog-hero {
    background: linear-gradient(135deg, var(--et-dark) 0%, var(--et-dark-2) 100%);
    padding: 3.5rem 1.5rem;
    text-align: center;
    color: #fff;
}
.v2-blog-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem; font-weight: 800;
    margin-bottom: .6rem; color: #fff;
}
.v2-blog-hero p {
    font-size: 1.05rem; opacity: .8;
    max-width: 640px; margin: 0 auto;
}

.v2-blog-wrap { max-width: 1140px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }

.v2-blog-tag {
    display: inline-block; align-self: flex-start;
    font-size: .7rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--et-primary-strong); background: rgba(var(--et-primary-rgb),.1);
    padding: .25rem .65rem; border-radius: 999px;
}

/* ── Featured post ── */
.v2-blog-featured {
    display: grid; grid-template-columns: 1.15fr 1fr;
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    margin-bottom: 2.5rem;
    text-decoration: none; color: inherit;
    transition: transform .2s, box-shadow .2s;
}
.v2-blog-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(0,0,0,.1);
    color: inherit;
}
.v2-blog-featured__media { position: relative; min-height: 300px; }
.v2-blog-featured__media picture,
.v2-blog-featured__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.v2-blog-featured__body {
    padding: 2rem; display: flex; flex-direction: column; justify-content: center;
}
.v2-blog-featured__title {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: 1.45rem; line-height: 1.3; color: var(--et-ink);
    margin: .75rem 0 .65rem;
}
.v2-blog-featured__excerpt {
    color: #5a6268; font-size: .95rem; line-height: 1.65; margin-bottom: 1rem;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.v2-blog-featured__meta { font-size: .8rem; color: #6b7280; margin-bottom: 1.1rem; }
.v2-blog-read {
    color: var(--et-primary-strong); font-weight: 600; font-size: .9rem;
    display: inline-flex; align-items: center; align-self: flex-start; gap: .4rem;
}

/* ════════════════════════════════════════
   BLOG — article
════════════════════════════════════════ */
.v2-article-hero {
    position: relative; background: var(--et-dark);
    min-height: 420px; display: flex; align-items: flex-end;
}
.v2-article-hero__media { position: absolute; inset: 0; }
.v2-article-hero__media picture,
.v2-article-hero__media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.v2-article-hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(var(--et-dark-rgb),.94) 0%, rgba(var(--et-dark-rgb),.6) 45%, rgba(var(--et-dark-rgb),.2) 100%);
}
.v2-article-hero__inner {
    position: relative; z-index: 1;
    max-width: 840px; padding: 3rem 0 3.5rem; color: #fff;
}
.v2-article-hero__back {
    display: inline-flex; align-items: center; gap: .4rem;
    color: rgba(255,255,255,.8); text-decoration: none;
    font-size: .82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 1rem;
}
.v2-article-hero__back:hover { color: #fff; }
.v2-article-hero h1 {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: 2.1rem; line-height: 1.25; color: #fff; margin-bottom: .85rem;
}
.v2-article-hero__excerpt {
    font-size: 1rem; line-height: 1.65; color: rgba(255,255,255,.82); margin-bottom: .9rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.v2-article-hero__meta { font-size: .85rem; color: rgba(255,255,255,.65); }

.v2-article-wrap {
    max-width: 880px; margin: -2.5rem auto 4rem;
    padding: 0 1rem; position: relative; z-index: 2;
}
.v2-article {
    background: #fff; border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    padding: 2.75rem;
}
.v2-article p { font-size: 1.02rem; line-height: 1.8; color: #374151; margin-bottom: 1.1rem; }
.v2-article h2, .v2-article h3, .v2-article h4, .v2-article h5,
.v2-article p.h4, .v2-article p.h5, .v2-article p.h6 {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    color: var(--et-ink); line-height: 1.35;
    margin-top: 2.25rem; margin-bottom: 1rem;
}
.v2-article p.h4, .v2-article h4 { font-size: 1.35rem; }
.v2-article p.h5, .v2-article h5 { font-size: 1.12rem; }
.v2-article > *:first-child { margin-top: 0; }
.v2-article a { color: var(--et-primary-strong); text-decoration: underline; text-underline-offset: 2px; }
.v2-article a:hover { color: var(--et-primary-dark); }
.v2-article ul, .v2-article ol {
    padding-left: 1.3rem; margin-bottom: 1.25rem;
    color: #374151; font-size: 1.02rem; line-height: 1.8;
}
.v2-article li { margin-bottom: .4rem; }
.v2-article strong { color: #1f2937; }
.v2-article img, .v2-article picture img { max-width: 100%; height: auto; border-radius: 10px; }
.v2-article figure { margin: 2rem 0; }
.v2-article figcaption {
    font-size: .85rem; color: #6b7280; margin-top: .65rem;
    text-align: center; font-style: italic;
}
.v2-article blockquote {
    border-left: 4px solid var(--et-primary);
    background: var(--et-primary-tint); border-radius: 0 10px 10px 0;
    padding: 1.35rem 1.5rem; margin: 2rem 0;
}
.v2-article blockquote p {
    margin: 0; font-size: 1.05rem; font-style: italic; color: var(--et-ink); line-height: 1.7;
}
.v2-article table { width: 100%; font-size: .95rem; }
.v2-article .table-responsive { margin: 1.75rem 0; }
.v2-article .table > thead { --bs-table-bg: var(--et-primary-tint); }
.v2-article table > thead > tr > th {
    color: var(--et-ink); font-weight: 700;
    font-family: 'Montserrat', sans-serif; font-size: .88rem;
}
.v2-article table th, .v2-article table td {
    border-color: #e5e7eb; padding: .65rem .8rem; vertical-align: middle;
}

/* Post markup written against the legacy theme keeps its Bootstrap colour
   classes — remap them to the Epic palette inside the article only. */
.v2-article .text-primary { color: var(--et-primary-strong) !important; }
.v2-article .bg-primary { background-color: var(--et-primary-strong) !important; }
.v2-article .text-yellow { color: rgb(247,195,46) !important; }

.v2-dropcap {
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem; font-weight: 800; line-height: 1;
    color: var(--et-primary); background: rgba(var(--et-primary-rgb),.08);
    border-radius: 8px; padding: .4rem .55rem;
    margin: .3rem .7rem 0 0;
}

.v2-article-share {
    margin-top: 2.5rem; padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}
.v2-share-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1rem; border-radius: 999px;
    background: #f3f4f6; color: #374151;
    font-size: .88rem; font-weight: 600; text-decoration: none;
    transition: background .15s, color .15s;
}
.v2-share-btn:hover { background: #1877f2; color: #fff; }
.v2-article-share .v2-share-btn { text-decoration: none; }

/* Responsive */
@media (max-width: 767.98px) {
    .v2-blog-hero { padding: 2.5rem 1.25rem; }
    .v2-blog-hero h1 { font-size: 1.7rem; }
    .v2-blog-wrap { padding: 2rem 1rem 3rem; }
    .v2-blog-featured { grid-template-columns: 1fr; }
    .v2-blog-featured__media { min-height: 200px; height: 200px; }
    .v2-blog-featured__body { padding: 1.5rem; }
    .v2-blog-featured__title { font-size: 1.2rem; }

    .v2-article-hero { min-height: 300px; }
    .v2-article-hero__inner { padding: 2rem 0 2.25rem; }
    .v2-article-hero h1 { font-size: 1.5rem; }
    .v2-article-wrap { margin-top: -1.5rem; }
    .v2-article { padding: 1.5rem; border-radius: 12px; }
    .v2-article p, .v2-article ul, .v2-article ol { font-size: .98rem; }
    .v2-article p.h4 { font-size: 1.2rem; }
    .v2-article p.h5 { font-size: 1.05rem; }
    .v2-dropcap { font-size: 2.4rem; margin-right: .55rem; }
}

/* ════════════════════════════════════════
   VOUCHERS PAGE  (.vc-*)
════════════════════════════════════════ */

/* Hero */
.vc-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.vc-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%);
}
.vc-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 0 3rem;
    color: #fff;
    width: 100%;
}
.vc-hero__tag {
    display: inline-block;
    background: var(--et-primary-strong);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .3rem .75rem;
    border-radius: 6px;
    margin-bottom: .85rem;
}
.vc-hero__title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: .75rem;
    max-width: 680px;
    color: #fff;
}
.vc-hero__sub {
    font-size: 1rem;
    opacity: .88;
    max-width: 640px;
    line-height: 1.65;
    margin: 0;
}

/* Layout */
.vc-section { padding: 4rem 0 5rem; background: #f9fafb; }
.vc-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: start;
}
.vc-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    padding: 2rem;
}

/* How it works */
.vc-label {
    color: var(--et-primary-strong);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}
.vc-intro {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
    margin-bottom: 1.5rem;
}
.vc-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.vc-steps > li {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    font-size: .97rem;
    color: #374151;
    line-height: 1.6;
}
.vc-steps__num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--et-primary-strong);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vc-checklist {
    list-style: none;
    padding: 0;
    margin: .6rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.vc-checklist li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .92rem;
    color: #4b5563;
}
.vc-checklist i { color: var(--et-primary); font-size: 1rem; line-height: 1.4; flex-shrink: 0; }

/* Form */
.vc-form-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}
.vc-form { display: flex; flex-direction: column; gap: 1.1rem; }
.vc-field { display: flex; flex-direction: column; }
.vc-field__label {
    font-size: .85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .4rem;
}
.vc-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: .7rem .9rem;
    font-size: .95rem;
    font-family: inherit;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
textarea.vc-input { resize: vertical; min-height: 120px; }
.vc-input:focus {
    border-color: var(--et-primary);
    box-shadow: 0 0 0 3px rgba(var(--et-primary-rgb),.12);
}
.vc-input.input-validation-error { border-color: #dc2626; }
.vc-input.input-validation-error:focus { box-shadow: 0 0 0 3px rgba(220,38,38,.12); }
.vc-field__error { font-size: .8rem; color: #dc2626; margin-top: .3rem; }
.vc-field__error:empty { display: none; }
.vc-submit {
    align-self: flex-start;
    background: var(--et-primary-strong);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: .85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .15s, opacity .15s;
}
.vc-submit:hover { background: var(--et-primary-dark); }
.vc-submit:disabled { opacity: .5; cursor: not-allowed; background: var(--et-primary-strong); }

@media (max-width: 991.98px) {
    .vc-grid { grid-template-columns: 1fr; }
    .vc-hero { height: 380px; }
    .vc-hero__title { font-size: 2rem; }
}
@media (max-width: 575.98px) {
    .vc-hero { height: 400px; }
    .vc-hero__title { font-size: 1.7rem; }
    .vc-hero__sub { font-size: .93rem; }
    .vc-section { padding: 2.5rem 0 3.5rem; }
    .vc-card { padding: 1.4rem; }
    .vc-submit { align-self: stretch; justify-content: center; }
    .g-recaptcha { transform: scale(.92); transform-origin: 0 0; }
}

/* ════════════════════════════════════════
   Kayak Zone: FAQ page  (.faq-*)
════════════════════════════════════════ */
.faq-hero {
    background: linear-gradient(135deg, var(--et-dark) 0%, var(--et-dark-2) 100%);
    padding: 3.5rem 1.5rem; text-align: center; color: #fff;
}
.faq-hero h1 { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 800; margin-bottom: .75rem; color: #fff; }
.faq-hero p { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }
.faq-search-wrap { position: relative; max-width: 500px; margin: 0 auto; }
.faq-search-input {
    width: 100%; padding: .85rem 1rem .85rem 2.75rem;
    border: none; border-radius: 12px; font-size: .95rem; font-family: inherit;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.faq-search-input:focus { outline: 3px solid var(--et-primary); outline-offset: 2px; }
.faq-search-icon { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); color: #6b7280; font-size: 1.1rem; }

.faq-layout {
    max-width: 1100px; margin: 3rem auto; padding: 0 1.5rem;
    display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 3rem; align-items: start;
}
.faq-sidenav { position: sticky; top: calc(var(--v2-nav-h) + 1rem); }
.faq-sidenav ul { list-style: none; padding: 0; margin: 0; }
.faq-sidenav a {
    display: flex; align-items: center; gap: .6rem;
    text-decoration: none; color: #4b5563; font-size: .9rem; font-weight: 500;
    padding: .6rem .9rem; border-radius: 9px; margin-bottom: .25rem;
    border-left: 3px solid transparent; transition: background .15s, color .15s;
}
.faq-sidenav a:hover { background: #f3f4f6; color: var(--et-ink); }
.faq-sidenav a.active {
    background: var(--et-primary-tint); color: var(--et-primary-strong);
    border-left-color: var(--et-primary); font-weight: 600;
}

.faq-section { margin-bottom: 3rem; scroll-margin-top: calc(var(--v2-nav-h) + 1rem); }
.faq-section-title {
    font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--et-ink);
    display: flex; align-items: center; gap: .65rem;
    padding-bottom: .75rem; border-bottom: 2px solid #e5e7eb;
}
.faq-section-icon {
    width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
    background: rgba(var(--et-primary-rgb),.1); color: var(--et-primary-strong);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}

.faq-item { border: 1px solid #e5e7eb; border-radius: 12px; margin-bottom: .75rem; overflow: hidden; background: #fff; }
.faq-question {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1rem 1.25rem; cursor: pointer; list-style: none;
    font-weight: 600; font-size: .95rem; color: var(--et-ink);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: #f9fafb; }
.faq-question:focus-visible { outline: 3px solid var(--et-primary); outline-offset: -3px; }
.faq-q-icon {
    width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
    background: #f9fafb; border: 1px solid #e5e7eb;
    display: flex; align-items: center; justify-content: center; font-size: .9rem;
    transition: transform .25s, background .15s;
}
.faq-item[open] .faq-question { background: var(--et-primary-tint); }
.faq-item[open] .faq-q-icon { background: var(--et-primary-strong); border-color: var(--et-primary-strong); color: #fff; transform: rotate(45deg); }
.faq-answer { padding: 1rem 1.25rem 1.25rem; border-top: 1px solid #e5e7eb; }
.faq-answer p, .faq-answer li { font-size: .9rem; color: #374151; line-height: 1.75; overflow-wrap: break-word; }
.faq-answer > :last-child { margin-bottom: 0; }
.faq-answer ul, .faq-answer ol { padding-left: 1.25rem; }
.faq-answer li { margin-bottom: .35rem; }
.faq-answer a { color: var(--et-primary-strong); }
.faq-answer .badge { color: #fff; }
.faq-answer__img { display: block; max-width: 100%; height: auto; border-radius: 10px; border: 1px solid #e5e7eb; margin-top: .6rem; }
.faq-status-list, .faq-difficulty-list { list-style: none; padding-left: 0 !important; }
.faq-status-list li, .faq-difficulty-list li { margin-bottom: .6rem; }
.faq-status-inline { display: inline-flex; margin-top: 0; font-size: .8rem; }
.faq-difficulty-level { white-space: nowrap; }
.faq-difficulty-level i { font-size: 1rem; vertical-align: -.1em; }

.faq-contact-cta {
    background: linear-gradient(135deg, var(--et-dark), var(--et-dark-2));
    color: #fff; border-radius: 16px; padding: 2.5rem; text-align: center;
}
.faq-contact-cta h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: .5rem; color: #fff; }
.faq-contact-cta p { color: rgba(255,255,255,.8); font-size: .92rem; margin-bottom: 1.5rem; }
.faq-cta-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.faq-cta-btn {
    padding: .75rem 1.5rem; border-radius: 10px; font-size: .9rem; font-weight: 600;
    text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; transition: background .15s;
}
.faq-cta-btn.primary { background: var(--et-primary-strong); color: #fff; }
.faq-cta-btn.primary:hover { background: var(--et-primary-dark); color: #fff; }
.faq-cta-btn.ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.faq-cta-btn.ghost:hover { background: rgba(255,255,255,.2); color: #fff; }

@media (max-width: 900px) {
    .faq-layout { grid-template-columns: minmax(0, 1fr); margin: 2rem auto; padding: 0 1rem; }
    .faq-sidenav { display: none; }
}
@media (max-width: 576px) {
    .faq-hero { padding: 2.5rem 1rem; }
    .faq-hero h1 { font-size: 1.7rem; }
    .faq-contact-cta { padding: 2rem 1.25rem; }
}

/* ════════════════════════════════════════
   Kayak Zone: About and Team
════════════════════════════════════════ */
.ab-services { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.ab-services li {
    display: flex; align-items: center; gap: .75rem;
    background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    padding: 1rem 1.25rem; font-weight: 600; color: var(--et-ink);
}
.ab-services i { color: var(--et-primary); font-size: 1.25rem; }
.ab-story-img { width: 100%; border-radius: 14px; object-fit: cover; }
.ab-cta p:empty { display: none; }

/* Epic Tours' hero photo does not exist here */
.tm-hero::before { background-image: url('/images/about/about-header.webp'); opacity: .25; }
.tm-hero .tm-hero__title {
    font-family: 'Montserrat', sans-serif; font-size: 2.4rem; font-weight: 800;
    line-height: 1.2; margin: 0 auto; max-width: 760px; color: #fff; opacity: 1;
}
.tm-featured__photo picture, .tm-guide-img-wrap picture { display: block; width: 100%; height: 100%; }
.tm-featured__photo img, .tm-guide-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.tm-guide-card, .tm-featured { scroll-margin-top: calc(var(--v2-nav-h) + 1rem); }
.tm-guide-card:target, .tm-featured:target { outline: 3px solid var(--et-primary); outline-offset: 3px; }
.tm-lines { padding-left: 1.1rem; margin: .5rem 0 0; }
.tm-lines li { font-size: .88rem; color: #374151; line-height: 1.6; margin-bottom: .3rem; }
.tm-featured__info .tm-lines li { font-size: .92rem; }
@media (max-width: 991.98px) {
    .tm-featured__photo { min-height: 320px; height: 360px; }
}
@media (max-width: 575.98px) {
    .tm-hero .tm-hero__title { font-size: 1.7rem; }
    .tm-featured__info { padding: 1.5rem; }
}
