/* ============================================================
   MyToursMadeira — style.css
   Ocean Blue & White Luxury Tourism
   ============================================================ */

/* ── REPLACE: Swap Google Fonts import if you want different fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ══════════════════════════════════════════
   CSS VARIABLES — edit colors/sizes here
══════════════════════════════════════════ */
:root {
  /* Primary palette */
  --blue:       #0057ff;
  --blue-d:     #003ecb;
  --blue-dd:    #001a6e;
  --teal:       #00c9b1;
  --teal-d:     #009d8c;
  --green:      #00b86b;
  --sky:        #e8f2ff;
  --sky-d:      #c8dcff;

  /* Neutrals */
  --white:      #ffffff;
  --off:        #f5f9ff;
  --border:     #dde8f8;
  --muted:      #6b7fa3;
  --mid:        #2d3f5e;
  --dark:       #0a1628;

  /* Accents */
  --gold:       #f59e0b;
  --orange:     #ff6b35;
  --coral:      #ff3366;
  --purple:     #7c3aed;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,87,255,.08);
  --shadow-md:  0 8px 32px rgba(0,87,255,.14);
  --shadow-lg:  0 20px 60px rgba(0,87,255,.18);
  --shadow-xl:  0 32px 80px rgba(0,87,255,.22);

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill:999px;

  /* Typography */
  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-w:     1160px;
  --nav-h:     68px;
  --lang-h:    30px;
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ══════════════════════════════════════════
   LANGUAGE BAR
══════════════════════════════════════════ */
#langBar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--lang-h);
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  gap: 2px; padding: 0 12px; flex-wrap: wrap; overflow: hidden;
}
.lb {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 3px;
  padding: 4px 7px; border-radius: var(--r-sm);
  transition: all .15s; letter-spacing: .06em;
}
.lb:hover, .lb.on { color: var(--teal); background: rgba(0,201,177,.12); }
.lb .f { font-size: 12px; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#nav {
  position: fixed; top: var(--lang-h); left: 0; right: 0; z-index: 400;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  transition: background .3s, box-shadow .3s;
}
#nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.nav-logo {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 800;
  color: var(--white); letter-spacing: -.04em;
  display: flex; align-items: center; gap: 8px;
}
#nav.scrolled .nav-logo { color: var(--dark); }
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.7); letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s;
}
#nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--teal); }
#nav.scrolled .nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--teal); color: var(--dark);
  padding: 10px 20px; border-radius: var(--r-pill);
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  letter-spacing: .04em; border: none;
  box-shadow: 0 4px 16px rgba(0,201,177,.35);
  transition: all .2s;
}
.nav-cta:hover { background: var(--teal-d); transform: translateY(-2px); }
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-ham span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all .3s; }
#nav.scrolled .nav-ham span { background: var(--dark); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; overflow: hidden;
  padding-top: calc(var(--lang-h) + var(--nav-h) + 20px);
  padding-bottom: 60px;
  /* ── REPLACE: swap this URL with your own hero image ── */
  background: url('https://images.unsplash.com/photo-1590167831895-3e2ed988f2aa?w=1800') center/cover no-repeat;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,26,110,.75) 0%, rgba(0,87,255,.5) 50%, rgba(0,201,177,.25) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 20px;
  max-width: 760px; animation: heroIn .9s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  padding: 6px 16px; border-radius: var(--r-pill);
  font-family: var(--font-head); font-size: 9px; font-weight: 700;
  letter-spacing: .14em; backdrop-filter: blur(10px);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800; color: var(--white);
  line-height: .95; letter-spacing: -.05em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #7ef7ff, #00e5c8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.75); line-height: 1.8;
  margin-bottom: 36px; font-weight: 300; max-width: 560px;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.btn-primary {
  background: var(--white); color: var(--blue);
  padding: 15px 30px; border-radius: var(--r-md);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .03em; border: none;
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
  transition: all .22s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.btn-ghost {
  background: rgba(255,255,255,.12); color: var(--white);
  padding: 15px 30px; border-radius: var(--r-md);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  border: 2px solid rgba(255,255,255,.3); backdrop-filter: blur(10px);
  transition: all .22s;
}
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); }
.hero-stats { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; }
.hs-n {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -.04em;
}
.hs-l {
  font-size: 10px; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .14em; margin-top: 3px;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.3); font-family: var(--font-head);
  font-size: 8px; letter-spacing: .3em;
  animation: scrollBob 2.5s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll::after {
  content: ''; width: 1px; height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust {
  background: var(--blue); padding: 14px 20px;
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.ti {
  font-family: var(--font-head); font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,.85); letter-spacing: .1em;
  display: flex; align-items: center; gap: 6px;
}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
.sec { padding: 80px 24px; }
.inner { max-width: var(--max-w); margin: 0 auto; }
.sec-eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 9px;
  text-transform: uppercase; letter-spacing: .3em; color: var(--blue);
  margin-bottom: 8px;
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--dark);
  letter-spacing: -.04em; line-height: 1.05; margin-bottom: 8px;
}
.sec-sub {
  font-size: 14px; color: var(--muted); max-width: 520px; line-height: 1.8;
}

/* ══════════════════════════════════════════
   FILTER BAR
══════════════════════════════════════════ */
.filter-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0 24px; display: flex; align-items: center; gap: 4px;
  overflow-x: auto; scrollbar-width: none;
  position: sticky; top: calc(var(--lang-h) + var(--nav-h)); z-index: 200;
}
.filter-bar::-webkit-scrollbar { display: none; }
.fcat {
  flex: 0 0 auto; padding: 14px 18px;
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  color: var(--muted); letter-spacing: .06em; white-space: nowrap;
  background: none; border: none; border-bottom: 3px solid transparent;
  transition: all .2s; cursor: pointer;
}
.fcat:hover { color: var(--blue); }
.fcat.on { color: var(--blue); border-bottom-color: var(--blue); }

/* ══════════════════════════════════════════
   TOUR CARDS
══════════════════════════════════════════ */
#tours { background: var(--off); }
.tours-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.tgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 22px; }

.tcard {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .28s, box-shadow .28s;
  opacity: 0; transform: translateY(24px);
  /* animate in via JS .vis class */
}
.tcard.vis { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease, box-shadow .28s; }
.tcard:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

/* Card image */
.tc-img {
  position: relative; height: 215px;
  background-size: cover; background-position: center; overflow: hidden;
}
.tc-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(10,22,40,.5));
}
.tc-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  padding: 4px 11px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-size: 9px; font-weight: 700;
  letter-spacing: .06em; color: var(--white);
  backdrop-filter: blur(8px);
}
.badge-blue   { background: rgba(0,87,255,.85); }
.badge-teal   { background: rgba(0,201,177,.9); color: var(--dark); }
.badge-green  { background: rgba(0,184,107,.9); }
.badge-hot    { background: linear-gradient(135deg, #ff6b35, #ff3366); }
.badge-gold   { background: rgba(245,158,11,.9); color: var(--dark); }
.badge-navy   { background: rgba(10,22,40,.88); }
.badge-purple { background: rgba(124,58,237,.9); }
.tc-tags {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  display: flex; flex-direction: column; gap: 4px; align-items: flex-end;
}
.tc-tag {
  background: rgba(255,255,255,.9); color: var(--dark);
  padding: 3px 8px; border-radius: 5px;
  font-family: var(--font-head); font-size: 9px; font-weight: 700;
  letter-spacing: .04em;
}

/* Card body */
.tc-body { padding: 18px; }
.tc-meta-row {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 8px; flex-wrap: wrap;
}
.tc-label {
  font-family: var(--font-head); font-size: 9px; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: .1em;
}
.dot { width: 3px; height: 3px; background: var(--border); border-radius: 50%; flex-shrink: 0; }
.tc-meta-text { font-size: 11px; color: var(--muted); }
.tc-body h3 {
  font-family: var(--font-head); font-size: 1.07rem; font-weight: 800;
  color: var(--dark); letter-spacing: -.02em; line-height: 1.25; margin-bottom: 8px;
}
.tc-feats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.feat {
  display: flex; align-items: center; gap: 3px;
  background: var(--sky); border-radius: 6px;
  padding: 3px 8px; font-size: 11px; color: var(--mid);
}

/* Availability pill */
.avail {
  display: inline-flex; align-items: center; gap: 4px;
  background: #dcfce7; border-radius: 5px;
  padding: 3px 8px; margin-bottom: 10px;
  font-family: var(--font-head); font-size: 8px; font-weight: 700;
  color: #166534; letter-spacing: .06em;
}
.avail-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
.avail.warn { background: #fef9c3; color: #713f12; }
.avail.warn .avail-dot { background: #ca8a04; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.2;} }

/* ── BIG PRICE BLOCK ── */
.price-block {
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--blue-dd), var(--blue-d));
  padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.pb-left {}
.pb-full-lbl {
  font-family: var(--font-head); font-size: 8px; font-weight: 700;
  color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 2px;
}
.pb-full {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -.06em;
}
.pb-full sup { font-size: 1rem; vertical-align: super; font-weight: 700; }
.pb-full-note { font-size: 10px; color: rgba(255,255,255,.38); margin-top: 2px; }
.pb-dep-row { margin-top: 9px; padding-top: 9px; border-top: 1px solid rgba(255,255,255,.1); }
.pb-dep-lbl {
  font-family: var(--font-head); font-size: 8px; font-weight: 700;
  color: var(--teal); text-transform: uppercase; letter-spacing: .1em;
}
.pb-dep {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
  color: var(--teal); letter-spacing: -.03em; line-height: 1;
}
.pb-dep-note { font-size: 9px; color: rgba(255,255,255,.3); }
.pb-cash { font-size: 9px; color: #fca5a5; font-weight: 600; margin-top: 2px; }
.pb-btn {
  flex-shrink: 0; background: var(--teal); color: var(--dark);
  border: none; padding: 12px 16px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  letter-spacing: .04em; transition: all .2s; white-space: nowrap;
}
.pb-btn:hover { background: var(--teal-d); color: var(--white); transform: scale(1.04); }

/* ══════════════════════════════════════════
   OCEAN / BOAT SECTION
══════════════════════════════════════════ */
.ocean-sec {
  background: linear-gradient(155deg, var(--blue-dd) 0%, var(--blue) 55%, var(--teal-d) 100%);
  padding: 80px 24px;
}
.ocean-sec .sec-eyebrow { color: rgba(0,233,207,.75); }
.ocean-sec .sec-title { color: var(--white); }
.ocean-sec .sec-sub { color: rgba(255,255,255,.55); }
.bgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 18px; margin-top: 36px; }
.bcard {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-lg); overflow: hidden;
  backdrop-filter: blur(10px); transition: all .3s;
}
.bcard:hover { background: rgba(255,255,255,.14); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.bcard-img { height: 190px; background-size: cover; background-position: center; }
.bb { padding: 18px; }
.bb h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 6px; letter-spacing: -.02em; }
.bb p { font-size: 12px; color: rgba(255,255,255,.52); line-height: 1.65; margin-bottom: 10px; }
.tchips { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 10px; }
.tc-chip {
  background: rgba(0,233,207,.14); border: 1px solid rgba(0,233,207,.3); color: #00e9cf;
  padding: 2px 8px; border-radius: 5px;
  font-family: var(--font-head); font-size: 9px; font-weight: 700;
}
.bpbox {
  background: rgba(0,0,0,.28); border-radius: var(--r-sm);
  padding: 12px 14px; display: flex; justify-content: space-between;
  align-items: center; gap: 8px;
}
.bpbox .fp {
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 800;
  color: var(--white); letter-spacing: -.05em; line-height: 1;
}
.bpbox .fp span { font-size: .65rem; font-weight: 400; color: rgba(255,255,255,.35); }
.bpbox .dp { font-family: var(--font-head); font-size: .82rem; font-weight: 700; color: #00e9cf; margin-top: 2px; }
.bpbox .dpn { font-size: 9px; color: #fca5a5; font-weight: 600; }
.boat-btn {
  background: rgba(0,233,207,.18); border: 1px solid rgba(0,233,207,.4); color: #00e9cf;
  padding: 9px 14px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: .04em; transition: all .2s; white-space: nowrap;
}
.boat-btn:hover { background: var(--teal); color: var(--dark); }

/* ══════════════════════════════════════════
   BOOKING MODAL — FULL MULTI-STEP
══════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,22,40,.72);
  justify-content: center; align-items: flex-start;
  padding: 16px; overflow-y: auto;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--r-xl);
  width: 100%; max-width: 640px; margin: auto;
  box-shadow: var(--shadow-xl);
  overflow: hidden; animation: modalIn .3s ease;
}
@keyframes modalIn { from { transform: scale(.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-head {
  background: linear-gradient(135deg, var(--blue-dd), var(--blue));
  padding: 24px 28px; position: relative;
}
.modal-head h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -.03em; }
.modal-head p { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 4px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.18); border: none; color: var(--white);
  width: 30px; height: 30px; border-radius: 50%; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.32); }

/* Progress steps */
.modal-steps {
  display: flex; background: var(--sky);
  border-bottom: 1px solid var(--border); overflow-x: auto; scrollbar-width: none;
}
.modal-steps::-webkit-scrollbar { display: none; }
.mstep {
  flex: 1 0 auto; padding: 12px 10px; text-align: center; position: relative;
  font-family: var(--font-head); font-size: 9px; font-weight: 700;
  color: var(--muted); letter-spacing: .05em; white-space: nowrap;
  border-bottom: 3px solid transparent; transition: all .2s;
}
.mstep.on { color: var(--blue); border-bottom-color: var(--blue); }
.mstep.done { color: var(--green); border-bottom-color: var(--green); }
.mstep-icon { font-size: 15px; display: block; margin-bottom: 2px; }

/* Modal body */
.modal-body { padding: 24px 28px; }

/* Step panels */
.step-panel { display: none; animation: fadeUp .3s ease; }
.step-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ── Price summary at top of modal ── */
.price-summary {
  background: linear-gradient(135deg, var(--blue-dd), var(--blue));
  border-radius: var(--r-md); padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.ps-left { }
.ps-tour { font-family: var(--font-head); font-size: 10px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; }
.ps-name { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--white); margin-top: 2px; }
.ps-right { text-align: right; }
.ps-full-lbl { font-size: 8px; color: rgba(255,255,255,.4); font-family: var(--font-head); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.ps-full { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -.05em; }
.ps-dep { font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: var(--teal); margin-top: 4px; }

/* Form elements */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-family: var(--font-head); font-size: 10px; font-weight: 700;
  color: var(--mid); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
  background: var(--white); outline: none; transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); }
.form-input::placeholder { color: #b0bccf; }
.form-textarea { resize: vertical; min-height: 70px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hint { font-size: 11px; color: var(--muted); margin-top: 5px; }

/* Date picker custom */
.date-picker-wrap { position: relative; }
.date-picker-wrap::after {
  content: '📅'; position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  pointer-events: none; font-size: 16px;
}
.form-input[type="date"] { padding-right: 38px; }

/* Counter input */
.counter-wrap { display: flex; align-items: center; gap: 0; border: 2px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.counter-btn { background: var(--sky); border: none; width: 44px; height: 48px; font-size: 18px; font-weight: 700; color: var(--blue); transition: background .15s; }
.counter-btn:hover { background: var(--sky-d); }
.counter-val { flex: 1; text-align: center; font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--dark); border: none; outline: none; background: transparent; }

/* Language chips */
.lang-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-chip {
  padding: 8px 16px; border-radius: var(--r-pill);
  border: 2px solid var(--border); background: var(--white);
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  color: var(--muted); cursor: pointer; transition: all .18s;
}
.lang-chip:hover { border-color: var(--blue); color: var(--blue); }
.lang-chip.on { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* Accommodation cards */
.accom-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(115px, 1fr)); gap: 10px; }
.accom-card {
  border: 2px solid var(--border); border-radius: var(--r-md);
  padding: 14px 10px; text-align: center; cursor: pointer; transition: all .18s;
  background: var(--white);
}
.accom-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.accom-card.on { border-color: var(--blue); background: var(--sky); box-shadow: var(--shadow-sm); }
.accom-icon { font-size: 24px; margin-bottom: 5px; }
.accom-label { font-family: var(--font-head); font-size: 9px; font-weight: 700; color: var(--mid); letter-spacing: .04em; }
.accom-card.on .accom-label { color: var(--blue); }

/* Hotel search */
.hotel-search-wrap { position: relative; }
.hotel-results {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
  z-index: 10; max-height: 280px; overflow-y: auto; display: none;
}
.hotel-results.show { display: block; }
.hotel-result-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  cursor: pointer; transition: background .15s; border-bottom: 1px solid var(--border);
}
.hotel-result-item:last-child { border-bottom: none; }
.hotel-result-item:hover { background: var(--sky); }
.hr-img { width: 48px; height: 40px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.hr-name { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--dark); }
.hr-area { font-size: 11px; color: var(--muted); }

/* Phone row with country code */
.phone-row { display: flex; gap: 0; border: 2px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.phone-code {
  background: var(--sky); border: none; border-right: 2px solid var(--border);
  padding: 12px 10px; font-family: var(--font-body); font-size: 13px; color: var(--dark);
  min-width: 90px; outline: none; cursor: pointer;
}
.phone-input {
  flex: 1; padding: 12px 14px; border: none; outline: none;
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
  background: var(--white);
}

/* Step buttons */
.step-btns { display: flex; gap: 10px; margin-top: 24px; }
.btn-next {
  flex: 1; background: var(--blue); color: var(--white);
  border: none; padding: 15px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .04em; transition: all .2s;
}
.btn-next:hover { background: var(--blue-d); transform: translateY(-2px); }
.btn-back {
  background: var(--sky); color: var(--mid);
  border: 2px solid var(--border); padding: 15px 20px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
}
.btn-back:hover { background: var(--sky-d); }

/* Booking summary panel */
.booking-summary {
  background: var(--sky); border: 1px solid var(--sky-d);
  border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 18px;
}
.bs-title { font-family: var(--font-head); font-size: 10px; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.bs-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border); }
.bs-row:last-child { border-bottom: none; }
.bs-k { font-size: 12px; color: var(--muted); }
.bs-v { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--dark); text-align: right; }
.bs-total { font-size: 1.1rem; color: var(--blue); }

/* Pay button */
.btn-pay {
  width: 100%; background: linear-gradient(135deg, var(--teal), var(--green));
  color: var(--dark); border: none; padding: 17px;
  border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 800; font-size: 15px;
  letter-spacing: .04em; transition: all .22s;
  box-shadow: 0 8px 28px rgba(0,201,177,.35);
}
.btn-pay:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,201,177,.5); }
.btn-wa {
  width: 100%; background: linear-gradient(135deg, #25D366, #1fbd5a);
  color: var(--white); border: none; padding: 14px;
  border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .04em; margin-top: 10px; transition: all .2s;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.35); }
.pay-fine { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.6; }

/* ══════════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════════ */
.reviews-sec { background: var(--off); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 36px; }
.review-card {
  background: var(--white); border-radius: var(--r-lg); padding: 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { font-size: 14px; color: var(--gold); margin-bottom: 10px; }
.review-text { font-size: 13px; color: var(--mid); line-height: 1.75; margin-bottom: 14px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 14px; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.review-name { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--dark); }
.review-country { font-size: 11px; color: var(--muted); }

/* ══════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════ */
.faq-sec { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer; gap: 12px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--dark);
  background: var(--white); border: none; width: 100%; text-align: left;
  transition: background .2s;
}
.faq-q:hover { background: var(--sky); }
.faq-icon { font-size: 18px; color: var(--blue); flex-shrink: 0; transition: transform .2s; }
.faq-a {
  padding: 0 20px; max-height: 0; overflow: hidden;
  font-size: 13px; color: var(--muted); line-height: 1.75;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.contact-sec { background: var(--blue-dd); padding: 80px 24px; }
.contact-sec .sec-eyebrow { color: rgba(0,233,207,.7); }
.contact-sec .sec-title { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.ci-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(0,201,177,.18); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.ci-label { font-family: var(--font-head); font-size: 9px; font-weight: 700; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .1em; }
.ci-val { font-size: 14px; color: var(--white); margin-top: 2px; font-weight: 500; }
.contact-form-box {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl); padding: 28px; backdrop-filter: blur(10px);
}
.contact-form-box h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.contact-form-box .form-input,
.contact-form-box .form-textarea {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: var(--white);
}
.contact-form-box .form-input::placeholder,
.contact-form-box .form-textarea::placeholder { color: rgba(255,255,255,.3); }
.contact-form-box .form-label { color: rgba(255,255,255,.55); }
.btn-contact {
  background: var(--teal); color: var(--dark); border: none;
  padding: 14px 28px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .04em; margin-top: 4px; transition: all .2s;
}
.btn-contact:hover { background: var(--teal-d); color: var(--white); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
}
.float-info {
  position: fixed; bottom: 92px; right: 24px; z-index: 1000;
}
.fab-wa {
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.48); cursor: pointer;
  text-decoration: none; animation: waGlow 2.2s ease-in-out infinite;
  position: relative; transition: transform .2s;
}
.fab-wa:hover { transform: scale(1.12) !important; }
@keyframes waGlow {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.48); transform: scale(1); }
  50%      { box-shadow: 0 8px 40px rgba(37,211,102,.72), 0 0 0 10px rgba(37,211,102,.1); transform: scale(1.06); }
}
.fab-wa svg { width: 28px; height: 28px; }
.fab-rip { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid #25D366; animation: fabRip 2s ease-out infinite; }
.fab-rip:nth-child(2) { animation-delay: .7s; }
@keyframes fabRip { 0%{transform:scale(1);opacity:.8;} 100%{transform:scale(2.2);opacity:0;} }
.fab-info {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,87,255,.38); cursor: pointer;
  animation: infoPulse 3s ease-in-out infinite; transition: transform .2s;
}
.fab-info:hover { transform: scale(1.1) !important; }
@keyframes infoPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.06);} }
.fab-info svg { width: 22px; height: 22px; }

/* ══════════════════════════════════════════
   INFO SLIDE PANEL
══════════════════════════════════════════ */
.panel-overlay { position: fixed; inset: 0; background: rgba(10,22,40,.5); z-index: 498; display: none; }
.panel-overlay.show { display: block; }
.info-panel {
  position: fixed; top: 0; right: -440px; width: 420px; max-width: 96vw;
  height: 100vh; background: var(--white); z-index: 499;
  box-shadow: -8px 0 50px rgba(0,0,0,.15);
  transition: right .32s cubic-bezier(.4,0,.2,1); overflow-y: auto;
}
.info-panel.open { right: 0; }
.ip-head { background: linear-gradient(135deg, var(--blue-dd), var(--blue)); padding: 22px 22px; color: var(--white); position: sticky; top: 0; z-index: 1; }
.ip-head h2 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; letter-spacing: -.03em; }
.ip-head p { font-size: 12px; opacity: .65; margin-top: 3px; }
.ip-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,.18); border: none; color: var(--white); width: 28px; height: 28px; border-radius: 50%; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.ip-tabs { display: flex; gap: 3px; padding: 12px 14px 0; flex-wrap: wrap; border-bottom: 1px solid var(--border); }
.ip-tab { padding: 6px 11px 10px; border: none; background: none; font-family: var(--font-head); font-size: 9px; font-weight: 700; cursor: pointer; color: var(--muted); letter-spacing: .05em; border-radius: 6px 6px 0 0; transition: all .18s; }
.ip-tab.on { background: var(--blue); color: var(--white); }
.ip-tab:hover:not(.on) { color: var(--blue); }
.ip-body { padding: 16px; }
.ip-sec { display: none; }
.ip-sec.active { display: block; }
.ip-card { background: var(--off); border-radius: var(--r-sm); padding: 14px; margin-bottom: 10px; }
.ip-card h4 { font-family: var(--font-head); font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.ip-card ul { list-style: none; }
.ip-card li { display: flex; gap: 7px; font-size: 13px; color: var(--mid); margin-bottom: 5px; line-height: 1.5; }

/* ══════════════════════════════════════════
   STOPS SCROLL
══════════════════════════════════════════ */
.stops-sec { background: var(--white); padding: 48px 24px; }
.stops-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; margin-top: 24px; scrollbar-width: thin; scrollbar-color: var(--blue) var(--border); }
.s-chip { flex: 0 0 auto; background: var(--off); border: 2px solid var(--border); border-radius: var(--r-md); overflow: hidden; width: 160px; cursor: pointer; transition: all .2s; }
.s-chip:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.s-chip img { width: 100%; height: 105px; object-fit: cover; }
.s-chip-l { padding: 5px 8px; font-family: var(--font-head); font-size: 8px; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: .06em; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: var(--dark); padding: 48px 24px 28px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .flogo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -.04em; margin-bottom: 8px; }
.flogo span { color: var(--teal); }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,.42); line-height: 1.7; max-width: 220px; }
.footer-col h4 { font-family: var(--font-head); font-size: 9px; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { max-width: var(--max-w); margin: 28px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.28); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .tgrid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .modal-box { border-radius: var(--r-lg); }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .accom-cards { grid-template-columns: repeat(2, 1fr); }
  .price-summary { flex-direction: column; align-items: flex-start; }
}
