/* ==========================================================================
   Mangalore Travel Service — Design System & Page Styles
   Brand: Red #D60F17 · Dark Grey #202020 · White #FFFFFF
   Red is reserved for CTAs, badges, accents and one CTA band.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --red:        #D60F17;
  --red-dark:   #A80B11;
  --red-tint:   rgba(214, 15, 23, 0.08);
  --red-tint-2: rgba(214, 15, 23, 0.16);

  --ink:        #202020;
  --ink-2:      #2E2E2E;
  --ink-3:      #4A4A4A;
  --muted:      #6B6B6B;
  --muted-2:    #8C8C8C;

  --white:      #FFFFFF;
  --surface:    #F6F6F6;
  --surface-2:  #EDEDED;
  --line:       #E2E2E2;
  --line-dark:  rgba(255, 255, 255, 0.14);

  --wa:         #25D366;
  --wa-dark:    #1DA851;

  /* Type */
  --font-head: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Shape */
  --r-sm: 4px;
  --r:    6px;
  --r-lg: 10px;

  /* Depth (flat, low-spread) */
  --sh-1: 0 1px 2px rgba(32, 32, 32, .06), 0 4px 14px rgba(32, 32, 32, .06);
  --sh-2: 0 2px 6px rgba(32, 32, 32, .08), 0 14px 34px rgba(32, 32, 32, .10);
  --sh-red: 0 8px 22px rgba(214, 15, 23, .28);

  /* Layout */
  --wrap: 1240px;
  --gutter: 24px;
  --nav-h: 78px;
  --sec-y: 88px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-3);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 1.35rem + 2.6vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.6vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1rem + 0.35vw, 1.3rem); }
h4 { font-size: 1rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--red); color: #fff; }

::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb { background: #B9B9B9; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 4000;
  background: var(--red); color: #fff;
  padding: 10px 18px; border-radius: var(--r);
  font-weight: 600; font-size: .9rem;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sec-y); }
.section--alt { background: var(--surface); }
.section--ink { background: var(--ink); color: rgba(255,255,255,.78); }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--tight { padding-block: 60px; }

.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 3px;
  background: var(--red); border-radius: 2px;
}
.section--ink .eyebrow { color: #FF6B72; }
.sec-head--center .eyebrow::before { display: none; }

.lead {
  font-size: 1.06rem;
  color: var(--muted);
  margin-top: 14px;
}
.section--ink .lead { color: rgba(255,255,255,.68); }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head);
  font-size: .92rem; font-weight: 600; letter-spacing: .01em;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--sh-red); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }

.btn--outline { border-color: var(--line); background: #fff; color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn--ghost-light { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--surface-2); transform: translateY(-2px); }

.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dark); transform: translateY(-2px); }

.btn--sm { padding: 10px 18px; font-size: .85rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .93rem;
  color: var(--red);
  border-bottom: 2px solid transparent;
  transition: border-color .2s, gap .2s;
}
.link-arrow:hover { border-color: var(--red); gap: 12px; }
.link-arrow svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   5. TOP BAR + HEADER
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  font-size: .8rem;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  min-height: 40px; padding-block: 7px;
}
.topbar-list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item svg { width: 14px; height: 14px; color: var(--red); flex: none; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-badge {
  display: inline-flex; align-items: center; gap: 7px;
  color: #fff; font-weight: 500;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(214,15,23,.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(214,15,23,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,15,23,0); }
}

.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-header.is-stuck { box-shadow: 0 4px 24px rgba(32,32,32,.10); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: var(--nav-h);
}

.brand { display: flex; align-items: center; flex: none; }
/* width:auto + flex:none keep the logo at its natural aspect ratio — without them
   the width="720" attribute and `img { max-width:100% }` fight the fixed height
   and the logo renders stretched. */
.brand img { height: 46px; width: auto; max-width: none; flex: none; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  display: block;
  font-family: var(--font-head); font-size: .95rem; font-weight: 500;
  color: var(--ink-2);
  padding: 9px 14px; border-radius: var(--r);
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--red); background: var(--red-tint); }
.nav a.is-active { color: var(--red); }
.nav a.is-active::after {
  content: ''; display: block; height: 2px; width: 20px;
  background: var(--red); border-radius: 2px; margin: 4px auto -4px;
}

.header-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header-phone {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
}
.header-phone-ic {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red-tint); color: var(--red); flex: none;
}
.header-phone-ic svg { width: 17px; height: 17px; }
.header-phone-txt { display: flex; flex-direction: column; line-height: 1.2; }
.header-phone-txt small { font-size: .68rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .1em; }
.header-phone-txt strong { font-size: .95rem; color: var(--ink); font-weight: 700; }

.burger {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: #fff; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .25s, opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0; top: 0; z-index: 950;
  background: #fff; overflow-y: auto;
  padding: 20px var(--gutter) 40px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav-top {
  display: flex; align-items: center; justify-content: space-between;
  height: 58px; margin-bottom: 12px;
}
.mobile-nav-top img { height: 40px; width: auto; max-width: none; flex: none; }
.mobile-nav-close {
  width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: var(--r); background: #fff; cursor: pointer;
  display: grid; place-items: center;
}
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav a.m-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 4px;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.mobile-nav a.m-link:hover { color: var(--red); }
.mobile-nav a.m-link svg { width: 15px; height: 15px; color: var(--muted-2); }
.mobile-nav-actions { display: grid; gap: 10px; margin-top: 26px; }

/* --------------------------------------------------------------------------
   6. HERO (homepage)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--white);
  padding-block: 66px 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 46%; height: 100%;
  background: var(--surface);
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--red-tint); color: var(--red);
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 99px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--red); }
.hero h1 .thin { font-weight: 300; color: var(--ink-3); display: block; font-size: .52em; letter-spacing: 0; margin-top: 12px; }
.hero-copy { font-size: 1.08rem; color: var(--muted); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-points {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  margin-top: 28px; padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-point {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
}
.hero-point svg { width: 17px; height: 17px; color: var(--red); flex: none; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.hero-media::after {
  content: ''; position: absolute; inset: auto -18px -18px auto;
  width: 120px; height: 120px; border: 3px solid var(--red);
  border-radius: var(--r-lg); z-index: -1;
}
.hero-chip {
  position: absolute; left: -26px; bottom: 34px;
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  max-width: 260px;
}
.hero-chip-ic {
  width: 42px; height: 42px; border-radius: var(--r);
  background: var(--red); color: #fff;
  display: grid; place-items: center; flex: none;
}
.hero-chip-ic svg { width: 21px; height: 21px; }
.hero-chip strong { display: block; font-family: var(--font-head); font-size: 1.02rem; color: var(--ink); }
.hero-chip span { font-size: .82rem; color: var(--muted); }

/* Stats bar overlapping hero bottom */
.stats {
  position: relative; z-index: 2;
  margin-top: 64px;
  background: var(--ink);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 34px 8px;
}
.stat { text-align: center; padding: 6px 16px; border-right: 1px solid var(--line-dark); }
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.7rem, 1.3rem + 1.3vw, 2.35rem);
  color: #fff; line-height: 1;
}
.stat-num span { color: var(--red); }
/* Tabular figures stop the box from jittering while the count-up runs */
.stat-num .count { font-variant-numeric: tabular-nums; }
.stat-label {
  margin-top: 8px; font-size: .82rem; color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

/* --------------------------------------------------------------------------
   7. PAGE HERO (inner page)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding-block: 70px 66px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../../images/routes-ghat-road.jpg');
  background-size: cover; background-position: center;
  opacity: .17;
}
.page-hero::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: var(--red);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero .lead { color: rgba(255,255,255,.72); max-width: 60ch; }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: .85rem; color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.crumbs a { color: rgba(255,255,255,.85); border-bottom: 1px solid transparent; }
.crumbs a:hover { color: #fff; border-color: var(--red); }
.crumbs svg { width: 13px; height: 13px; opacity: .6; }
.crumbs [aria-current] { color: #fff; }

/* --------------------------------------------------------------------------
   8. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust {
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 18px;
  color: rgba(255,255,255,.82);
  font-family: var(--font-head); font-size: .93rem; font-weight: 500;
}
.trust-item svg { width: 22px; height: 22px; color: var(--red); flex: none; }

/* --------------------------------------------------------------------------
   9. ABOUT
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 56px; align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%; border-radius: var(--r-lg);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.about-stamp {
  position: absolute; right: -20px; bottom: -20px;
  background: var(--red); color: #fff;
  border-radius: var(--r-lg);
  padding: 18px 22px; text-align: center;
  box-shadow: var(--sh-red);
}
.about-stamp strong { display: block; font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about-stamp span { font-size: .78rem; letter-spacing: .06em; opacity: .92; }

.usp-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0 32px; }
.usp {
  display: flex; gap: 13px; align-items: flex-start;
}
.usp-ic {
  width: 40px; height: 40px; border-radius: var(--r);
  background: var(--surface); color: var(--red);
  display: grid; place-items: center; flex: none;
  border: 1px solid var(--line);
}
.usp-ic svg { width: 19px; height: 19px; }
.usp strong { display: block; font-family: var(--font-head); font-size: .98rem; color: var(--ink); }
.usp span { font-size: .87rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   10. FLEET
   -------------------------------------------------------------------------- */
.fleet-banner {
  display: flex; align-items: center; gap: 14px;
  background: var(--ink); color: #fff;
  border-left: 5px solid var(--red);
  border-radius: var(--r);
  padding: 16px 22px;
  margin-bottom: 26px;
  font-family: var(--font-head);
}
.fleet-banner svg { width: 22px; height: 22px; color: var(--red); flex: none; }
.fleet-banner strong { font-size: 1.02rem; font-weight: 700; }
.fleet-banner span { color: rgba(255,255,255,.65); font-size: .92rem; font-family: var(--font-body); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-grid--featured { grid-template-columns: repeat(6, 1fr); }
.fleet-grid--featured > .vcard { grid-column: span 2; }
.fleet-grid--featured > .vcard.is-wide { grid-column: span 3; }

.vcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.vcard:hover { border-color: #CFCFCF; box-shadow: var(--sh-2); transform: translateY(-4px); }
.vcard-media { position: relative; overflow: hidden; background: var(--surface-2); }
.vcard-media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform .5s ease;
}
.vcard:hover .vcard-media img { transform: scale(1.05); }
.vcard.is-wide .vcard-media img { aspect-ratio: 16 / 9; }

.vbadge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--r-sm);
}
.vbadge--dark { background: var(--ink); }

.vcard-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.vcard-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.vcard h3 { margin: 0; }
.vseats {
  font-family: var(--font-head); font-size: .82rem; font-weight: 700;
  color: var(--red); white-space: nowrap;
}
.vcard p { font-size: .92rem; color: var(--muted); margin-bottom: 14px; }
.vtags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.vtag {
  font-size: .76rem; font-weight: 500;
  background: var(--surface); color: var(--ink-3);
  border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 99px;
}

/* Per-vehicle contact buttons inside the card */
.vcard-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.vcard-actions .btn { padding: 11px 12px; font-size: .86rem; }
.vcard-actions .btn svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   11. SERVICES
   -------------------------------------------------------------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  position: relative;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.svc-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--red);
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s;
}
.svc-card:hover { border-color: #CFCFCF; box-shadow: var(--sh-2); transform: translateY(-4px); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-ic {
  width: 50px; height: 50px; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--line);
  color: var(--red);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.svc-ic svg { width: 24px; height: 24px; }
.svc-card h3 { margin-bottom: 9px; }
.svc-card p { font-size: .93rem; color: var(--muted); margin-bottom: 16px; }
.svc-card .link-arrow { margin-top: auto; align-self: flex-start; }

/* Detailed service blocks (services page) */
.svc-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding-block: 46px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--nav-h) + 20px);
}
.svc-detail:last-of-type { border-bottom: 0; }
.svc-detail--flip .svc-detail-media { order: 2; }
.svc-detail-media img {
  width: 100%; border-radius: var(--r-lg);
  aspect-ratio: 3 / 2; object-fit: cover;
}
.svc-detail-media {
  position: relative;
}
.svc-num {
  position: absolute; top: 14px; left: 14px;
  width: 40px; height: 40px; border-radius: var(--r);
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.svc-detail h2 { margin-bottom: 12px; }
.checklist { display: grid; gap: 10px; margin: 18px 0 22px; }
.checklist li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .93rem; color: var(--ink-3);
}
.checklist svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 2px; }
.svc-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Compact service index chips */
.svc-index {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin-top: 26px;
}
.svc-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 99px; padding: 8px 16px;
  font-family: var(--font-head); font-size: .87rem; font-weight: 500;
  color: var(--ink-2);
  transition: border-color .2s, color .2s, background .2s;
}
.svc-chip:hover { border-color: var(--red); color: var(--red); background: var(--red-tint); }

/* --------------------------------------------------------------------------
   12. TRIPS / DESTINATIONS
   -------------------------------------------------------------------------- */
.trip-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(258px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.trip-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  min-height: 340px;
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.trip-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.trip-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(32,32,32,.92) 4%, rgba(32,32,32,.55) 42%, rgba(32,32,32,.08) 100%);
}
.trip-card:hover img { transform: scale(1.06); }
.trip-body { padding: 22px 20px; color: #fff; width: 100%; }
.trip-body h3 { color: #fff; margin-bottom: 5px; }
.trip-body p { font-size: .87rem; color: rgba(255,255,255,.72); margin: 0; }
.trip-tag {
  display: inline-block;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-sm);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   13. WHY / STEPS
   -------------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
}
.section--alt .why-card { background: #fff; }
.why-ic {
  width: 46px; height: 46px; border-radius: var(--r);
  background: var(--ink); color: #fff;
  display: grid; place-items: center; margin-bottom: 16px;
}
.why-ic svg { width: 22px; height: 22px; }
.why-card h3 { margin-bottom: 8px; }
.why-card p { font-size: .92rem; color: var(--muted); margin: 0; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 52px; height: 52px; border-radius: var(--r);
  background: #fff; border: 2px solid var(--red);
  color: var(--red);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.step:not(:last-child)::before {
  content: ''; position: absolute;
  top: 34px; left: 62px; right: -14px; height: 2px;
  background: repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 16px);
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   14. TESTIMONIALS
   -------------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 26px;
  display: flex; flex-direction: column;
}
.quote-mark { font-family: var(--font-head); font-size: 3rem; line-height: .7; color: var(--red-tint-2); margin-bottom: 10px; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 16px; height: 16px; color: #F5A623; }
.quote p { font-size: .96rem; color: var(--ink-3); margin-bottom: 20px; }
.quote-by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; flex: none;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
}
.quote-by strong { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--ink); }
.quote-by span { font-size: .82rem; color: var(--muted-2); }

/* --------------------------------------------------------------------------
   15. CTA BAND (the one full red moment)
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--red);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-band img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(168,11,17,.96) 0%, rgba(214,15,23,.9) 55%, rgba(214,15,23,.72) 100%);
}
.cta-band .wrap {
  padding-block: 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 34px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 12px; max-width: 46ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* --------------------------------------------------------------------------
   16. COMPARISON TABLE
   -------------------------------------------------------------------------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
table.compare { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .93rem; }
table.compare caption { text-align: left; padding: 16px 20px 0; color: var(--muted); font-size: .87rem; }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.compare thead th {
  background: var(--ink); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
  letter-spacing: .05em; text-transform: uppercase;
  border-bottom: 0;
}
table.compare tbody th { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
table.compare tbody tr:nth-child(even) { background: var(--surface); }
table.compare tbody tr:last-child th, table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare tbody tr.is-featured { background: var(--red-tint); }
table.compare tbody tr.is-featured th { color: var(--red); }

/* --------------------------------------------------------------------------
   17. ROUTES
   -------------------------------------------------------------------------- */
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.route {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .2s, transform .2s;
}
.route:hover { border-color: var(--red); transform: translateY(-2px); }
.route svg { width: 18px; height: 18px; color: var(--red); flex: none; }
.route strong { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--ink); font-weight: 600; }
.route span { font-size: .8rem; color: var(--muted-2); }

/* --------------------------------------------------------------------------
   18. FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: #CFCFCF; box-shadow: var(--sh-1); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 19px 56px 19px 22px;
  position: relative;
  font-family: var(--font-head); font-size: 1.02rem; font-weight: 600;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 22px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(45deg); transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq summary:hover { color: var(--red); }
.faq-body { padding: 0 22px 20px; font-size: .95rem; color: var(--muted); }
.faq h3 { font-size: inherit; font-weight: inherit; color: inherit; letter-spacing: inherit; margin: 0; }

/* --------------------------------------------------------------------------
   19. CONTACT
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.contact-list { display: grid; gap: 16px; margin-top: 28px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 18px 20px;
}
.contact-ic {
  width: 42px; height: 42px; border-radius: var(--r);
  background: var(--red-tint); color: var(--red);
  display: grid; place-items: center; flex: none;
}
.contact-ic svg { width: 19px; height: 19px; }
.contact-item h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); font-weight: 600; margin-bottom: 3px; }
.contact-item a, .contact-item p { font-family: var(--font-head); font-size: 1rem; color: var(--ink); font-weight: 500; margin: 0; }
.contact-item a:hover { color: var(--red); }

.map-embed {
  margin-top: 20px; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--line);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 250px; border: 0; }

.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px;
  box-shadow: var(--sh-1);
}
.form-card h3 { margin-bottom: 6px; }
.form-card > p { font-size: .92rem; color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--ink-2); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 12px 14px; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-tint);
}
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .8rem; color: var(--muted-2); margin-top: 12px; text-align: center; }
.form-status {
  display: none; margin-top: 14px; padding: 12px 14px;
  border-radius: var(--r); font-size: .9rem;
  background: var(--red-tint); color: var(--red-dark);
  border: 1px solid var(--red-tint-2);
}
.form-status.is-shown { display: block; }

/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); font-size: .92rem; }
.footer-main {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-block: 62px 48px;
}
.footer-brand img { height: 52px; width: auto; max-width: 100%; object-fit: contain; object-position: left; margin-bottom: 18px; }
.footer-brand p { margin-bottom: 18px; }
.footer-col h3 {
  color: #fff; font-size: .95rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}
.footer-col h3::after {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 34px; height: 2px; background: var(--red);
}
.footer-links { display: grid; gap: 10px; }
.footer-links a { transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-contact { display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--red); flex: none; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }

.socials { display: flex; gap: 10px; }
.social {
  width: 40px; height: 40px; border-radius: var(--r);
  border: 1px solid var(--line-dark);
  display: grid; place-items: center;
  color: rgba(255,255,255,.8);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.social svg { width: 18px; height: 18px; }
.social:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.social--wa:hover { background: var(--wa); border-color: var(--wa); }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  font-size: .86rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.72); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

.footer-credit {
  border-top: 1px solid var(--line-dark);
  padding-block: 16px;
  text-align: center;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
}
.footer-credit a {
  color: rgba(255,255,255,.82); font-weight: 600;
  border-bottom: 1px solid rgba(214,15,23,.6);
  transition: color .2s, border-color .2s;
}
.footer-credit a:hover { color: #fff; border-color: var(--red); }

/* --------------------------------------------------------------------------
   21. FLOATING CTAs  (WhatsApp + Call, bottom-LEFT) & scroll top (bottom-right)
   -------------------------------------------------------------------------- */
.float-stack {
  position: fixed; left: 20px; bottom: 20px; z-index: 1000;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  position: relative;
  flex: none;
  width: 56px; min-width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.28);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.float-btn svg { width: 27px; height: 27px; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 26px rgba(0,0,0,.34); }
.float-btn--wa { background: var(--wa); }
.float-btn--wa:hover { background: var(--wa-dark); }
.float-btn--call { background: var(--red); }
.float-btn--call:hover { background: var(--red-dark); }

/* pulse ring on WhatsApp */
.float-btn--wa::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa);
  animation: ring 2.4s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* slide-out label (pointer devices only) */
.float-label {
  position: absolute; left: 66px; top: 50%; transform: translate(-8px, -50%);
  background: var(--ink); color: #fff;
  font-family: var(--font-head); font-size: .82rem; font-weight: 600;
  padding: 7px 13px; border-radius: var(--r);
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .22s, transform .22s;
}
.float-label::before {
  content: ''; position: absolute; left: -5px; top: 50%;
  width: 10px; height: 10px; margin-top: -5px;
  background: var(--ink); transform: rotate(45deg);
}
@media (hover: hover) and (min-width: 900px) {
  .float-btn:hover .float-label, .float-btn:focus-visible .float-label {
    opacity: 1; transform: translate(0, -50%);
  }
}

.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 999;
  width: 46px; height: 46px; border-radius: var(--r);
  background: var(--ink); color: #fff;
  border: 0; cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--red); }
.to-top svg { width: 19px; height: 19px; }

/* keep footer content clear of the floating stack */
.site-footer { padding-bottom: 0; }

/* --------------------------------------------------------------------------
   22. REVEAL ANIMATION
   -------------------------------------------------------------------------- */
/* Content is visible by default. The hidden starting state is only applied once
   the inline head script has confirmed JavaScript is running, so a failed or
   blocked script can never leave the page blank. */
.reveal { transition: opacity .6s ease, transform .6s ease; }
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  :root { --sec-y: 72px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid--featured { grid-template-columns: repeat(4, 1fr); }
  .fleet-grid--featured > .vcard.is-wide { grid-column: span 4; }
  .svc-grid, .why-grid, .quotes { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .route-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-grid { gap: 40px; }
}

@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .burger { display: flex; }
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 620px; }
  .hero-chip { left: auto; right: 14px; bottom: -22px; }
  .hero-media::after { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 620px; }
  .about-stamp { right: 14px; bottom: -18px; }
  .svc-detail { grid-template-columns: 1fr; gap: 26px; }
  .svc-detail--flip .svc-detail-media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .step:not(:last-child)::before { display: none; }
  .stats { margin-top: 48px; }
}

@media (max-width: 720px) {
  :root { --sec-y: 58px; --nav-h: 68px; --gutter: 18px; }

  /* Keep phone + email on a single top-bar row instead of stacking */
  .topbar { font-size: .68rem; }
  .topbar .wrap { flex-wrap: nowrap; gap: 10px; min-height: 34px; }
  .topbar-list { flex-wrap: nowrap; gap: 12px; width: 100%; justify-content: space-between; }
  .topbar-list--secondary { display: none; }
  .topbar-item svg { width: 12px; height: 12px; }
  .topbar-item { gap: 5px; }

  .brand img { height: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 22px 4px; row-gap: 22px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-dark); padding-bottom: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 16px 12px; font-size: .87rem; }
  .fleet-grid, .fleet-grid--featured,
  .svc-grid, .why-grid, .quotes,
  .usp-list, .field-row { grid-template-columns: 1fr; }
  .fleet-grid--featured > .vcard,
  .fleet-grid--featured > .vcard.is-wide { grid-column: span 1; }
  .vcard.is-wide .vcard-media img { aspect-ratio: 3 / 2; }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding-block: 46px 34px; }
  .cta-band .wrap { padding-block: 48px; }
  .float-btn { width: 52px; min-width: 52px; height: 52px; }
  .float-btn svg { width: 25px; height: 25px; }
  .float-stack { left: 16px; bottom: 16px; }
  .to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
  .footer-bottom { padding-bottom: 86px; }   /* clear of floating buttons */
  .form-card { padding: 24px 20px; }
  .trip-scroller { grid-auto-columns: minmax(230px, 78%); }
}

@media (max-width: 460px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn, .svc-detail-actions .btn { width: 100%; }
  .route-grid { grid-template-columns: 1fr; }
  /* .vcard-actions stays 2-up — the two buttons are short and read better side by side */
}

/* Narrowest phones: shrink the top bar further so the email still fits on one line.
   Sized with headroom at 320px; the ellipsis is a last-resort safety valve only. */
@media (max-width: 400px) {
  .topbar { font-size: .58rem; letter-spacing: -0.01em; }
  .topbar .wrap { gap: 5px; padding-inline: 12px; }
  .topbar-list { gap: 7px; }
  .topbar-item svg { width: 10px; height: 10px; }
  .topbar-item { gap: 4px; min-width: 0; }
  .topbar-item a { overflow: hidden; text-overflow: ellipsis; }
}

/* --------------------------------------------------------------------------
   24. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .topbar, .site-header, .mobile-nav, .float-stack, .to-top, .map-embed, .form-card { display: none !important; }
  body { color: #000; }
  .section { padding-block: 18px; }
}
