/* ═══════════════════════════════════════════════════════
   ZiplineSamui.com – main.css
   Jungle Dark theme · Cormorant Garamond + DM Sans
═══════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────── */
:root {
  --bg:          #0c1a0e;
  --bg-rgb:      12, 26, 14;
  --bg-alt:      #111f14;
  --bg-surface:  #162419;
  --bg-elevated: #1d2e21;
  --footer-bg:   #090f0a;
  --accent:      #c8973a;
  --accent-rgb:  200, 151, 58;
  --accent-h:    #daa84a;
  --accent-soft: rgba(200,151,58,0.12);
  --accent-text: #0c1a0e;
  --white:       #f4f0e6;
  --text:        #9eb09e;
  --text-soft:   #6a856a;
  --border:      #1d3020;
  --border-h:    #c8973a;
  --shadow:      0 8px 32px rgba(0,0,0,0.35);
  --shadow-h:    0 24px 56px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,151,58,0.2);
  --success:     #5cb85c;
  --danger:      #e85d26;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', Arial, sans-serif;

  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --nav-h:       68px;
  --container:   1100px;
  --container-n: 820px;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background:  var(--bg);
  color:       var(--text);
  font-family: var(--font-body);
  font-size:   15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--white); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
ul { list-style: none; padding: 0; }

/* ── LAYOUT ────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 96px 0; }
.section-alt { padding: 96px 0; background: var(--bg-alt); }

/* ── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}
h2 { font-size: clamp(32px, 5vw, 48px); }
h3 { font-size: clamp(20px, 3vw, 26px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 { margin-bottom: 12px; }

.section-sub {
  color: var(--text-soft);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display:        inline-flex;
  align-items:    center;
  gap:            8px;
  padding:        13px 24px;
  border-radius:  var(--radius-sm);
  font-family:    var(--font-body);
  font-size:      14px;
  font-weight:    600;
  line-height:    1;
  border:         1px solid transparent;
  cursor:         pointer;
  text-decoration: none;
  white-space:    normal;
  text-align:     center;
  line-height:    1.3;
  transition:     all .25s cubic-bezier(.34,1.56,.64,1);
}

.btn-primary {
  background: var(--accent);
  color:      var(--accent-text);
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-soft);
}
.btn-primary:hover {
  background:   var(--accent-h);
  border-color: var(--accent-h);
  color:        var(--accent-text);
  transform:    translateY(-2px);
  box-shadow:   0 8px 28px rgba(200,151,58,0.3);
}

.btn-secondary {
  background:   transparent;
  color:        var(--white);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color:        var(--accent);
  background:   var(--accent-soft);
}

.btn-ghost {
  background:   transparent;
  color:        var(--text-soft);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--accent); }

.btn-outline {
  background:   transparent;
  color:        var(--white);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color:        var(--accent);
}

.btn-outline-light {
  background:   transparent;
  color:        var(--accent-text);
  border:       1px solid rgba(0,0,0,0.3);
}
.btn-outline-light:hover {
  background:   rgba(0,0,0,0.15);
  color:        var(--accent-text);
}

.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--nav-h);
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}

.nav.scrolled {
  background:       rgba(var(--bg-rgb), var(--glass-opacity));
  backdrop-filter:  blur(var(--glass-blur));
  box-shadow:       0 1px 0 var(--border);
}
.nav.nav-open {
  height: 100vh !important;
  backdrop-filter: none !important;
  background: var(--bg) !important;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.brand-text { display: inline-flex; align-items: center; gap: 0; }
.nav-brand em { color: var(--accent); font-style: normal; }
.nav-brand:hover { color: var(--white); }

.brand-icon {
  color: var(--accent);
  font-style: normal;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background:   var(--accent);
  color:        var(--accent-text) !important;
  padding:      9px 20px;
  border-radius: var(--radius-sm);
  font-size:    13px;
  font-weight:  700;
  flex-shrink:  0;
  transition:   all .22s;
}
.nav-cta:hover {
  background: var(--accent-h);
  transform:  translateY(-1px);
}

.nav-toggle {
  display:         none;
  flex-direction:  column;
  gap:             5px;
  background:      transparent;
  border:          none;
  cursor:          pointer;
  padding:         4px;
  margin-left:     auto;
}
.nav-toggle span {
  width:  22px;
  height: 1.5px;
  background: var(--white);
  display: block;
  transition: all .25s;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position:   relative;
  min-height: 100vh;
  display:    flex;
  align-items: center;
  justify-content: center;
  padding:    calc(var(--nav-h) + 60px) 2rem 80px;
  overflow:   hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position:      absolute;
  border-radius: 50%;
  filter:        blur(80px);
  opacity:       0.15;
}

.hero-orb-1 {
  width:  600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top:  -100px;
  left: -150px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width:  400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  bottom: 50px;
  right:  -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0); }
  50%       { transform: translate(30px, -20px); }
}

.hero-grid {
  position:        absolute;
  inset:           0;
  background-image: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position:   relative;
  z-index:    2;
  text-align: center;
  max-width:  720px;
}

.hero-eyebrow {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             10px;
  font-size:       11px;
  letter-spacing:  3px;
  text-transform:  uppercase;
  color:           var(--text-soft);
  margin-bottom:   28px;
}

.eyebrow-dot {
  width:  4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero-title {
  font-size:     clamp(56px, 10vw, 100px);
  line-height:   0.95;
  color:         var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-title em {
  color:      var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size:     16px;
  color:         var(--text);
  max-width:     480px;
  margin:        0 auto 44px;
  line-height:   1.75;
}

.hero-actions {
  display:         flex;
  gap:             12px;
  justify-content: center;
  flex-wrap:       wrap;
  margin-bottom:   64px;
}

/* Hero entrance animations */
.hero-eyebrow { animation: fadeUp .8s .2s both; }
.hero-title   { animation: fadeUp .8s .35s both; }
.hero-sub     { animation: fadeUp .8s .5s both; }
.hero-actions { animation: fadeUp .8s .65s both; }
.hero-stats   { animation: fadeUp .8s .8s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  display:         flex;
  gap:             0;
  justify-content: center;
  align-items:     center;
  flex-wrap:       wrap;
  border:          1px solid var(--border);
  border-radius:   var(--radius-lg);
  overflow:        hidden;
  background:      var(--bg-surface);
}

.stat {
  padding:    20px 28px;
  text-align: center;
  flex:       1;
  min-width:  120px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat-num {
  display:     block;
  font-family: var(--font-display);
  font-size:   28px;
  color:       var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display:        block;
  font-size:      10px;
  color:          var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.stat-divider { display: none; }

.hero-scroll {
  position:    absolute;
  bottom:      32px;
  left:        50%;
  transform:   translateX(-50%);
  display:     flex;
  flex-direction: column;
  align-items: center;
  gap:         8px;
  font-size:   10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:       var(--text-soft);
  animation:   fadeUp 1s 1.2s both;
}

.scroll-line {
  width:     1px;
  height:    40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation:  scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.5; }
}

/* ── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  background:  var(--bg-surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding:     16px 0;
}

.trust-items {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             40px;
  flex-wrap:       wrap;
}

.trust-item {
  display:     flex;
  align-items: center;
  gap:         8px;
  font-size:   13px;
  color:       var(--text-soft);
  white-space: nowrap;
}

.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ── TOUR CARDS ────────────────────────────────────── */
.tours-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   24px;
}

.tour-card {
  background:    var(--bg-surface);
  border:        1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow:      hidden;
  position:      relative;
  transition:    transform .3s cubic-bezier(.34,1.56,.64,1),
                 border-color .25s,
                 box-shadow .3s;
}

.tour-card::after {
  content:        '';
  position:       absolute;
  inset:          0;
  background:     linear-gradient(135deg, var(--accent-soft) 0%, transparent 50%);
  opacity:        0;
  transition:     opacity .3s;
  pointer-events: none;
  border-radius:  inherit;
}

.tour-card:hover {
  transform:    translateY(-8px);
  border-color: var(--border-h);
  box-shadow:   var(--shadow-h);
}

.tour-card:hover::after { opacity: 1; }

.tour-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow:   0 0 0 1px var(--accent-soft), var(--shadow);
}

/* Ribbon */
.card-ribbon {
  position:       absolute;
  top:            16px;
  right:          16px;
  z-index:        3;
  background:     var(--accent);
  color:          var(--accent-text);
  font-size:      11px;
  font-weight:    700;
  padding:        5px 12px;
  border-radius:  20px;
  display:        flex;
  align-items:    center;
  gap:            5px;
  letter-spacing: 0.3px;
}

.card-ribbon-alt {
  background: var(--bg-elevated);
  color:      var(--accent);
  border:     1px solid var(--accent);
}


.hero-image-overlay{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:.9;
}
.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.tour-card:hover .card-image img{ transform: scale(1.05); }

/* Card image */
.card-image {
  position: relative;
  height:   200px;
  overflow: hidden;
}

.card-image-placeholder {
  width:           100%;
  height:          100%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  transition:      transform .5s ease;
  position:        relative;
  overflow:        hidden;
}

.tour-card:hover .card-image-placeholder { transform: scale(1.05); }

.ci-hawk    { background: linear-gradient(135deg, #0a1f0c, #1a3518); }
.ci-lamai   { background: linear-gradient(135deg, #0a1520, #0f2035); }
.ci-combo   { background: linear-gradient(135deg, #1a1008, #2a1e0a); }
.ci-sky     { background: linear-gradient(135deg, #080e18, #101828); }

.ci-icon { font-size: 56px; opacity: 0.4; }

.ci-lines {
  position:   absolute;
  inset:      0;
  overflow:   hidden;
}
.ci-line {
  position:   absolute;
  height:     1px;
  background: linear-gradient(to right, transparent, rgba(200,151,58,0.3), transparent);
  width:      100%;
}
.ci-line:nth-child(1) { top: 30%; animation: lineSweep 3s ease-in-out infinite; }
.ci-line:nth-child(2) { top: 55%; animation: lineSweep 3s .8s ease-in-out infinite; }
.ci-line:nth-child(3) { top: 75%; animation: lineSweep 3s 1.6s ease-in-out infinite; }

@keyframes lineSweep {
  0%   { transform: translateX(-100%); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.card-platforms {
  position: absolute;
  bottom:   12px;
  left:     14px;
  display:  flex;
  gap:      6px;
}

.platform {
  font-size:      10px;
  font-weight:    700;
  padding:        3px 9px;
  border-radius:  3px;
  letter-spacing: 0.5px;
}

.platform.viator       { background: #f4501e; color: #fff; }
.platform.gyg          { background: #ff5533; color: #fff; }
.platform.travelpayouts{ background: #2b7fd4; color: #fff; }
.platform.direct       { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent); }

/* Card body */
.card-body {
  padding:  22px 24px 24px;
  position: relative;
  z-index:  1;
}

.card-label {
  font-size:      10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:          var(--accent);
  margin-bottom:  10px;
  display:        block;
}

.card-title {
  font-family:   var(--font-display);
  font-size:     22px;
  color:         var(--white);
  margin-bottom: 10px;
  font-weight:   600;
  transition:    color .22s;
}

.tour-card:hover .card-title { color: var(--accent); }

.card-meta {
  display:       flex;
  gap:           8px;
  flex-wrap:     wrap;
  margin-bottom: 14px;
}

.meta-badge {
  font-size:     12px;
  padding:       4px 10px;
  border-radius: 20px;
  border:        1px solid var(--border);
  color:         var(--text);
  background:    rgba(255,255,255,0.02);
}

.card-desc {
  font-size:     14px;
  color:         var(--text-soft);
  line-height:   1.65;
  margin-bottom: 14px;
}

.card-includes {
  margin-bottom: 18px;
}

.card-includes li {
  font-size:   13px;
  color:       var(--text-soft);
  padding:     4px 0 4px 18px;
  position:    relative;
  line-height: 1.4;
}

.card-includes li::before {
  content:     '✓';
  position:    absolute;
  left:        0;
  color:       var(--success);
  font-size:   11px;
  font-weight: 700;
}

.card-includes li.not-included::before {
  content: '✗';
  color:   var(--danger);
}

.card-includes li.not-included {
  color:          var(--text-soft);
  text-decoration: line-through;
  opacity:        0.7;
}

/* Booking card includes/excludes */
.booking-includes li { font-size: 13px; color: var(--text-soft); padding: 5px 0 5px 20px; position: relative; }
.booking-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; font-size: 11px; }
.booking-includes li.not-included::before { content: '✗'; color: var(--danger); }
.booking-includes li.not-included { color: var(--text-soft); text-decoration: line-through; opacity: 0.65; }

.card-price-row {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-bottom:   16px;
}

.card-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 12px; color: var(--text-soft); }
.price-amount { font-family: var(--font-display); font-size: 30px; color: var(--accent); line-height: 1; }
.price-per { font-size: 12px; color: var(--text-soft); }

.card-rating-circle {
  width:           44px;
  height:          44px;
  border-radius:   50%;
  border:          1.5px solid var(--accent);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-family:     var(--font-display);
  font-size:       16px;
  color:           var(--accent);
  background:      var(--accent-soft);
  flex-shrink:     0;
}

.card-actions { display: flex; flex-direction: column; gap: 8px; }

.card-detail-link {
  font-size:   13px;
  color:       var(--text-soft);
  text-align:  center;
  padding:     4px 0;
  transition:  color .2s;
}
.card-detail-link:hover { color: var(--accent); }

.tours-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.tours-footer p {
  color:         var(--text-soft);
  margin-bottom: 16px;
}

/* ── STATS SECTION ─────────────────────────────────── */
.stats-section {
  padding:    0;
  background: var(--bg-alt);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stats-item {
  background:  var(--bg-surface);
  padding:     40px 20px;
  text-align:  center;
  transition:  background .2s;
}
.stats-item:hover { background: var(--bg-elevated); }

.stats-num {
  display:       block;
  font-family:   var(--font-display);
  font-size:     44px;
  color:         var(--accent);
  line-height:   1;
  margin-bottom: 8px;
}

.stats-label {
  display:        block;
  font-size:      11px;
  color:          var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── STEPS ─────────────────────────────────────────── */
.steps-grid {
  display:         grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap:             24px;
  align-items:     center;
}

.step {
  background:    var(--bg-surface);
  border:        1px solid var(--border);
  border-radius: var(--radius-lg);
  padding:       36px 28px;
  transition:    border-color .22s, transform .25s;
}

.step:hover {
  border-color: var(--border-h);
  transform:    translateY(-4px);
}

.step-num {
  font-family:   var(--font-display);
  font-size:     52px;
  color:         var(--accent);
  opacity:       0.35;
  line-height:   1;
  margin-bottom: 14px;
}

.step h3 {
  font-size:     20px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color:     var(--text-soft);
}

.step-arrow {
  font-size: 28px;
  color:     var(--border);
  text-align: center;
  flex-shrink: 0;
}

/* ── REVIEWS ───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background:    var(--bg-surface);
  border:        1px solid var(--border);
  border-radius: var(--radius-lg);
  padding:       28px;
  transition:    border-color .22s, transform .25s;
}

.review-card:hover {
  border-color: var(--border-h);
  transform:    translateY(-4px);
}

.review-stars {
  color:         var(--accent);
  font-size:     16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review-text {
  font-size:     15px;
  color:         var(--text);
  line-height:   1.75;
  font-style:    italic;
  margin-bottom: 20px;
}

.review-text::before { content: '"'; color: var(--accent); font-family: var(--font-display); font-size: 24px; }

.review-author {
  display:     flex;
  align-items: center;
  gap:         12px;
}

.review-avatar {
  width:           40px;
  height:          40px;
  border-radius:   50%;
  background:      var(--accent-soft);
  border:          1px solid var(--accent);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       13px;
  font-weight:     700;
  color:           var(--accent);
  flex-shrink:     0;
}

.review-name {
  display:     block;
  font-size:   14px;
  color:       var(--white);
  font-weight: 500;
}

.review-loc {
  display:   block;
  font-size: 12px;
  color:     var(--text-soft);
}

/* ── FAQ ───────────────────────────────────────────── */
.faq-list {
  max-width:     760px;
  margin:        0 auto;
  border-top:    1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width:           100%;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  background:      transparent;
  border:          none;
  color:           var(--white);
  font-family:     var(--font-display);
  font-size:       20px;
  font-weight:     400;
  padding:         22px 0;
  cursor:          pointer;
  text-align:      left;
  gap:             16px;
  transition:      color .22s;
}

.faq-q:hover { color: var(--accent); }

.faq-icon {
  flex-shrink:    0;
  width:          28px;
  height:         28px;
  border-radius:  50%;
  border:         1px solid var(--border);
  display:        flex;
  align-items:    center;
  justify-content: center;
  font-size:      18px;
  color:          var(--accent);
  line-height:    1;
  transition:     transform .3s, background .22s, border-color .22s;
}

.faq-item.open .faq-icon {
  transform:    rotate(45deg);
  background:   var(--accent-soft);
  border-color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow:   hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 600px; }

.faq-a p {
  font-size:   15px;
  color:       var(--text);
  line-height: 1.75;
  padding-bottom: 22px;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── BLOG ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background:    var(--bg-surface);
  border:        1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow:      hidden;
  display:       block;
  transition:    transform .25s, border-color .22s;
}

.blog-card:hover {
  transform:    translateY(-6px);
  border-color: var(--border-h);
  color:        inherit;
}

.blog-card-img {
  height:     200px;
  background: var(--bg-elevated);
  transition: transform .5s;
}

.blog-card:hover .blog-card-img { transform: scale(1.03); }

.bc-1 { background: linear-gradient(135deg, #0a1f0c, #1a3518, #c8973a22); }
.bc-2 { background: linear-gradient(135deg, #0c1a0e, #1d3a22); }
.bc-3 { background: linear-gradient(135deg, #1a1008, #2a200a, #c8973a15); }

.blog-card-body { padding: 22px; }

.blog-cat {
  font-size:      10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:          var(--accent);
  display:        block;
  margin-bottom:  10px;
}

.blog-card h3 {
  font-size:     19px;
  color:         var(--white);
  margin-bottom: 8px;
  transition:    color .2s;
  line-height:   1.3;
}

.blog-card:hover h3 { color: var(--accent); }

.blog-card p {
  font-size:     13px;
  color:         var(--text-soft);
  margin-bottom: 14px;
}

.blog-read {
  font-size: 12px;
  color:     var(--accent);
  font-weight: 600;
}

/* ── CTA BANNER ────────────────────────────────────── */
.cta-banner {
  background: var(--accent);
  padding:    80px 0;
  position:   relative;
  overflow:   hidden;
}

.cta-banner-bg {
  position:       absolute;
  inset:          0;
  pointer-events: none;
}

.cta-orb {
  position:   absolute;
  width:      500px;
  height:     500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  top:        -200px;
  right:      -100px;
}

.cta-content {
  position:    relative;
  z-index:     2;
  text-align:  center;
  max-width:   600px;
  margin:      0 auto;
}

.cta-content h2 {
  font-size:     clamp(32px, 5vw, 48px);
  color:         var(--accent-text);
  margin-bottom: 12px;
}

.cta-content p {
  color:         rgba(0,0,0,0.6);
  margin-bottom: 32px;
  font-size:     15px;
}

.cta-actions {
  display:         flex;
  gap:             12px;
  justify-content: center;
  flex-wrap:       wrap;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background:  var(--footer-bg);
  border-top:  1px solid var(--border);
  padding:     64px 0 40px;
}

.footer-grid {
  display:               grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:                   48px;
  margin-bottom:         48px;
}

.footer-brand .nav-brand {
  margin-bottom: 16px;
  display:       inline-flex;
}

.footer-brand p {
  font-size:     13px;
  color:         var(--text-soft);
  line-height:   1.7;
  margin-bottom: 16px;
}

.footer-partner {
  font-size:  13px;
  color:      var(--accent);
  font-weight: 500;
}

.footer-col h4 {
  font-family:   var(--font-body);
  font-size:     12px;
  font-weight:   700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:         var(--text-soft);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 13px;
  color:     var(--text-soft);
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top:  1px solid var(--border);
  padding-top: 28px;
  display:     flex;
  justify-content: space-between;
  flex-wrap:   wrap;
  gap:         12px;
}

.disclosure, .copyright {
  font-size: 12px;
  color:     var(--text-soft);
  line-height: 1.6;
}

/* ── MOBILE CTA ────────────────────────────────────── */
.mobile-cta {
  position:   fixed;
  bottom:     0;
  left:       0;
  right:      0;
  z-index:    998;
  padding:    12px 16px;
  background: rgba(12,26,14,0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  display:    none;
  transform:  translateY(100%);
  transition: transform .3s ease;
}
.mobile-cta.visible { transform: translateY(0); }

/* ── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity:    0;
  transform:  translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity:   1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .tours-grid  { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .steps-grid  { grid-template-columns: 1fr; }
  .step-arrow  { display: none; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-title  { font-size: clamp(48px, 12vw, 72px); }
  .hero-stats  { flex-direction: column; gap: 0; }
  .stat        { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle  { display: flex; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid   { grid-template-columns: 1fr; }
  .trust-items { gap: 20px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 2rem; }
  .container   { padding: 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta  { display: block; }
  body         { padding-bottom: 68px; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }

  /* Mobile nav open state */
  .nav.nav-open .nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    position: fixed !important;
    inset: 0 !important;
    background: var(--bg) !important;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem !important;
    gap: 0 !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    height: 100vh !important;
  }
  .nav.nav-open .nav-brand, .nav.nav-open .nav-toggle {
    position: relative !important;
    z-index: 10000 !important;
  }
  body.nav-open-active .nav-cta,
  body.nav-open-active .mobile-cta,
  body.nav-open-active #mobileCta { display: none !important; }
  .nav.nav-open .nav-links a {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
  }

  /* Animate hamburger → X */
  .nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
