/* ==========================================================
   TOUR IN STYLE — Premium Taxi & Tour Service
   Pure CSS · No frameworks
   ========================================================== */

:root {
  --bg: #fbf7f2;
  --bg-alt: #f3ece2;
  --ink: #18222b;
  --ink-soft: #475561;
  --muted: #7d8893;
  --line: #e6dccd;

  --gold: #c9a14a;
  --gold-2: #e7c87a;
  --gold-3: #a37e2a;

  --navy: #102a3a;
  --navy-2: #1b3a4f;

  --accent: #c9512c;
  --success: #2f7d4c;

  --shadow-sm: 0 4px 12px rgba(16, 42, 58, .06);
  --shadow-md: 0 14px 40px rgba(16, 42, 58, .12);
  --shadow-lg: 0 30px 80px rgba(16, 42, 58, .20);

  --radius: 14px;
  --radius-lg: 22px;

  --maxw: 1200px;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; color: inherit; }

.container { width: min(100% - 2rem, var(--maxw)); margin-inline: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.text-gradient {
  background: linear-gradient(120deg, var(--gold-3), var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600; font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  color: #fff;
  box-shadow: 0 10px 25px rgba(201, 161, 74, .35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(201, 161, 74, .5);
}
.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
}
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.55rem 1.05rem; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy);
  color: #d8e2ea;
  font-size: 0.82rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold-2); }
.topbar__item a { color: #fff; }
.topbar__item--right { color: #d8e2ea; }
@media (max-width: 600px) {
  .topbar__item--right { display: none; }
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 242, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(251, 247, 242, .96);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 0;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  border-radius: 10px;
  border: 1px solid var(--gold-3);
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__title {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand__sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 600;
}
.brand--light .brand__title { color: #fff; }
.brand--light .brand__sub { color: var(--gold-2); }

.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__links > a {
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__links > a:hover { color: var(--ink); background: rgba(0,0,0,.04); }
.nav__cta { margin-left: 0.8rem; }
.nav__cta:hover { color: #fff; background: transparent; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__links {
    position: fixed; inset: 76px 0 0 0;
    flex-direction: column;
    background: var(--bg);
    height: 480px;
    padding: 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    align-items: stretch;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links > a { padding: 0.9rem 1rem; font-size: 1rem; }
  .nav__cta { margin: 0.5rem 0 0 0; text-align: center; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 42, 58, .55), rgba(16, 42, 58, .85)),
    url('https://images.unsplash.com/photo-1502086223501-7ea6ecd79368?auto=format&fit=crop&w=1920&q=80') center/cover;
  z-index: -2;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201, 161, 74, .25), transparent 60%);
  z-index: -1;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero__inner {
  padding: 6rem 0;
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(231, 200, 122, .5);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.5rem;
}
.hero__title { color: #fff; font-weight: 700; }
.hero__lede {
  font-size: 1.15rem;
  margin-top: 1.2rem;
  max-width: 600px;
  color: rgba(255,255,255,.88);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero__cta .btn--ghost {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.hero__cta .btn--ghost:hover { background: #fff; color: var(--ink); }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.chip {
  padding: 0.45rem 0.95rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 0.8rem;
  color: #fff;
  backdrop-filter: blur(4px);
}

/* Animated road lines */
.hero__road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  z-index: 1;
  overflow: hidden;
}
.hero__road-line {
  position: absolute;
  bottom: 30px; left: 0;
  width: 200%;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    var(--gold-2) 0 30px,
    transparent 30px 60px
  );
  opacity: 0.35;
  animation: roadMove 4s linear infinite;
}
.hero__road-line--2 { bottom: 12px; opacity: 0.18; animation-duration: 6s; }
@keyframes roadMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero__scroll {
  position: absolute;
  bottom: 1.4rem; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 14px;
  z-index: 3;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 6px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  80% { top: 24px; opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Stats ---------- */
.stats { padding: 3rem 0; background: var(--navy); color: #fff; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  background: linear-gradient(120deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

/* ---------- Sections ---------- */
.section { padding: 7rem 0; position: relative; }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section__title { color: var(--navy); }
.section__sub {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service {
  position: relative;
  background: #fff;
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201, 161, 74, .05), transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-2);
}
.service:hover::before { opacity: 1; }
.service__icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-2);
  border-radius: 14px;
  margin-bottom: 1.4rem;
}
.service__icon svg { width: 28px; height: 28px; }
.service__icon--accent {
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  color: #fff;
}
.service h3 { color: var(--navy); margin-bottom: 0.6rem; }
.service p { color: var(--ink-soft); font-size: 0.95rem; }
.service__tag {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.35rem 0.8rem;
  background: var(--bg-alt);
  color: var(--gold-3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}
.service--featured {
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  border-color: transparent;
  color: #fff;
}
.service--featured h3 { color: #fff; }
.service--featured p { color: rgba(255,255,255,.78); }
.service--featured .service__icon { background: linear-gradient(135deg, var(--gold-3), var(--gold)); color: #fff; }
.service--featured .service__tag { background: rgba(231, 200, 122, .15); color: var(--gold-2); }
.service__ribbon {
  position: absolute; top: 1.2rem; right: -2.4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 2.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transform: rotate(35deg);
}
@media (max-width: 880px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.about { background: var(--bg-alt); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 1/1;
}
.about__photo {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.about__photo--1 {
  width: 70%; height: 70%; top: 0; left: 0;
  background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=900&q=80');
  z-index: 2;
}
.about__photo--2 {
  width: 55%; height: 55%; bottom: 0; right: 0;
  background-image: url('https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&w=900&q=80');
  border: 6px solid var(--bg-alt);
  z-index: 1;
}
.about__badge {
  position: absolute;
  bottom: 8%; left: -3%;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  color: #fff;
  display: grid; place-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: spin 14s linear infinite;
}
.about__badge::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px dashed rgba(255,255,255,.5);
  border-radius: 50%;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

.about__list {
  list-style: none;
  margin-top: 1.8rem;
  display: grid; gap: 0.8rem;
}
.about__list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink-soft);
}
.about__list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}
.about__content .btn { margin-top: 2rem; }
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ---------- Highlight cards (Elderly + Parcel) ---------- */
.highlight { padding: 7rem 0; background: var(--bg); }
.highlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.highlight__card {
  position: relative;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.highlight__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.highlight__card::after {
  content: '';
  position: absolute;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.highlight__card--elder::after {
  top: -100px; right: -100px;
  background: var(--gold);
}
.highlight__card--parcel::after {
  bottom: -100px; left: -100px;
  background: var(--accent);
}
.highlight__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  color: #fff;
  border-radius: 16px;
  margin-bottom: 1.4rem;
  position: relative;
  box-shadow: 0 12px 25px rgba(201, 161, 74, .3);
}
.highlight__card--parcel .highlight__icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-2);
  box-shadow: 0 12px 25px rgba(16, 42, 58, .25);
}
.highlight__icon svg { width: 30px; height: 30px; }
.highlight__card h3 { color: var(--navy); margin-bottom: 0.7rem; }
.highlight__card > p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.check-list {
  list-style: none;
  display: grid; gap: 0.55rem;
  margin-bottom: 1.8rem;
}
.check-list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a14a'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.highlight__grid { grid-template-columns: 1fr; }
.highlight__card { padding: 2rem; }

/* ---------- Fleet ---------- */
.fleet { background: var(--bg-alt); }

.fleet-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.fleet-tab {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.fleet-tab:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(201, 161, 74, .06);
}
.fleet-tab--active {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-color: transparent;
  color: var(--gold-2);
  box-shadow: 0 8px 20px rgba(16, 42, 58, .2);
}

.fleet-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.fleet-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-2);
}
.fleet-card--hidden { display: none; }

.fleet-card__visual {
  position: relative;
  overflow: hidden;
}
.fleet-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease);
}
.fleet-card:hover .fleet-card__img { transform: scale(1.07); }

.fleet-card__img--etios  { background-image: url('images/etios.jpeg'); }
.fleet-card__img--swift  { background-image: url('images/swift.avif'); }
.fleet-card__img--ritz   { background-image: url('images/ritz.avif'); }
.fleet-card__img--kiger  { background-image: url('images/kiger.avif'); }
.fleet-card__img--crysta { background-image: url('images/crysta.jpg'); }
.fleet-card__img--ertiga { background-image: url('images/ertiga.avif'); }
.fleet-card__img--tempo  { background-image: url('images/tempo.jpg'); }
.fleet-card__img--force  { background-image: url('images/force.jpg'); }

.fleet-card__badge {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  padding: 0.28rem 0.75rem;
  background: rgba(16, 42, 58, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(231, 200, 122, .3);
  pointer-events: none;
}
.fleet-card__badge--gold {
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  border-color: transparent;
  color: #fff;
}

.fleet-card__body {
  padding: 1.35rem 1.35rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fleet-card__name {
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.fleet-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.fleet-card__spec {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.6rem;
  background: var(--bg-alt);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
}
.fleet-card__use {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1.1rem;
}
.fleet-card__cta {
  align-self: flex-start;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: 0.82rem;
  padding: 0.5rem 1.15rem;
  letter-spacing: 0.03em;
  border-radius: 999px;
}
.fleet-card__cta:hover {
  background: var(--navy);
  color: var(--gold-2);
}

@media (max-width: 1100px) { .fleet-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .fleet-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .fleet-cards { grid-template-columns: 1fr; } }

/* ---------- Packages ---------- */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.package {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.package:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.package__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.package:hover .package__img { transform: scale(1.05); }
.package__img--1 { background-image: url('https://images.unsplash.com/photo-1539650116574-75c0c6d73f6e?auto=format&fit=crop&w=900&q=80'); }
.package__img--2 { background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=900&q=80'); }
.package__img--3 { background-image: url('https://images.unsplash.com/photo-1564507592333-c60657eea523?auto=format&fit=crop&w=900&q=80'); }
.package__body { padding: 1.6rem; }
.package__days {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 600;
  background: var(--bg-alt);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.package h4 { color: var(--navy); margin-bottom: 0.4rem; }
.package__body > p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1.3rem; }
.package__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.package__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.package__price small {
  font-family: var(--font-body);
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
}
@media (max-width: 880px) { .packages__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .packages__grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy); color: #fff; }
.testimonials .section__title { color: #fff; }
.testimonials .section__sub { color: rgba(255,255,255,.7); }
.testimonials__track {
  position: relative;
  display: flex; align-items: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.testimonials__viewport {
  flex: 1;
  overflow: hidden;
}
.testimonials__slides {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.t-card {
  flex: 0 0 100%;
  padding: 3rem 2rem;
  text-align: center;
}
.t-stars {
  color: var(--gold-2);
  letter-spacing: 0.3em;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.t-card p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  margin-bottom: 1.8rem;
}
.t-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.t-meta strong { color: var(--gold-2); font-family: var(--font-display); font-size: 1.15rem; }
.t-meta span { font-size: 0.85rem; color: rgba(255,255,255,.6); }

.t-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.t-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.t-dots {
  display: flex; justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.t-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: all 0.3s ease;
}
.t-dot.active {
  width: 28px;
  border-radius: 5px;
  background: var(--gold);
}

/* ---------- Booking ---------- */
.book { background: var(--bg-alt); }
.book__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.book__intro p { color: var(--ink-soft); margin-bottom: 2rem; }
.book__contact-card {
  display: grid; gap: 1rem;
  margin-top: 2rem;
}
.book__contact-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.book__contact-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.book__contact-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  color: #fff;
  border-radius: 12px;
  flex-shrink: 0;
}
.book__contact-row small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.book__contact-row strong { color: var(--navy); font-size: 1.02rem; }

/* ---------- WhatsApp panel (replaces booking form) ---------- */
.wa-panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 2.2rem;
  overflow: hidden;
}
.wa-panel::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, .15), transparent 70%);
  pointer-events: none;
}
.wa-panel__head {
  display: flex; align-items: center; gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.4rem;
}
.wa-panel__avatar {
  position: relative;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(37, 211, 102, .35);
}
.wa-panel__dot {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 14px; height: 14px;
  background: #25D366;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: waPulse 1.6s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .7); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}
.wa-panel__head h4 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}
.wa-panel__head p {
  font-size: 0.85rem;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.wa-panel__live {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
  animation: waPulse 1.6s ease-in-out infinite;
}
.wa-panel__lede {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.wa-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}
.wa-quick__btn {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  text-align: left;
  transition: all 0.25s var(--ease);
  font-family: inherit;
  color: var(--ink);
}
.wa-quick__btn:hover {
  border-color: #25D366;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, .15);
}
.wa-quick__btn:hover .wa-quick__icon {
  transform: scale(1.15) rotate(-5deg);
}
.wa-quick__icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bg-alt), #fff);
  border-radius: 10px;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.wa-quick__label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.wa-quick__btn--featured {
  background: linear-gradient(135deg, rgba(201, 161, 74, .08), rgba(201, 161, 74, .02));
  border-color: var(--gold-2);
}
.wa-quick__btn--featured .wa-quick__icon {
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  color: #fff;
}

.wa-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.65rem;
  width: 100%;
  padding: 1.05rem 1.4rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  letter-spacing: 0.01em;
}
.wa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37, 211, 102, .55);
}
.wa-panel__note {
  margin-top: 1.1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.wa-panel__note a {
  color: var(--gold-3);
  font-weight: 600;
}

@media (max-width: 880px) {
  .book__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .wa-panel { padding: 1.6rem; }
}
@media (max-width: 480px) {
  .wa-quick { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact__map {
  width: 100%; height: 100%;
  min-height: 380px;
  border: none;
  filter: saturate(0.9);
}
.contact__info { padding: 2.5rem; }
.contact__info h4 { color: var(--navy); margin-bottom: 1rem; font-size: 1.6rem; }
.contact__info p { color: var(--ink-soft); margin-bottom: 0.8rem; }
.contact__info a { color: var(--gold-3); font-weight: 600; }
.contact__social {
  display: flex; gap: 0.7rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.contact__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--bg-alt);
  color: var(--navy);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.contact__social a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}
@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 280px; }
  .contact__info { padding: 2rem; }
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #0c1f2c, #0a1923);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__brand p { margin-top: 1rem; max-width: 320px; line-height: 1.7; font-size: 0.92rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col h5 {
  color: #fff;
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer__col a {
  color: rgba(255,255,255,.65);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--gold-2); }
.footer__col span { color: rgba(255,255,255,.5); font-size: 0.88rem; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}
.footer__bar-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer__bar-row a { color: var(--gold-2); }
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Floating WhatsApp button ---------- */
.fab {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .45);
  z-index: 50;
  transition: transform 0.3s ease;
  animation: pulse 2.5s infinite;
}
.fab:hover { transform: scale(1.1); animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); }
  50% { box-shadow: 0 14px 30px rgba(37, 211, 102, .45), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Section spacing on small screens ---------- */
@media (max-width: 720px) {
  .section { padding: 4.5rem 0; }
  .section__head { margin-bottom: 2.8rem; }
}
