/* ============================================================
   GÜVERCIN BALLOONS — DESIGN SYSTEM v3
   Ref: tatildokya.com · balloonscanner.com
   Premium travel agency — mobile-first
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary:       #FF7A00;
  --primary-dark:  #D96300;
  --primary-light: #FFA040;
  --navy:          #1B2B4B;
  --navy-dark:     #0F1E35;
  --cream:         #FFF8F0;
  --cream-2:       #FFF3E0;
  --gold:          #F59E0B;
  --white:         #FFFFFF;
  --text:          #0F172A;
  --text-muted:    #64748B;
  --border:        rgba(0,0,0,.08);
  --border-light:  rgba(255,255,255,.12);

  --serif: 'Lora', Georgia, serif;
  --sans:  'Manrope', system-ui, sans-serif;

  --section-py: clamp(64px, 8vw, 104px);
  --container:  1200px;
  --r-sm:  8px;
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  32px;

  --sh-xs: 0 1px 4px rgba(0,0,0,.06);
  --sh-sm: 0 4px 16px rgba(0,0,0,.08);
  --sh:    0 8px 32px rgba(0,0,0,.11);
  --sh-lg: 0 16px 48px rgba(0,0,0,.15);
  --sh-orange: 0 8px 28px rgba(255,122,0,.28);

  --ease:   cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.175,.885,.32,1.275);
  --header-top-h: 36px;
  --header-h: 76px;

  /* compatibility aliases (used across stylesheet) */
  --font-head: var(--serif);
  --font-body: var(--sans);
  --text-body: #334155;
  --shadow:    var(--sh);
  --shadow-lg: var(--sh-lg);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CONTAINER ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--serif); line-height: 1.18; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
.accent { color: var(--primary); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); background: rgba(255,122,0,.08); border: 1px solid rgba(255,122,0,.2);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.section-head { 
  text-align: center; 
  max-width: 720px; 
  margin: 0 auto 56px; 
}
.section-head h2 { 
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.3px;
}
.section-head p { 
  color: var(--text-muted); 
  font-size: 1.05rem; 
  line-height: 1.8;
  font-weight: 400;
}

/* ── SECTIONS ── */
.section { padding: var(--section-py) 0; }
.section-alt  { background: var(--cream); }
.section-navy { background: var(--navy-dark); color: #fff; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px;
  font-family: var(--sans); font-size: .9rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all .25s var(--ease); white-space: nowrap;
}
.btn-sm  { padding: 9px 20px; font-size: .82rem; }
.btn-lg  { padding: 15px 34px; font-size: .97rem; }
.btn-xl  { padding: 17px 40px; font-size: 1.02rem; }

.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: var(--sh-orange); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,122,0,.38); }

.btn-dark    { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-dark); transform: translateY(-2px); }

.btn-white   { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--cream-2); transform: translateY(-2px); }

.btn-ghost   { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #1ebe5b; border-color: #1ebe5b; color: #fff; transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .35s var(--ease);
}

/* --- Top Bar --- */
.header-top {
  height: var(--header-top-h);
  background: rgba(15, 30, 50, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all .35s var(--ease);
}
.header-top .container { width: 100%; }
.top-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.top-left, .top-right { display: flex; align-items: center; gap: 24px; }
.top-link { opacity: 0.85; transition: opacity .2s; }
.top-link:hover { opacity: 1; }
.top-link i { color: var(--primary); margin-right: 5px; }
.top-link-wa i { color: #25d366; }

/* Dropdowns & Cart */
.top-dropdown { position: relative; }
.top-drop-btn {
  background: none; border: none; color: inherit; font-family: inherit; font-size: inherit; font-weight: inherit;
  cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 5px 0;
}
.top-drop-btn img { width: 16px; height: 11px; object-fit: cover; border-radius: 1px; }
.top-drop-btn i.fa-chevron-down { font-size: 0.6rem; opacity: 0.6; }

.top-drop-content {
  position: absolute; top: 100%; right: 0; background: #fff; color: var(--navy);
  min-width: 120px; border-radius: 8px; box-shadow: var(--sh-lg);
  padding: 6px 0; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s var(--spring); z-index: 100;
}
.top-dropdown:hover .top-drop-content { opacity: 1; visibility: visible; transform: translateY(0); }
.top-drop-content a {
  display: flex; align-items: center; gap: 10px; padding: 8px 16px;
  font-size: 0.8rem; transition: background .2s;
}
.top-drop-content a:hover { background: var(--cream); color: var(--primary); }
.top-drop-content img { width: 16px; border-radius: 1px; }

.top-cart {
  position: relative; font-size: 1.05rem; color: #fff; transition: color .2s;
}
.top-cart:hover { color: var(--primary); }
.cart-badge {
  position: absolute; top: -6px; right: -8px; background: var(--primary); color: #fff;
  font-size: 0.58rem; font-weight: 700; width: 14px; height: 14px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  border: 1px solid var(--navy-dark);
}

/* --- Main Header --- */
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

/* Transparent */
.site-header.is-transparent { background: transparent; }
.site-header.is-transparent .h-nav a            { color: rgba(255,255,255,.95); }
.site-header.is-transparent .h-nav a:hover      { color: #fff; }
.site-header.is-transparent .h-burger span      { background: #fff; }

/* Scrolled */
.site-header.is-scrolled { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.site-header.is-scrolled .header-top { margin-top: calc(var(--header-top-h) * -1); opacity: 0; }
.site-header.is-scrolled .h-nav a            { color: var(--navy); }
.site-header.is-scrolled .h-nav a:hover      { color: var(--primary); }
.site-header.is-scrolled .h-burger span      { background: var(--navy); }

/* Logo */
.h-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.h-logo img { height: 58px; width: auto; object-fit: contain; transition: height .3s; }
.site-header.is-scrolled .h-logo img { height: 50px; }

/* Nav */
.h-nav { display: flex; gap: 6px; align-items: center; margin-left: auto; }
.h-nav a { font-size: .88rem; font-weight: 500; padding: 10px 12px; border-radius: 8px; transition: all .2s; }
.h-nav a:hover, .h-nav a.active { background: rgba(255,122,0,.08); color: var(--primary); }

/* Actions */
.h-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Booking inquiry button (adapts to header state) */
.h-inquiry {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; white-space: nowrap;
  padding: 8px 16px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.55); color: #fff;
  transition: all .25s var(--ease);
}
.h-inquiry i { font-size: .8rem; }
.h-inquiry:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-1px); }
.site-header.is-scrolled .h-inquiry { border-color: var(--primary); color: var(--primary); }
.site-header.is-scrolled .h-inquiry:hover { background: var(--primary); color: #fff; }

.h-wa {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 500;
  padding: 8px 15px; border: 1.5px solid; border-radius: 100px; transition: all .25s;
}
.h-wa:hover { background: var(--primary) !important; color: #fff !important; border-color: var(--primary) !important; }

/* Burger */
.h-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; margin-left: auto; }
.h-burger span { display: block; width: 23px; height: 2px; border-radius: 2px; transition: all .3s var(--spring); }
.h-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.h-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.h-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .site-header .header-top { display: none; }
  .site-header { position: fixed; }
  .site-header.is-scrolled { background: #fff; }
}

/* Mobile overlay + drawer */
.mob-overlay { position: fixed; inset: 0; background: rgba(15,30,53,.55); backdrop-filter: blur(4px); z-index: 1010; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mob-overlay.open { opacity: 1; pointer-events: all; }
.mob-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px,88vw);
  background: #fff; z-index: 1020;
  display: flex; flex-direction: column;
  padding: 88px 24px 32px; gap: 2px;
  transform: translateX(100%); transition: transform .35s var(--spring);
  overflow-y: auto; box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.mob-menu.open { transform: none; }
.mob-menu a { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-radius: 12px; font-weight: 500; color: var(--text); transition: all .2s; }
.mob-menu a:hover, .mob-menu a.active { background: rgba(255,122,0,.07); color: var(--primary); }
.mob-menu-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }

/* Floating CTAs */
.floating-cta { position: fixed; right: 20px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: var(--sh-lg); transition: all .25s var(--spring); }
.float-btn:hover { transform: scale(1.12) translateY(-2px); }
.float-wa   { background: #25D366; color: #fff; position: relative; }
.float-book { background: var(--primary); color: #fff; }
@keyframes pulse-ring {
  0%       { transform: scale(1); opacity: .6; }
  80%,100% { transform: scale(1.65); opacity: 0; }
}
.float-wa::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: pulse-ring 2.4s ease-out infinite; z-index: -1; }

/* ============================================================
   HERO SLIDER  (tatildokya style — full-screen, fade)
   ============================================================ */
.hero-slider {
  position: relative;
  height: 100vh; min-height: 640px; max-height: 920px;
  overflow: hidden;
}

/* Each slide */
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); pointer-events: none; }
.slide.active { opacity: 1; z-index: 2; pointer-events: all; }

/* Background */
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 8s var(--ease);
}
.slide.active .slide-bg { transform: scale(1); }

/* Gradient overlay */
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,30,53,.82) 0%, rgba(15,30,53,.42) 58%, rgba(0,0,0,.12) 100%);
}

/* Content */
.slide-content {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: center;
  padding-top: var(--header-h);
}
.slide-inner { max-width: 680px; }

/* Animated elements */
.slide-tag, .slide-title, .slide-sub, .slide-btns {
  opacity: 0;
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.slide-tag   { transform: translateY(18px); transition-delay: .15s; }
.slide-title { transform: translateY(28px); transition-delay: .3s;  }
.slide-sub   { transform: translateY(22px); transition-delay: .45s; }
.slide-btns  { transform: translateY(18px); transition-delay: .6s;  }

.slide.active .slide-tag,
.slide.active .slide-title,
.slide.active .slide-sub,
.slide.active .slide-btns { opacity: 1; transform: none; }

.slide-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary); color: #fff;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 18px;
}
.slide-title  { font-size: clamp(2.4rem, 5.5vw, 4.4rem); color: #fff; line-height: 1.1; margin-bottom: 16px; }
.slide-sub    { font-size: clamp(.92rem, 1.5vw, 1.1rem); color: rgba(255,255,255,.84); line-height: 1.68; margin-bottom: 30px; max-width: 500px; }
.slide-btns   { display: flex; gap: 14px; flex-wrap: wrap; }

/* Prev / Next arrows */
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.38);
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: all .25s;
}
.slider-prev:hover, .slider-next:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Dot navigation */
.slider-dots {
  position: absolute; bottom: 130px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 9px; align-items: center;
}
.slider-dot {
  width: 9px; height: 9px; border-radius: 5px;
  background: rgba(255,255,255,.42); border: none; cursor: pointer; padding: 0;
  transition: all .3s var(--ease);
}
.slider-dot.active { background: var(--primary); width: 26px; }

/* Scroll hint */
.slider-scroll {
  position: absolute; bottom: 130px; right: 40px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.55); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
}
.slider-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: lineDown 1.9s ease-in-out infinite;
}
@keyframes lineDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── BOOKING BAR (bottom of slider) ── */
.booking-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 20;
}
.booking-bar-inner {
  background: #fff;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 22px 32px;
  display: flex; gap: 14px; align-items: flex-end;
  box-shadow: 0 -6px 40px rgba(0,0,0,.12);
}
.booking-field { flex: 1; min-width: 0; }
.booking-field label {
  display: flex; align-items: center; gap: 6px;
  font-size: .71rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 7px;
}
.booking-field label i { color: var(--primary); }
.booking-field select,
.booking-field input {
  width: 100%; height: 46px; padding: 0 13px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--sans); font-size: .9rem; color: var(--text);
  background: #fff; outline: none;
  transition: border-color .2s;
}
.booking-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
  padding-right: 38px;
}
.booking-field input {
  appearance: none; -webkit-appearance: none;
}
.booking-field select:focus,
.booking-field input:focus { border-color: var(--primary); }
.booking-submit { flex-shrink: 0; }
.booking-submit .btn { height: 46px; border-radius: var(--r-sm); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(160deg, #18110a 0%, #201408 50%, #1c1108 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 115%, rgba(255,122,0,.13) 0%, transparent 65%);
  pointer-events: none;
}
.stats-bar::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,122,0,.65) 50%, transparent 100%);
}
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 28px 32px; position: relative;
  transition: transform .32s var(--ease);
}
.stat-item:hover { transform: translateY(-6px); }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 12%; height: 76%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,122,0,.28), transparent);
}
.stat-icon {
  width: 62px; height: 62px; border-radius: 18px;
  background: rgba(255,122,0,.1);
  border: 1px solid rgba(255,122,0,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary); margin-bottom: 18px;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.stat-item:hover .stat-icon {
  background: rgba(255,122,0,.2);
  box-shadow: 0 0 28px rgba(255,122,0,.28);
  transform: scale(1.1);
}
.stat-num {
  font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 30%, #e8be6a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: .75rem; color: rgba(255,255,255,.42); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }

/* ============================================================
   TOUR CARDS
   ============================================================ */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tour-card {
  border-radius: var(--r-lg); background: #fff; overflow: hidden;
  box-shadow: var(--sh-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid rgba(15,30,53,.07); display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-9px); box-shadow: var(--sh-lg); }

.tc-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tc-img-link { display: block; width: 100%; height: 100%; }
.tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tour-card:hover .tc-img img { transform: scale(1.07); }

..tc-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px; box-shadow: 0 4px 12px rgba(0,0,0,.18);
  background: var(--primary); /* default fallback */
}
.tc-badge-orange, .tc-badge.orange { background: var(--primary); }
.tc-badge-navy, .tc-badge.premium { background: var(--navy); }
.tc-badge-gold, .tc-badge.exclusive { background: linear-gradient(135deg, #d4a23a, #b8841f); }
.tc-wishlist {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #CBD5E1; font-size: .9rem; transition: all .2s; box-shadow: var(--sh-xs); border: none;
}
.tc-wishlist:hover { color: #EF4444; transform: scale(1.1); }

.tc-body { padding: 22px 22px 16px; flex: 1; display: flex; flex-direction: column; }
.tc-rating { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; font-size: .8rem; color: var(--text-muted); font-weight: 600; }
.tc-stars  { color: var(--gold); font-size: .82rem; display: flex; gap: 2px; }
.tc-reviews { font-weight: 400; }
.tc-title  { font-size: 1.25rem; margin-bottom: 8px; color: var(--navy); font-family: var(--serif); line-height: 1.25; }
.tc-desc   { font-size: .87rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

.tc-meta { display: flex; flex-wrap: wrap; gap: 9px 20px; padding: 13px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 15px; }
.tc-meta span, .tc-meta .tc-meta-item { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--navy); font-weight: 600; }
.tc-meta span i, .tc-meta .tc-meta-item i { color: var(--primary); font-size: .85rem; }

.tc-includes { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tc-includes li { display: flex; align-items: flex-start; gap: 9px; font-size: .84rem; color: var(--text-body); line-height: 1.4; }
.tc-includes li i { color: #1f9d55; font-size: .78rem; margin-top: .28em; flex-shrink: 0; }

.tc-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 22px 22px; border-top: 1px solid var(--border); }
.tc-price { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.tc-price-from { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.tc-price strong, .tc-price .new { font-size: 1.5rem; font-weight: 800; color: var(--primary); font-family: var(--serif); line-height: 1; }
.tc-price .old { font-size: .9rem; color: var(--text-muted); text-decoration: line-through; margin-right: 4px; }
.tc-price-per, .tc-price .per { font-size: .74rem; color: var(--text-muted); font-family: var(--sans); font-weight: 400; }

/* ============================================================
   ABOUT STRIP  (tatildokya overlapping-photo style)
   ============================================================ */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; }
.about-photos {
  position: relative; min-height: 580px; overflow: hidden;
  background: #0A1628;
}
.about-photo-main { position: absolute; inset: 0; }
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72) saturate(1.1); }

.about-photo-thumb {
  position: absolute; bottom: 36px; right: -30px; z-index: 4;
  width: 200px; aspect-ratio: 1;
  border-radius: var(--r); overflow: hidden;
  border: 5px solid rgba(255,255,255,.92); box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.about-photo-thumb img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute; top: 44px; left: -14px; z-index: 5;
  background: linear-gradient(135deg, var(--primary) 0%, #c85800 100%);
  color: #fff;
  border-radius: var(--r); padding: 16px 20px; text-align: center;
  box-shadow: 0 14px 44px rgba(255,122,0,.55); min-width: 108px;
}
.about-badge .big   { display: block; font-family: var(--serif); font-size: 2.1rem; font-weight: 800; line-height: 1; }
.about-badge .small { display: block; font-size: .7rem; opacity: .92; margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }

.about-body {
  padding: clamp(44px, 7vw, 84px);
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(145deg, #0F1E35 0%, #1a2d4e 100%);
  position: relative; overflow: hidden;
}
.about-body::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,122,0,.09) 0%, transparent 65%);
  pointer-events: none;
}
.about-body::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,122,0,.05) 0%, transparent 65%);
  pointer-events: none;
}
.about-body .eyebrow { background: rgba(255,122,0,.12); border-color: rgba(255,122,0,.28); color: var(--primary-light); }
.about-body h2 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.about-body > p { color: rgba(255,255,255,.62); line-height: 1.78; margin-bottom: 26px; position: relative; z-index: 1; }
.about-checks { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; position: relative; z-index: 1; }
.check-item { display: flex; align-items: flex-start; gap: 11px; font-size: .89rem; color: rgba(255,255,255,.78); }
.check-item i { color: var(--primary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.about-body .btn { position: relative; z-index: 1; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 30px 22px; text-align: center;
  transition: all .3s var(--ease); box-shadow: var(--sh-xs);
}
.feat-card:hover { transform: translateY(-7px); box-shadow: var(--sh); border-color: rgba(255,122,0,.22); }
.feat-icon {
  width: 64px; height: 64px; border-radius: 18px; background: rgba(255,122,0,.08);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; overflow: hidden;
}
.feat-icon img { width: 34px; height: 34px; object-fit: contain; }
.feat-card h4 { font-size: 1.02rem; margin-bottom: 9px; color: var(--navy); }
.feat-card p  { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   EXPERIENCES — dark section
   ============================================================ */
.exp-section {
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, #07101e 0%, #0F1E35 45%, #0b1929 100%);
  position: relative; overflow: hidden;
}
.exp-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}
.exp-section::after {
  content: ''; position: absolute;
  bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,122,0,.07) 0%, transparent 65%);
  pointer-events: none;
}
.exp-section .section-head h2 { color: #fff; }
.exp-section .section-head p  { color: rgba(255,255,255,.55); }
.exp-section .eyebrow { color: var(--primary-light); background: rgba(255,122,0,.1); border-color: rgba(255,122,0,.22); }

.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exp-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  box-shadow: 0 8px 40px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(255,122,0,.28);
  border-color: rgba(255,122,0,.28);
}
.exp-img { position: absolute; inset: 0; }
.exp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.exp-card:hover .exp-img img { transform: scale(1.09); }

.exp-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,10,22,.96) 0%, rgba(5,10,22,.28) 55%, transparent 100%); transition: all .3s; }
.exp-card:hover .exp-overlay { background: linear-gradient(to top, rgba(5,10,22,.98) 0%, rgba(5,10,22,.55) 65%, rgba(0,0,0,.05) 100%); }

.exp-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2; }
.exp-tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: rgba(255,122,0,.92); color: #fff; padding: 5px 13px; border-radius: 100px; margin-bottom: 10px; }
.exp-content h3 { font-family: var(--serif); font-size: 1.35rem; color: #fff; margin-bottom: 9px; line-height: 1.3; }
.exp-content p  { font-size: .84rem; color: rgba(255,255,255,.68); line-height: 1.58; margin-bottom: 16px; }

/* ============================================================
   PARTNERS / TRUST STRIP
   ============================================================ */
.partners-strip { padding: 30px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-inner { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 56px); flex-wrap: wrap; }
.partner-item { display: flex; align-items: center; gap: 10px; opacity: .68; transition: opacity .2s; }
.partner-item:hover { opacity: 1; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px; box-shadow: var(--sh-xs); transition: all .3s; position: relative;
}
.testi-card::before { content: '\201C'; position: absolute; top: 16px; right: 22px; font-family: var(--serif); font-size: 5rem; color: rgba(255,122,0,.1); line-height: 1; font-style: italic; }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: rgba(255,122,0,.18); }
.testi-stars { color: var(--gold); margin-bottom: 12px; display: flex; gap: 3px; }
.testi-text  { font-size: .88rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 18px; font-style: italic; }
.testi-author{ display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.testi-info strong { display: block; font-size: .88rem; color: var(--navy); }
.testi-info span   { font-size: .76rem; color: var(--text-muted); }
.testi-actions {
  display: flex; justify-content: center; align-items: center; gap: 16px;
  margin-top: 40px; flex-wrap: wrap;
}
.btn-review {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: 50px; font-size: .9rem; font-weight: 600;
  border: 2px solid; text-decoration: none; transition: all .28s var(--ease);
}
.btn-google {
  color: #fff; background: #4285F4; border-color: #4285F4;
}
.btn-google:hover { background: #2b6de3; border-color: #2b6de3; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(66,133,244,.35); }
.btn-tripadvisor {
  color: #fff; background: #34E0A1; border-color: #34E0A1;
}
.btn-tripadvisor:hover { background: #20c98a; border-color: #20c98a; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(52,224,161,.35); }

/* ============================================================
   GALLERY — MODERN MOSAIC + LIGHTBOX
   ============================================================ */
.gallery-mosaic{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:200px;
  gap:14px;
}
.gallery-masonry {
  column-count: 4;
  column-gap: 14px;
  width: 100%;
}
.gallery-masonry .gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .gallery-masonry {
    column-count: 3;
  }
}
@media (max-width: 600px) {
  .gallery-masonry {
    column-count: 2;
  }
}
@media (max-width: 400px) {
  .gallery-masonry {
    column-count: 1;
  }
}
.gallery-item{
  position:relative; overflow:hidden; border-radius:16px; cursor:pointer;
  margin:0; box-shadow:var(--sh-xs);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), opacity .35s, visibility .35s;
}
.gallery-item:hover{ box-shadow:0 16px 40px rgba(15,30,53,.2); }
.gallery-item:focus-visible{ outline:3px solid var(--primary); outline-offset:3px; }
.gallery-item.gi-wide{ grid-column:span 2; }
.gallery-item.gi-tall{ grid-row:span 2; }
.gallery-item.gi-big{ grid-column:span 2; grid-row:span 2; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s var(--ease); }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item-ov{
  position:absolute; inset:0; padding:18px;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end;
  gap:6px; color:#fff; text-align:left;
  background:linear-gradient(to top, rgba(15,30,53,.82) 0%, rgba(15,30,53,.15) 55%, rgba(15,30,53,0) 100%);
  opacity:0; transform:translateY(8px); transition:opacity .35s, transform .35s;
}
.gallery-item:hover .gallery-item-ov,
.gallery-item:focus-visible .gallery-item-ov{ opacity:1; transform:translateY(0); }
.gallery-item-ov .gi-cat{
  align-self:flex-start; font-size:.66rem; font-weight:700; letter-spacing:1.2px; text-transform:uppercase;
  background:var(--primary); color:#fff; padding:4px 11px; border-radius:100px;
}
.gallery-item-ov i{
  position:absolute; top:16px; right:16px; font-size:1rem; color:#fff;
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.4);
  border-radius:50%; backdrop-filter:blur(4px);
}
.gallery-item-ov .gi-title{ font-size:.92rem; font-weight:600; line-height:1.35; }
.gallery-item.is-hidden{ display:none; }

.gallery-empty{
  text-align:center; color:var(--text-muted); font-size:1rem;
  padding:50px 0; display:flex; align-items:center; justify-content:center; gap:10px;
}
.gallery-empty i{ color:var(--primary); }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:2000; display:none;
  align-items:center; justify-content:center; padding:5vh 4vw;
  background:rgba(8,16,30,.94); backdrop-filter:blur(6px);
  opacity:0; transition:opacity .3s;
}
.lightbox.open{ display:flex; opacity:1; }
.lb-stage{ margin:0; max-width:92vw; max-height:88vh; display:flex; flex-direction:column; align-items:center; }
.lb-stage img{
  max-width:92vw; max-height:78vh; width:auto; height:auto;
  border-radius:12px; box-shadow:0 30px 80px rgba(0,0,0,.6); object-fit:contain;
  animation:lbZoom .35s var(--ease);
}
@keyframes lbZoom{ from{ transform:scale(.94); opacity:0; } to{ transform:scale(1); opacity:1; } }
.lb-caption{ color:rgba(255,255,255,.85); font-size:.95rem; margin-top:16px; text-align:center; max-width:680px; }
.lb-close{
  position:absolute; top:22px; right:26px; z-index:2; background:rgba(255,255,255,.12);
  color:#fff; border:1px solid rgba(255,255,255,.3); width:46px; height:46px; border-radius:50%;
  font-size:1.7rem; line-height:1; cursor:pointer; transition:all .2s;
}
.lb-close:hover{ background:var(--primary); border-color:var(--primary); transform:rotate(90deg); }
.lb-nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:2;
  background:rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.3);
  width:52px; height:52px; border-radius:50%; font-size:1.1rem; cursor:pointer; transition:all .2s;
}
.lb-nav:hover{ background:var(--primary); border-color:var(--primary); }
.lb-prev{ left:24px; }
.lb-next{ right:24px; }
.lb-counter{ position:absolute; bottom:22px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.7); font-size:.85rem; letter-spacing:1px; }

@media(max-width:1024px){ .gallery-mosaic{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:768px){
  .gallery-mosaic{ grid-template-columns:repeat(2,1fr); grid-auto-rows:160px; gap:10px; }
  .lb-prev{ left:10px; } .lb-next{ right:10px; }
  .lb-nav{ width:44px; height:44px; }
}
@media(max-width:480px){
  .gallery-item.gi-big{ grid-column:span 2; grid-row:span 1; }
  .gallery-item.gi-wide{ grid-column:span 2; }
  .gallery-item.gi-tall{ grid-row:span 1; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 11px; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-xs); transition: border-color .2s, box-shadow .2s; }
.faq-item.open { border-color: var(--primary); box-shadow: 0 4px 22px rgba(255,122,0,.1); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 19px 20px; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: .94rem; font-weight: 600; color: var(--navy); text-align: left;
}
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,122,0,.08); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: .82rem; flex-shrink: 0; transition: all .3s var(--spring); }
.faq-item.open .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-body.open { max-height: 400px; }
.faq-body-inner { padding: 0 20px 20px; font-size: .88rem; color: var(--text-muted); line-height: 1.78; }

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.cta-banner { position: relative; padding: clamp(88px, 11vw, 130px) 0; overflow: hidden; background: #07101f; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 115%, rgba(255,122,0,.28) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 5% 5%, rgba(27,43,75,.75) 0%, transparent 55%);
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255%2C255%2C255%2C0.03)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-inner .eyebrow { background: rgba(255,122,0,.13); border-color: rgba(255,122,0,.3); color: var(--primary-light); }
.cta-inner h2 { color: #fff; margin-bottom: 14px; }
.cta-inner p  { color: rgba(255,255,255,.7); font-size: 1.04rem; line-height: 1.66; margin-bottom: 34px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { 
  background-color: #0A0A0B; 
  background-image: linear-gradient(to bottom, rgba(10, 10, 11, 0) 60%, rgba(10, 10, 11, 1) 100%), url('../images/footer_bg.png');
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  color: rgba(255,255,255,.65); 
  padding: 88px 0 0; 
  border-top: 1px solid rgba(255,255,255,0.05); 
  position: relative;
  overflow: hidden;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2.1fr 1.1fr 1.1fr 1.1fr; gap: 48px; padding-bottom: 64px; position: relative; z-index: 2; }

.f-logo img { height: 84px; width: auto; margin-bottom: 24px; filter: none; opacity: 1; }
.f-contact-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.f-contact-info a { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.f-contact-info a:hover { color: var(--primary); }
.f-contact-info i { color: var(--primary); font-size: 0.85rem; }
.f-desc { font-size: .92rem; line-height: 1.8; color: rgba(255,255,255,.5); margin-bottom: 30px; max-width: 340px; }

.f-directions {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 4px; font-size: .82rem; font-weight: 500;
  color: var(--primary); width: fit-content;
  transition: color .2s, gap .2s;
}
.f-contact-info a.f-directions { color: var(--primary); }
.f-contact-info a.f-directions:hover { color: var(--primary-light, #ffb066); }
.f-directions i { font-size: .8rem; color: var(--primary); }
.f-directions span { border-bottom: 1px solid rgba(255,255,255,.18); padding-bottom: 1px; transition: border-color .2s; }
.f-directions:hover { color: var(--primary-light, #ffb066); gap: 9px; }
.f-directions:hover span { border-color: var(--primary); }

.f-socials { display: flex; gap: 12px; }
.f-social {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; transition: all .3s var(--ease);
  text-decoration: none;
}
.f-social i { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.f-social.trip i { font-size: 1.25rem; }
.f-social:hover { transform: translateY(-4px); color: #fff; border-color: transparent; }
.f-social.inst:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.f-social.face:hover { background: #1877F2; }
.f-social.trip:hover { background: #34E0A1; }
.f-social.yout:hover { background: #FF0000; }
.f-social.what:hover { background: #25D366; }

.f-col h5 { font-size: 1.1rem; color: #fff; margin-bottom: 24px; font-weight: 700; position: relative; padding-bottom: 10px; }
.f-col h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--primary); }

.f-links  { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.f-links a { display: inline-block; font-size: .9rem; color: rgba(255,255,255,.5); transition: all .2s; }
.f-links a:hover { color: var(--primary); transform: translateX(5px); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex; align-items: flex-end;
  padding-bottom: 56px;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-h);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(15,30,53,.55) 0%, rgba(15,30,53,.75) 100%);
}
.page-hero-content {
  position: relative; z-index: 1; color: #fff;
}
.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.page-hero-content p {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 20px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.75); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb .fa-chevron-right { font-size: .6rem; color: rgba(255,255,255,.35); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* --- Info cards row --- */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.cc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 10px;
}
.contact-card h4 {
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--navy); margin-bottom: 2px;
}
.contact-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 10px; }
.cc-link {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--primary); margin-bottom: 4px;
  transition: color .2s;
}
.cc-link:hover { color: var(--primary-dark); }
.cc-wa {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  background: #25D366; color: #fff !important;
  padding: 7px 16px; border-radius: 100px;
  font-size: .82rem;
}
.cc-wa:hover { background: #1ebe5d; }

/* --- Main 2-col grid --- */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* --- Form --- */
.contact-form-wrap { }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label {
  font-size: .8rem; font-weight: 600; color: var(--navy);
  letter-spacing: .02em; text-transform: uppercase;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--sans); font-size: .92rem; color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,122,0,.12);
}
.cf-field textarea { resize: vertical; min-height: 130px; }
.cf-bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cf-privacy {
  font-size: .78rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 7px;
  max-width: 320px; line-height: 1.5;
}
.cf-privacy a { color: var(--primary); text-decoration: underline; }

/* Success / error alerts */
.form-success {
  display: flex; align-items: flex-start; gap: 16px;
  background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: var(--r-lg); padding: 22px 24px;
  color: #166534;
}
.form-success .fa-check-circle { font-size: 1.6rem; color: #22c55e; flex-shrink: 0; margin-top: 2px; }
.form-success strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.form-success p { margin: 0; font-size: .88rem; }
.form-alert-error {
  display: flex; align-items: center; gap: 12px;
  background: #fef2f2; border: 1.5px solid #fca5a5;
  border-radius: var(--r); padding: 14px 18px;
  color: #991b1b; font-size: .88rem;
}

/* --- Side panel --- */
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }

/* Quick tiles */
.contact-quick-tiles { display: flex; flex-direction: column; gap: 10px; }
.cq-tile {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  background: #fff;
  transition: transform .2s var(--ease), box-shadow .2s;
  font-size: .88rem;
}
.cq-tile:hover { transform: translateX(4px); box-shadow: var(--sh-sm); }
.cq-tile > i:first-child {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.cq-tile strong { display: block; font-size: .9rem; color: var(--navy); }
.cq-tile span   { font-size: .77rem; color: var(--text-muted); }
.cq-arrow { margin-left: auto; font-size: .7rem; color: var(--text-muted); flex-shrink: 0; }
.cq-tile-wa    { border-color: rgba(37,211,102,.3); }
.cq-tile-wa    > i:first-child { background: rgba(37,211,102,.1); color: #25D366; }
.cq-tile-phone > i:first-child { background: rgba(255,122,0,.1); color: var(--primary); }
.cq-tile-email > i:first-child { background: rgba(27,43,75,.08); color: var(--navy); }

/* Social box */
.contact-socials-box {
  background: var(--cream); border-radius: var(--r-lg); padding: 20px 22px;
  border: 1px solid var(--cream-2);
}
.contact-socials-box p { font-size: .84rem; color: var(--text-muted); margin-bottom: 14px; }
.csb-icons { display: flex; gap: 10px; }
.csb-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; transition: transform .2s, box-shadow .2s;
}
.csb-icon:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.csb-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.csb-fb { background: #1877F2; }
.csb-ta { background: #34E0A1; }
.csb-yt { background: #FF0000; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
  .contact-main-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-cards-row { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-bottom { flex-direction: column; align-items: flex-start; }
}
.f-links a i { color: var(--primary); font-size: .7rem; }
.f-links a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.38); }
.footer-bottom p a { color: var(--primary); font-weight: 500; text-decoration: none; margin-left: 4px; }
.footer-bottom p a:hover { text-decoration: underline; }

.f-bottom-right { display: flex; align-items: center; gap: 40px; }
.f-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.f-bottom-links a { font-size: .79rem; color: rgba(255,255,255,.38); transition: color .2s; }
.f-bottom-links a:hover { color: rgba(255,255,255,.8); }

.f-payment { display: flex; align-items: center; gap: 12px; }
.f-payment-note {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 500; color: rgba(255,255,255,.5);
  letter-spacing: .02em; margin-right: 4px;
}
.f-payment i { font-size: 1.5rem; color: rgba(255,255,255,.5); transition: color .3s; }
.f-payment-note i { font-size: .72rem; color: var(--primary); }
.f-payment .troy-icon { 
  font-size: 0.65rem; font-weight: 900; color: #fff; background: #004a99;
  padding: 3px 5px; border-radius: 3px; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.3px;
  display: inline-flex; align-items: center; justify-content: center;
}
.f-payment .fa-cc-visa { color: #1a1f71; background: #fff; border-radius: 2px; padding: 1px 2px; font-size: 1.25rem; }
.f-payment .fa-cc-mastercard { color: #eb001b; background: #fff; border-radius: 2px; padding: 1px 2px; font-size: 1.25rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-reveal]:not([data-reveal="left"]):not([data-reveal="right"]):not([data-reveal="scale"]) { transform: translateY(30px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.92); }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tours-grid      { grid-template-columns: repeat(2, 1fr); }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testi-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-strip { grid-template-columns: 1fr; }
  .about-photos { min-height: 380px; }
  .about-photo-thumb { right: 20px; }
  .hero-slider { height: auto; min-height: 520px; max-height: none; }
  .slide { height: 520px; bottom: auto; }
  .booking-bar { position: relative; z-index: 30; margin-top: 0; }
  .booking-bar-inner { flex-direction: column; align-items: stretch; padding: 18px 20px; border-radius: 0; box-shadow: var(--sh); }
  .slider-dots { bottom: 24px; }
  .slider-scroll { display: none; }
  .slider-prev, .slider-next { display: none; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .h-nav, .h-actions { display: none; }
  .h-burger { display: flex; }
  .tours-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 24px 20px; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,122,0,.12); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,122,0,.12); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,.4);
}
.f-bottom-links { display: flex; gap: 24px; }
.f-bottom-links a:hover { color: #fff; }
  .exp-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .slide-title { font-size: 2rem; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--navy-dark); padding: 14px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 28px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); font-size: .82rem; }
.trust-item i { color: var(--primary); font-size: 1rem; }

/* ============================================================
   PAGE HERO — TALL VARIANT
   ============================================================ */
.page-hero-tall { min-height: 480px; }
.page-hero-tall .page-hero-content { padding: 120px 0 80px; }

/* ============================================================
   LUXURY HERO SECTION (lux-hero) — new premium variant
   ============================================================ */
.lux-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 46px;
  background-image: url('../images/head_bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: var(--header-h);
}
.lux-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(110% 90% at 18% 50%, rgba(15, 30, 53, .55) 0%, rgba(15, 30, 53, .22) 45%, rgba(15, 30, 53, 0) 75%, transparent 100%),
    linear-gradient(to top, rgba(15, 30, 53, .45) 0%, rgba(15, 30, 53, .05) 55%, rgba(15, 30, 53, .12) 100%);
}
.lux-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, .14);
}
.lux-hero .container {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 70px);
}
.lux-hero-inner {
  max-width: 640px;
  margin: 0;
  text-align: left;
}
.lux-hero-inner > * {
  text-align: left;
}
.lux-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 9px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lux-eyebrow i {
  color: var(--primary);
}
.lux-hero h1 {
  position: relative;
  padding-left: 22px;
  font-family: var(--serif);
  font-weight: 500;
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: .3px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .22);
}
.lux-hero h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-light));
}
.lux-hero h1 .lux-amp {
  color: var(--primary);
}
.lux-divider {
  width: 74px;
  height: 3px;
  border-radius: 3px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
.lux-hero p.lux-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, .82);
  max-width: 540px;
  line-height: 1.7;
  margin: 0 0 34px;
  font-weight: 400;
}
.lux-crumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 11px 22px;
  border-radius: 100px;
  background: rgba(15, 30, 53, .35);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lux-crumb a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lux-crumb a:hover {
  color: #fff;
}
.lux-crumb .sep {
  color: rgba(255, 255, 255, .28);
}
.lux-crumb .current {
  color: var(--primary);
  font-weight: 700;
}
@media (max-width: 600px) {
  .lux-hero {
    min-height: 440px;
    padding-bottom: 32px;
  }
}

/* ============================================================
   TOUR OVERVIEW BAR
   ============================================================ */
.tour-overview-bar { background: var(--navy); padding: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.tour-overview-inner { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.tob-item { display: flex; align-items: center; gap: 12px; padding: 18px 28px; border-right: 1px solid rgba(255,255,255,.1); flex: 1; min-width: 160px; }
.tob-item i { font-size: 1.3rem; color: var(--primary); flex-shrink: 0; }
.tob-item div { display: flex; flex-direction: column; }
.tob-item strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); }
.tob-item span { color: #fff; font-size: .92rem; font-weight: 600; }
.tour-overview-gold { border-left: 3px solid var(--gold) !important; }
.tour-overview-inner .btn { margin: 10px 24px; flex-shrink: 0; white-space: nowrap; }

/* ============================================================
   TOUR DETAIL LAYOUT
   ============================================================ */
.tour-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.td-content { min-width: 0; }
.td-block { margin-bottom: 40px; }
.td-block h2 { font-size: 1.75rem; color: var(--navy); margin-bottom: 14px; }
.td-block h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 14px; }
.td-block h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.td-block p { color: var(--text-body); line-height: 1.78; margin-bottom: 14px; }

.td-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 40px; border-radius: var(--r); overflow: hidden; }
.td-gallery img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .4s; }
.td-gallery img:hover { transform: scale(1.03); }
.td-gallery img:first-child { grid-column: 1 / -1; height: 340px; }

.td-incl-excl { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.td-included, .td-excluded { background: var(--cream); border-radius: var(--r); padding: 24px; }
.td-included { border-top: 3px solid #22c55e; }
.td-excluded { border-top: 3px solid var(--primary); }
.td-included h3, .td-excluded h3 { font-size: 1rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.td-included h3 i { color: #22c55e; }
.td-excluded h3 i { color: var(--primary); }
.td-included li, .td-excluded li { list-style: none; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .88rem; display: flex; gap: 10px; align-items: flex-start; color: var(--text-body); }
.td-included li:last-child, .td-excluded li:last-child { border-bottom: none; }
.td-included li i { color: #22c55e; margin-top: 2px; }
.td-excluded li i { color: var(--primary); margin-top: 2px; }

/* ============================================================
   FLIGHT FORECAST WIDGET
   ============================================================ */
.flight-forecast-widget {
  background: linear-gradient(135deg, rgba(10, 15, 25, 0.92) 0%, rgba(20, 25, 40, 0.88) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.flight-forecast-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 122, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.container-full {
  width: 100%;
  max-width: 100%;
  padding: 0 24px;
}

/* Header */
.ffw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 clamp(12px, 3vw, 20px);
}

.ffw-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.ffw-title i {
  font-size: 1.3rem;
  color: var(--primary);
  animation: balloon-float 3s ease-in-out infinite;
}

.ffw-title h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ffw-updated {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ffw-details-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 6px 14px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.ffw-details-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Grid */
.ffw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px;
  padding: 0 clamp(12px, 3vw, 20px);
}

/* Day Column */
.ffw-day {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.ffw-day::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.ffw-day:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.ffw-day.ffw-today {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 122, 0, 0.3);
  box-shadow: inset 0 0 20px rgba(255, 122, 0, 0.1);
}

/* Day Header */
.ffw-day-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 6px;
  width: 100%;
}

.ffw-day-name {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ffw-day-info {
  display: flex;
  align-items: baseline;
  gap: 4px;
  width: 100%;
  justify-content: center;
  margin-bottom: 3px;
}

.ffw-date {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  font-weight: 400;
}

/* Balloon SVG */
.ffw-balloon-container {
  display: none;
}

.ffw-balloon {
  width: var(--balloon-size, 50px);
  height: auto;
  animation: balloon-drift 2.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

@keyframes balloon-drift {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes balloon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Score Display */
.ffw-score {
  margin: 2px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.ffw-chance-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Badge */
.ffw-badge {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin: 3px 0;
  white-space: nowrap;
}

.ffw-badge[data-status="success"] {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.ffw-badge[data-status="warning"] {
  background: rgba(132, 204, 22, 0.15);
  color: #84cc16;
  border: 1px solid rgba(132, 204, 22, 0.3);
}

.ffw-badge[data-status="caution"] {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.ffw-badge[data-status="danger"] {
  background: rgba(244, 63, 94, 0.15);
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

/* Stats */
.ffw-stats {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: 100%;
  font-size: 0.7rem;
  margin: 4px 0;
  justify-content: center;
  align-items: center;
}

.ffw-stat {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  font-weight: 500;
}

.ffw-stat-compact {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.2;
  letter-spacing: 0.2px;
  margin: 1px 0;
  font-weight: 400;
}

.ffw-stat-icon {
  font-size: 0.8rem;
}

.ffw-stat-value {
  font-weight: 600;
}

.ffw-stat-warning {
  color: #f43f5e;
  font-weight: 600;
}

.ffw-stat-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  line-height: 1;
}

/* Progress Bar */
.ffw-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 8px 0;
}

.ffw-progress-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 0.5s var(--ease);
  box-shadow: 0 0 8px currentColor;
}

/* Alert */
.ffw-alert {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.3);
  border-radius: 4px;
  padding: 4px 6px;
  color: #f43f5e;
  font-size: 0.65rem;
  font-weight: 600;
  margin-top: 6px;
}

.ffw-alert i {
  font-size: 0.7rem;
}

/* Error State */
.ffw-error {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.3);
  border-radius: var(--r);
  padding: 16px 20px;
  color: #f43f5e;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 clamp(12px, 3vw, 20px);
}

.ffw-error i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Skeleton Loading */
.ffw-skeleton {
  pointer-events: none;
}

.skeleton-text, .skeleton-balloon {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 100%);
  background-size: 200% 100%;
  animation: skeleton-load 1.5s infinite;
  border-radius: 4px;
}

.skeleton-sm {
  height: 10px;
  width: 60%;
  margin: 0 auto 6px;
}

.skeleton-md {
  height: 14px;
  width: 50%;
  margin: 6px auto;
}

.skeleton-xs {
  height: 8px;
  width: 70%;
  margin: 4px auto;
}

.skeleton-balloon {
  width: 50px;
  height: 50px;
  margin: 6px auto;
  border-radius: 50%;
}

@keyframes skeleton-load {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 1024px) {
  .ffw-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .ffw-balloon {
    width: calc(var(--balloon-size, 50px) * 0.9);
  }
}

@media (max-width: 768px) {
  .flight-forecast-widget {
    padding: 16px 0;
  }

  .ffw-header {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }

  .ffw-title h3 {
    font-size: 0.95rem;
  }

  .ffw-grid {
    grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
    gap: 10px;
    padding: 0 12px;
  }

  .ffw-day {
    padding: 12px;
  }

  .ffw-balloon-container {
    height: 60px;
  }

  .ffw-stats {
    font-size: 0.65rem;
  }

  .ffw-percentage {
    font-size: 1.2rem;
  }

  .ffw-day-name {
    font-size: 0.75rem;
  }

  .ffw-date {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .ffw-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .ffw-day {
    padding: 10px;
  }

  .ffw-day-name {
    font-size: 0.75rem;
  }

  .ffw-date {
    font-size: 0.6rem;
  }

  .ffw-percentage {
    font-size: 1rem;
  }

  .ffw-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .ffw-stats {
    font-size: 0.6rem;
  }

  .ffw-title h3 {
    font-size: 0.85rem;
  }
}

/* ============================================================
   CONTACT V2 – MODERN REDESIGN
   ============================================================ */

/* --- Section Wrapper --- */
.contact-v2-section {
  padding: 90px 0 0;
  background: #f8f7f5;
}
.contact-v2-section .container {
  max-width: 1340px;
}

/* --- Header --- */
.contact-v2-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.contact-v2-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin: 12px 0 16px;
  font-family: var(--serif);
  font-weight: 600;
}
.contact-v2-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* --- Cards Row --- */
.contact-v2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

/* --- Individual Card --- */
.cv2-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(15,30,53,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cv2-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(255,122,0,0.3));
  border-radius: 0 0 24px 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cv2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(255,122,0,0.14);
  border-color: rgba(255,122,0,0.25);
}
.cv2-card:hover::after {
  opacity: 1;
}

.cv2-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cv2-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,122,0,0.12), rgba(255,122,0,0.06));
  border: 1.5px solid rgba(255,122,0,0.18);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.cv2-card:hover .cv2-icon-wrap {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: rotate(-5deg) scale(1.08);
}

.cv2-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,122,0,0.1);
  border: 1px solid rgba(255,122,0,0.2);
  border-radius: 100px;
  padding: 5px 12px;
}

.cv2-card h4 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.2px;
}
.cv2-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.cv2-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  font-style: normal;
  line-height: 1.4;
  transition: color 0.2s;
  margin-top: 4px;
}
.cv2-link:hover { color: var(--primary); }

.cv2-action-btn {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-top: 1px solid rgba(15,30,53,0.07);
  transition: gap 0.25s ease, color 0.25s ease;
}
.cv2-action-btn i { font-size: 1rem; }
.cv2-action-btn:hover {
  gap: 12px;
  color: var(--navy);
}

/* --- Social Strip --- */
.contact-v2-social {
  background: var(--navy);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.cv2-social-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.cv2-social-label i { color: var(--primary); }

.cv2-social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cv2-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: #fff;
  background: rgba(255,255,255,0.07);
  transition: all 0.3s ease;
}
.cv2-social-btn i { font-size: 1.15rem; }
.cv2-social-btn:hover { transform: translateY(-3px); color: #fff; }

.cv2-social-btn--ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.cv2-social-btn--fb:hover { background: #1877f2; border-color: transparent; }
.cv2-social-btn--wa:hover { background: #25d366; border-color: transparent; }

/* --- Map Card --- */
.contact-v2-map {
  margin-top: 28px;
  margin-bottom: 64px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  border: 1.5px solid rgba(15,30,53,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.cv2-map-inner {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 16px;
}
.cv2-map-inner iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) brightness(0.97);
}

.cv2-map-badge {
  position: absolute;
  top: 28px;
  right: 32px;
  left: auto;
  background: #fff;
  padding: 14px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  z-index: 10;
}
.cv2-map-badge i {
  color: var(--primary);
  font-size: 1.5rem;
}
.cv2-map-badge strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.cv2-map-badge span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .contact-v2-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .contact-v2-section {
    padding: 64px 0 0;
  }
  .contact-v2-cards {
    grid-template-columns: 1fr;
  }
  .contact-v2-social {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .cv2-social-icons {
    width: 100%;
  }
  .cv2-social-btn {
    flex: 1;
    justify-content: center;
  }
  .cv2-map-inner {
    height: 360px;
  }
}

.td-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.td-table th, .td-table td { padding: 12px 16px; text-align: left; font-size: .88rem; border-bottom: 1px solid var(--cream-2); }
.td-table th { background: var(--navy); color: #fff; font-weight: 600; }
.td-table tr:nth-child(even) td { background: var(--cream); }

/* ============================================================
   TOUR SIDEBAR
   ============================================================ */
.td-sidebar { position: sticky; top: 100px; }
.tds-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 28px; margin-bottom: 20px; border-top: 4px solid var(--primary); }
.tds-card-gold { border-top-color: var(--gold) !important; }
.tds-price { text-align: center; padding: 16px 0 20px; border-bottom: 1px solid var(--cream-2); margin-bottom: 18px; }
.tds-price span { display: block; font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.tds-price strong { font-size: 2.4rem; font-weight: 800; color: var(--navy); font-family: var(--font-head); line-height: 1.1; }
.tds-rating { display: flex; align-items: center; gap: 6px; font-size: .88rem; margin-bottom: 18px; justify-content: center; }
.tds-rating i { color: var(--gold); font-size: .85rem; }
.tds-rating span { color: var(--navy); font-weight: 600; }
.tds-rating small { color: var(--text-muted); }
.tds-trust { list-style: none; margin: 18px 0 0; border-top: 1px solid var(--cream-2); padding-top: 16px; }
.tds-trust li { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--text-body); padding: 5px 0; }
.tds-trust li i { color: var(--primary); width: 16px; }
.tds-other { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 20px 22px; }
.tds-other h5 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.tds-other-item { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--cream-2); text-decoration: none; transition: background .2s; }
.tds-other-item:last-child { border-bottom: none; }
.tds-other-item img { width: 60px; height: 50px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.tds-other-item div { display: flex; flex-direction: column; }
.tds-other-item strong { font-size: .85rem; color: var(--navy); line-height: 1.3; }
.tds-other-item span { font-size: .78rem; color: var(--text-muted); }
.tds-other-item:hover strong { color: var(--primary); }

/* ============================================================
   INCLUDED GRID (tour listing)
   ============================================================ */
.included-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.incl-item { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--cream); border-radius: var(--r); padding: 24px 16px; }
.incl-item i { font-size: 1.6rem; color: var(--primary); margin-bottom: 10px; }
.incl-item span { font-size: .85rem; font-weight: 600; color: var(--navy); }

/* ============================================================
   HOW IT WORKS — STEPS ROW
   ============================================================ */
.steps-row { display: flex; align-items: flex-start; gap: 0; position: relative; }
.step-item { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: var(--font-head); }
.step-item h4 { font-size: .95rem; color: var(--navy); margin-bottom: 7px; }
.step-item p { font-size: .83rem; color: var(--text-muted); }
.step-connector { width: 40px; flex-shrink: 0; height: 2px; background: var(--cream-2); align-self: center; margin-top: -28px; }

/* ============================================================
   COMFORT ADVANTAGES
   ============================================================ */
.comfort-advantages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ca-item { background: var(--cream); border-radius: var(--r); padding: 22px; border-left: 3px solid var(--primary); }
.ca-item i { font-size: 1.4rem; color: var(--primary); margin-bottom: 10px; display: block; }
.ca-item h4 { font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.ca-item p { font-size: .84rem; color: var(--text-muted); }

/* ============================================================
   PRIVATE FOR GRID
   ============================================================ */
.private-for-grid { }
.pf-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pf-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 28px 24px; text-align: center; border-top: 3px solid var(--gold); }
.pf-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: 12px; display: block; }
.pf-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.pf-card p { font-size: .84rem; color: var(--text-muted); }

/* ============================================================
   SUNRISE TIMELINE
   ============================================================ */
.sun-timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 60px; }
.sun-timeline::before { content: ''; position: absolute; left: 20px; top: 8px; bottom: 8px; width: 2px; background: var(--cream-2); }
.sun-step { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 28px; position: relative; }
.sun-time { flex-shrink: 0; width: 80px; text-align: right; margin-right: 20px; margin-left: -60px; }
.sun-time span { background: var(--navy); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 8px; border-radius: 20px; display: inline-block; white-space: nowrap; }
.sun-step::before { content: ''; position: absolute; left: -48px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 2px solid #fff; box-shadow: 0 0 0 3px var(--primary-light); }
.sun-info h4 { font-size: .97rem; color: var(--navy); margin-bottom: 4px; }
.sun-info p { font-size: .84rem; color: var(--text-muted); }

/* ============================================================
   ROMANCE HIGHLIGHTS
   ============================================================ */
.romance-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rh-item { text-align: center; padding: 28px 20px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.rh-item i { font-size: 1.8rem; color: var(--gold); margin-bottom: 12px; display: block; }
.rh-item h4 { font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.rh-item p { font-size: .83rem; color: var(--text-muted); }

/* ============================================================
   PROPOSAL STEPS
   ============================================================ */
.proposal-steps { display: flex; flex-direction: column; gap: 20px; }
.prop-step { display: flex; gap: 20px; align-items: flex-start; background: var(--cream); border-radius: var(--r); padding: 20px 22px; }
.prop-step-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.prop-step-body h4 { font-size: .97rem; color: var(--navy); margin-bottom: 5px; }
.prop-step-body p { font-size: .84rem; color: var(--text-muted); }

/* ============================================================
   DECORATION OPTIONS
   ============================================================ */
.deco-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.deco-item { background: #fff; border-radius: var(--r); box-shadow: var(--shadow); padding: 22px 18px; text-align: center; border-top: 3px solid var(--gold); }
.deco-item i { font-size: 1.5rem; color: var(--gold); margin-bottom: 10px; display: block; }
.deco-item strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.deco-item p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   EXP HIGHLIGHTS (experience pages)
   ============================================================ */
.exp-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }
.exp-highlight-item { display: flex; align-items: center; gap: 12px; background: var(--cream); padding: 14px 16px; border-radius: var(--r); font-size: .87rem; color: var(--navy); font-weight: 600; }
.exp-highlight-item i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   CTA SECTION COMPONENT
   ============================================================ */
.cta-section { padding: 72px 0; }
.cta-section-navy { background: var(--navy-dark); }
.cta-section-orange { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.cta-block { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-block-text h2 { font-size: 2rem; color: #fff; margin-bottom: 10px; }
.cta-block-text p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.cta-block-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   GALLERY FILTER
   ============================================================ */
.gallery-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.gf-btn { background: #fff; border: 2px solid var(--cream-2); color: var(--navy); padding: 8px 20px; border-radius: 30px; font-size: .85rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.gf-btn:hover { border-color: var(--primary); color: var(--primary); }
.gf-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-main-grid { display: grid; grid-template-columns: 1fr 460px; gap: 64px; align-items: start; }
.about-stats-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.asm-item { text-align: center; background: var(--cream); border-radius: var(--r); padding: 16px 12px; }
.asm-item strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--primary); font-family: var(--font-head); }
.asm-item span { font-size: .78rem; color: var(--text-muted); }
.about-photo-stack { position: relative; }
.ap-main { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r-lg); display: block; }
.ap-thumb { position: absolute; bottom: -24px; right: -24px; width: 160px; height: 120px; object-fit: cover; border-radius: var(--r); border: 4px solid #fff; box-shadow: var(--shadow-lg); }
.ap-badge { position: absolute; top: 24px; left: -16px; background: var(--primary); color: #fff; border-radius: var(--r); padding: 12px 16px; text-align: center; box-shadow: var(--shadow); }
.ap-badge span { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.ap-badge strong { display: block; font-size: 1.5rem; font-weight: 800; font-family: var(--font-head); }

.ops-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ops-item { background: #fff; border-radius: var(--r); box-shadow: var(--shadow); padding: 24px 20px; }
.ops-num { font-size: 2rem; font-weight: 800; color: var(--primary); font-family: var(--font-head); line-height: 1; margin-bottom: 10px; }
.ops-item h4 { font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.ops-item p { font-size: .83rem; color: var(--text-muted); }

.safety-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sh-item { text-align: center; padding: 28px 20px; background: var(--cream); border-radius: var(--r-lg); }
.sh-item i { font-size: 1.8rem; color: var(--primary); margin-bottom: 12px; display: block; }
.sh-item h4 { font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.sh-item p { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   SAFETY & CERTIFICATES PAGE
   ============================================================ */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cert-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 28px 24px; }
.cert-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.cert-icon i { font-size: 1.3rem; color: var(--primary); }
.cert-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.cert-card p { font-size: .84rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.cert-status { font-size: .78rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px; }
.cert-valid { background: rgba(34,197,94,.12); color: #15803d; }
.cert-award { background: rgba(245,158,11,.12); color: #b45309; }

.safety-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sp-item { background: #fff; border-radius: var(--r); box-shadow: var(--shadow); padding: 24px 20px; border-left: 3px solid var(--primary); }
.sp-num { font-size: 1.5rem; font-weight: 800; color: var(--primary); font-family: var(--font-head); margin-bottom: 8px; }
.sp-item h4 { font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.sp-item p { font-size: .83rem; color: var(--text-muted); }

/* ============================================================
   FAQ FULL PAGE
   ============================================================ */
.faq-full-wrap { max-width: 860px; }
.faq-categories { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.faq-cat-btn { background: var(--cream); color: var(--navy); border: 2px solid var(--cream-2); padding: 9px 20px; border-radius: 30px; font-size: .85rem; font-weight: 600; text-decoration: none; transition: all .2s; }
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.faq-category-block { margin-bottom: 52px; }
.faq-cat-title { font-size: 1.25rem; color: var(--navy); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.faq-cat-title i { color: var(--primary); }
.faq-still-help { display: flex; align-items: center; gap: 24px; background: var(--cream); border-radius: var(--r-lg); padding: 28px 32px; flex-wrap: wrap; margin-top: 20px; }
.fsh-icon { font-size: 2rem; color: var(--primary); flex-shrink: 0; }
.fsh-icon i { display: block; }
.fsh-btns { display: flex; gap: 12px; margin-left: auto; flex-wrap: wrap; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); text-decoration: none; margin-bottom: 56px; background: #fff; }
.bf-image { position: relative; overflow: hidden; }
.bf-image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; transition: transform .5s; display: block; }
.blog-featured:hover .bf-image img { transform: scale(1.04); }
.bf-cat { position: absolute; top: 18px; left: 18px; background: var(--primary); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; }
.bf-content { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.bf-content h2 { font-size: 1.5rem; color: var(--navy); margin: 10px 0 14px; line-height: 1.3; }
.bf-content p { color: var(--text-body); font-size: .92rem; line-height: 1.7; }
.bf-meta { display: flex; gap: 18px; font-size: .8rem; color: var(--text-muted); margin-top: 16px; flex-wrap: wrap; }
.bf-meta span { display: flex; align-items: center; gap: 5px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { text-decoration: none; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bc-image { position: relative; overflow: hidden; }
.bc-image img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; display: block; }
.blog-card:hover .bc-image img { transform: scale(1.05); }
.bc-cat { position: absolute; top: 12px; left: 12px; background: var(--primary); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; }
.bc-content { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.bc-content h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.bc-content p { font-size: .83rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.bc-meta { display: flex; gap: 14px; font-size: .78rem; color: var(--text-muted); margin-top: 14px; flex-wrap: wrap; }
.bc-meta span { display: flex; align-items: center; gap: 5px; }

/* ============================================================
   BLOG ARTICLE PAGE
   ============================================================ */
.post-meta-hero { display: flex; gap: 20px; font-size: .88rem; color: rgba(255,255,255,.75); margin-top: 12px; flex-wrap: wrap; }
.post-meta-hero span { display: flex; align-items: center; gap: 6px; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.article-body { min-width: 0; }
.article-lead { font-size: 1.1rem; color: var(--navy); line-height: 1.8; font-weight: 500; border-left: 4px solid var(--primary); padding-left: 20px; margin-bottom: 32px; }
.article-body h2 { font-size: 1.5rem; color: var(--navy); margin: 32px 0 12px; }
.article-body p { color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.article-body ul, .article-body ol { color: var(--text-body); padding-left: 22px; margin-bottom: 20px; }
.article-body li { line-height: 1.7; margin-bottom: 6px; }
.article-tip-box { background: var(--cream-2); border-left: 4px solid var(--gold); border-radius: 0 var(--r) var(--r) 0; padding: 18px 20px; display: flex; gap: 14px; margin: 28px 0; }
.article-tip-box i { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.article-tip-box div { font-size: .88rem; color: var(--text-body); line-height: 1.6; }
.article-table-wrap { overflow-x: auto; margin-bottom: 24px; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.article-table { width: 100%; border-collapse: collapse; }
.article-table th { background: var(--navy); color: #fff; padding: 10px 14px; font-size: .85rem; text-align: left; }
.article-table td { padding: 10px 14px; font-size: .85rem; border-bottom: 1px solid var(--cream-2); }
.article-table tr:nth-child(even) td { background: var(--cream); }
.article-cta-inline { background: var(--navy); border-radius: var(--r-lg); padding: 28px 32px; margin-top: 40px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.article-cta-inline p { color: rgba(255,255,255,.85); font-size: .95rem; flex: 1; margin: 0; }
.article-sidebar { position: sticky; top: 100px; }
.asb-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 24px; margin-bottom: 20px; }
.asb-card h5 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.asb-card p { font-size: .83rem; color: var(--text-muted); margin-bottom: 14px; }
.related-list { list-style: none; }
.related-list li { border-bottom: 1px solid var(--cream-2); }
.related-list li:last-child { border-bottom: none; }
.related-list a { display: flex; align-items: center; gap: 8px; padding: 9px 0; font-size: .85rem; color: var(--navy); text-decoration: none; transition: color .2s; }
.related-list a:hover { color: var(--primary); }
.related-list a i { color: var(--primary); font-size: .7rem; flex-shrink: 0; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.booking-form-col { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 36px 40px; }
.bf-section-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin: 0 0 20px; display: flex; align-items: center; gap: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 0; }
.form-row + .form-row { margin-top: 0; }
.form-group { margin-bottom: 20px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group label .req { color: var(--primary); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 2px solid var(--cream-2); border-radius: var(--r); font-size: .9rem; color: var(--navy); background: var(--cream); transition: border-color .2s; font-family: var(--font-body); resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.booking-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.booking-submit-btn { flex-shrink: 0; }
.form-privacy-note { font-size: .78rem; color: var(--text-muted); flex: 1; display: flex; align-items: center; gap: 6px; }
.form-privacy-note a { color: var(--primary); }
.form-error-box { background: #fef2f2; border: 1.5px solid #fca5a5; border-radius: var(--r); padding: 16px 18px; margin-bottom: 24px; display: flex; gap: 14px; }
.form-error-box i { color: #dc2626; font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.form-error-box strong { display: block; font-size: .88rem; color: #991b1b; margin-bottom: 6px; }
.form-error-box ul { margin: 0; padding-left: 18px; }
.form-error-box li { font-size: .83rem; color: #dc2626; line-height: 1.7; }

.booking-info-col { }
.bic-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 22px 24px; margin-bottom: 18px; }
.bic-card h5 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.bic-card h5 i { color: var(--primary); }
.bic-steps { padding-left: 18px; margin: 0; }
.bic-steps li { font-size: .84rem; color: var(--text-body); line-height: 1.6; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--cream-2); }
.bic-steps li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.bic-steps strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.bic-steps span { color: var(--text-muted); }
.bic-contact h5 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.bic-contact p { font-size: .83rem; color: var(--text-muted); margin-bottom: 14px; }
.bic-cancellation h5 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 7px; }
.bic-cancellation h5 i { color: #22c55e; }
.bic-cancellation p { font-size: .83rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.ty-hero { position: relative; min-height: 380px; display: flex; align-items: center; overflow: hidden; }
.ty-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ty-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(15,30,53,.75) 0%, rgba(255,122,0,.45) 100%); }
.ty-hero-content { position: relative; z-index: 1; text-align: center; padding: 80px 0 60px; }
.ty-check { width: 72px; height: 72px; background: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; box-shadow: 0 0 0 12px rgba(34,197,94,.2); }
.ty-check i { font-size: 1.8rem; color: #fff; }
.ty-hero-content h1 { color: #fff; font-size: 2.2rem; margin-bottom: 12px; }
.ty-hero-content p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.ty-summary { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 28px 32px; margin-bottom: 36px; border-left: 4px solid var(--primary); }
.ty-summary h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.ty-summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ty-row { display: flex; flex-direction: column; background: var(--cream); border-radius: var(--r); padding: 12px 16px; }
.ty-row span { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 3px; }
.ty-row strong { font-size: .95rem; color: var(--navy); }
.ty-next-steps { margin-bottom: 36px; }
.ty-next-steps h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 24px; }
.ty-steps-row { display: flex; align-items: flex-start; gap: 0; }
.ty-step { flex: 1; text-align: center; padding: 0 16px; }
.ty-step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 1.1rem; font-weight: 800; font-family: var(--font-head); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.ty-step-body h4 { font-size: .9rem; color: var(--navy); margin-bottom: 5px; }
.ty-step-body p { font-size: .82rem; color: var(--text-muted); }
.ty-step-arrow { color: var(--cream-2); font-size: 1.4rem; padding-top: 18px; flex-shrink: 0; }
.ty-contact-row { display: flex; gap: 20px; margin-bottom: 16px; }
.ty-contact-card { flex: 1; background: var(--cream); border-radius: var(--r); padding: 18px 22px; display: flex; gap: 14px; align-items: center; }
.ty-contact-card i { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }
.ty-contact-card h5 { font-size: .85rem; color: var(--navy); margin-bottom: 3px; }
.ty-contact-card a { font-size: .88rem; color: var(--primary); text-decoration: none; font-weight: 600; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 1.25rem; color: var(--navy); margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--cream-2); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-body); line-height: 1.8; margin-bottom: 12px; font-size: .93rem; }
.legal-content ul { color: var(--text-body); padding-left: 22px; margin-bottom: 16px; }
.legal-content li { line-height: 1.75; margin-bottom: 5px; font-size: .93rem; }
.legal-content a { color: var(--primary); }
.legal-table { width: 100%; border-collapse: collapse; border-radius: var(--r); overflow: hidden; margin-bottom: 20px; }
.legal-table th { background: var(--navy); color: #fff; padding: 11px 14px; font-size: .85rem; text-align: left; }
.legal-table td { padding: 11px 14px; font-size: .85rem; border-bottom: 1px solid var(--cream-2); color: var(--text-body); }
.legal-table tr:nth-child(even) td { background: var(--cream); }

/* ============================================================
   RESPONSIVE — PHASE 2 PAGES
   ============================================================ */
@media (max-width: 1100px) {
  .tour-detail-grid { grid-template-columns: 1fr 340px; gap: 32px; }
  .about-main-grid  { grid-template-columns: 1fr 380px; gap: 40px; }
  .ops-grid         { grid-template-columns: repeat(2, 1fr); }
  .safety-highlights { grid-template-columns: repeat(2, 1fr); }
  .article-layout   { grid-template-columns: 1fr 260px; gap: 36px; }
  .booking-layout   { grid-template-columns: 1fr 300px; gap: 32px; }
}
@media (max-width: 900px) {
  .tour-detail-grid { grid-template-columns: 1fr; }
  .td-sidebar { position: static; }
  .about-main-grid  { grid-template-columns: 1fr; }
  .about-photo-stack { margin-top: 20px; }
  .ap-thumb { display: none; }
  .about-stats-mini { grid-template-columns: repeat(2, 1fr); }
  .comfort-advantages { grid-template-columns: repeat(2, 1fr); }
  .pf-cards { grid-template-columns: 1fr 1fr; }
  .romance-highlights { grid-template-columns: 1fr 1fr; }
  .deco-options { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-process-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .blog-featured { grid-template-columns: 1fr; }
  .bf-image img { min-height: 260px; }
  .tob-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); flex: 0 0 calc(50% - 0px); min-width: unset; }
}
@media (max-width: 768px) {
  .cta-block { flex-direction: column; text-align: center; }
  .cta-block-btns { justify-content: center; }
  .cta-block-text h2 { font-size: 1.5rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .td-incl-excl { grid-template-columns: 1fr; }
  .td-gallery { grid-template-columns: 1fr; }
  .td-gallery img:first-child { height: 260px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { flex-direction: column; gap: 16px; padding-left: 24px; }
  .step-connector { display: none; }
  .ops-grid { grid-template-columns: 1fr 1fr; }
  .safety-highlights { grid-template-columns: 1fr 1fr; }
  .ty-steps-row { flex-direction: column; gap: 16px; }
  .ty-step-arrow { transform: rotate(90deg); align-self: center; }
  .ty-contact-row { flex-direction: column; }
  .ty-summary-grid { grid-template-columns: 1fr; }
  .booking-form-col { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .form-row-5 { grid-template-columns: 1fr 1fr; }
  .booking-form-footer { flex-direction: column; align-items: flex-start; }
  .booking-submit-btn { width: 100%; justify-content: center; }
  .faq-still-help { flex-direction: column; }
  .fsh-btns { margin-left: 0; }
}
@media (max-width: 540px) {
  .blog-grid { grid-template-columns: 1fr; }
  .pf-cards { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .safety-process-grid { grid-template-columns: 1fr; }
  .romance-highlights { grid-template-columns: 1fr; }
  .comfort-advantages { grid-template-columns: 1fr; }
  .about-stats-mini { grid-template-columns: repeat(2, 1fr); }
  .exp-highlights { grid-template-columns: 1fr; }
  .deco-options { grid-template-columns: 1fr; }
  .tob-item { flex: 0 0 100%; }
  .tour-overview-inner .btn { width: calc(100% - 48px); margin: 0 24px 16px; justify-content: center; }
}

/* ============================================================
   CONTACT MODERN LAYOUT
   ============================================================ */

.contact-modern-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-col { }

.contact-map-col { }

/* ── Contact Method List ── */
.contact-method-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.c-method-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,248,240,0.8) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.35s var(--ease);
  overflow: hidden;
}

.c-method-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,122,0,0.4) 0%, rgba(255,122,0,0.1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.c-method-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,122,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,245,235,1) 100%);
}

.c-method-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255,122,0,0.15) 0%, rgba(255,122,0,0.05) 100%);
  color: var(--primary);
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 2;
}

.c-method-item:hover .c-method-icon {
  background: linear-gradient(135deg, rgba(255,122,0,0.25) 0%, rgba(255,122,0,0.1) 100%);
  transform: scale(1.1) rotate(-5deg);
}

.c-method-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.c-method-content h5 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.c-method-content > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.c-method-content a {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s var(--ease);
  position: relative;
}

.c-method-content a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
  transform: translateX(4px);
}

address {
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

/* ── Social Connect ── */
.contact-social-connect {
  padding: 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--navy-dark) 0%, rgba(15,30,53,0.95) 100%);
  position: relative;
  overflow: hidden;
}

.contact-social-connect::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-social-connect p {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
}

.c-social-links {
  display: flex;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.c-social-links a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.c-social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s var(--ease);
}

.c-social-links a:nth-child(1) {
  background: linear-gradient(135deg, #F56040 0%, #FD1D1D 100%);
}

.c-social-links a:nth-child(2) {
  background: linear-gradient(135deg, #1877F2 0%, #0A66C2 100%);
}

.c-social-links a:nth-child(3) {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.c-social-links a:hover::before {
  background: rgba(255,255,255,0.25);
}

.c-social-links a:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* ── Map Window Frame ── */
.map-window-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  height: 500px;
  background: #f0f0f0;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.map-window-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 3px;
  background: linear-gradient(135deg, rgba(255,122,0,0.5) 0%, rgba(255,122,0,0.15) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 10;
}

.map-window-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-overlay-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, rgba(15,30,53,0.95) 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 15;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.map-overlay-badge i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-modern-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .map-window-frame {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-modern-layout {
    gap: 36px;
  }
  
  .c-method-item {
    padding: 24px;
    gap: 16px;
  }
  
  .c-method-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
  
  .contact-social-connect {
    padding: 24px;
  }
  
  .map-window-frame {
    height: 350px;
  }
  
  .map-overlay-badge {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
    font-size: 0.88rem;
  }
}

@media (max-width: 600px) {
  .contact-method-list {
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .c-method-item {
    padding: 20px;
    gap: 16px;
    flex-direction: column;
    text-align: center;
  }
  
  .c-method-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto;
  }
  
  .contact-social-connect {
    padding: 20px;
    text-align: center;
  }
  
  .c-social-links {
    justify-content: center;
  }
  
  .map-window-frame {
    height: 300px;
  }
  
  .map-overlay-badge {
    bottom: 12px;
    left: 12px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

/* ============================================================
   RESTORED COMPONENTS (re-added after stylesheet revert)
   ============================================================ */

/* --- Blog card meta (date + read link) --- */
.bc-date { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; color: var(--text-muted); margin-bottom: 10px; }
.bc-date i { color: var(--primary); }
.bc-read { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: .82rem; font-weight: 700; color: var(--primary); transition: gap .25s var(--ease); }
.blog-card:hover .bc-read { gap: 12px; }

/* --- Article figure (images inside content articles) --- */
.article-figure { margin: 28px 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); background: var(--cream); }
.article-figure img { width: 100%; height: auto; display: block; }
.article-figure figcaption { display: flex; align-items: center; gap: 8px; padding: 12px 16px; font-size: .82rem; color: var(--text-muted); background: var(--white); }
.article-figure figcaption i { color: var(--primary); }

/* --- Wider legal content --- */
.container:has(> .legal-content) { max-width: 1320px; }
.legal-content { max-width: 1240px; }

/* ============================================================
   BALLOON SAFETY GUIDE PAGE
   ============================================================ */
.bsafe-intro { max-width: 860px; }
.bsafe-lead { font-size: 1.08rem; line-height: 1.8; color: var(--text-body); margin-top: 14px; }
.bsafe-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
.bsafe-stat { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 16px; text-align: center; box-shadow: var(--sh-xs); }
.bsafe-stat strong { display: block; font-family: var(--serif); font-size: 1.55rem; color: var(--primary); line-height: 1.1; }
.bsafe-stat span { display: block; margin-top: 6px; font-size: .78rem; color: var(--text-muted); }

.bsafe-prep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bsafe-prep { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 26px 24px; box-shadow: var(--sh-xs); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.bsafe-prep:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); }
.bsafe-prep-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.25rem; color: var(--primary); background: var(--cream-2); margin-bottom: 16px; }
.bsafe-prep h4 { font-size: 1.02rem; color: var(--navy); margin-bottom: 8px; }
.bsafe-prep p { font-size: .88rem; line-height: 1.7; color: var(--text-muted); }

.bsafe-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.bsafe-rules-col { border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--sh-sm); }
.bsafe-rules-col h3 { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; margin-bottom: 18px; }
.bsafe-rules-col ul { list-style: none; display: grid; gap: 12px; }
.bsafe-rules-col li { display: flex; gap: 11px; font-size: .92rem; line-height: 1.65; color: var(--text-body); }
.bsafe-rules-col li i { flex-shrink: 0; margin-top: 4px; }
.bsafe-do { background: #f0fbf4; border: 1px solid #cdeed8; }
.bsafe-do h3 { color: #15803d; }
.bsafe-do li i { color: #16a34a; }
.bsafe-dont { background: #fef4f2; border: 1px solid #f6d6cf; }
.bsafe-dont h3 { color: #b91c1c; }
.bsafe-dont li i { color: #dc2626; }

.bsafe-brace { display: grid; grid-template-columns: 320px 1fr; gap: 44px; align-items: center; margin-bottom: 44px; }
.bsafe-brace-figure { background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px; box-shadow: var(--sh-xs); }
.bsafe-brace-figure svg { width: 100%; height: auto; display: block; }
.bsafe-brace-steps h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 20px; }
.bsafe-steps-list { list-style: none; display: grid; gap: 16px; }
.bsafe-steps-list li { display: flex; gap: 16px; align-items: flex-start; }
.bsafe-steps-list li div { font-size: .92rem; line-height: 1.65; color: var(--text-body); }
.bss-n { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .95rem; }

.bsafe-pos-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bsafe-pos-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; text-align: center; box-shadow: var(--sh-xs); }
.bsafe-pos-card svg { width: 120px; height: 120px; margin: 0 auto 10px; display: block; }
.bsafe-pos-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.bsafe-pos-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

.bsafe-cmd-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.bsafe-cmd { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--r); padding: 22px 24px; box-shadow: var(--sh-xs); }
.bsafe-cmd-quote { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--navy); font-weight: 600; margin-bottom: 8px; }
.bsafe-cmd p { font-size: .88rem; line-height: 1.65; color: var(--text-muted); }

.bsafe-cert-cta { display: flex; align-items: center; gap: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 34px; box-shadow: var(--sh-sm); }
.bsafe-cert-ico { flex-shrink: 0; width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; font-size: 1.6rem; color: var(--primary); background: var(--cream-2); }
.bsafe-cert-text { flex: 1; }
.bsafe-cert-text h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 6px; }
.bsafe-cert-text p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* --- Safety summary (about-us) --- */
.safety-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.ss-point { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 24px; box-shadow: var(--sh-xs); font-size: .92rem; color: var(--text-body); line-height: 1.5; }
.ss-point i { flex-shrink: 0; font-size: 1.4rem; color: var(--primary); }
.safety-summary-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   360 VIRTUAL TOUR PAGE
   ============================================================ */
.tour360-viewer { max-width: 960px; margin: 0 auto; }
.tour360-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
  background: radial-gradient(120% 120% at 50% 10%, #ffd9a0 0%, #ff9d4d 26%, #c2410c 60%, #1B2B4B 100%); }
.tour360-frame iframe { display: block; width: 100%; height: 100%; pointer-events: auto; cursor: grab; }
.tour360-frame iframe:active { cursor: grabbing; }
.tour360-badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,.4); color: #fff; padding: 7px 14px; border-radius: 30px; font-size: .82rem; font-weight: 700; backdrop-filter: blur(6px); }
.tour360-badge i { animation: spin360 6s linear infinite; }
@keyframes spin360 { to { transform: rotate(360deg); } }
.tour360-hint { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,.4); color: #fff; padding: 8px 16px; border-radius: 30px; font-size: .82rem; backdrop-filter: blur(6px); white-space: nowrap; }
.tour360-caption { position: absolute; top: 16px; right: 16px; max-width: 45%; text-align: right; color: rgba(255,255,255,.92); font-size: .82rem; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.tour360-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 84px; height: 84px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--primary); font-size: 1.6rem; display: grid; place-items: center; box-shadow: 0 0 0 0 rgba(255,255,255,.5); animation: pulse360 2.4s var(--ease) infinite; transition: transform .25s var(--ease); }
.tour360-play:hover { transform: translate(-50%, -50%) scale(1.08); }
@keyframes pulse360 { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.45); } 70% { box-shadow: 0 0 0 22px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
.tour360-note { display: flex; align-items: center; gap: 9px; justify-content: center; margin-top: 20px; font-size: .86rem; color: var(--text-muted); }
.tour360-note i { color: var(--primary); }

.tour360-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tour360-point { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 22px; box-shadow: var(--sh-xs); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tour360-point:hover { transform: translateY(-5px); box-shadow: var(--sh-sm); }
.tour360-point-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.25rem; color: var(--primary); background: var(--cream-2); margin-bottom: 16px; }
.tour360-point h4 { font-size: 1.02rem; color: var(--navy); margin-bottom: 8px; }
.tour360-point p { font-size: .87rem; line-height: 1.65; color: var(--text-muted); }

.tour360-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tour360-how-item { text-align: center; padding: 28px 24px; }
.tour360-how-ico { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-light)); margin: 0 auto 16px; box-shadow: var(--sh-orange); }
.tour360-how-item h4 { font-size: 1.08rem; color: var(--navy); margin-bottom: 8px; }
.tour360-how-item p { font-size: .9rem; line-height: 1.7; color: var(--text-muted); }

/* ============================================================
   EXPERIENCE INFORMATION PAGES (SEO / AEO content)
   ============================================================ */
.exp-facts-wrap { background: var(--navy); padding: 26px 0; }
.exp-facts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.exp-fact { display: flex; align-items: center; gap: 12px; color: #fff; }
.exp-fact i { flex-shrink: 0; font-size: 1.35rem; color: var(--primary-light); }
.exp-fact strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.6); font-weight: 600; }
.exp-fact span { display: block; font-size: .94rem; font-weight: 700; margin-top: 2px; }

.exp-article { max-width: 820px; margin: 0 auto; }
.exp-block { margin-bottom: 44px; }
.exp-block h2 { font-family: var(--serif); font-size: 1.6rem; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.exp-block > p { font-size: .98rem; line-height: 1.85; color: var(--text-body); margin-bottom: 14px; }
.exp-lead { font-size: 1.12rem !important; color: var(--navy) !important; font-weight: 500; line-height: 1.8 !important; }

.exp-answer { background: var(--cream-2); border-left: 4px solid var(--primary); border-radius: var(--r); padding: 18px 22px; margin: 20px 0; }
.exp-answer p { font-size: .95rem; line-height: 1.75; color: var(--text-body); margin: 0; }
.ea-label { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--primary-dark); margin-bottom: 8px; }

.exp-points { list-style: none; display: grid; gap: 13px; margin: 18px 0; }
.exp-points li { display: flex; gap: 12px; font-size: .94rem; line-height: 1.7; color: var(--text-body); }
.exp-points li i { flex-shrink: 0; margin-top: 5px; color: var(--primary); }

.exp-feel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.exp-feel { display: flex; gap: 15px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; box-shadow: var(--sh-xs); }
.exp-feel-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 1.15rem; color: var(--primary); background: var(--cream-2); }
.exp-feel h4 { font-size: .98rem; color: var(--navy); margin-bottom: 5px; }
.exp-feel p { font-size: .86rem; line-height: 1.65; color: var(--text-muted); }

.exp-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 18px; }
.exp-compare-col { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh-xs); }
.exp-compare-col h4 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; color: var(--navy); margin-bottom: 16px; }
.exp-compare-col h4 i { color: var(--primary); }
.exp-compare-col ul { list-style: none; display: grid; gap: 12px; }
.exp-compare-col li { display: flex; gap: 11px; font-size: .9rem; line-height: 1.65; color: var(--text-body); }
.exp-compare-col li i { flex-shrink: 0; margin-top: 4px; color: var(--primary); }

.exp-tip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 18px; }
.exp-tip { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 24px 22px; box-shadow: var(--sh-xs); }
.exp-tip-ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 1.15rem; color: var(--primary); background: var(--cream-2); margin-bottom: 14px; }
.exp-tip h4 { font-size: .98rem; color: var(--navy); margin-bottom: 7px; }
.exp-tip p { font-size: .86rem; line-height: 1.65; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE — restored components
   ============================================================ */
@media (max-width: 980px) {
  .bsafe-stats { grid-template-columns: repeat(2, 1fr); }
  .bsafe-prep-grid { grid-template-columns: repeat(2, 1fr); }
  .bsafe-rules { grid-template-columns: 1fr; }
  .bsafe-brace { grid-template-columns: 1fr; gap: 28px; }
  .bsafe-brace-figure { max-width: 320px; margin: 0 auto; }
  .bsafe-pos-cards { grid-template-columns: 1fr; }
  .bsafe-cmd-grid { grid-template-columns: 1fr; }
  .bsafe-cert-cta { flex-direction: column; text-align: center; }
  .safety-summary { grid-template-columns: 1fr; }
  .tour360-points { grid-template-columns: repeat(2, 1fr); }
  .tour360-how { grid-template-columns: 1fr; }
  .exp-facts { grid-template-columns: repeat(2, 1fr); }
  .exp-feel-grid { grid-template-columns: 1fr; }
  .exp-compare { grid-template-columns: 1fr; }
  .exp-tip-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .bsafe-stats { grid-template-columns: 1fr; }
  .bsafe-prep-grid { grid-template-columns: 1fr; }
  .tour360-points { grid-template-columns: 1fr; }
  .exp-facts { grid-template-columns: 1fr; }
  .tour360-caption { position: static; max-width: 100%; text-align: center; margin-top: 10px; color: var(--text-muted); text-shadow: none; }
}

/* ============================================================
   2026-06 REDESIGN BATCH (locale, legal, about, blog, faq, gallery, exp)
   ============================================================ */

/* --- 1. LOCALE (language + currency) DROPDOWN --- */
.locale-dropdown { position: relative; }
.locale-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: #fff; font-size: .76rem; font-weight: 600; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.locale-btn:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.locale-btn img { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; }
.locale-btn .locale-sep { opacity: .35; font-weight: 400; }
.locale-btn .fa-chevron-down { font-size: .56rem; opacity: .7; transition: transform .25s; }
.locale-dropdown.open .locale-btn .fa-chevron-down { transform: rotate(180deg); }
.site-header.is-scrolled .locale-btn { background: var(--cream); border-color: var(--cream-2); color: var(--navy); }

.locale-panel {
  position: absolute; top: calc(100% + 12px); right: 0;
  width: 290px; background: #fff; color: var(--navy);
  border-radius: 16px; box-shadow: 0 20px 54px rgba(15,30,53,.24);
  border: 1px solid rgba(15,30,53,.06);
  padding: 16px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 200; min-width: 0;
}
.locale-dropdown.open .locale-panel,
.locale-dropdown:hover .locale-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.locale-panel::before {
  content: ''; position: absolute; top: -6px; right: 24px;
  width: 12px; height: 12px; background: #fff; transform: rotate(45deg);
  border-left: 1px solid rgba(15,30,53,.06); border-top: 1px solid rgba(15,30,53,.06);
}
.locale-group-label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted); margin: 2px 4px 9px;
}
.locale-langs + .locale-group-label { margin-top: 16px; }
.locale-langs { display: flex; flex-direction: column; gap: 2px; }
.locale-langs a {
  display: flex; align-items: center; gap: 11px; padding: 9px 10px;
  border-radius: 10px; font-size: .85rem; font-weight: 500; color: var(--navy);
  transition: background .15s, color .15s;
}
.locale-langs a img { width: 21px; height: 15px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.locale-langs a:hover { background: var(--cream); }
.locale-langs a.is-active { background: rgba(255,122,0,.1); color: var(--primary); font-weight: 700; }
.locale-currs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.locale-currs a {
  display: flex; align-items: center; justify-content: center; padding: 10px 6px;
  border-radius: 10px; font-size: .8rem; font-weight: 600; color: var(--navy);
  background: var(--cream); border: 1px solid transparent; transition: all .15s;
}
.locale-currs a:hover { border-color: rgba(255,122,0,.45); color: var(--primary); }
.locale-currs a.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* --- 2. LEGAL PAGES (premium card) --- */
.container:has(> .legal-content) { max-width: 1100px; }
.legal-content {
  max-width: 880px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  padding: clamp(30px, 5vw, 60px); box-shadow: 0 18px 50px rgba(15,30,53,.06);
}
.legal-content > h2:first-child { margin-top: 0; }
.legal-content h2 {
  font-family: var(--serif); font-size: 1.35rem; color: var(--navy);
  margin: 38px 0 14px; padding-bottom: 0; border-bottom: 0;
  display: flex; align-items: baseline; gap: 12px; line-height: 1.3;
}
.legal-content h2::before {
  content: ''; flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); transform: translateY(-2px);
}
.legal-content p { color: var(--text-body); line-height: 1.85; margin-bottom: 14px; font-size: .96rem; }
.legal-content ul { color: var(--text-body); padding-left: 4px; margin-bottom: 18px; list-style: none; }
.legal-content li { position: relative; padding-left: 26px; line-height: 1.75; margin-bottom: 9px; font-size: .95rem; }
.legal-content li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: 1px; font-size: .72rem; color: var(--primary);
}
.legal-content a { color: var(--primary); font-weight: 600; }

/* --- 3. ABOUT-US: Team & Features section (missing CSS) --- */
.about-photos-col { position: relative; }
.about-feature-grid { display: grid; grid-template-columns: 480px 1fr; gap: 70px; align-items: center; }
.aff-media { position: relative; }
.aff-img-main { width: 100%; height: 460px; object-fit: cover; border-radius: var(--r-lg); display: block; box-shadow: var(--sh-lg); }
.aff-img-sub { position: absolute; bottom: -30px; right: -30px; width: 210px; height: 160px; object-fit: cover; border-radius: var(--r); border: 5px solid #fff; box-shadow: var(--sh-lg); }
.aff-media-badge { position: absolute; top: 26px; left: -22px; display: flex; align-items: center; gap: 13px; background: #fff; border-radius: 14px; padding: 14px 20px; box-shadow: var(--sh-lg); }
.aff-media-badge i { font-size: 1.7rem; color: var(--primary); }
.aff-media-badge strong { display: block; font-size: 1.02rem; color: var(--navy); font-family: var(--font-head); }
.aff-media-badge span { display: block; font-size: .78rem; color: var(--text-muted); }
.aff-content h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--navy); margin: 10px 0 14px; line-height: 1.2; }
.aff-content > p { font-size: .98rem; line-height: 1.8; color: var(--text-body); }
.aff-features { list-style: none; display: grid; gap: 22px; margin-top: 28px; }
.aff-features li { display: flex; gap: 18px; }
.aff-ico { flex-shrink: 0; width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-size: 1.25rem; color: var(--primary); background: var(--cream-2); }
.aff-text h4 { font-size: 1.04rem; color: var(--navy); margin-bottom: 5px; }
.aff-text p { font-size: .89rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 980px) {
  .about-feature-grid { grid-template-columns: 1fr; gap: 56px; }
  .aff-img-sub { width: 150px; height: 110px; bottom: -20px; right: 16px; }
  .aff-media-badge { left: 16px; }
}
@media (max-width: 560px) {
  .aff-features li { gap: 14px; }
  .aff-ico { width: 46px; height: 46px; font-size: 1.1rem; }
}

/* --- 4. BLOG: sticky filter sidebar layout (missing CSS) --- */
.blog-layout { display: grid; grid-template-columns: 290px 1fr; gap: 44px; align-items: start; }
.blog-sidebar { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 20px; }
.blog-filter-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px 18px; box-shadow: var(--sh-xs); }
.blog-filter-label { display: flex; align-items: center; gap: 9px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 16px; padding: 0 8px; }
.blog-filter-label i { color: var(--primary); }
.blog-filter-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; margin-bottom: 4px; border: 1px solid transparent; border-radius: 12px;
  background: none; cursor: pointer; font-family: var(--sans); font-size: .9rem; font-weight: 600;
  color: var(--navy); transition: all .18s var(--ease); text-align: left;
}
.blog-filter-btn span { display: inline-flex; align-items: center; gap: 11px; }
.blog-filter-btn span i { width: 16px; text-align: center; color: var(--text-muted); transition: color .18s; font-size: .9rem; }
.blog-filter-btn em { font-style: normal; font-size: .75rem; font-weight: 700; color: var(--text-muted); background: var(--cream); border-radius: 20px; padding: 2px 9px; transition: all .18s; }
.blog-filter-btn:hover { background: var(--cream); }
.blog-filter-btn:hover span i { color: var(--primary); }
.blog-filter-btn.is-active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(255,122,0,.22); }
.blog-filter-btn.is-active span i,
.blog-filter-btn.is-active em { color: #fff; }
.blog-filter-btn.is-active em { background: rgba(255,255,255,.22); }
.blog-sidebar-cta { background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 100%); border-radius: 18px; padding: 28px 24px; text-align: center; color: #fff; }
.blog-sidebar-cta i { font-size: 1.9rem; color: var(--primary-light); margin-bottom: 12px; }
.blog-sidebar-cta h5 { font-family: var(--serif); font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.blog-sidebar-cta p { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 18px; }
.blog-layout .blog-grid { grid-template-columns: repeat(2, 1fr); }
.blog-card[hidden] { display: none !important; }
@media (max-width: 980px) {
  .blog-layout { grid-template-columns: 1fr; gap: 32px; }
  .blog-sidebar { position: static; }
  .blog-filter-card { display: flex; flex-wrap: wrap; gap: 8px; }
  .blog-filter-label { width: 100%; margin-bottom: 6px; }
  .blog-filter-btn { width: auto; margin-bottom: 0; border: 1px solid var(--border); }
  .blog-filter-btn em { display: none; }
  .blog-sidebar-cta { display: none; }
  .blog-layout .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) { .blog-layout .blog-grid { grid-template-columns: 1fr; } }

/* --- 5. BLOG DETAIL: title above article + meta --- */
.article-title { font-family: var(--serif); font-weight: 600; color: var(--navy); font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.18; margin: 0 0 16px; letter-spacing: -.3px; }
.article-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 16px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.article-meta .am-cat { display: inline-flex; align-items: center; gap: 7px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--primary); background: rgba(255,122,0,.1); padding: 6px 14px; border-radius: 100px; }
.article-meta .am-date { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--text-muted); }
.article-meta .am-date i { color: var(--primary); }

/* --- 6. EXPERIENCE PAGES: standardized wider width --- */
.exp-article { max-width: 1040px; }

/* --- 7. GALLERY: uniform seamless grid --- */
.gallery-mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 0; }
.gallery-mosaic .gallery-item { border-radius: 0; box-shadow: none; aspect-ratio: 1 / 1; }
.gallery-mosaic .gallery-item.gi-wide,
.gallery-mosaic .gallery-item.gi-tall,
.gallery-mosaic .gallery-item.gi-big { grid-column: auto; grid-row: auto; aspect-ratio: 1 / 1; }
.gallery-mosaic .gallery-item img { transition: transform .5s var(--ease); }
.gallery-mosaic .gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .gallery-mosaic { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-mosaic { grid-template-columns: repeat(2, 1fr); } }

/* --- 8. FAQ: search + left sticky tabs + minimal cards --- */
.faq-layout { display: grid; grid-template-columns: 270px 1fr; gap: 48px; align-items: start; }
.faq-side { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 8px; }
.faq-side .faq-cat-btn {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 13px 16px; border: 1px solid transparent; border-radius: 12px;
  background: none; color: var(--navy); font-size: .92rem; font-weight: 600;
  cursor: pointer; transition: all .18s var(--ease); text-align: left;
}
.faq-side .faq-cat-btn i { width: 18px; text-align: center; color: var(--text-muted); transition: color .18s; }
.faq-side .faq-cat-btn:hover { background: var(--cream); }
.faq-side .faq-cat-btn:hover i { color: var(--primary); }
.faq-side .faq-cat-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(255,122,0,.22); }
.faq-side .faq-cat-btn.active i { color: #fff; }
.faq-search { position: relative; margin-bottom: 28px; }
.faq-search i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--primary); font-size: 1rem; }
.faq-search input {
  width: 100%; padding: 17px 20px 17px 52px; border: 1.5px solid var(--border);
  border-radius: 14px; font-family: var(--sans); font-size: .95rem; color: var(--navy);
  background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; box-shadow: var(--sh-xs);
}
.faq-search input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255,122,0,.1); }
.faq-main .faq-category-block { margin-bottom: 36px; }
.faq-main .faq-category-block[hidden] { display: none; }
.faq-cat-title { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 18px; }
.faq-cat-title i { color: var(--primary); }
.faq-main .faq-wrap { display: flex; flex-direction: column; gap: 10px; }
.faq-main .faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: none; transition: border-color .2s, background .2s; }
.faq-main .faq-item.open { border-color: var(--primary); box-shadow: none; background: #fff; }
.faq-main .faq-btn { padding: 16px 18px; font-size: .92rem; }
.faq-main .faq-item.open .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-no-results { text-align: center; padding: 40px 20px; color: var(--text-muted); font-size: .95rem; }
.faq-no-results i { display: block; font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 0; }
  .faq-side { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .faq-side .faq-cat-btn { width: auto; border: 1px solid var(--border); border-radius: 100px; padding: 9px 16px; font-size: .85rem; }
}

/* ============================================================
   CHECKOUT / CART PAGE
   ============================================================ */
.checkout-steps { list-style: none; margin: 0 auto 42px; padding: 0; display: flex; align-items: center; justify-content: center; max-width: 560px; }
.cs-step { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-weight: 600; font-size: .9rem; flex: 1; }
.cs-step:not(:last-child)::after { content: ''; flex: 1; height: 2px; background: var(--cream-2); margin: 0 14px; border-radius: 2px; transition: background .25s; }
.cs-num { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--cream-2); color: var(--text-muted); font-weight: 800; font-size: .9rem; flex-shrink: 0; transition: all .25s var(--ease); }
.cs-step.is-active .cs-num,
.cs-step.is-done .cs-num { background: var(--primary); color: #fff; box-shadow: 0 6px 16px rgba(255,122,0,.3); }
.cs-step.is-active .cs-label,
.cs-step.is-done .cs-label { color: var(--navy); }
.cs-step.is-done:not(:last-child)::after { background: var(--primary); }
.cs-label { white-space: nowrap; }

.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.checkout-main { min-width: 0; }
.checkout-panel { display: none; }
.checkout-panel.is-active { display: block; }
.checkout-title { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); margin-bottom: 22px; }

.cart-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.cart-item { display: grid; grid-template-columns: 104px 1fr auto; gap: 18px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 14px; box-shadow: var(--sh-xs); }
.cart-item-img { width: 104px; height: 88px; border-radius: 12px; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { min-width: 0; }
.cart-item-info h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; font-family: var(--serif); }
.cart-item-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: .82rem; color: var(--text-muted); }
.cart-item-meta span { display: inline-flex; align-items: center; gap: 6px; }
.cart-item-meta i { color: var(--primary); }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-item-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); font-family: var(--serif); }
.cart-qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 100px; overflow: hidden; }
.cart-qty button { width: 32px; height: 32px; border: none; background: var(--cream); color: var(--navy); font-size: 1rem; cursor: pointer; transition: background .15s, color .15s; }
.cart-qty button:hover { background: var(--primary); color: #fff; }
.cart-qty span { min-width: 34px; text-align: center; font-weight: 700; font-size: .9rem; color: var(--navy); }
.cart-item-remove { border: none; background: none; color: var(--text-muted); font-size: .8rem; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: color .15s; }
.cart-item-remove:hover { color: #ef4444; }

/* ── Cart Empty State ── */
.cart-empty {
  text-align: center;
  padding: 72px 40px 64px;
  background: linear-gradient(150deg, #fffdf9 0%, #fff8f0 100%);
  border: 1px solid rgba(255,122,0,.13);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.cart-empty::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,122,0,.07) 0%, transparent 68%);
  pointer-events: none;
}
.cart-empty > i {
  font-size: 3.6rem;
  color: var(--primary);
  opacity: .22;
  margin-bottom: 22px;
  display: block;
}
.cart-empty h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.cart-empty p {
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 360px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Find a Flight CTA button */
.cart-empty .btn {
  padding: 16px 44px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: linear-gradient(130deg, var(--primary-light) 0%, var(--primary) 45%, var(--primary-dark) 100%);
  border: none;
  border-radius: 100px;
  color: #fff;
  box-shadow: 0 8px 28px rgba(255,122,0,.38), 0 2px 6px rgba(255,122,0,.18);
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--spring), box-shadow .28s var(--ease);
}
.cart-empty .btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  animation: cart-btn-shimmer 2.8s ease-in-out infinite;
}
@keyframes cart-btn-shimmer {
  0%   { left: -100%; }
  55%  { left: 160%; }
  100% { left: 160%; }
}
.cart-empty .btn i {
  font-size: .9rem;
  color: inherit;
  opacity: 1;
  margin-bottom: 0;
  transition: transform .25s var(--spring);
}
.cart-empty .btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 44px rgba(255,122,0,.48), 0 4px 12px rgba(255,122,0,.22);
  background: linear-gradient(130deg, #ffb04d 0%, var(--primary) 50%, #c55800 100%);
}
.cart-empty .btn:hover i { transform: translateX(3px); }

.checkout-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* Booking Information — passenger sections */
.booking-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 16px;
}
.booking-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--primary);
}
.booking-section-head i { color: var(--primary); font-size: 1.05rem; }
.passenger-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-bottom: 0; }
.form-row-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 0; }
.input-icon-wrap { position: relative; }
.input-icon-wrap i { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--primary); font-size: .9rem; pointer-events: none; }
.input-icon-wrap input { padding-left: 36px !important; }


.pay-secure { display: flex; align-items: center; gap: 9px; background: rgba(34,197,94,.1); color: #16834a; font-size: .85rem; font-weight: 600; padding: 12px 16px; border-radius: 12px; margin-bottom: 22px; }
.pay-cards { display: flex; align-items: center; gap: 14px; margin: 18px 0 4px; font-size: 1.9rem; color: var(--navy); }
.pay-cards .troy-icon { font-size: .85rem; font-weight: 800; letter-spacing: .03em; color: #fff; background: var(--navy); padding: 4px 9px; border-radius: 5px; }

.checkout-summary { position: sticky; top: 120px; }
.cs-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px 24px; box-shadow: var(--shadow); }
.cs-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; color: var(--navy); margin-bottom: 18px; }
.cs-card h3 i { color: var(--primary); }
.cs-lines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.cs-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.cs-line-title { display: block; font-size: .9rem; font-weight: 600; color: var(--navy); }
.cs-line-sub { display: block; font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.cs-line strong { font-size: .95rem; color: var(--navy); white-space: nowrap; }
.cs-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; font-size: .9rem; color: var(--text-body); border-top: 1px solid var(--border); }
.cs-row strong { color: var(--navy); }
.cs-total { margin-top: 4px; padding-top: 14px; font-size: 1.05rem; }
.cs-total strong { font-size: 1.5rem; color: var(--primary); font-family: var(--serif); }
.cs-trust { display: flex; flex-direction: column; gap: 9px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.cs-trust span { display: flex; align-items: center; gap: 9px; font-size: .8rem; color: var(--text-muted); }
.cs-trust i { color: #22c55e; width: 16px; text-align: center; }

@media (max-width: 920px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 28px; }
  .checkout-summary { position: static; }
}
@media (max-width: 560px) {
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-img { width: 80px; height: 70px; }
  .cart-item-right { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .checkout-steps .cs-label { display: none; }
}

/* ============================================================
   FLIGHTS / SEARCH & RESULTS PAGES
   ============================================================ */
.flsearch-wrap {
  margin-top: -46px;
  position: relative;
  z-index: 10;
  padding-bottom: 24px;
  background: var(--cream);
}
.flsearch {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr auto;
  gap: 20px;
  background: var(--white);
  padding: 24px var(--r-lg);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(15,30,53,.07);
  align-items: flex-end;
  max-width: 800px;
  margin: 0 auto;
}
.flsearch-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flsearch-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.flsearch-field label i {
  color: var(--primary);
}
.flsearch-field input, .flsearch-field select {
  width: 100%;
  height: 48px;
  padding: 11px 16px;
  border: 2px solid var(--cream-2);
  border-radius: var(--r);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--cream);
  font-family: var(--sans);
  transition: all 0.2s var(--ease);
  outline: none;
}
.guest-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--cream-2);
  border-radius: var(--r);
  background: var(--cream);
  overflow: hidden;
  transition: all 0.2s var(--ease);
  width: 100%;
}
.guest-input-wrapper:focus-within {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,122,0,.08);
}
.guest-btn {
  background: transparent;
  border: none;
  color: var(--navy);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-size: 1rem;
  flex-shrink: 0;
}
.guest-btn:hover:not(:disabled) {
  background: rgba(255,122,0,.1);
  color: var(--primary);
}
.guest-btn:active:not(:disabled) {
  background: rgba(255,122,0,.2);
}
.guest-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
#fl-guests {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0;
  outline: none;
  -moz-appearance: textfield;
}
#fl-guests::-webkit-outer-spin-button,
#fl-guests::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.flsearch-field input:focus, .flsearch-field select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,122,0,.08);
}
.flsearch-btn {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* FLIGHT RESULTS STYLING */
.flresults-section {
  padding: 60px 0 var(--section-py);
  background: var(--cream);
}

/* Loading state */
.flresults-loader {
  display: none;
  text-align: center;
  padding: 60px 0;
}
.flresults-loader.active {
  display: block;
}
.flresults-loader-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
}
.flresults-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--cream-2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: fl-spin 0.8s linear infinite;
}
@keyframes fl-spin {
  to { transform: rotate(360deg); }
}
.loader-dots::after {
  content: '';
  animation: fl-dots 1.2s steps(4, end) infinite;
}
@keyframes fl-dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}
#flresults-content,
.flresults,
.flresults-note {
  transition: opacity 0.4s ease;
}
#flresults-content.hidden,
.flresults.hidden,
.flresults-note.hidden {
  display: none;
}

.flresults-head {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.flresults-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin: 0;
}
.flresults-date {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.flresults-date i {
  color: var(--primary);
}

.flresults {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FLIGHT CARD STYLING */
.flcard {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(15,30,53,.07);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.flcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.flcard-img {
  position: relative;
  overflow: hidden;
}
.flcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.flcard:hover .flcard-img img {
  transform: scale(1.05);
}

.flcard-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.flcard-badge-orange { background: var(--primary); }
.flcard-badge-navy   { background: var(--navy); }
.flcard-badge-gold   { background: linear-gradient(135deg, var(--gold), #b8841f); }

.flcard-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.flcard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.flcard-body h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0;
  font-family: var(--serif);
}
.flcard-rating {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.flcard-rating i {
  color: var(--gold);
}
.flcard-rating span {
  font-weight: 400;
}

.flcard-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.flcard-meta li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.flcard-meta li i {
  color: var(--primary);
}

.flcard-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.flcard-feats span {
  font-size: 0.8rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 6px;
}
.flcard-feats span i {
  color: #22c55e;
  font-size: 0.75rem;
}

.flcard-side {
  padding: 24px 28px;
  background: rgba(15,30,53,0.01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.flcard-availability {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  margin: 0 auto;
}
.flcard-availability.available {
  color: #1f9d55;
  background: rgba(31,157,85,0.08);
}
.flcard-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 16px 0 12px;
}
.flcard-price-from {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
}
.flcard-price strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}
.flcard-price-per {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 1px;
}
.flcard-total {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.flcard-total strong {
  display: block;
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 800;
  margin-top: 6px;
  font-family: var(--serif);
  letter-spacing: -0.5px;
}

.flcard-add {
  width: 100%;
  justify-content: center;
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: 100px;
  margin-top: 4px;
}

.flresults-note {
  max-width: 650px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--r);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.flresults-note i {
  color: var(--primary);
  font-size: 0.95rem;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .flcard {
    grid-template-columns: 240px 1fr;
  }
  .flcard-body {
    border-right: none;
  }
  .flcard-side {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    background: rgba(15,30,53,0.02);
  }
  .flcard-availability {
    margin: 0;
  }
  .flcard-price {
    align-items: flex-start;
  }
  .flcard-add {
    width: auto;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .flsearch-wrap {
    margin-top: 20px;
  }
  .flsearch {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
  .flcard {
    grid-template-columns: 1fr;
  }
  .flcard-img {
    aspect-ratio: 16/9;
  }
  .flcard-side {
    grid-column: span 1;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    text-align: center;
  }
  .flcard-availability {
    margin: 0 auto;
  }
  .flcard-price {
    align-items: center;
  }
  .flresults-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .flcard-add {
    width: 100%;
  }
}

/* ============================================================
   TOUR DETAIL EXTENSIONS (GALLERY, LIGHTBOX & CALENDAR)
   ============================================================ */
/* --- Tour Photo Gallery --- */
.td-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.td-photo-main {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--sh-sm);
  cursor: pointer;
}
.td-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.td-photo-main:hover img {
  transform: scale(1.02);
}
.td-photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--sh-xs);
  transition: all 0.25s var(--ease);
  z-index: 10;
}
.td-photo-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.td-photo-prev {
  left: 20px;
}
.td-photo-next {
  right: 20px;
}
.td-photo-zoom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(15, 30, 53, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  z-index: 10;
}
.td-photo-zoom:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}
.td-photo-thumbs {
  display: flex;
  gap: 10px;
  overflow: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}
/* Hide scrollbar entirely — navigation handled by buttons */
.td-photo-thumbs::-webkit-scrollbar { display: none; }
.td-photo-thumb {
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  opacity: 0.75;
  background: var(--cream);
}
.td-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.td-photo-thumb.active {
  border-color: var(--primary);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(255,122,0,.15);
}
.td-photo-thumb:hover:not(.active) {
  opacity: 0.95;
}

/* --- Gallery Lightbox --- */
.td-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 53, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.td-lightbox.open {
  display: flex;
}
.td-lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.td-lb-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.25s var(--ease);
}
.td-lb-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}
.td-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.25s var(--ease);
}
.td-lb-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}
.td-lb-prev { left: 40px; }
.td-lb-next { right: 40px; }
.td-lb-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.3);
  padding: 6px 16px;
  border-radius: 100px;
}

/* --- Booking Calendar --- */
.bk-cal {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 20px;
}
.bk-cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.bk-cal-head h4 {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  margin: 0;
}
.bk-cal-nav {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  color: var(--navy);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s;
}
.bk-cal-nav:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.bk-cal-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.bk-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 10px;
}
.bk-cal-weekdays span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}
.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
.bk-cal-day {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  transition: all 0.25s var(--ease);
  user-select: none;
}
.bk-cal-day.empty {
  cursor: default;
  opacity: 0;
}
.bk-cal-day .cal-num {
  font-size: 0.85rem;
  align-self: flex-start;
}
.bk-cal-day .cal-price {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  align-self: flex-end;
  line-height: 1;
}

/* Calendar states */
.bk-cal-day.available {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
}
.bk-cal-day.available:hover {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.2);
}
.bk-cal-day.available:hover .cal-price {
  color: #fff;
}

.bk-cal-day.few {
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.bk-cal-day.few .cal-price {
  color: #b45309;
}
.bk-cal-day.few:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}
.bk-cal-day.few:hover .cal-price {
  color: #fff;
}

.bk-cal-day.full {
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}
.bk-cal-day.cancelled {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #ef4444;
  text-decoration: line-through;
  cursor: not-allowed;
}
.bk-cal-day.past {
  color: rgba(15, 23, 42, 0.15);
  cursor: not-allowed;
  background: transparent;
}
.bk-cal-day.today {
  box-shadow: inset 0 0 0 2px var(--navy);
}

.bk-cal-day.selected {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--sh-orange) !important;
}
.bk-cal-day.selected .cal-price {
  color: #fff !important;
}

/* Calendar legend */
.bk-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.bk-leg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
}
.bk-leg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.bk-leg-dot.available { background: #22c55e; }
.bk-leg-dot.few       { background: var(--gold); }
.bk-leg-dot.full      { background: var(--text-muted); }
.bk-leg-dot.cancelled { background: #ef4444; }

/* Selected date info */
.bk-cal-selected {
  background: var(--cream);
  border-radius: var(--r);
  padding: 16px;
  border: 1px solid var(--cream-2);
}
.bk-no-date {
  text-align: center;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}
.bk-no-date i {
  font-size: 1.3rem;
  color: var(--primary);
  opacity: 0.6;
}

.bk-cal-date-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bk-date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.bk-date-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bk-date-label i {
  color: var(--primary);
}
.bk-date-price {
  font-size: 1.25rem;
  font-family: var(--serif);
  font-weight: 800;
  color: var(--primary);
}
.bk-date-spots {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1f9d55;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bk-date-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 12px 20px;
  box-shadow: var(--sh-orange);
}

@media (max-width: 768px) {
  .td-photo-wrap {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .td-photo-main {
    height: 340px;
  }
  .td-photo-thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-bottom: 6px;
    padding-right: 0;
  }
  .td-photo-thumb {
    width: 90px;
    height: 68px;
    flex-shrink: 0;
  }
  .td-lightbox {
    padding: 20px;
  }
  .td-lb-prev { left: 16px; }
  .td-lb-next { right: 16px; }
  .td-lb-close { top: 16px; right: 16px; width: 40px; height: 40px; font-size: 1rem; }
  .td-lb-nav { width: 44px; height: 44px; font-size: 0.95rem; }
}

/* ── Custom SweetAlert Toast ── */
.swal2-container.swal2-top-end { padding: 16px !important; }
.swal2-popup.swal2-toast { padding: 0 !important; background: transparent !important; box-shadow: none !important; }
.gb-sw-toast {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(15,30,53,.18), 0 2px 8px rgba(0,0,0,.08);
  border-left: 4px solid var(--primary);
  min-width: 280px;
  max-width: 360px;
}
.gb-sw-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,122,0,.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.gb-sw-body { min-width: 0; }
.gb-sw-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  margin: 0 0 3px;
  font-family: var(--sans);
}
.gb-sw-sub {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
  font-family: var(--sans);
}
.gb-toast-slide-in { animation: gbToastIn .3s cubic-bezier(.21,1.02,.73,1) forwards; }
.gb-toast-slide-out { animation: gbToastOut .25s ease-in forwards; }
@keyframes gbToastIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes gbToastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}

/* ============================================================
   HERO VIDEO — YouTube background (index page)
   ============================================================ */
.hero-video {
  position: relative;
  height: 100vh; min-height: 640px; max-height: 920px;
  overflow: hidden;
  display: flex; align-items: center;
  /* Fallback bg shown on mobile / before video loads */
  background: url('https://guvercinballoons.com/assets/upload/turfoto/kap_15dsadas.jpg') center/cover no-repeat;
}

/* ── Video wrapper fills the section ── */
.hv-video-wrap {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 0;
}

/* Force the YT API div + generated iframe to cover the section */
#yt-player {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw;   /* 16:9 ratio via width */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 ratio via height */
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#yt-player iframe {
  position: absolute; top: 0; left: 0;
  width: 100% !important; height: 100% !important;
  border: 0; pointer-events: none;
}

/* ── Dark gradient overlay ── */
.hv-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,  rgba(12,6,2,.72) 0%, rgba(12,6,2,.38) 46%, transparent 78%),
    linear-gradient(to top,    rgba(0,0,0,.48)  0%, transparent 38%),
    linear-gradient(to bottom, rgba(0,0,0,.28)  0%, transparent 22%);
}

/* ── Text content ── */
.hv-content {
  position: relative; z-index: 4;
  padding-top: calc(var(--header-h) + 16px);
  padding-bottom: 54px;
  width: 100%;
}
.hv-inner { max-width: 500px; }

.hv-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,122,0,0.55);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.hv-tag i { color: var(--primary); }
.hv-title {
  font-size: clamp(1.85rem, 3.8vw, 3.1rem);
  color: #fff; line-height: 1.12; margin-bottom: 12px; font-weight: 800;
}
.hv-sub {
  font-size: clamp(.84rem, 1.25vw, .96rem);
  color: rgba(255,255,255,.8); line-height: 1.65;
  margin-bottom: 24px; max-width: 400px;
}
.hv-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Scroll hint ── */
.hv-scroll {
  position: absolute; bottom: 34px; left: 40px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.52); font-size: .67rem; letter-spacing: .12em; text-transform: uppercase;
}
.hv-scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: lineDown 1.9s ease-in-out infinite;
}

/* Suppress YouTube play button / controls overlay */
.hv-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: none;
}

/* ── Availability search bar overlaid at video bottom ── */
.hv-search-bar {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(640px, 94vw);
}

/* Fully independent form — zero shared classes with flights page */
.hv-search-form {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 -4px 32px rgba(0,0,0,.2);
}
.hvsf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.hvsf-field label {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hvsf-field label i { color: var(--primary); }
.hvsf-field input[type="date"] {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 9px;
  background: rgba(255,255,255,.92);
  font-size: .92rem;
  color: var(--navy);
  font-family: var(--sans);
  outline: none;
  transition: border-color .2s;
}
.hvsf-field input[type="date"]:focus { border-color: var(--primary); background: #fff; }
.hvsf-sep {
  width: 1px;
  height: 46px;
  background: rgba(255,255,255,.28);
  flex-shrink: 0;
  align-self: flex-end;
}
.hvsf-stepper {
  display: flex;
  align-items: center;
  height: 46px;
  background: rgba(255,255,255,.92);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 9px;
  overflow: hidden;
}
.hvsf-stepper button {
  width: 42px;
  height: 46px;
  border: none;
  background: transparent;
  color: var(--navy);
  font-size: .85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.hvsf-stepper button:hover { background: rgba(255,122,0,.12); color: var(--primary); }
.hvsf-stepper span {
  flex: 1;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  pointer-events: none;
}
.hvsf-btn {
  height: 46px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
}

@media (max-width: 640px) {
  .hv-search-bar { width: 100%; }
  .hv-search-form { flex-wrap: wrap; gap: 12px; }
  .hvsf-sep { display: none; }
  .hvsf-btn { flex: 1 1 100%; justify-content: center; }
}

/* Booking section directly below video */
.hv-booking-section { background: var(--bg-alt, #f8fafc); }

/* ── Responsive ── */
@media (max-width: 1023px) {
  .hero-video { min-height: 560px; }
}
@media (max-width: 767px) {
  .hero-video { min-height: 480px; max-height: none; height: 90vh; }
  /* Hide video on mobile — fallback bg image is used */
  .hv-video-wrap { display: none; }
  .hv-scroll { display: none; }
  .hv-inner { max-width: 100%; }
  .hv-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
}

