/* ============================================================
   RESET & TOKENS
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:       #04091a;
  --bg2:      #070d22;
  --glass:    rgba(255,255,255,0.04);
  --border:   rgba(255,255,255,0.08);
  --gold:     #f59e0b;
  --gold-dk:  #d97706;
  --orange:   #f97316;
  --glow:     rgba(245,158,11,0.25);
  --text:     #f1f5f9;
  --muted:    #94a3b8;
  --wa:       #25d366;
  --ticker-h: 36px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ============================================================
   CAR CURSOR
   ============================================================ */
#tire-canvas {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none; z-index: 9999998;
}
#cab-cursor {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 62px;
  pointer-events: none; z-index: 9999999;
  transform: translate(-50%, -50%);
  will-change: transform, left, top;
  filter: drop-shadow(0 3px 14px rgba(245,158,11,.65));
  transition: filter .2s;
}
#cab-cursor.cab-hover {
  filter: drop-shadow(0 4px 24px rgba(245,158,11,1));
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 45px rgba(37,211,102,.75); }
}

/* ============================================================
   MARQUEE TICKER  — fixed strip at very top of viewport
   ============================================================ */
.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ticker-h);
  z-index: 1001;
  background: var(--gold);
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: inline-block;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-inner span {
  margin: 0 2.5rem;
  font-size: .78rem;
  font-weight: 700;
}
.ticker-inner i { margin-right: .4rem; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NAVBAR  — sits directly below the ticker strip
   ============================================================ */
nav {
  position: fixed;
  top: var(--ticker-h);   /* pushed below ticker */
  left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  transition: all .4s;
}
nav.scrolled {
  top: var(--ticker-h);
  background: rgba(4,9,26,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 2.5rem;
}

.logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.logo-name { font-size: 1.45rem; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.logo-name span { color: var(--gold); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: .88rem; font-weight: 500;
  transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: .75rem; }
.btn-call {
  display: flex; align-items: center; gap: .4rem;
  color: var(--text); text-decoration: none;
  font-size: .82rem; font-weight: 600;
  border: 1px solid var(--border); padding: .45rem 1rem;
  border-radius: 50px; transition: all .3s;
}
.btn-call:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa {
  display: flex; align-items: center; gap: .4rem;
  background: var(--wa); color: #fff; text-decoration: none;
  font-size: .82rem; font-weight: 700;
  padding: .45rem 1.2rem; border-radius: 50px; transition: all .3s;
}
.btn-wa:hover { background: #1da851; transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--ticker-h);    /* below ticker */
  right: -100%;
  width: 78%; max-width: 320px;
  height: calc(100vh - var(--ticker-h));
  background: #070d22; border-left: 1px solid var(--border);
  padding: 5rem 2rem 2rem; z-index: 999;
  transition: right .4s cubic-bezier(.25,.46,.45,.94);
  flex-direction: column; gap: 1.25rem;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; display: flex; }
.mobile-drawer a {
  color: var(--muted); text-decoration: none;
  font-size: 1.05rem; font-weight: 500;
  padding: .6rem 0; border-bottom: 1px solid var(--border);
  transition: color .3s;
}
.mobile-drawer a:hover { color: var(--gold); }
.drawer-close { position: absolute; top: 1.25rem; right: 1.25rem; cursor: pointer; font-size: 1.4rem; color: var(--muted); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  /* content is flex-centered; ticker + nav overlay top ~106px which is fine */
}
#vanta-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(4,9,26,.35) 0%, rgba(4,9,26,.05) 45%, rgba(4,9,26,.92) 100%);
}
.hero-body {
  position: relative; z-index: 2;
  text-align: center; max-width: 920px; padding: 0 1.5rem;
  margin-top: calc(var(--ticker-h) + 72px); /* push below ticker+nav */
}
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3);
  color: var(--gold); padding: .35rem 1rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem,6vw,5rem); font-weight: 900; line-height: 1.1;
  color: var(--text); margin-bottom: 1rem;
}
.hero-title .hl { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem,2vw,1.25rem);
  color: var(--muted); margin-bottom: 2.75rem; min-height: 2rem;
}
.hero-sub .typed { color: var(--gold); font-weight: 700; }
.hero-sub .caret { animation: caret .65s steps(1) infinite; }
@keyframes caret { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* ---- Booking Bar ---- */
.bbar {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 18px;
  padding: 1.25rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr auto;
  gap: 1rem; align-items: center;
  max-width: 860px; margin: 0 auto;
}
.bbar-field { display: flex; flex-direction: column; gap: .25rem; }
.bbar-field label { font-size: .68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.bbar-field input, .bbar-field select {
  background: transparent; border: none;
  color: var(--text); font-size: .92rem; font-weight: 600;
  outline: none; font-family: inherit; cursor: pointer;
}
.bbar-field select option { background: #070d22; }
.bbar-divider { background: var(--border); height: 40px; width: 1px; }
.bbar-btn {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000; border: none; padding: .7rem 1.75rem;
  border-radius: 12px; font-size: .92rem; font-weight: 800;
  cursor: pointer; white-space: nowrap; font-family: inherit;
  transition: all .3s;
}
.bbar-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px var(--glow); }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted); font-size: .72rem;
}
.scroll-mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.25); border-radius: 11px; position: relative; }
.scroll-mouse::after {
  content: ''; width: 4px; height: 7px; background: var(--gold);
  border-radius: 2px; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot { 0% { top:5px; opacity:1; } 100% { top:20px; opacity:0; } }

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section { padding: 5.5rem 1.5rem; }
.c { max-width: 1200px; margin: 0 auto; }

.stag {
  display: inline-block; background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.22); color: var(--gold);
  padding: .3rem .9rem; border-radius: 50px;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: .85rem;
}
.stitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem,3.5vw,2.9rem); font-weight: 700;
  color: var(--text); line-height: 1.2; margin-bottom: .75rem;
}
.stitle span { color: var(--gold); }
.ssub { color: var(--muted); font-size: .95rem; line-height: 1.65; max-width: 580px; }
.sh { margin-bottom: 3rem; }
.sh.cx { text-align: center; }
.sh.cx .ssub { margin: 0 auto; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: rgba(255,255,255,.01); }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

.svc-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.75rem 1.4rem; text-align: center;
  position: relative; overflow: hidden; cursor: pointer;
  transition: all .4s;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0); transition: transform .4s;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  background: rgba(245,158,11,.05);
  border-color: rgba(245,158,11,.28);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.svc-ico {
  width: 68px; height: 68px;
  background: linear-gradient(135deg,rgba(245,158,11,.14),rgba(249,115,22,.12));
  border-radius: 17px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto 1.3rem; transition: all .3s;
}
.svc-card:hover .svc-ico { background: linear-gradient(135deg, var(--gold), var(--orange)); }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .6rem; }
.svc-card p { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   FLEET
   ============================================================ */
#fleet { background: linear-gradient(180deg,var(--bg) 0%,rgba(245,158,11,.03) 50%,var(--bg) 100%); }

.fleet-wrap { position: relative; padding: 0 2.75rem; }
.fleet-wrap .fleet-prev,
.fleet-wrap .fleet-next {
  position: absolute;
  top: 50%;
  transform: translateY(-56%);
  z-index: 10;
  margin: 0;
}
.fleet-wrap .fleet-prev { left: 0; }
.fleet-wrap .fleet-next { right: 0; }
.fleet-swiper { padding-bottom: 3rem !important; }
.fleet-swiper .swiper-wrapper { align-items: stretch; }
.fleet-swiper .swiper-slide { display: flex; height: auto; }
.fleet-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 22px; overflow: hidden; transition: all .4s;
  display: flex; flex-direction: column; width: 100%;
}
.fleet-card:hover {
  border-color: rgba(245,158,11,.28);
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,.4);
}
.fleet-thumb {
  height: 210px; position: relative;
  background: linear-gradient(135deg,#111827,#0f172a);
  overflow: hidden; flex-shrink: 0;
}
.fleet-thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform .5s;
}
.fleet-card:hover .fleet-thumb img { transform: scale(1.07); }
.fleet-thumb::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, transparent 50%, rgba(4,9,26,.55));
  pointer-events: none;
}
.fleet-badge {
  position: absolute; top: .9rem; right: .9rem; z-index: 2;
  background: rgba(245,158,11,.18); border: 1px solid var(--gold);
  color: var(--gold); padding: .22rem .7rem; border-radius: 50px;
  font-size: .68rem; font-weight: 800;
}
.fleet-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.fleet-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.fleet-body p { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.fleet-pills { display: flex; gap: .6rem; flex-wrap: wrap; }
.pill {
  display: flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.05); padding: .28rem .7rem;
  border-radius: 50px; font-size: .72rem; color: var(--muted);
}
.pill i { color: var(--gold); font-size: .66rem; }
.fleet-pricing {
  margin-top: 1rem; padding-top: .85rem;
  border-top: 1px solid var(--border);
}
.fp-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: .4rem; padding: .27rem 0;
}
.fp-row + .fp-row { border-top: 1px solid rgba(255,255,255,.05); }
.fp-type {
  font-size: .65rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em;
  white-space: nowrap; min-width: 74px; padding-top: .06rem;
}
.fp-val { font-size: .72rem; color: var(--gold); font-weight: 600; text-align: right; }
.fp-note {
  font-size: .62rem; color: var(--muted); margin-top: .5rem; line-height: 1.55;
  padding: .33rem .52rem;
  background: rgba(245,158,11,.05); border-radius: 7px;
  border-left: 2px solid rgba(245,158,11,.3);
}
.fp-request {
  margin-top: 1rem; padding: .75rem;
  border: 1px dashed var(--border); border-radius: 10px;
  text-align: center; font-size: .76rem; color: var(--muted);
}
.fp-request i { display: block; font-size: 1.1rem; color: var(--gold); margin-bottom: .3rem; }

/* ============================================================
   PACKAGES
   ============================================================ */
#packages { background: rgba(255,255,255,.01); }

.tabs { display: flex; gap: .5rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.tab {
  background: var(--glass); border: 1px solid var(--border);
  color: var(--muted); padding: .5rem 1.4rem; border-radius: 50px;
  font-size: .83rem; font-weight: 700; cursor: pointer;
  transition: all .3s; font-family: inherit;
}
.tab:hover, .tab.on { background: var(--gold); border-color: var(--gold); color: #000; }

.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.pkg-card {
  border-radius: 18px; overflow: hidden;
  position: relative; height: 300px; cursor: pointer;
  transition: transform .4s, opacity .3s;
  opacity: 1;
  background: linear-gradient(135deg, #0f172a, #111827); /* shows when image fails */
}
.pkg-card:hover { transform: scale(1.025); }
.pkg-card.wide { grid-column: span 2; }
.pkg-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.pkg-card:hover img { transform: scale(1.08); }
.pkg-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.3rem;
}
.pkg-tag {
  background: rgba(245,158,11,.9); color: #000;
  font-size: .68rem; font-weight: 800;
  padding: .22rem .7rem; border-radius: 50px;
  display: inline-block; margin-bottom: .45rem; width: fit-content;
}
.pkg-ov h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.pkg-ov p { font-size: .78rem; color: rgba(255,255,255,.68); margin-bottom: .9rem; }
.pkg-ft { display: flex; align-items: center; justify-content: space-between; }
.pkg-price { font-size: .82rem; color: var(--gold); font-weight: 800; }
.btn-enq {
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  padding: .35rem 1rem; border-radius: 50px;
  font-size: .78rem; font-weight: 700; cursor: pointer;
  transition: all .3s; font-family: inherit;
}
.btn-enq:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#howitworks { background: linear-gradient(135deg,rgba(245,158,11,.03) 0%,transparent 100%); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; position: relative; }
.steps::before {
  content: ''; position: absolute;
  top: 39px; left: 22%; width: 56%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 78px; height: 78px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: #000;
  margin: 0 auto 1.4rem;
  box-shadow: 0 0 0 14px rgba(245,158,11,.09);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.step p { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   STATS BANNER
   ============================================================ */
#stats {
  padding: 3.5rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.stat-item h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem,5vw,3.5rem); font-weight: 900; color: #000;
}
.stat-item p { font-size: .83rem; color: rgba(0,0,0,.7); font-weight: 700; margin-top: .25rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-feats { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feat { display: flex; gap: 1rem; align-items: flex-start; }
.why-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--gold);
}
.why-feat h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.why-feat p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

.why-visual { position: relative; height: 480px; }
.why-main {
  width: 80%; height: 360px; border-radius: 22px;
  object-fit: cover; position: absolute; right: 0; top: 0;
}
.why-sub {
  width: 54%; height: 210px; border-radius: 18px;
  object-fit: cover; position: absolute; left: 0; bottom: 0;
  border: 4px solid var(--bg);
}
.why-badge {
  position: absolute; bottom: 115px; right: -8px;
  background: var(--gold); color: #000;
  padding: .9rem 1.1rem; border-radius: 14px;
  font-weight: 800; font-size: .88rem; line-height: 1.3;
  box-shadow: 0 10px 32px rgba(245,158,11,.4);
  text-align: center;
}
.why-badge span { display: block; font-size: 1.55rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: rgba(255,255,255,.01); }
.testi-swiper { padding-bottom: 3rem !important; }
.testi-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.75rem;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: .85rem; }
.testi-txt {
  color: var(--muted); font-size: .87rem; line-height: 1.7;
  font-style: italic; margin-bottom: 1.4rem;
}
.testi-auth { display: flex; align-items: center; gap: .7rem; }
.auth-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; color: #000;
}
.auth-name { font-size: .88rem; font-weight: 700; }
.auth-loc { font-size: .73rem; color: var(--muted); margin-top: .15rem; }

/* ============================================================
   BOOKING / CONTACT
   ============================================================ */
#booking { background: linear-gradient(135deg,rgba(245,158,11,.04) 0%,transparent 100%); }
.book-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }

.book-info .stitle { margin-bottom: .75rem; }
.book-info p { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.cmt { display: flex; flex-direction: column; gap: 1rem; }
.cm { display: flex; align-items: center; gap: 1rem; }
.cm-link { text-decoration: none; color: inherit; border-radius: 12px; transition: background .2s; }
.cm-link:hover { background: rgba(255,255,255,.05); }
.cm-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.cm-ico.ph  { background: rgba(245,158,11,.14); color: var(--gold); }
.cm-ico.wa  { background: rgba(37,211,102,.14); color: #25d366; }
.cm-ico.ig  { background: rgba(225,48,108,.14);  color: #e1306c; }
.cm-ico.fb  { background: rgba(24,119,242,.14);  color: #1877f2; }
.cm-ico.loc { background: rgba(99,102,241,.14);  color: #818cf8; }
.cm-txt span    { font-size: .72rem; color: var(--muted); display: block; }
.cm-txt strong  { font-size: .92rem; }

.book-form {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 22px; padding: 2.25rem;
}
.book-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.4rem; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.fg { margin-bottom: .9rem; }
.fg label {
  display: block; font-size: .73rem; font-weight: 700;
  color: var(--muted); margin-bottom: .35rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid var(--border); color: var(--text);
  padding: .7rem .95rem; border-radius: 10px;
  font-size: .88rem; font-family: inherit; outline: none;
  transition: border-color .3s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select option { background: #070d22; }
.fg textarea { resize: none; height: 78px; }

.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000; border: none; padding: .95rem;
  border-radius: 12px; font-size: .95rem; font-weight: 800;
  cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: .25rem; transition: all .3s;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 15px 40px var(--glow); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #020710; border-top: 1px solid var(--border); padding: 4rem 1.5rem 1.75rem; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.foot-brand p { color: var(--muted); font-size: .83rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
.soc-links { display: flex; gap: .65rem; flex-wrap: wrap; }
.soc-link {
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: .88rem;
  transition: all .3s;
}
.soc-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,158,11,.1); }
.fcol h4 { font-size: .88rem; font-weight: 700; margin-bottom: .9rem; }
.flinks { list-style: none; }
.flinks li { margin-bottom: .55rem; }
.flinks a { color: var(--muted); text-decoration: none; font-size: .83rem; transition: color .3s; }
.flinks a:hover { color: var(--gold); }
.fcontact p { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .83rem; margin-bottom: .65rem; }
.fcontact p i { color: var(--gold); width: 14px; }
.foot-btm {
  border-top: 1px solid var(--border); padding-top: 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.foot-btm p { color: var(--muted); font-size: .78rem; }

/* ============================================================
   GSAP ANIM START STATES
   Elements start invisible; JS animates them to visible via fromTo.
   ============================================================ */
.fu  { opacity: 0; transform: translateY(45px); }
.fl  { opacity: 0; transform: translateX(-45px); }
.fr2 { opacity: 0; transform: translateX(45px); }

/* ============================================================
   SWIPER OVERRIDES
   ============================================================ */
.swiper-pagination-bullet { background: var(--muted) !important; opacity: .5; }
.swiper-pagination-bullet-active { background: var(--gold) !important; opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: var(--gold) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .svc-grid  { grid-template-columns: repeat(2,1fr); }
  .pkg-grid  { grid-template-columns: repeat(2,1fr); }
  .pkg-card.wide { grid-column: span 2; }
  .stats-row { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width:768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .bbar { grid-template-columns: 1fr; }
  .bbar-divider { display: none; }
  .svc-grid, .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card.wide { grid-column: span 1; }
  .why-wrap { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .book-wrap { grid-template-columns: 1fr; }
  .fr { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-btm { flex-direction: column; gap: .75rem; text-align: center; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  nav { padding: .9rem 1.25rem; }
  nav.scrolled { padding: .65rem 1.25rem; }
  .hero-body { margin-top: calc(var(--ticker-h) + 60px); }
}

@media (max-width:480px) {
  .ticker-inner span { font-size: .68rem; margin: 0 1.5rem; }
}

/* ============================================================
   DEV SIGNATURE — 3D SPINNING GOLD COIN (Footer)
   ============================================================ */
/* Coin scene wrapper */
.dev-coin-scene {
  display: flex; flex-direction: column; align-items: center; gap: .32rem;
  cursor: pointer; user-select: none; flex-shrink: 0;
}
.dev-coin-scene:hover .dev-coin { animation-duration: .75s, 3.5s; }

/* Callout bubble */
.dev-coin-callout {
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.42);
  border-radius: 22px; padding: .28rem .85rem;
  font-size: .63rem; font-weight: 700; letter-spacing: .07em;
  color: var(--gold); white-space: nowrap;
  position: relative;
  animation: callout-bob 2.4s ease-in-out infinite;
}
.dev-coin-callout::after {
  content: '';
  position: absolute; bottom: -7px; left: 50%; transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(245,158,11,.42);
}
@keyframes callout-bob {
  0%,100% { transform: translateY(0);   opacity: .85; }
  50%      { transform: translateY(-4px); opacity: 1; }
}

/* Zone — holds pings + coin; carries perspective */
.dev-coin-zone {
  position: relative; width: 64px; height: 64px;
  perspective: 280px;
}

/* Radar pings */
.dev-coin-ping {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(245,158,11,.65);
  animation: coin-ping 2.2s ease-out infinite;
  pointer-events: none;
}
.dev-coin-ping:nth-child(2) { animation-delay: 1.1s; }
@keyframes coin-ping {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(2.6); opacity: 0;  }
}

/* The coin */
.dev-coin {
  width: 64px; height: 64px;
  position: relative; transform-style: preserve-3d;
  animation: coin-spin 1.9s linear infinite, coin-glow 3.5s ease-in-out infinite;
}
@keyframes coin-spin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}
@keyframes coin-glow {
  0%,100% { filter: drop-shadow(0 0 7px rgba(245,158,11,.45)); }
  50%      { filter: drop-shadow(0 0 22px rgba(245,158,11,.95)) drop-shadow(0 0 40px rgba(245,158,11,.3)); }
}

/* Coin faces */
.dev-coin-face {
  position: absolute; inset: 0; border-radius: 50%;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border: 5px solid #a05800;
}
.dev-coin-front {
  background: radial-gradient(circle at 33% 26%,
    #fff8b0 0%, #f5c840 20%, #f5a50b 48%, #c07800 74%, #7a4800 100%);
  box-shadow: inset 0 3px 7px rgba(255,240,140,.8), inset 0 -3px 9px rgba(0,0,0,.5);
}
.dev-coin-back {
  transform: rotateY(180deg);
  background: radial-gradient(circle at 67% 28%,
    #fff8b0 0%, #f5c840 20%, #f5a50b 48%, #c07800 74%, #7a4800 100%);
  box-shadow: inset 0 3px 7px rgba(255,240,140,.8), inset 0 -3px 9px rgba(0,0,0,.5);
}
/* Specular highlight */
.dev-coin-front::before, .dev-coin-back::before {
  content: '';
  position: absolute; top: 8%; left: 12%; width: 34%; height: 28%;
  background: rgba(255,255,220,.38); border-radius: 50%;
  transform: rotate(-30deg); pointer-events: none;
}

/* "S" emboss */
.dev-coin-s {
  font-size: 1.75rem; font-weight: 900; font-family: Georgia, serif;
  color: #7a4500;
  text-shadow: 0 1px 0 rgba(255,230,110,.9), 0 -1px 1px rgba(0,0,0,.55);
  position: relative; z-index: 1;
}

/* Shadow below coin synced to spin */
.dev-coin-shadow-el {
  width: 58px; height: 7px; margin-top: -1px;
  background: radial-gradient(ellipse, rgba(245,158,11,.55) 0%, transparent 68%);
  border-radius: 50%;
  animation: coin-shadow 0.95s linear infinite;
}
@keyframes coin-shadow {
  0%,100% { transform: scaleX(1);    opacity: .55; }
  50%      { transform: scaleX(.08); opacity: .08; }
}

/* "Click to reveal" label */
.dev-coin-tag {
  font-size: .6rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(245,158,11,.6); margin: 0;
  animation: tag-pulse 1.9s ease-in-out infinite;
}
@keyframes tag-pulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

/* Gold flash overlay */
.dev-coin-flash {
  position: fixed; inset: 0; z-index: 99998; pointer-events: none;
  background: radial-gradient(circle at center,
    rgba(255,225,80,.96), rgba(245,158,11,.35) 52%, transparent 76%);
  opacity: 0; transition: opacity .14s ease;
}
.dev-coin-flash.active { opacity: 1; }

/* Modal backdrop */
.dev-coin-modal {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(2,5,18,.9);
  backdrop-filter: blur(14px) saturate(1.3);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.dev-coin-modal.open { opacity: 1; pointer-events: auto; }

/* Modal card */
.dev-coin-card {
  background: rgba(6,12,32,.98);
  border: 1px solid rgba(245,158,11,.38);
  border-radius: 26px; padding: 2rem 2.2rem 1.8rem;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  min-width: 292px; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.88), 0 0 80px rgba(245,158,11,.13);
  transform: scale(.78) translateY(30px);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}
.dev-coin-modal.open .dev-coin-card { transform: scale(1) translateY(0); }

.dev-coin-close {
  position: absolute; top: .9rem; right: 1rem;
  background: none; border: none; color: var(--muted);
  font-size: 1.4rem; cursor: pointer; line-height: 1;
  transition: color .2s, transform .25s;
}
.dev-coin-close:hover { color: var(--gold); transform: rotate(90deg) scale(1.15); }

/* Large spinning ring avatar */
.dev-coin-card-ring-wrap {
  position: relative; width: 76px; height: 76px; margin-bottom: .2rem;
}
.dev-coin-card-ring-wrap::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: conic-gradient(var(--gold), var(--orange), #ff6b00, #ffe066, var(--gold));
  animation: coin-modal-ring 2s linear infinite;
}
@keyframes coin-modal-ring { to { transform: rotate(360deg); } }
.dev-coin-card-avatar {
  position: absolute; inset: 3px; border-radius: 50%;
  background: linear-gradient(135deg, #ffe066, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.7rem; font-family: Georgia, serif;
  color: #5a3000; z-index: 1;
  text-shadow: 0 1px 0 rgba(255,230,110,.8);
}

/* Name shimmer */
.dev-coin-card-name {
  font-size: 1.3rem; font-weight: 900; letter-spacing: .16em;
  background: linear-gradient(90deg, var(--gold), #ffe066, var(--orange), #ffe066, var(--gold));
  background-size: 280% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: coin-name-shine 2.2s linear infinite;
}
@keyframes coin-name-shine { to { background-position: 280% center; } }

.dev-coin-card-role {
  font-size: .68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .09em; margin-bottom: .1rem;
}

.dev-coin-card-div {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,.55), transparent);
  margin: .2rem 0;
}

/* Contact link buttons */
.dev-coin-card-link {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; width: 100%;
  background: rgba(245,158,11,.07); border: 1px solid rgba(245,158,11,.18);
  border-radius: 12px; padding: .6rem 1.05rem;
  color: rgba(255,255,255,.82); font-size: .79rem; letter-spacing: .02em;
  transition: background .22s, border-color .22s, color .22s, transform .2s;
}
.dev-coin-card-link:hover {
  background: rgba(245,158,11,.17); border-color: rgba(245,158,11,.5);
  color: var(--gold); transform: translateX(4px);
}
.dev-coin-card-link i { color: var(--gold); font-size: .74rem; width: 14px; text-align: center; }

.dev-coin-card-note {
  font-size: .62rem; color: rgba(245,158,11,.45);
  letter-spacing: .05em; text-align: center; margin-top: .1rem;
}

@media (max-width: 700px) {
  .dev-coin-scene { display: none; }
}
