/*
 * Travelin 2026 visual layer.
 * The Laravel CSS remains in the project for reference, but this file owns
 * the standalone procedural PHP experience.
 */
:root {
    --ink: #071a2f;
    --ink-2: #102b47;
    --muted: #667085;
    --muted-2: #8a97a8;
    --paper: #f6f7f3;
    --white: #ffffff;
    --line: #e4e8e3;
    --lime: #c8ff4a;
    --lime-dark: #91c51b;
    --coral: #ff735c;
    --shadow: 0 20px 55px rgba(7, 26, 47, .10);
    --radius-lg: 28px;
    --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body, input, select, button { font-family: inherit; }
a { color: inherit; }
img { max-width: 100%; }
button, input, select { font: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.row { display: flex; flex-wrap: wrap; margin-inline: -12px; }
.row > [class*="col-"] { padding-inline: 12px; }
.col-12 { width: 100%; }
.col-lg-8 { width: 66.6667%; }
.col-lg-6 { width: 50%; }
.col-lg-5 { width: 41.6667%; }
.col-lg-4 { width: 33.3333%; }
.col-lg-3 { width: 25%; }
.col-md-6 { width: 50%; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.text-center { text-align: center; }
.text-end { text-align: right; }
.py-5 { padding-block: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.me-2 { margin-right: .5rem; }
.gap-2 { gap: .5rem; }

/* Header */
.site-header {
    position: relative;
    z-index: 30;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(7,26,47,.08);
    backdrop-filter: blur(18px);
}
.site-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.04em;
}
.brand-dot, .footer-brand .brand-dot { color: var(--coral); }
.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--lime);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(200,255,74,.30);
}
.brand-mark svg { width: 21px; height: 21px; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.site-nav a {
    text-decoration: none;
    color: #526176;
    padding: 10px 13px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}
.site-nav a:hover, .site-nav a.active { color: var(--ink); background: #eef2ec; }
.header-cta {
    text-decoration: none;
    background: var(--ink);
    color: white;
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 700;
}
.header-cta span { color: var(--lime); margin-left: 4px; }

/* Hero */
.tours-hero {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(4,20,37,.97) 0%, rgba(8,35,54,.92) 50%, rgba(8,38,52,.80) 100%),
        url('../images/tour-hero.jpg') center/cover no-repeat;
    color: white;
}
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-orb { position: absolute; border-radius: 999px; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 430px; height: 430px; background: rgba(200,255,74,.12); right: -160px; top: -130px; }
.hero-orb-two { width: 280px; height: 280px; background: rgba(255,115,92,.10); left: -140px; bottom: -140px; }
.hero-container { position: relative; z-index: 2; padding-block: 80px 52px; }
.hero-copy { max-width: 780px; }
.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow { color: rgba(255,255,255,.78); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(200,255,74,.11); }
.hero-copy h1 {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 800;
    max-width: 840px;
}
.hero-copy h1 em { color: var(--lime); font-style: normal; }
.hero-copy p {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.7;
}
.hero-search-shell {
    margin-top: 42px;
    max-width: 1020px;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.17);
    background: rgba(255,255,255,.09);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0,0,0,.26);
    backdrop-filter: blur(20px);
}
.hero-search-form {
    min-height: 78px;
    display: flex;
    align-items: stretch;
    gap: 5px;
    padding: 5px;
    background: white;
    color: var(--ink);
    border-radius: 17px;
}
.search-field { display: flex; align-items: center; gap: 12px; padding: 0 18px; min-width: 0; }
.search-field-main { flex: 1.45; }
.search-field-select { flex: .8; }
.search-field .field-icon { width: 24px; color: #607084; flex: 0 0 24px; }
.field-icon svg { display: block; width: 22px; height: 22px; }
.search-field label { display: block; margin-bottom: 3px; color: #7c8795; font-size: 11px; font-weight: 700; }
.search-field input, .search-field select { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 14px; font-weight: 600; min-width: 0; }
.search-field input::placeholder { color: #9aa5b1; font-weight: 500; }
.search-field select { appearance: none; cursor: pointer; }
.search-divider { width: 1px; margin-block: 17px; background: #e7ebe6; }
.hero-search-button {
    min-width: 145px;
    border: 0;
    border-radius: 13px;
    background: var(--ink);
    color: white;
    cursor: pointer;
    font-weight: 800;
    font-size: 14px;
    transition: transform .2s ease, background .2s ease;
}
.hero-search-button span { color: var(--lime); margin-left: 6px; }
.hero-search-button:hover { transform: translateY(-2px); background: #102c48; }
.hero-trust-row { display: flex; align-items: center; gap: 17px; margin-top: 24px; color: rgba(255,255,255,.53); font-size: 12px; }
.hero-trust-row strong { color: rgba(255,255,255,.84); }
.trust-separator { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.28); }

/* Filters */
.filter-section { position: relative; z-index: 5; margin-top: -1px; padding-top: 20px; background: var(--paper); }
.filter-drawer { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.82); box-shadow: 0 10px 35px rgba(7,26,47,.05); overflow: hidden; }
.filter-drawer summary { list-style: none; cursor: pointer; min-height: 62px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--ink); font-size: 13px; font-weight: 800; }
.filter-drawer summary::-webkit-details-marker { display: none; }
.summary-icon { display: inline-grid; place-items: center; width: 29px; height: 29px; margin-right: 8px; border-radius: 9px; background: #edf2e8; }
.summary-right { color: #8290a0; font-size: 12px; font-weight: 600; }
.chevron { display: inline-block; margin-left: 7px; transition: transform .2s; }
.filter-drawer[open] .chevron { transform: rotate(180deg); }
.filter-form { border-top: 1px solid var(--line); padding: 20px; }
.filter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.modern-field { display: block; }
.modern-field > span { display: block; margin: 0 0 7px 2px; color: #718093; font-size: 11px; font-weight: 800; }
.modern-field select { width: 100%; min-height: 46px; border: 1px solid #dce2db; border-radius: 11px; padding: 0 12px; outline: 0; background: #fbfcfa; color: var(--ink); font-size: 13px; font-weight: 600; }
.modern-field select:focus { border-color: #a8c65b; box-shadow: 0 0 0 4px rgba(200,255,74,.15); }
.filter-actions { display: flex; justify-content: flex-end; align-items: center; gap: 15px; margin-top: 17px; }
.clear-filter { color: #6d7a89; text-decoration: none; font-size: 13px; font-weight: 700; }
.apply-filter { display: inline-flex; align-items: center; gap: 9px; border: 0; border-radius: 11px; background: var(--ink); color: white; text-decoration: none; padding: 12px 16px; cursor: pointer; font-size: 13px; font-weight: 800; }
.apply-filter span { color: var(--lime); }
.apply-filter:hover { background: #102c48; }

/* Collection */
.tours-grid-section { padding: 76px 0 95px; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 30px; }
.section-kicker { margin-bottom: 10px; color: #7c8897; }
.section-heading h2, .why-panel h2 { margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; letter-spacing: -.05em; font-size: clamp(31px, 4vw, 48px); line-height: 1.05; }
.section-heading h2 span { color: #71824d; }
.results-count { color: #8290a0; font-size: 13px; padding-bottom: 5px; white-space: nowrap; }
.results-count strong { color: var(--ink); font-size: 16px; }
.tour-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.modern-tour-card {
    min-width: 0;
    overflow: hidden;
    background: white;
    border: 1px solid #e7ebe5;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 35px rgba(7,26,47,.055);
    animation: cardIn .55s ease both;
    animation-delay: calc(var(--card-index) * 70ms);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.modern-tour-card:hover { transform: translateY(-7px); border-color: #dce4d8; box-shadow: 0 22px 55px rgba(7,26,47,.12); }
.card-image-wrap { display: block; position: relative; aspect-ratio: 1.35 / 1; overflow: hidden; background: #dfe7e1; }
.card-image { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.modern-tour-card:hover .card-image { transform: scale(1.055); }
.image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, transparent 42%, rgba(0,0,0,.32) 100%); pointer-events: none; }
.card-type, .card-duration { position: absolute; top: 15px; padding: 8px 10px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .02em; backdrop-filter: blur(12px); }
.card-type { left: 15px; color: var(--ink); background: rgba(200,255,74,.93); }
.card-duration { right: 15px; color: white; background: rgba(7,26,47,.72); }
.card-arrow { position: absolute; right: 15px; bottom: 15px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: white; font-size: 18px; font-weight: 700; box-shadow: 0 8px 20px rgba(0,0,0,.18); transition: transform .25s ease; }
.modern-tour-card:hover .card-arrow { transform: rotate(8deg) scale(1.05); }
.card-body { padding: 22px 22px 20px; }
.card-location { display: flex; align-items: center; gap: 6px; color: #84909e; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.location-pin { color: var(--coral); font-size: 17px; line-height: 1; }
.card-body h3 { margin: 9px 0 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; line-height: 1.25; letter-spacing: -.035em; }
.card-body h3 a { text-decoration: none; }
.card-body h3 a:hover { color: #5d742c; }
.card-body > p { min-height: 48px; margin: 0; color: #778494; font-size: 13px; line-height: 1.65; }
.card-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; margin-top: 22px; padding-top: 17px; border-top: 1px solid #edf0eb; }
.card-price { display: grid; grid-template-columns: auto auto; column-gap: 7px; align-items: baseline; }
.card-price small { color: #99a3ae; font-size: 10px; font-weight: 700; }
.card-price strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; letter-spacing: -.03em; }
.card-price small:last-child { grid-column: 2; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); text-decoration: none; font-size: 12px; font-weight: 800; }
.card-link span { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: #eef2ec; transition: transform .2s; }
.card-link:hover span { transform: translateX(3px); }
.empty-state { padding: 70px 25px; text-align: center; border: 1px dashed #cfd8cd; border-radius: 24px; background: white; }
.empty-icon { font-size: 44px; color: #9aa6a0; }
.empty-state h3 { margin: 8px 0; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; }
.empty-state p { color: #7c8897; margin: 0 0 20px; }
.modern-pagination { display: flex; justify-content: center; gap: 7px; margin-top: 38px; }
.modern-pagination a { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 11px; background: white; border: 1px solid #e1e6df; text-decoration: none; color: #647284; font-size: 12px; font-weight: 800; }
.modern-pagination a.active, .modern-pagination a:hover { background: var(--ink); color: white; border-color: var(--ink); }

/* Why section */
.why-section { padding: 0 0 90px; }
.why-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: .8fr 1.2fr; gap: 55px; padding: 55px; border-radius: 30px; background: var(--ink); color: white; }
.why-panel::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -120px; top: -150px; background: rgba(200,255,74,.12); }
.section-kicker.light { color: rgba(255,255,255,.45); }
.why-panel h2 span { color: var(--lime); }
.why-items { display: grid; gap: 14px; position: relative; z-index: 2; }
.why-item { display: flex; align-items: flex-start; gap: 15px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
.why-item:last-child { border-bottom: 0; }
.why-icon { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border-radius: 11px; background: rgba(200,255,74,.12); color: var(--lime); font-weight: 800; }
.why-item strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; }
.why-item p { margin: 5px 0 0; color: rgba(255,255,255,.53); font-size: 12px; line-height: 1.55; }

/* Footer */
.site-footer { border-top: 1px solid #e1e6df; background: #eef1eb; }
.footer-inner { min-height: 120px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-brand { font-family: 'Plus Jakarta Sans', sans-serif; text-decoration: none; font-size: 18px; font-weight: 800; letter-spacing: -.04em; }
.footer-inner p { margin: 6px 0 0; color: #7b8794; font-size: 12px; }
.footer-note { color: #8a95a1; font-size: 11px; font-weight: 700; }

/* Detail-page compatibility: same visual language, ready for the next stage. */
.tour-detail-header { background: var(--ink); color: white; padding: 22px 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; font-size: 12px; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.78); text-decoration: none; }
.tour-detail { padding: 45px 0 80px; }
.tour-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(32px,5vw,56px); letter-spacing: -.055em; line-height: 1.05; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 9px; }
.tour-meta > span { padding: 8px 11px; border: 1px solid #dfe5dc; border-radius: 999px; background: white; color: #607083; font-size: 12px; font-weight: 700; }
.tour-meta i { color: var(--coral); margin-right: 5px; }
.galleryview { position: relative; overflow: hidden; border-radius: 24px; background: #dfe6df; aspect-ratio: 1.55 / 1; }
.gallery-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .35s; }
.gallery-slide.active { opacity: 1; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-control { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); cursor: pointer; font-size: 25px; box-shadow: 0 8px 25px rgba(0,0,0,.15); }
.gallery-prev { left: 15px; } .gallery-next { right: 15px; }
.gallery-thumbnails { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 10px; }
.gallery-thumbnails .item { aspect-ratio: 1.4; overflow: hidden; border-radius: 11px; cursor: pointer; opacity: .62; border: 2px solid transparent; }
.gallery-thumbnails .item.active { opacity: 1; border-color: var(--lime-dark); }
.gallery-thumbnails img { width: 100%; height: 100%; object-fit: cover; }
.booking-widget, .terms-widget, .contact-widget, .tour-details { border: 1px solid #e2e7e0; background: white; border-radius: 22px; box-shadow: 0 10px 35px rgba(7,26,47,.055); }
.booking-widget, .terms-widget, .contact-widget { padding: 22px; margin-bottom: 16px; }
.booking-widget h4, .terms-widget h4, .contact-widget h4, .tour-details-header h3 { margin-top: 0; font-family: 'Plus Jakarta Sans', sans-serif; }
.form-control { width: 100%; min-height: 45px; border: 1px solid #dfe5dd; border-radius: 10px; padding: 0 12px; }
.btn-primary { border: 0; background: var(--ink); color: white; border-radius: 11px; padding: 13px 18px; cursor: pointer; font-weight: 800; }
.w-100 { width: 100%; }
.passenger-counter { display: flex; align-items: center; justify-content: space-between; border: 1px solid #dfe5dd; border-radius: 11px; padding: 6px; }
.counter-btn { width: 30px; height: 30px; border: 0; border-radius: 8px; background: #eef2ec; cursor: pointer; }
.detail-list { list-style: none; margin: 0; padding: 22px; }
.detail-item { display: flex; gap: 12px; margin-bottom: 18px; }
.detail-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: #eff3eb; color: #6e8c2e; }
.detail-content strong, .detail-content span { display: block; }
.detail-content strong { font-size: 12px; }
.detail-content span { color: #7a8794; font-size: 12px; margin-top: 4px; }

/* Responsive */
@media (max-width: 1000px) {
    .tour-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .filter-grid { grid-template-columns: repeat(2, 1fr); }
    .why-panel { grid-template-columns: 1fr; }
    .col-lg-8, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3 { width: 100%; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 24px, 1180px); }
    .site-header-inner { min-height: 68px; }
    .site-nav .nav-secondary, .header-cta { display: none; }
    .site-nav { margin-left: auto; }
    .tours-hero { min-height: auto; }
    .hero-container { padding-block: 62px 34px; }
    .hero-copy h1 { font-size: clamp(43px, 14vw, 66px); }
    .hero-copy p { font-size: 15px; }
    .hero-search-shell { margin-top: 30px; padding: 5px; border-radius: 18px; }
    .hero-search-form { display: block; padding: 5px; }
    .search-field { min-height: 65px; padding: 9px 13px; }
    .search-divider { height: 1px; width: auto; margin: 0 13px; }
    .hero-search-button { width: 100%; min-height: 54px; margin-top: 5px; }
    .hero-trust-row { flex-wrap: wrap; gap: 8px 12px; }
    .trust-separator { display: none; }
    .filter-section { padding-top: 12px; }
    .filter-drawer summary { min-height: 56px; padding-inline: 14px; }
    .summary-right { max-width: 150px; text-align: right; }
    .filter-form { padding: 14px; }
    .filter-grid { grid-template-columns: 1fr; }
    .section-heading { display: block; }
    .results-count { margin-top: 12px; }
    .tours-grid-section { padding: 55px 0 70px; }
    .tour-grid { grid-template-columns: 1fr; gap: 16px; }
    .card-image-wrap { aspect-ratio: 1.45 / 1; }
    .card-body { padding: 19px; }
    .card-body > p { min-height: 0; }
    .why-section { padding-bottom: 60px; }
    .why-panel { padding: 32px 24px; border-radius: 24px; gap: 28px; }
    .footer-inner { min-height: 105px; display: block; padding-block: 22px; }
    .footer-note { margin-top: 10px; }
    .gallery-thumbnails { grid-template-columns: repeat(4, 1fr); }
    .tour-detail { padding-top: 28px; }
}

@media (max-width: 420px) {
    .brand { font-size: 19px; }
    .brand-mark { width: 34px; height: 34px; }
    .hero-copy h1 { font-size: 43px; }
    .hero-trust-row { font-size: 10px; }
    .card-price strong { font-size: 16px; }
    .card-link { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

/* ================================================================
   TOUR DETAILS — 2026 EDITORIAL / BOOKING EXPERIENCE
   ================================================================ */
.tour-page { background: var(--paper); color: var(--ink); }
.tour-breadcrumb-bar { background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); }
.tour-breadcrumb { min-height: 48px; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.45); font-size: 11px; font-weight: 700; }
.tour-breadcrumb a { color: rgba(255,255,255,.78); text-decoration: none; }
.tour-breadcrumb a:hover { color: var(--lime); }

.tour-hero-detail { position: relative; overflow: hidden; padding: 58px 0 88px; background: var(--ink); color: white; }
.tour-hero-detail::before { content: ''; position: absolute; width: 440px; height: 440px; right: -180px; top: -260px; border-radius: 50%; background: rgba(200,255,74,.11); }
.tour-hero-detail::after { content: ''; position: absolute; width: 180px; height: 180px; left: 48%; bottom: -125px; border-radius: 50%; border: 1px solid rgba(255,255,255,.09); }
.tour-hero-copy { position: relative; z-index: 2; max-width: 880px; }
.tour-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; color: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(200,255,74,.12); }
.tour-hero-copy h1 { max-width: 900px; margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(42px, 7vw, 82px); line-height: .98; letter-spacing: -.065em; }
.tour-hero-description { max-width: 700px; margin: 24px 0 0; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.7; }
.tour-hero-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.tour-hero-meta span { display: inline-flex; align-items: center; gap: 7px; min-height: 34px; padding: 7px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(255,255,255,.055); color: rgba(255,255,255,.76); font-size: 11px; font-weight: 800; }
.tour-hero-meta svg { width: 14px; height: 14px; color: var(--lime); }

.tour-main-section { padding: 0 0 100px; margin-top: -45px; position: relative; z-index: 5; }
.tour-main-grid { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 34px; align-items: start; }
.tour-primary-column { min-width: 0; }
.tour-gallery-card { padding: 10px; border: 1px solid #e2e7df; border-radius: 28px; background: white; box-shadow: 0 22px 60px rgba(7,26,47,.09); }
.tour-gallery-stage { position: relative; overflow: hidden; aspect-ratio: 1.52 / 1; border-radius: 21px; background: #dfe5df; }
.tour-gallery-slide { position: absolute; inset: 0; display: block; width: 100%; height: 100%; padding: 0; border: 0; opacity: 0; visibility: hidden; cursor: pointer; background: transparent; transition: opacity .3s ease, visibility .3s ease; }
.tour-gallery-slide.is-active { opacity: 1; visibility: visible; }
.tour-gallery-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tour-gallery-nav { position: absolute; top: 50%; z-index: 4; display: grid; place-items: center; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(7,26,47,.72); color: white; cursor: pointer; transform: translateY(-50%); backdrop-filter: blur(10px); transition: transform .2s ease, background .2s ease; }
.tour-gallery-nav:hover { background: var(--ink); transform: translateY(-50%) scale(1.05); }
.tour-gallery-nav svg { width: 18px; height: 18px; }
.tour-gallery-prev { left: 17px; }
.tour-gallery-prev svg { transform: rotate(180deg); }
.tour-gallery-next { right: 17px; }
.tour-gallery-count { position: absolute; right: 16px; bottom: 16px; z-index: 5; padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(7,26,47,.66); color: white; font-size: 10px; font-weight: 900; letter-spacing: .06em; backdrop-filter: blur(10px); }
.tour-gallery-thumbs { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 8px; margin-top: 9px; }
.tour-gallery-thumb { aspect-ratio: 1.35 / 1; overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 12px; background: #e8ece7; cursor: pointer; opacity: .55; transition: opacity .2s, border-color .2s, transform .2s; }
.tour-gallery-thumb:hover { opacity: .9; transform: translateY(-1px); }
.tour-gallery-thumb.is-active { opacity: 1; border-color: var(--lime-dark); }
.tour-gallery-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }

.tour-facts-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin: 14px 0; }
.tour-fact { display: flex; align-items: center; gap: 10px; min-height: 78px; padding: 13px; border: 1px solid #e1e6de; border-radius: 17px; background: white; }
.tour-fact-icon { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; border-radius: 12px; background: #eff4e9; color: #718f31; }
.tour-fact-icon svg { width: 17px; height: 17px; }
.tour-fact small, .tour-fact strong { display: block; }
.tour-fact small { color: #8b96a2; font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.tour-fact strong { margin-top: 4px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; line-height: 1.25; }

.tour-content-card { margin-top: 14px; padding: 30px; border: 1px solid #e1e6de; border-radius: 22px; background: white; box-shadow: 0 12px 35px rgba(7,26,47,.035); }
.content-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-label { display: block; color: #91a05e; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.content-card-heading h2 { margin: 6px 0 0; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 27px; line-height: 1.12; letter-spacing: -.045em; }
.heading-mark { color: #c7cec4; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 900; }
.highlight-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.highlight-item { display: flex; align-items: flex-start; gap: 10px; min-height: 54px; padding: 12px; border-radius: 14px; background: #f5f7f2; color: #4d5b68; font-size: 12px; line-height: 1.5; }
.highlight-check { display: grid; place-items: center; width: 25px; height: 25px; flex: 0 0 25px; border-radius: 8px; background: var(--ink); color: var(--lime); }
.highlight-check svg { width: 14px; height: 14px; }
.tour-rich-text { color: #657280; font-size: 14px; line-height: 1.8; }
.tour-rich-text p { margin: 0 0 16px; }
.tour-rich-text p:last-child { margin-bottom: 0; }
.tour-rich-text ul, .tour-rich-text ol { padding-left: 20px; }
.tour-rich-text a { color: #657a31; }
.detail-table { border-top: 1px solid #e8ece6; }
.detail-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid #e8ece6; font-size: 12px; }
.detail-row span { color: #89949f; }
.detail-row strong { color: #26384a; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; text-align: right; }

.tour-booking-column { position: sticky; top: 88px; }
.tour-booking-card { padding: 23px; border: 1px solid rgba(255,255,255,.08); border-radius: 24px; background: var(--ink); color: white; box-shadow: 0 24px 65px rgba(7,26,47,.19); }
.booking-card-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.booking-status, .booking-secure { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.booking-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(200,255,74,.11); }
.booking-secure svg { width: 13px; height: 13px; color: var(--lime); }
.booking-price-block { padding: 28px 0 20px; }
.booking-from { display: block; color: rgba(255,255,255,.4); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.booking-price-block strong { display: block; margin-top: 5px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; line-height: 1; letter-spacing: -.045em; }
.booking-price-block > span:last-child { display: block; margin-top: 7px; color: rgba(255,255,255,.45); font-size: 10px; }
.booking-divider { height: 1px; background: rgba(255,255,255,.1); }
.booking-field { display: flex; gap: 10px; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.booking-field-icon { display: grid; place-items: center; width: 33px; height: 33px; flex: 0 0 33px; border-radius: 10px; background: rgba(200,255,74,.1); color: var(--lime); }
.booking-field-icon svg { width: 15px; height: 15px; }
.booking-field small, .booking-field strong { display: block; }
.booking-field small { color: rgba(255,255,255,.38); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.booking-field strong { margin-top: 3px; color: white; font-size: 12px; line-height: 1.4; }
.booking-passengers { margin-top: 8px; padding: 7px 0; }
.booking-passenger-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 12px 0; }
.booking-passenger-row strong, .booking-passenger-row small { display: block; }
.booking-passenger-row strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; }
.booking-passenger-row small { margin-top: 3px; color: rgba(255,255,255,.37); font-size: 9px; }
.booking-counter { display: flex; align-items: center; gap: 11px; }
.booking-counter .counter-btn { display: grid; place-items: center; width: 30px; height: 30px; padding: 0; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; background: rgba(255,255,255,.06); color: white; cursor: pointer; font-size: 17px; }
.booking-counter .counter-btn:hover { border-color: rgba(200,255,74,.5); color: var(--lime); }
.booking-counter > span { min-width: 14px; text-align: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 900; }
.booking-summary { margin-top: 7px; padding: 13px 0 4px; border-top: 1px solid rgba(255,255,255,.1); }
.booking-summary-row, .booking-total-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.booking-summary-row { padding: 6px 0; color: rgba(255,255,255,.47); font-size: 10px; }
.booking-summary-row strong { color: rgba(255,255,255,.78); font-size: 10px; }
.booking-total-row { margin-top: 8px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.1); }
.booking-total-row span { color: white; font-size: 11px; font-weight: 800; }
.booking-total-row strong { color: var(--lime); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; letter-spacing: -.035em; }
.booking-cta { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 54px; margin-top: 16px; padding: 8px 9px 8px 16px; border: 0; border-radius: 14px; background: var(--lime); color: var(--ink); cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 900; letter-spacing: -.01em; }
.booking-cta span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--ink); color: var(--lime); }
.booking-cta svg { width: 16px; height: 16px; }
.booking-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(200,255,74,.18); }
.booking-note { margin: 12px 0 0; color: rgba(255,255,255,.35); font-size: 9px; line-height: 1.55; text-align: center; }
.tour-help-card { display: flex; gap: 13px; margin-top: 12px; padding: 18px; border: 1px solid #e0e6de; border-radius: 20px; background: white; }
.help-icon { display: grid; place-items: center; width: 39px; height: 39px; flex: 0 0 39px; border-radius: 12px; background: #f0f4ea; color: #708d31; }
.help-icon svg { width: 17px; height: 17px; }
.tour-help-card h3 { margin: 5px 0 5px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; letter-spacing: -.025em; }
.tour-help-card p { margin: 0 0 9px; color: #88939e; font-size: 10px; line-height: 1.55; }
.tour-help-card a { display: inline-flex; align-items: center; gap: 5px; color: var(--ink); font-size: 10px; font-weight: 900; text-decoration: none; }
.tour-help-card a svg { width: 13px; height: 13px; }

.related-tour-section { padding: 0 0 100px; }
.related-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; margin-bottom: 22px; }
.related-heading h2 { max-width: 500px; margin: 7px 0 0; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px,4vw,42px); line-height: 1.04; letter-spacing: -.055em; }
.related-all-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 11px; font-weight: 900; text-decoration: none; }
.related-all-link svg { width: 15px; height: 15px; }
.related-tour-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 15px; }
.related-tour-card { overflow: hidden; border: 1px solid #e0e6de; border-radius: 21px; background: white; transition: transform .25s ease, box-shadow .25s ease; }
.related-tour-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(7,26,47,.08); }
.related-image { position: relative; display: block; aspect-ratio: 1.35 / 1; overflow: hidden; }
.related-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(7,26,47,.38)); }
.related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.related-tour-card:hover .related-image img { transform: scale(1.045); }
.related-image > span { position: absolute; left: 13px; top: 13px; z-index: 2; padding: 7px 9px; border-radius: 999px; background: rgba(255,255,255,.91); color: var(--ink); font-size: 8px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.related-body { padding: 18px; }
.related-location { display: flex; align-items: center; gap: 5px; color: #8a96a1; font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.related-location svg { width: 13px; height: 13px; color: var(--coral); }
.related-body h3 { margin: 8px 0 18px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; line-height: 1.25; letter-spacing: -.035em; }
.related-body h3 a { color: var(--ink); text-decoration: none; }
.related-body h3 a:hover { color: #6f8934; }
.related-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid #edf0eb; }
.related-bottom strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; }
.related-bottom span { display: inline-flex; align-items: center; gap: 5px; color: #7d8995; font-size: 9px; font-weight: 900; }
.related-bottom svg { width: 12px; height: 12px; }

@media (max-width: 1000px) {
    .tour-main-grid { grid-template-columns: minmax(0,1fr) 320px; gap: 22px; }
    .tour-facts-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .related-tour-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
    .tour-hero-detail { padding: 42px 0 72px; }
    .tour-hero-copy h1 { font-size: clamp(40px, 12vw, 64px); }
    .tour-hero-description { font-size: 14px; }
    .tour-main-section { margin-top: -32px; padding-bottom: 70px; }
    .tour-main-grid { display: block; }
    .tour-booking-column { position: static; margin-top: 16px; }
    .tour-gallery-card { border-radius: 21px; padding: 7px; }
    .tour-gallery-stage { border-radius: 16px; aspect-ratio: 1.12 / 1; }
    .tour-gallery-thumbs { grid-template-columns: repeat(4, minmax(0,1fr)); }
    .tour-facts-grid { gap: 8px; }
    .tour-fact { min-height: 70px; padding: 10px; }
    .tour-content-card { padding: 22px 18px; border-radius: 18px; }
    .content-card-heading h2 { font-size: 23px; }
    .highlight-grid { grid-template-columns: 1fr; }
    .tour-booking-card { border-radius: 20px; }
    .related-heading { align-items: flex-start; display: block; }
    .related-all-link { margin-top: 14px; }
    .related-tour-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .tour-breadcrumb { font-size: 10px; }
    .tour-hero-meta { gap: 6px; }
    .tour-hero-meta span { font-size: 9px; }
    .tour-facts-grid { grid-template-columns: 1fr 1fr; }
    .tour-fact strong { font-size: 10px; }
    .tour-gallery-nav { width: 39px; height: 39px; }
    .tour-gallery-prev { left: 10px; }
    .tour-gallery-next { right: 10px; }
    .tour-gallery-count { right: 10px; bottom: 10px; }
    .detail-row { align-items: flex-start; }
}

/* ================================================================
   BOOKING PAGE — procedural continuation of the Travelin system
   ================================================================ */
.booking-page { background: var(--paper); color: var(--ink); }
.booking-page-hero { padding: 22px 0 74px; background: var(--ink); color: white; }
.booking-breadcrumb { display:flex; align-items:center; gap:9px; color:rgba(255,255,255,.42); font-size:10px; font-weight:800; letter-spacing:.04em; }
.booking-breadcrumb a { color:rgba(255,255,255,.55); text-decoration:none; }
.booking-breadcrumb a:hover { color:var(--lime); }
.booking-breadcrumb strong { color:white; font-weight:900; }
.booking-hero-grid { display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:end; gap:30px; margin-top:58px; }
.booking-hero-grid h1 { max-width:690px; margin:9px 0 13px; font-family:'Plus Jakarta Sans',sans-serif; font-size:clamp(40px,6vw,72px); line-height:.98; letter-spacing:-.065em; }
.booking-hero-grid p { max-width:590px; margin:0; color:rgba(255,255,255,.58); font-size:13px; line-height:1.7; }
.booking-step-indicator { display:flex; align-items:center; gap:9px; padding:9px 11px; border:1px solid rgba(255,255,255,.12); border-radius:999px; background:rgba(255,255,255,.05); white-space:nowrap; }
.booking-step { display:flex; align-items:center; gap:7px; color:rgba(255,255,255,.4); font-size:9px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.booking-step b { display:grid; place-items:center; width:25px; height:25px; border-radius:50%; background:rgba(255,255,255,.08); font-size:10px; }
.booking-step.active { color:white; }
.booking-step.active b { background:var(--lime); color:var(--ink); }
.booking-step-line { width:25px; height:1px; background:rgba(255,255,255,.13); }
.booking-main-section { padding:0 0 100px; }
.booking-layout { display:grid; grid-template-columns:minmax(0,1fr) 370px; align-items:start; gap:24px; margin-top:-38px; }
.booking-form-column { min-width:0; }
.booking-form { display:grid; gap:14px; }
.booking-error { margin-bottom:0; padding:17px 19px; border:1px solid #ffd0c8; border-radius:18px; background:#fff4f1; color:#8b3d31; }
.booking-error strong { display:block; font-family:'Plus Jakarta Sans',sans-serif; font-size:12px; }
.booking-error ul { margin:9px 0 0 17px; padding:0; font-size:11px; line-height:1.7; }
.form-card, .terms-card { border:1px solid #e0e6de; border-radius:22px; background:white; box-shadow:0 12px 34px rgba(7,26,47,.035); }
.form-card { padding:27px; }
.form-card-heading { display:grid; grid-template-columns:44px minmax(0,1fr); gap:14px; align-items:start; margin-bottom:24px; }
.form-number { display:grid; place-items:center; width:44px; height:44px; border-radius:14px; background:#edf3e5; color:#6d8637; font-family:'Plus Jakarta Sans',sans-serif; font-size:11px; font-weight:900; }
.form-card-heading h2 { margin:6px 0 5px; font-family:'Plus Jakarta Sans',sans-serif; font-size:22px; line-height:1.08; letter-spacing:-.04em; }
.form-card-heading p { margin:0; color:#89949f; font-size:10px; line-height:1.55; }
.form-grid { display:grid; gap:15px; }
.form-grid.two-columns { grid-template-columns:repeat(2,minmax(0,1fr)); }
.form-field { display:block; }
.form-field.full-width { grid-column:1/-1; }
.form-field > span { display:block; margin-bottom:7px; color:#445466; font-size:10px; font-weight:900; }
.form-field em { color:var(--coral); font-style:normal; }
.form-field input, .form-field textarea { display:block; width:100%; border:1px solid #dfe5de; border-radius:13px; outline:none; background:#fbfcfa; color:var(--ink); font:500 12px/1.45 'DM Sans',sans-serif; transition:border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-field input { min-height:48px; padding:0 14px; }
.form-field textarea { padding:13px 14px; resize:vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color:#a9b0b7; }
.form-field input:focus, .form-field textarea:focus { border-color:#a6c65a; background:white; box-shadow:0 0 0 4px rgba(200,255,74,.13); }
.passenger-editor { overflow:hidden; border:1px solid #e7ece5; border-radius:17px; }
.editor-row { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:17px 18px; }
.editor-row + .editor-row { border-top:1px solid #edf0eb; }
.editor-row > div:first-child strong, .editor-row > div:first-child span { display:block; }
.editor-row strong { font-family:'Plus Jakarta Sans',sans-serif; font-size:12px; }
.editor-row > div:first-child span { margin-top:3px; color:#929ca5; font-size:9px; }
.editor-counter { display:flex; align-items:center; gap:10px; }
.editor-counter button { display:grid; place-items:center; width:34px; height:34px; padding:0; border:1px solid #dce3d9; border-radius:10px; background:#f7f9f5; color:var(--ink); cursor:pointer; font-size:17px; line-height:1; }
.editor-counter button:hover { border-color:#abc55e; background:#eff7e3; }
.editor-counter > strong { min-width:18px; text-align:center; font-size:12px; }
.terms-card { padding:17px 19px; }
.terms-check { display:flex; align-items:flex-start; gap:10px; cursor:pointer; color:#687684; font-size:10px; line-height:1.55; }
.terms-check input { width:16px; height:16px; margin:0; flex:0 0 16px; accent-color:#6e8c31; }
.submit-booking-button { display:flex; align-items:center; justify-content:space-between; width:100%; min-height:60px; padding:8px 10px 8px 20px; border:0; border-radius:16px; background:var(--lime); color:var(--ink); cursor:pointer; font-family:'Plus Jakarta Sans',sans-serif; font-size:13px; font-weight:900; box-shadow:0 15px 35px rgba(200,255,74,.12); transition:transform .2s ease, box-shadow .2s ease; }
.submit-booking-button span { display:grid; place-items:center; width:42px; height:42px; border-radius:12px; background:var(--ink); color:var(--lime); font-size:18px; }
.submit-booking-button:hover { transform:translateY(-2px); box-shadow:0 18px 40px rgba(7,26,47,.12); }
.form-security-note { margin:0; color:#9aa3aa; font-size:9px; line-height:1.55; text-align:center; }
.booking-summary-column { position:sticky; top:88px; }
.booking-order-card { overflow:hidden; border:1px solid rgba(255,255,255,.08); border-radius:24px; background:var(--ink); color:white; box-shadow:0 24px 65px rgba(7,26,47,.17); }
.order-image { position:relative; height:220px; overflow:hidden; }
.order-image::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(7,26,47,0) 35%,rgba(7,26,47,.72) 100%); }
.order-image img { width:100%; height:100%; object-fit:cover; }
.order-image > span { position:absolute; left:17px; bottom:16px; z-index:2; padding:7px 9px; border:1px solid rgba(255,255,255,.18); border-radius:999px; background:rgba(7,26,47,.45); color:white; font-size:8px; font-weight:900; letter-spacing:.1em; }
.order-body { padding:23px; }
.order-body h2 { margin:7px 0 20px; font-family:'Plus Jakarta Sans',sans-serif; font-size:22px; line-height:1.1; letter-spacing:-.045em; }
.order-detail { display:flex; align-items:flex-start; justify-content:space-between; gap:18px; padding:11px 0; border-top:1px solid rgba(255,255,255,.08); }
.order-detail span { color:rgba(255,255,255,.38); font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:.07em; }
.order-detail strong { max-width:65%; color:rgba(255,255,255,.85); font-size:10px; line-height:1.4; text-align:right; }
.order-pricing { margin-top:11px; padding-top:13px; border-top:1px solid rgba(255,255,255,.1); }
.order-pricing > div { display:flex; align-items:center; justify-content:space-between; gap:15px; padding:6px 0; color:rgba(255,255,255,.48); font-size:10px; }
.order-pricing > div strong { color:rgba(255,255,255,.82); font-size:10px; }
.order-pricing b { color:rgba(255,255,255,.72); font-weight:900; }
.order-child-line { display:none; }
.order-total { margin-top:8px; padding-top:14px !important; border-top:1px solid rgba(255,255,255,.1); color:white !important; }
.order-total span { font-weight:900; }
.order-total strong { color:var(--lime) !important; font-family:'Plus Jakarta Sans',sans-serif; font-size:22px !important; letter-spacing:-.04em; }
.order-note { display:flex; align-items:flex-start; gap:9px; margin-top:15px; padding:12px; border-radius:13px; background:rgba(255,255,255,.045); }
.order-note > span { display:grid; place-items:center; width:20px; height:20px; flex:0 0 20px; border-radius:50%; background:rgba(200,255,74,.13); color:var(--lime); font-size:10px; font-weight:900; }
.order-note p { margin:0; color:rgba(255,255,255,.37); font-size:8px; line-height:1.55; }
.booking-success-card { max-width:850px; margin:-38px auto 0; padding:45px; border:1px solid #e0e6de; border-radius:28px; background:white; box-shadow:0 25px 70px rgba(7,26,47,.09); text-align:center; }
.success-icon { display:grid; place-items:center; width:62px; height:62px; margin:0 auto 19px; border-radius:20px; background:var(--lime); color:var(--ink); font-family:'Plus Jakarta Sans',sans-serif; font-size:27px; font-weight:900; }
.booking-success-card h2 { margin:8px auto 10px; font-family:'Plus Jakarta Sans',sans-serif; font-size:clamp(28px,4vw,44px); line-height:1.05; letter-spacing:-.055em; }
.booking-success-card > p { max-width:550px; margin:0 auto; color:#89949f; font-size:11px; line-height:1.7; }
.success-reference { margin:27px auto 0; padding:17px 20px; border:1px dashed #cfd9ca; border-radius:15px; background:#f8faf6; }
.success-reference span, .success-reference strong { display:block; }
.success-reference span { color:#89949f; font-size:9px; font-weight:900; text-transform:uppercase; letter-spacing:.09em; }
.success-reference strong { margin-top:5px; color:var(--ink); font-family:'Plus Jakarta Sans',sans-serif; font-size:20px; letter-spacing:.05em; }
.success-summary-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); margin-top:17px; border:1px solid #e4e9e1; border-radius:17px; overflow:hidden; text-align:left; }
.success-summary-grid > div { padding:15px 17px; }
.success-summary-grid > div:nth-child(odd) { border-right:1px solid #e4e9e1; }
.success-summary-grid > div:nth-child(n+3) { border-top:1px solid #e4e9e1; }
.success-summary-grid span, .success-summary-grid strong { display:block; }
.success-summary-grid span { color:#929ca5; font-size:8px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.success-summary-grid strong { margin-top:5px; color:var(--ink); font-size:11px; line-height:1.4; }
.success-actions { display:flex; justify-content:center; gap:9px; margin-top:22px; }
.primary-action, .secondary-action { display:inline-flex; align-items:center; justify-content:center; min-height:45px; padding:0 17px; border-radius:12px; font-size:10px; font-weight:900; text-decoration:none; }
.primary-action { background:var(--ink); color:white; }
.secondary-action { border:1px solid #dce3d9; color:var(--ink); background:white; }

@media (max-width: 1000px) {
    .booking-layout { grid-template-columns:minmax(0,1fr) 320px; }
    .order-image { height:185px; }
}

@media (max-width: 760px) {
    .booking-page-hero { padding-bottom:62px; }
    .booking-hero-grid { display:block; margin-top:45px; }
    .booking-step-indicator { display:inline-flex; margin-top:24px; }
    .booking-layout { display:block; margin-top:-30px; }
    .booking-summary-column { position:static; margin-top:15px; }
    .form-card { padding:21px 18px; border-radius:19px; }
    .form-grid.two-columns { grid-template-columns:1fr; }
    .form-field.full-width { grid-column:auto; }
    .booking-order-card { border-radius:20px; }
    .booking-success-card { margin:-30px 0 0; padding:32px 20px; border-radius:21px; }
}

@media (max-width: 500px) {
    .booking-breadcrumb { overflow:hidden; white-space:nowrap; }
    .booking-breadcrumb > * { flex:0 0 auto; }
    .booking-hero-grid h1 { font-size:42px; }
    .booking-step-indicator { width:100%; justify-content:center; }
    .form-card-heading { grid-template-columns:38px minmax(0,1fr); gap:11px; }
    .form-number { width:38px; height:38px; border-radius:12px; }
    .form-card-heading h2 { font-size:19px; }
    .editor-row { padding:15px 14px; }
    .success-summary-grid { grid-template-columns:1fr; }
    .success-summary-grid > div:nth-child(odd) { border-right:0; }
    .success-summary-grid > div + div { border-top:1px solid #e4e9e1; }
    .success-actions { flex-direction:column; }
}
.header-actions{display:flex;align-items:center;gap:16px}.header-account-link{font-size:13px;font-weight:800;color:var(--navy)}
@media(max-width:760px){.header-actions{gap:7px}.header-account-link,.header-cta{display:inline-flex!important;min-height:38px;padding:9px 11px;border-radius:10px;font-size:11px}.header-account-link{border:1px solid rgba(7,26,47,.12)}.header-cta{background:var(--ink);color:#fff!important}.header-cta span{display:none}.site-nav{display:none}}


.booking-already-card {
    padding: 34px;
    border: 1px solid rgba(7,26,47,.10);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(7,26,47,.08);
}
.booking-already-card h2 { margin: 10px 0 10px; font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(1.45rem, 3vw, 2rem); color: #071a2f; }
.booking-already-card p { margin: 0 0 24px; color: #657184; line-height: 1.7; }
.booking-already-card .primary-action { display: inline-flex; width: auto; text-decoration: none; }
@media (max-width: 760px) {
    .booking-already-card { padding: 24px; border-radius: 22px; }
}

/* v14 — tour editor + immersive public tour page */
.admin-tour-head-actions{display:flex;gap:10px;flex-wrap:wrap}.admin-tour-actions{display:flex;gap:8px;margin-top:14px}.admin-tour-actions .saas-primary,.admin-tour-actions .saas-secondary{flex:1;text-align:center;padding:10px 12px;font-size:12px}.admin-delete-form{margin-top:9px}.admin-delete-form button{border:0;background:transparent;color:#a33b2d;font-size:11px;font-weight:800;cursor:pointer;padding:6px 0}.tour-editor-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);gap:20px}.tour-editor-grid>div{display:grid;gap:20px;align-content:start}.tour-editor-panel{padding:27px}.tour-editor-panel .saas-panel-head{margin-bottom:18px}.editor-fields{display:grid;grid-template-columns:1fr 1fr;gap:15px}.editor-fields.one-col{grid-template-columns:1fr}.editor-fields label,.tour-editor-panel>label{display:grid;gap:7px;color:#44515e;font-size:12px;font-weight:800}.editor-fields label.full{grid-column:1/-1}.editor-fields input,.editor-fields select,.editor-fields textarea,.tour-editor-panel>label input{width:100%;box-sizing:border-box;border:1px solid #dfe5df;border-radius:13px;background:#fbfcfa;padding:12px 13px;color:var(--ink);font:500 13px 'DM Sans',sans-serif;outline:none}.editor-fields textarea{resize:vertical;line-height:1.6;min-height:110px}.editor-fields input:focus,.editor-fields select:focus,.editor-fields textarea:focus,.tour-editor-panel>label input:focus{border-color:#9aaa76;box-shadow:0 0 0 4px rgba(200,255,74,.16)}.editor-fields small,.tour-editor-panel small{font-weight:500;color:#8a96a1;line-height:1.5}.editor-cover{aspect-ratio:1.5/1;overflow:hidden;border-radius:17px;background:#eef1ed;margin-bottom:15px}.editor-cover img{width:100%;height:100%;object-fit:cover}.editor-upload-zone{display:grid;gap:6px;border:1.5px dashed #bcc8b7;border-radius:17px;padding:20px;background:#fafcf8;margin-bottom:18px}.editor-upload-zone strong{font-size:14px;color:var(--ink)}.editor-upload-zone span{font-size:12px;color:#89948c;line-height:1.5}.editor-upload-zone input{margin-top:8px}.editor-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:9px}.editor-gallery-item{position:relative;display:block;aspect-ratio:1/1;overflow:hidden;border-radius:12px;background:#edf1ed;cursor:pointer}.editor-gallery-item img{width:100%;height:100%;object-fit:cover}.editor-gallery-item span{position:absolute;left:6px;right:6px;bottom:6px;padding:7px;border-radius:9px;background:rgba(7,26,47,.78);color:#fff;font-size:9px;font-weight:800}.editor-gallery-item input{accent-color:var(--saas-lime)}.tour-save-button{width:100%;min-height:52px;font-size:14px}.tour-save-button span{margin-left:7px}.tour-story-intro{margin:22px 0;padding:34px 0 10px}.story-intro-kicker{display:inline-flex;padding:8px 11px;border-radius:999px;background:var(--lime);color:var(--ink);font-size:9px;font-weight:900;letter-spacing:.11em}.story-intro-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:45px;align-items:end;margin-top:18px}.story-intro-grid h2{font-family:'Plus Jakarta Sans',sans-serif;font-size:clamp(28px,4vw,47px);line-height:1.02;letter-spacing:-.05em;margin:10px 0}.story-intro-copy{font-size:16px;line-height:1.85;color:#66727d}.story-intro-copy p{margin:0}.tour-story-card{background:linear-gradient(135deg,#fff 0%,#f8faf5 100%)}.tour-story-copy{max-width:800px;font-size:16px}.tour-story-copy p{margin:0 0 15px}.tour-story-copy p:last-child{margin-bottom:0}.itinerary-list{display:grid;gap:0}.itinerary-item{display:grid;grid-template-columns:20px 1fr;gap:15px;padding:16px 0;border-top:1px solid #e9eee8;font-size:14px;line-height:1.7}.itinerary-item:first-child{border-top:0}.itinerary-dot{width:10px;height:10px;margin-top:6px;border-radius:50%;background:var(--coral);box-shadow:0 0 0 5px #fff1ed}.included-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.included-column{padding:22px;border-radius:18px;background:#f8faf6}.included-column h3{margin:0 0 12px;font-family:'Plus Jakarta Sans',sans-serif}.included-column p{margin:7px 0;color:#68747f;line-height:1.7;font-size:13px}.included-column.included{border:1px solid #dcebc7}.included-column.excluded{border:1px solid #eee3df;background:#fcfaf9}.included-column.excluded h3{color:#8c5147}.tour-info-strip{display:grid;grid-template-columns:1fr 1fr;gap:1px;margin:20px 0;background:#dfe5df;border:1px solid #dfe5df;border-radius:22px;overflow:hidden}.tour-info-strip>div{background:#fff;padding:25px}.tour-info-strip h3{font-size:19px;margin:8px 0}.tour-info-strip p{font-size:13px;line-height:1.7;color:#6c7780;margin:0}.cancellation-box{margin-top:20px;padding:18px;border-radius:15px;background:#fff6ef;border:1px solid #f0dfcf}.cancellation-box strong{display:block;margin-bottom:8px}.cancellation-box p{margin:5px 0;color:#765f50;font-size:13px;line-height:1.7}.tour-lightbox{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;padding:25px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .25s ease,visibility .25s ease}.tour-lightbox.is-open{opacity:1;visibility:visible;pointer-events:auto}.tour-lightbox-backdrop{position:absolute;inset:0;background:rgba(3,12,23,.9);backdrop-filter:blur(12px)}.tour-lightbox-dialog{position:relative;z-index:2;width:min(1200px,94vw);height:min(88vh,850px);display:grid;place-items:center}.tour-lightbox-dialog>img{max-width:100%;max-height:82vh;width:auto;height:auto;object-fit:contain;border-radius:12px;box-shadow:0 25px 80px rgba(0,0,0,.35)}.tour-lightbox-close{position:absolute;right:0;top:-5px;width:46px;height:46px;border:1px solid rgba(255,255,255,.2);border-radius:50%;background:rgba(255,255,255,.1);color:#fff;font-size:30px;line-height:1;cursor:pointer;z-index:4}.tour-lightbox-nav{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border:1px solid rgba(255,255,255,.2);border-radius:50%;background:rgba(255,255,255,.1);color:#fff;font-size:36px;line-height:1;cursor:pointer;z-index:4}.tour-lightbox-prev{left:-12px}.tour-lightbox-next{right:-12px}.tour-lightbox-caption{position:absolute;bottom:0;left:50%;transform:translateX(-50%);padding:8px 12px;border-radius:999px;background:rgba(7,26,47,.7);color:#fff;font-size:10px;font-weight:800;letter-spacing:.08em}.lightbox-open{overflow:hidden}
@media(max-width:1050px){.tour-editor-grid{grid-template-columns:1fr}.story-intro-grid{grid-template-columns:1fr;gap:12px}.tour-lightbox-prev{left:0}.tour-lightbox-next{right:0}}
@media(max-width:700px){.admin-tour-head-actions{width:100%}.admin-tour-head-actions>*{flex:1;text-align:center}.editor-fields,.included-grid,.tour-info-strip{grid-template-columns:1fr}.editor-fields label.full{grid-column:auto}.tour-editor-panel{padding:20px}.editor-gallery-grid{grid-template-columns:repeat(2,1fr)}.story-intro-grid h2{font-size:32px}.tour-info-strip>div{padding:20px}.tour-lightbox{padding:10px}.tour-lightbox-dialog{height:90vh}.tour-lightbox-dialog>img{max-height:75vh;border-radius:8px}.tour-lightbox-nav{width:42px;height:42px}.tour-lightbox-close{top:5px;right:5px}}


/* v16 — resilient tour errors, image previews and conflict-proof status pills */
.tour-not-found-page{min-height:72vh;display:grid;place-items:center;padding:70px 20px;background:radial-gradient(circle at 15% 15%,rgba(200,255,74,.18),transparent 28%),radial-gradient(circle at 85% 75%,rgba(255,115,92,.12),transparent 25%),#f6f7f3}
.tour-not-found-card{width:min(760px,100%);text-align:center;background:rgba(255,255,255,.92);border:1px solid #e0e6de;border-radius:34px;padding:65px 42px;box-shadow:0 30px 80px rgba(7,26,47,.10);backdrop-filter:blur(12px)}
.tour-not-found-number{font-family:'Plus Jakarta Sans',sans-serif;font-size:clamp(74px,15vw,150px);line-height:.8;font-weight:800;letter-spacing:-.09em;color:#071a2f;margin-bottom:25px}
.tour-not-found-card .section-kicker{justify-content:center;margin-bottom:8px}
.tour-not-found-card h1{font-family:'Plus Jakarta Sans',sans-serif;font-size:clamp(34px,5vw,58px);line-height:1;letter-spacing:-.055em;margin:10px 0 16px;color:#071a2f}
.tour-not-found-card>p{max-width:590px;margin:0 auto;color:#6e7a86;font-size:15px;line-height:1.8}
.tour-not-found-actions{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:28px}
.tour-not-found-actions .saas-primary,.tour-not-found-actions .saas-secondary{min-height:46px}
.tour-status-pill{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:7px!important;width:auto!important;min-width:0!important;height:auto!important;min-height:0!important;max-width:max-content!important;box-sizing:border-box!important;padding:8px 11px!important;border-radius:999px!important;font-size:10px!important;line-height:1!important;font-weight:900!important;letter-spacing:.06em!important;text-transform:uppercase!important;white-space:nowrap!important;background:#fff!important}
.tour-status-pill i{display:block!important;width:7px!important;height:7px!important;flex:0 0 7px!important;border-radius:50%!important;background:currentColor!important}
.tour-status-pill.is-active{color:#356100!important;background:#e9f8d3!important}.tour-status-pill.is-draft{color:#8a5b00!important;background:#fff1cc!important}.tour-status-pill.is-inactive{color:#9e3022!important;background:#ffe1dc!important}
.editor-main-preview{display:none;margin-top:5px;aspect-ratio:16/10;border-radius:14px;overflow:hidden;background:#eef1ed}.editor-main-preview:has(img){display:block}.editor-main-preview img{width:100%;height:100%;display:block;object-fit:cover}
.editor-new-gallery{margin-top:8px}.editor-preview-count{font-size:11px;font-weight:800;color:#68747f;margin-bottom:9px}.editor-new-gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}.editor-new-gallery-grid img{width:100%;aspect-ratio:16/10;display:block;object-fit:cover;border-radius:10px;background:#eef1ed}
@media(max-width:700px){.tour-not-found-card{padding:48px 22px;border-radius:26px}.tour-not-found-actions>*{width:100%}.editor-new-gallery-grid{grid-template-columns:repeat(2,1fr)}}

.tour-page-notice{background:#071a2f;color:#fff}.tour-page-notice .container{min-height:48px;display:flex;align-items:center;justify-content:center;gap:9px;font-size:12px}.tour-page-notice a{color:var(--lime);font-weight:800;text-decoration:none;margin-left:8px}.tour-page-notice span{color:var(--lime);font-size:16px}

/* v17: reliable gallery recovery + YouTube experience block */
.admin-inline-icon{width:18px;height:18px;display:block}.video-admin-box{display:grid;grid-template-columns:52px 1fr;gap:15px;align-items:start;padding:16px;border:1px solid #e1e7df;border-radius:17px;background:#f9fbf7}.video-admin-box label{display:grid;gap:7px}.video-admin-icon{width:52px;height:52px;display:grid;place-items:center;border-radius:15px;background:var(--lime);color:var(--ink)}.video-admin-icon svg{width:23px;height:23px}.editor-recovery-box{margin-top:18px;padding:18px;border-radius:18px;border:1px solid #e3e8e0;background:#fffdf7}.editor-recovery-head{display:flex;justify-content:space-between;gap:18px;align-items:start;margin-bottom:15px}.editor-recovery-head>div{display:grid;gap:5px}.editor-recovery-head strong{font-family:'Plus Jakarta Sans',sans-serif;font-size:14px;color:var(--ink)}.editor-recovery-head span{font-size:11px;line-height:1.55;color:#7c877f}.editor-recovery-count{display:grid;place-items:center;min-width:30px;height:30px;padding:0 8px;border-radius:999px;background:var(--lime);color:var(--ink)!important;font-size:10px!important;font-weight:900}.editor-recovery-item{outline:2px solid transparent;transition:outline-color .2s,transform .2s}.editor-recovery-item:has(input:checked){outline-color:var(--lime-dark);transform:translateY(-2px)}.tour-video-section{margin:26px 0;padding:30px;border-radius:25px;background:#071a2f;color:#fff;box-shadow:0 20px 55px rgba(7,26,47,.14)}.tour-video-heading{display:flex;justify-content:space-between;gap:25px;align-items:end;margin-bottom:22px}.tour-video-heading .section-label{color:var(--lime)}.tour-video-heading h2{margin:8px 0 7px;font-family:'Plus Jakarta Sans',sans-serif;font-size:clamp(25px,3vw,37px);letter-spacing:-.04em;line-height:1.05}.tour-video-heading p{margin:0;color:rgba(255,255,255,.68);font-size:13px;line-height:1.7;max-width:650px}.tour-video-icon{display:grid;place-items:center;width:54px;height:54px;flex:0 0 54px;border-radius:50%;background:var(--lime);color:var(--ink)}.tour-video-icon svg{width:24px;height:24px;fill:currentColor}.tour-video-frame{position:relative;overflow:hidden;aspect-ratio:16/9;border-radius:18px;background:#020914}.tour-video-frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0}.editor-gallery-grid{grid-template-columns:repeat(4,1fr)}
@media(max-width:700px){.video-admin-box{grid-template-columns:1fr}.editor-recovery-head{display:grid}.tour-video-section{padding:20px;border-radius:21px}.tour-video-heading{align-items:start}.tour-video-icon{display:none}.editor-gallery-grid{grid-template-columns:repeat(2,1fr)}}

/* v19 canonical tour entry point */
.site-header { position: sticky; top: 0; z-index: 1000; }


/* v21 footer navigation */
.footer-links{display:flex;align-items:center;gap:15px;margin-left:auto}.footer-links a{color:#526176;text-decoration:none;font-size:11px;font-weight:800}.footer-links a:hover{color:var(--ink)}@media(max-width:700px){.footer-inner{display:grid!important;gap:15px}.footer-links{margin-left:0;flex-wrap:wrap}.footer-note{font-size:10px}}
