/* ===============================================================
   Taxi Coimbatore Tours & Travels — Premium Travel Website
   Pure HTML + CSS
   =============================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --royal: #0057d9;
  --royal-dark: #0043a8;
  --royal-glow: #2b7bff;
  --emerald: #10b981;
  --gold: #f59e0b;
  --bg: #ffffff;
  --ink: #1f2937;
  --muted: #64748b;
  --soft: #f4f7fb;
  --line: #e7edf5;
  --white: #ffffff;

  --grad-royal: linear-gradient(135deg, #0057d9, #2b7bff);
  --grad-emerald: linear-gradient(135deg, #10b981, #34d399);
  --grad-gold: linear-gradient(135deg, #f59e0b, #fbbf24);
  --grad-hero: linear-gradient(120deg, rgba(3, 18, 48, 0.85) 0%, rgba(0, 47, 120, 0.55) 45%, rgba(0, 40, 100, 0.15) 100%);

  --shadow-sm: 0 4px 16px rgba(15, 40, 90, 0.08);
  --shadow-md: 0 14px 40px rgba(15, 40, 90, 0.12);
  --shadow-lg: 0 28px 70px rgba(10, 30, 80, 0.22);

  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1200px;

  --font-display: "Poppins", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-alt: "Manrope", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-family: var(--font-display);
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--grad-royal); color: #fff; box-shadow: 0 12px 26px rgba(0, 87, 217, .35); }
.btn-primary:hover { box-shadow: 0 18px 36px rgba(0, 87, 217, .45); }
.btn-gold { background: var(--grad-gold); color: #3a2500; box-shadow: 0 12px 26px rgba(245, 158, 11, .35); }
.btn-emerald { background: var(--grad-emerald); color: #fff; box-shadow: 0 12px 26px rgba(16, 185, 129, .32); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.24); }
.btn-outline { background: #fff; color: var(--royal); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--royal); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-alt);
  font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--royal); background: rgba(0,87,217,.08); padding: 7px 16px; border-radius: 50px;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin: 16px 0 12px; letter-spacing: -.5px; }
.section-head p { color: var(--muted); font-size: 17px; }
.pad { padding: 90px 0; }
.pad-soft { background: var(--soft); }

.text-grad { background: var(--grad-royal); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gold-grad { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ================= NAVBAR ================= */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 18px 0;
}
.navbar.scrolled { background: rgba(255,255,255,.9); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; transition: color .35s; }
.navbar.scrolled .logo { color: var(--ink); }
.logo-mark {
  width: 44px; height: 44px; border-radius: 14px; background: var(--grad-royal);
  display: grid; place-items: center; color: #fff; font-size: 22px; box-shadow: 0 8px 20px rgba(0,87,217,.35);
}
.logo small { display: block; font-family: var(--font-alt); font-weight: 600; font-size: 11px; letter-spacing: 1px; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links > li > a {
  padding: 10px 16px; border-radius: 40px; font-weight: 500; font-size: 15px; color: rgba(255,255,255,.92);
  transition: background .25s, color .25s; position: relative;
}
.navbar.scrolled .nav-links > li > a { color: var(--ink); }
.nav-links > li > a:hover { background: rgba(255,255,255,.16); }
.navbar.scrolled .nav-links > li > a:hover { background: var(--soft); color: var(--royal); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { color: #fff; font-weight: 600; font-family: var(--font-display); display: flex; align-items: center; gap: 8px; }
.navbar.scrolled .nav-phone { color: var(--ink); }

/* Mega menu */
.has-mega { position: relative; }
.mega {
  position: absolute; top: 130%; left: 50%; transform: translateX(-50%) translateY(10px);
  width: 640px; background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  opacity: 0; visibility: hidden; transition: all .3s ease; border: 1px solid var(--line);
}
.has-mega:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega h5 { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--royal); margin-bottom: 12px; }
.mega ul { list-style: none; }
.mega ul li a { display: block; padding: 7px 10px; border-radius: 10px; font-size: 14px; color: var(--ink); transition: background .2s; }
.mega ul li a:hover { background: var(--soft); color: var(--royal); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 26px; height: 3px; border-radius: 3px; background: #fff; transition: .3s; }
.navbar.scrolled .hamburger span { background: var(--ink); }

/* ================= HERO ================= */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding: 130px 0 60px;
  background: var(--grad-hero), url("../images/hero.jpg") center/cover no-repeat fixed;
  position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; width: 100%; }
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 50px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px);
  font-size: 13px; font-weight: 600; margin-bottom: 22px; letter-spacing: .5px;
}
.hero-badge b { color: var(--gold); }
.hero h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,.9); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust b { font-family: var(--font-display); font-size: 26px; color: #fff; }
.hero-trust small { font-size: 13px; color: rgba(255,255,255,.75); }

/* Hero right visual */
.hero-visual { position: relative; }
.hero-card-main {
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid rgba(255,255,255,.14);
}
.hero-card-main img { height: 100%; width: 100%; object-fit: cover; }
.float-card {
  position: absolute; background: rgba(255,255,255,.85); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.7); border-radius: 16px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-md); font-weight: 600; font-size: 14px;
  animation: floaty 4s ease-in-out infinite;
}
.float-card .ico { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: var(--grad-emerald); font-size: 15px; }
.fc-1 { top: -18px; left: -22px; animation-delay: 0s; }
.fc-2 { top: 30%; right: -30px; animation-delay: .8s; }
.fc-3 { bottom: 22%; left: -34px; animation-delay: 1.6s; }
.fc-4 { bottom: -18px; right: 10%; animation-delay: 2.2s; }
.fc-2 .ico, .fc-4 .ico { background: var(--grad-gold); color: #3a2500; }
.fc-3 .ico { background: var(--grad-royal); }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ================= BOOKING FORM ================= */
.booking-wrap { margin-top: -70px; position: relative; z-index: 20; }
.booking-card {
  background: rgba(255,255,255,.75); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.9); border-radius: 26px; box-shadow: var(--shadow-lg);
  padding: 30px 30px 26px;
}
.booking-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.booking-head .b-ico { width: 46px; height: 46px; border-radius: 14px; background: var(--grad-gold); display: grid; place-items: center; font-size: 22px; }
.booking-head h3 { font-size: 22px; }
.booking-head p { color: var(--muted); font-size: 14px; }
.booking-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; }
.field input, .field select {
  padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); font-family: var(--font-body);
  font-size: 14px; color: var(--ink); background: #fff; transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 4px rgba(0,87,217,.12); }
.booking-submit { grid-column: span 4; display: flex; justify-content: center; margin-top: 6px; }
.booking-submit .btn { width: 260px; }

/* ================= ABOUT ================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-collage { position: relative; }
.about-collage img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.about-exp {
  position: absolute; bottom: -26px; right: -14px; background: var(--grad-royal); color: #fff;
  border-radius: 20px; padding: 20px 26px; box-shadow: var(--shadow-lg); text-align: center;
}
.about-exp b { font-family: var(--font-display); font-size: 40px; display: block; line-height: 1; }
.about-exp small { font-size: 12px; letter-spacing: .5px; opacity: .9; }
.about-content h2 { font-size: clamp(28px,4vw,42px); margin: 14px 0 16px; letter-spacing: -.5px; }
.about-content > p { color: var(--muted); font-size: 16px; margin-bottom: 24px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin-bottom: 30px; }
.about-list li { list-style: none; display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.about-list .chk { width: 26px; height: 26px; border-radius: 8px; background: rgba(16,185,129,.14); color: var(--emerald); display: grid; place-items: center; font-size: 13px; flex-shrink: 0; }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================= WHY CHOOSE ================= */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
  text-align: center;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-ico {
  width: 62px; height: 62px; border-radius: 18px; margin: 0 auto 18px; display: grid; place-items: center;
  font-size: 26px; color: #fff; background: var(--grad-royal); box-shadow: 0 10px 22px rgba(0,87,217,.28);
  transition: transform .3s;
}
.why-card:nth-child(2n) .why-ico { background: var(--grad-emerald); box-shadow: 0 10px 22px rgba(16,185,129,.28); }
.why-card:nth-child(3n) .why-ico { background: var(--grad-gold); color: #3a2500; box-shadow: 0 10px 22px rgba(245,158,11,.28); }
.why-card:hover .why-ico { transform: rotate(-8deg) scale(1.08); }
.why-card h4 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--muted); }

/* ================= TABS / PACKAGES ================= */
.tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn {
  padding: 12px 26px; border-radius: 50px; border: 1.5px solid var(--line); background: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; cursor: pointer; color: var(--muted);
  transition: all .25s;
}
.tab-btn.active, .tab-btn:hover { background: var(--grad-royal); color: #fff; border-color: transparent; box-shadow: 0 10px 24px rgba(0,87,217,.28); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .5s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pkg-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .35s ease, box-shadow .35s ease;
}
.pkg-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.pkg-media { position: relative; height: 220px; overflow: hidden; }
.pkg-media img { height: 100%; width: 100%; object-fit: cover; transition: transform .6s ease; }
.pkg-card:hover .pkg-media img { transform: scale(1.1); }
.pkg-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,18,48,.6), transparent 55%); }
.pkg-price-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2; background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 6px 14px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--royal);
}
.pkg-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--grad-gold); color: #3a2500;
  border-radius: 50px; padding: 5px 14px; font-size: 12px; font-weight: 700;
}
.pkg-body { padding: 22px; }
.pkg-body h4 { font-size: 20px; margin-bottom: 8px; }
.pkg-body p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.pkg-meta { display: flex; gap: 16px; margin-bottom: 18px; font-size: 13px; color: var(--muted); font-weight: 600; }
.pkg-meta span { display: flex; align-items: center; gap: 6px; }
.pkg-foot { display: flex; gap: 10px; }
.pkg-foot .btn { flex: 1; }

/* ================= DESTINATION CAROUSEL ================= */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 26px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.dest-card {
  flex: 0 0 320px; scroll-snap-align: start; position: relative; height: 420px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.dest-card img { height: 100%; width: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover img { transform: scale(1.12); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,18,48,.9) 5%, rgba(3,18,48,.15) 60%); }
.dest-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(255,255,255,.22); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.4); color: #fff; border-radius: 50px; padding: 6px 14px; font-size: 12px; font-weight: 700;
}
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 22px; color: #fff; }
.dest-info h4 { font-size: 24px; margin-bottom: 4px; }
.dest-info p { font-size: 14px; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.dest-foot { display: flex; align-items: center; justify-content: space-between; }
.dest-price b { font-family: var(--font-display); font-size: 20px; color: var(--gold); }
.dest-price small { display: block; font-size: 11px; opacity: .8; }
.carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.carousel-nav button {
  width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; cursor: pointer;
  font-size: 20px; color: var(--royal); transition: all .25s; display: grid; place-items: center;
}
.carousel-nav button:hover { background: var(--grad-royal); color: #fff; border-color: transparent; }

/* ================= FLEET ================= */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fleet-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.fleet-media { background: var(--soft); padding: 24px; height: 190px; display: grid; place-items: center; }
.fleet-media img { max-height: 100%; object-fit: contain; }
.fleet-body { padding: 22px; }
.fleet-body h4 { font-size: 20px; margin-bottom: 14px; }
.fleet-specs { display: flex; gap: 18px; margin-bottom: 16px; font-size: 13px; color: var(--muted); font-weight: 600; flex-wrap: wrap; }
.fleet-specs span { display: flex; align-items: center; gap: 6px; }
.fleet-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.fleet-price b { font-family: var(--font-display); font-size: 22px; color: var(--royal); }
.fleet-price small { display: block; font-size: 12px; color: var(--muted); }

/* ================= SERVICES ================= */
.serv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.serv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.serv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.serv-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 24px; color: #fff; background: var(--grad-royal); margin-bottom: 16px; }
.serv-card:nth-child(4n+2) .serv-ico { background: var(--grad-emerald); }
.serv-card:nth-child(4n+3) .serv-ico { background: var(--grad-gold); color: #3a2500; }
.serv-card:nth-child(4n) .serv-ico { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.serv-card h4 { font-size: 17px; margin-bottom: 6px; }
.serv-card p { font-size: 14px; color: var(--muted); }

/* ================= PROCESS ================= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-card { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 22px; position: relative; z-index: 2; transition: transform .3s, box-shadow .3s; }
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.process-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 26px; color: #fff; background: var(--grad-royal);
  box-shadow: 0 10px 24px rgba(0,87,217,.3);
}
.process-card:nth-child(2) .process-num { background: var(--grad-emerald); }
.process-card:nth-child(3) .process-num { background: var(--grad-gold); color: #3a2500; }
.process-card:nth-child(4) .process-num { background: linear-gradient(135deg,#6366f1,#8b5cf6); }
.process-card h4 { font-size: 18px; margin-bottom: 6px; }
.process-card p { font-size: 14px; color: var(--muted); }
.process-arrow { position: absolute; top: 34px; font-size: 26px; color: var(--gold); z-index: 1; }

/* ================= TESTIMONIALS ================= */
.testi-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 20px; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 380px; scroll-snap-align: start; background: rgba(255,255,255,.7); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.9); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
}
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 15px; color: #374151; margin-bottom: 22px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--grad-royal); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.testi-person b { font-family: var(--font-display); font-size: 16px; display: block; }
.testi-person small { color: var(--muted); font-size: 13px; }

/* ================= STATS ================= */
.stats { background: var(--grad-royal); color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; top: -80px; right: -60px; width: 320px; height: 320px; background: rgba(255,255,255,.08); border-radius: 50%; }
.stats::after { content: ""; position: absolute; bottom: -100px; left: -60px; width: 320px; height: 320px; background: rgba(255,255,255,.06); border-radius: 50%; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; z-index: 2; text-align: center; }
.stat b { font-family: var(--font-display); font-size: clamp(30px,4vw,48px); font-weight: 800; display: block; }
.stat b span { color: var(--gold); }
.stat small { font-size: 14px; opacity: .9; }

/* ================= GALLERY ================= */
.gallery { columns: 3; column-gap: 18px; }
.gallery figure { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-sm); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery figure img { width: 100%; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.1); }
.gallery figure::after { content: attr(data-cap); position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 16px; color: #fff; font-family: var(--font-display); font-weight: 600; background: linear-gradient(to top, rgba(3,18,48,.7), transparent 60%); opacity: 0; transition: opacity .3s; }
.gallery figure:hover::after { opacity: 1; }

/* ================= FAQ ================= */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; font-family: var(--font-display); font-weight: 600; font-size: 17px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink); }
.faq-q .plus { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--soft); color: var(--royal); display: grid; place-items: center; font-size: 18px; transition: transform .3s, background .3s, color .3s; }
.faq-item.open .plus { background: var(--grad-royal); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ================= CTA ================= */
.cta {
  color: #fff; text-align: center; padding: 100px 0;
  background: linear-gradient(120deg, rgba(3,18,48,.88), rgba(0,47,120,.6)), url("../images/cta.jpg") center/cover no-repeat fixed;
}
.cta h2 { font-size: clamp(30px,4.5vw,50px); font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.cta p { font-size: 18px; color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================= FOOTER ================= */
.footer { background: #0b1220; color: #cbd5e1; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 50px; }
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer-about p { font-size: 14px; color: #94a3b8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.06); display: grid; place-items: center; font-size: 16px; color: #cbd5e1; transition: all .25s; }
.footer-social a:hover { background: var(--grad-royal); color: #fff; transform: translateY(-3px); }
.footer h5 { color: #fff; font-family: var(--font-display); font-size: 16px; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; color: #94a3b8; transition: color .2s, padding .2s; }
.footer ul li a:hover { color: #fff; padding-left: 5px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #94a3b8; }
.footer-contact .ic { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #64748b; }
.footer-bottom a { color: #94a3b8; }

/* ================= FLOATING BUTTONS ================= */
.floaters { position: fixed; right: 20px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 14px; }
.floaters a { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 26px; box-shadow: var(--shadow-lg); transition: transform .25s; }
.floaters a:hover { transform: scale(1.1); }
.fab-wa { background: #25d366; animation: pulse 2.4s infinite; }
.fab-call { background: var(--grad-royal); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ================= REVEAL ================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-submit { grid-column: span 2; }
  .why-grid, .serv-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid, .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-arrow { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 4%; width: 92%;
    background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); padding: 16px; margin-top: 10px; gap: 4px;
  }
  .nav-links.mobile-open > li > a { color: var(--ink); }
  .mega { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; box-shadow: none; grid-template-columns: 1fr 1fr; padding: 10px 0; }
  .has-mega:hover .mega { transform: none; }
  .hero { background-attachment: scroll; }
  .cta { background-attachment: scroll; }
}
@media (max-width: 620px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-submit { grid-column: span 1; }
  .booking-submit .btn { width: 100%; }
  .why-grid, .serv-grid, .pkg-grid, .fleet-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 1; }
  .about-list { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 28px; }
  .pad { padding: 64px 0; }
  .dest-card { flex: 0 0 82%; }
  .testi-card { flex: 0 0 88%; }
  .hero-trust { gap: 20px; }
}
