/* Jamnagar Taxi Line – Uber/Ola Black & White Theme */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Sora:wght@600;700;800&display=swap');

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #f6f6f6;
  --gray-100: #eeeeee;
  --gray-200: #e2e2e2;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-800: #262626;
  --text: #000000;
  --text-muted: #6b6b6b;
  --border: #e8e8e8;
  --whatsapp: #25d366;
  --radius: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-card: 28px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition: 0.3s var(--ease);
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --hero-wave-height: 64px;
  --hero-wave-clearance: calc(var(--hero-wave-height) + 3rem);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100%;
}

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

main {
  overflow: visible;
}

a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.7; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Icons ── */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1.25em; height: 1.25em;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon svg { width: 100%; height: 100%; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-2xl { width: 3rem; height: 3rem; }

.btn-uber svg, .btn svg, .footer-chip svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

/* ── Animations ── */
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@keyframes heroCardGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
  50% { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12); }
}

@keyframes heroShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes heroRotate {
  0%, 20% { transform: translateY(0); }
  25%, 45% { transform: translateY(-25%); }
  50%, 70% { transform: translateY(-50%); }
  75%, 95% { transform: translateY(-75%); }
  100% { transform: translateY(0); }
}

@keyframes heroPointIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.05); }
}

@keyframes heroTitleReveal {
  from {
    opacity: 0;
    transform: translateY(1.1em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBrandLine {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes heroRotateGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* ── Buttons (Uber style) ── */
.btn-uber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-uber:hover { opacity: 1; transform: scale(1.02); }
.btn-uber:active { transform: scale(0.98); }

.btn-uber-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-uber-black:hover { background: var(--gray-800); }

.btn-uber-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-uber-white:hover { background: var(--gray-100); }

.btn-uber-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-uber-outline:hover { background: rgba(255,255,255,0.1); }

.btn-uber-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-uber-outline-dark:hover { background: var(--gray-50); }

.btn-block { width: 100%; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.btn-text-short { display: none; }

@media (max-width: 480px) {
  .btn-text-long { display: none; }
  .btn-text-short { display: inline; }
}

/* Legacy btn aliases */
.btn { composes: btn-uber; }
.btn-call, .mat-btn-call, .footer-chip-call { background: var(--black); color: var(--white); border: 2px solid var(--black); display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.875rem; text-decoration: none; transition: transform 0.2s; }
.btn-call:hover, .mat-btn-call:hover { transform: scale(1.02); opacity: 1; }
.btn-whatsapp, .mat-btn-wa, .footer-chip-wa { background: var(--white); color: var(--black); border: 2px solid var(--black); display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.875rem; text-decoration: none; transition: transform 0.2s; }
.btn-whatsapp:hover, .mat-btn-wa:hover { transform: scale(1.02); opacity: 1; background: var(--gray-50); }
.mat-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.875rem; text-decoration: none; }

/* ── Header (Uber black bar) ── */
.uber-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.uber-header.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 1.5rem;
}

.header-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.header-logo:hover { opacity: 0.9; }

.site-logo {
  display: block;
  height: 80px;
  width: auto;
  object-fit: contain;
}

.logo-wordmark {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
}

.header-nav .nav-link,
.toolbar-nav .nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
  opacity: 0.85;
}
.header-nav .nav-link:hover,
.toolbar-nav .nav-link:hover { background: rgba(255,255,255,0.1); opacity: 1; }
.header-nav .nav-link.active,
.toolbar-nav .nav-link.active { opacity: 1; font-weight: 600; }

.header-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* Legacy header hide */
.app-shell-header, .app-toolbar, .app-subheader { display: none; }

/* ── Hero v2 (animated text + points) ── */
.hero-taxi {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  background: var(--white);
  overflow: visible;
}

.hero-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: heroOrbDrift 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.06) 0%, transparent 70%);
}

.hero-orb-2 {
  width: 240px;
  height: 240px;
  bottom: 120px;
  left: -80px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 0%, transparent 70%);
  animation-delay: -4s;
}

.hero-line-deco { display: none; }

.hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6rem 1.5rem var(--hero-wave-clearance);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  width: 100%;
  min-width: 0;
}

.hero-copy {
  justify-self: start;
  text-align: left;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.hero-anim {
  opacity: 0;
  animation: heroReveal 0.85s var(--ease) forwards;
  animation-delay: calc(0.1s + (var(--hero-i, 0) * 0.1s));
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
  width: fit-content;
  max-width: 100%;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.hero-brand-text {
  flex-shrink: 0;
}

.hero-brand-mark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
  animation: heroPulse 2s ease-in-out infinite;
}

.hero-brand-line {
  display: block;
  flex: 1;
  min-width: 2rem;
  max-width: 3.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gray-300) 0%, transparent 100%);
  transform-origin: left center;
  animation: heroBrandLine 0.9s var(--ease) 0.55s both;
}

.hero-taxi h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 0.65rem;
}

.hero-title-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}

.hero-title-mask .hero-title-line {
  display: block;
  animation: heroTitleReveal 0.85s var(--ease) 0.2s both;
}

.hero-title-mask-delay .hero-title-highlight {
  display: block;
  animation: heroTitleReveal 0.85s var(--ease) 0.35s both, heroShimmer 5s ease-in-out 1.2s infinite;
}

.hero-title-line {
  font-weight: 600;
  color: var(--black);
}

.hero-title-highlight {
  font-weight: 800;
  background: linear-gradient(105deg, var(--black) 0%, var(--gray-600) 48%, var(--black) 96%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-rotate-wrap {
  display: block;
  margin: 0 0 1.25rem;
  padding: 0 0 0 0.85rem;
  border-left: 2px solid var(--black);
  color: var(--gray-600);
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  letter-spacing: -0.01em;
}

.hero-rotate-viewport {
  height: 1.375rem;
  overflow: hidden;
  position: relative;
}

.hero-rotate-track {
  display: block;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-rotate-track.is-css-fallback {
  animation: heroRotate 12s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.hero-rotate-track span {
  display: block;
  height: 1.375rem;
  line-height: 1.375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
  opacity: 0;
  transform: translateY(14px);
  animation: heroPointIn 0.65s var(--ease) forwards;
}

.hero-points li:nth-child(1) { animation-delay: 0.45s; }
.hero-points li:nth-child(2) { animation-delay: 0.58s; }
.hero-points li:nth-child(3) { animation-delay: 0.71s; }
.hero-points li:nth-child(4) { animation-delay: 0.84s; }

.hero-point-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
  animation: heroPulse 2.5s ease-in-out infinite;
}

.hero-points li:nth-child(2) .hero-point-dot { animation-delay: 0.3s; }
.hero-points li:nth-child(3) .hero-point-dot { animation-delay: 0.6s; }
.hero-points li:nth-child(4) .hero-point-dot { animation-delay: 0.9s; }

.hero-cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero-cta-inline .btn-uber {
  min-width: 160px;
}

.hero-visual {
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 11;
  max-height: 420px;
  min-height: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  animation: heroReveal 0.85s var(--ease) forwards, heroCardGlow 4s ease-in-out 1.2s infinite;
}

.hero-visual-card .hero-cta-media-img {
  object-fit: cover;
  object-position: center center;
}

.hero-visual-card .hero-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.hero-visual-card .hero-cta-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* Legacy hero card (kept for compatibility) */
.hero-action-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 420px;
  border-radius: var(--radius-card);
  overflow: hidden;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  animation: heroReveal 0.85s var(--ease) forwards, heroCardGlow 4s ease-in-out 1.2s infinite;
}

.hero-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-cta-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.hero-cta-content {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.35rem 1.5rem;
}

.hero-action-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0;
}

.hero-cta-row .btn-uber {
  width: 100%;
  min-width: 0;
  justify-content: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hero-cta-row .btn-uber:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero-cta-row .btn-uber-white:hover {
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.15);
}

.hero-title-row {
  display: block;
}

.hero-title-accent {
  color: var(--gray-600);
  font-weight: 700;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1.65;
  max-width: 520px;
}

.hero-stats {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 100%;
  background: var(--black);
}

.hero-stats.section-wave {
  padding-top: 4.5rem;
}

.hero-stats.section-wave::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0,64 L0,28 C240,52 480,8 720,28 C960,48 1200,12 1440,32 L1440,64 Z' fill='%23000000'/%3E%3C/svg%3E");
}

.hero-stats.section-wave-end {
  padding-bottom: 5rem;
}

.hero-stats.section-wave-end::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 64px;
  transform: translateY(63px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,36 C240,12 480,56 720,36 C960,16 1200,52 1440,32 L1440,0 Z' fill='%23f6f6f6'/%3E%3C/svg%3E");
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0.5rem 1.5rem 0.25rem;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-stat {
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.hero-stat span {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Legacy hero (unused) */
.hero-grid-bg, .hero-ring { display: none; }

.booking-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-card);
  padding: 1.75rem;
  max-width: 420px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.booking-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.booking-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.booking-card .btn-uber,
.booking-card .btn-call,
.booking-card .btn-whatsapp {
  width: 100%;
  margin-bottom: 0.75rem;
  justify-content: center;
}
.booking-card .btn-uber:last-child,
.booking-card .btn-call:last-child,
.booking-card .btn-whatsapp:last-child { margin-bottom: 0; }

/* ── Sections ── */
section {
  padding: 5rem 0;
  position: relative;
}

/* Curved wave divider between sections */
.section-wave {
  padding-top: 6.5rem;
}

.section-wave-end {
  padding-bottom: 5.5rem;
}

.section-wave::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  transform: translateY(-63px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 2;
}

/* Wave fill = section background */
.section-wave::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0,64 L0,28 C240,52 480,8 720,28 C960,48 1200,12 1440,32 L1440,64 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.bg-light.section-wave::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0,64 L0,28 C240,52 480,8 720,28 C960,48 1200,12 1440,32 L1440,64 Z' fill='%23f6f6f6'/%3E%3C/svg%3E");
}

.bg-navy.section-wave::before,
.promo-strip.section-wave::before,
.cta-banner.section-wave::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0,64 L0,28 C240,52 480,8 720,28 C960,48 1200,12 1440,32 L1440,64 Z' fill='%23000000'/%3E%3C/svg%3E");
}

.page-hero.section-wave::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0,64 L0,28 C240,52 480,8 720,28 C960,48 1200,12 1440,32 L1440,64 Z' fill='%23f6f6f6'/%3E%3C/svg%3E");
}

/* Curved line at section end */
.section-wave-end::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 600px);
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 14' preserveAspectRatio='none'%3E%3Cpath d='M0,14 Q300,0 600,14' fill='none' stroke='%23e2e2e2' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.bg-navy.section-wave-end::after,
.promo-strip.section-wave-end::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 14' preserveAspectRatio='none'%3E%3Cpath d='M0,14 Q300,0 600,14' fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; max-width: 560px; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.section-header p { color: var(--text-muted); font-size: 1.05rem; }

.bg-light { background: var(--gray-50); }
.bg-white { background: var(--white); }

.bg-navy, .bg-dark {
  background: var(--black);
  color: var(--white);
}
.bg-navy .section-header h2,
.bg-dark .section-header h2 { color: var(--white); }
.bg-navy .section-header p,
.bg-dark .section-header p { color: rgba(255,255,255,0.6); }
.bg-navy .section-label,
.bg-dark .section-label { color: rgba(255,255,255,0.5); }

/* ── Service Cards (Uber grid) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gray-50);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 1.5rem;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.service-card:hover .service-icon {
  background: var(--black);
  color: var(--white);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
  line-height: 1.6;
}
.service-card .btn-call { width: 100%; justify-content: center; }

/* ── Tour Cards ── */
.tours-section,
#tours.bg-navy {
  color: var(--white);
}

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

.tour-card {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.bg-navy .tour-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.tour-card-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.35s var(--ease);
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.05);
}

.tour-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: var(--black);
}

.tour-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.tour-card .btn-call {
  width: 100%;
  justify-content: center;
}

@media (max-width: 992px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 480px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .tour-card-body { padding: 1rem; }
  .tour-card-body h3 { font-size: 0.9375rem; }
  .tour-card-body p { font-size: 0.8125rem; margin-bottom: 0.85rem; }
  .tour-card .btn-call { font-size: 0.6875rem; padding: 0.55rem 0.5rem; }
}

/* ── Fleet Cards ── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.fleet-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0,0,0,0.12);
}

.fleet-card.featured {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  outline: 2px solid var(--black);
  outline-offset: -2px;
}

.fleet-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.fleet-card-img {
  height: 260px;
  background: var(--black);
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.5rem 0.75rem;
  transition: transform 0.35s var(--ease);
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.06);
}

.fleet-card-body {
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.fleet-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.fleet-price span { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }

.fleet-specs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.fleet-spec {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--gray-50);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  white-space: nowrap;
  line-height: 1.2;
}

.fleet-card .btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}
.fleet-card .btn-call,
.fleet-card .btn-whatsapp { width: 100%; justify-content: center; font-size: 0.8125rem; padding: 0.65rem 1rem; }

/* ── Why Choose (black section) ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.why-item {
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  text-align: center;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  backdrop-filter: blur(4px);
}

.why-item:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 1.25rem;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.why-item:hover .why-icon {
  background: var(--white);
  color: var(--black);
  transform: scale(1.1);
}

.why-item h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.why-item p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── Outstation Routes ── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.route-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: var(--black);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  overflow: hidden;
  min-height: 180px;
}

.route-card:hover {
  opacity: 1;
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  background: var(--black);
  color: var(--white);
}

.route-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.route-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.route-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.route-card:hover .route-icon {
  background: var(--white);
  color: var(--black);
  transform: scale(1.08);
}

.route-distance {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--gray-50);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.route-card:hover .route-distance {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.route-from {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  transition: color 0.35s var(--ease);
}

.route-card:hover .route-from {
  color: rgba(255, 255, 255, 0.55);
}

.route-to {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: auto;
  padding-bottom: 1.25rem;
  line-height: 1.2;
}

.route-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  transition: border-color 0.35s var(--ease);
}

.route-card:hover .route-action {
  border-color: rgba(255, 255, 255, 0.15);
}

.route-action .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.35s var(--ease);
}

.route-card:hover .route-action .icon {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .routes-grid { grid-template-columns: 1fr; }
  .route-card { min-height: auto; }
}

/* Legacy dest-card (unused) */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.dest-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.35s var(--ease);
}

.dest-card:hover {
  background: var(--black);
  color: var(--white);
  opacity: 1;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.dest-card .icon { width: 0; opacity: 0; transition: all 0.3s; }
.dest-card:hover .icon { width: 1rem; opacity: 1; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-card);
  padding: 2.25rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--gray-50);
  border-radius: 50%;
  transition: transform 0.35s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.testimonial-card:hover::before {
  transform: scale(1.3);
}

.quote-icon { color: var(--gray-300); margin-bottom: 0.75rem; position: relative; z-index: 1; }
.stars { display: flex; gap: 0.15rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.stars .icon { color: var(--black); width: 1rem; height: 1rem; }

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--black);
  position: relative;
  z-index: 1;
}

/* ── CTA Banner (black strip) ── */
.cta-banner {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner.section-wave-end {
  padding-bottom: 5rem;
}

.cta-banner.section-wave-end::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 64px;
  transform: translateY(63px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,36 C240,12 480,56 720,36 C960,16 1200,52 1440,32 L1440,0 Z' fill='%23000000'/%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.cta-banner p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.cta-actions .btn-uber {
  min-width: 200px;
  justify-content: center;
}

.cta-banner .btn-call,
.cta-banner .btn-uber-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.cta-banner .btn-whatsapp,
.cta-banner .btn-uber-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* ── Page Hero ── */
.page-hero {
  background: var(--gray-50);
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: none;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { text-decoration: underline; text-underline-offset: 2px; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-card);
  padding: 2.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.contact-info-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-50);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-item h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.contact-item p, .contact-item a { font-size: 0.9375rem; color: var(--black); font-weight: 500; }
.contact-item a:hover { opacity: 0.7; }

.contact-cta-group { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.contact-cta-group .btn-call,
.contact-cta-group .btn-whatsapp { justify-content: center; }

.map-container {
  border: none;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.nap-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: none;
  border-radius: var(--radius-card);
  padding: 2.25rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.nap-card p { color: var(--text-muted); margin-bottom: 0.5rem; font-size: 0.9375rem; }
.nap-card strong { color: var(--black); }

.map-container iframe { width: 100%; height: 400px; border: 0; }

.map-gmb-link {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.875rem;
}

.map-gmb-link a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}

.faq-item:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.faq-item:first-child { border-top: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--text-muted); }
.faq-question .icon { color: var(--black); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 280px; padding: 0 1.5rem 1.25rem; }

/* ── SEO Content ── */
.seo-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.seo-block {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.seo-block h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.seo-block p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.seo-block p:last-child { margin-bottom: 0; }

.seo-block a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-block a:hover { opacity: 0.7; }

.seo-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.seo-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.seo-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--black);
  font-weight: 700;
}

@media (max-width: 768px) {
  .seo-content { grid-template-columns: 1fr; }
}

/* ── Service Detail ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.service-detail:last-child { margin-bottom: 0; }
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail-stack {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.service-detail-stack:nth-child(even) { direction: ltr; }

.service-detail-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.service-detail-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }

.service-detail-content ul { list-style: none; margin-bottom: 1.5rem; }
.service-detail-content li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.service-detail-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--black);
  font-weight: 700;
}

.service-detail-visual {
  background: var(--gray-50);
  border: none;
  border-radius: var(--radius-card);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* ── Promo strip (Uber black block) ── */
.promo-strip {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0;
}
.promo-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.promo-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.promo-strip p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; line-height: 1.7; }
.promo-visual {
  border-radius: var(--radius-card);
  min-height: 280px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.promo-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Footer (Uber black) ── */
.uber-footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 0;
}
.app-footer { display: none; }

.footer-logo-row {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo:hover { opacity: 0.9; }

.footer-logo-img {
  display: block;
  height: 140px;
  width: auto;
  object-fit: contain;
}

.footer-wordmark {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-wordmark:hover { opacity: 0.8; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-col a:hover { color: var(--white); opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ── Floating CTA ── */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.65rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.floating-cta-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-cta .btn-cta-pill {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  justify-content: center;
  gap: 0.4rem;
}

.floating-cta .btn-cta-pill svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .hero-taxi {
    min-height: auto;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .hero-shell {
    flex: 0 0 auto;
    padding: 5.5rem 1.25rem var(--hero-wave-clearance);
    align-items: stretch;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-width: 0;
  }

  .hero-shell {
    overflow: hidden;
  }

  .hero-copy {
    justify-self: stretch;
    text-align: left;
    order: 1;
    padding: 0;
    display: contents;
  }

  .hero-brand {
    order: 1;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-copy > h1 {
    order: 2;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
  }

  .hero-rotate-wrap {
    order: 3;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    width: min(100%, 280px);
    padding-left: 0;
    padding-top: 0;
    border-left: none;
    border-top: 2px solid var(--black);
    text-align: center;
  }

  .hero-rotate-viewport {
    height: 1.3rem;
    margin-top: 0.65rem;
  }

  .hero-rotate-track span {
    height: 1.3rem;
    line-height: 1.3rem;
    text-align: center;
  }

  .hero-visual {
    order: 4;
    max-width: 100%;
    justify-self: center;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
    flex: none;
  }

  .hero-brand-line {
    transform-origin: center;
    max-width: 2.75rem;
  }

  .hero-visual-card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    flex: none;
    aspect-ratio: 16 / 10;
    max-height: 210px;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }

  .hero-visual-card .hero-cta-media-img {
    object-position: center center;
  }

  .hero-points {
    order: 5;
    margin-bottom: 1.25rem;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-points li {
    font-size: 0.875rem;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }

  .hero-cta-inline {
    order: 6;
    gap: 0.65rem;
    margin-bottom: 0;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-inline .btn-uber {
    flex: 1;
    min-width: 0;
    min-height: 46px;
  }

  .hero-lead {
    margin-left: 0;
    margin-bottom: 0;
  }

  .hero-stat + .hero-stat::before {
    display: none;
  }

  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 1rem;
    padding: 0.25rem 1.25rem 0.5rem;
  }

  .hero-stat strong {
    font-size: 1.1rem;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo-strip .container { grid-template-columns: 1fr; }
  .promo-visual { min-height: 220px; }
  .promo-visual img { min-height: 220px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .fleet-card-img { height: 220px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .uber-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .uber-header.is-scrolled {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  main {
    padding-top: 96px;
    overflow: visible;
  }

  .site-logo {
    height: 66px;
  }

  .footer-logo-img {
    height: 110px;
  }

  .header-nav, .toolbar-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .header-nav.open, .toolbar-nav.open { display: flex; }
  .header-nav .nav-link, .toolbar-nav .nav-link { width: 100%; padding: 0.85rem 1rem; }

  .header-actions, .toolbar-actions { display: none; }

  .floating-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.55rem 0.75rem;
    padding-right: 4.25rem;
    gap: 0;
  }

  .floating-cta-inner {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
  }

  .floating-cta .btn-cta-pill {
    min-height: 38px;
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
  }

  body { padding-bottom: 60px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 3.5rem 0; }
  .section-wave { padding-top: 5rem; }
  .section-wave::before { height: 40px; transform: translateY(-39px); }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .fleet-card-img {
    height: 175px;
  }

  .fleet-card-img img {
    padding: 0.35rem 0.5rem;
  }

  .fleet-card-body {
    padding: 1rem 0.75rem 0.85rem;
  }

  .fleet-card h3 {
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
  }

  .fleet-price {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
  }

  .fleet-specs {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }

  .fleet-spec {
    font-size: 0.625rem;
    padding: 0.2rem 0.45rem;
  }

  .fleet-badge {
    top: 0.65rem;
    right: 0.65rem;
    font-size: 0.55rem;
    padding: 0.25rem 0.5rem;
  }

  .fleet-card .btn-call,
  .fleet-card .btn-whatsapp {
    font-size: 0.6875rem;
    padding: 0.5rem 0.5rem;
  }

  .fleet-card .btn-group {
    gap: 0.35rem;
  }

  .cta-banner {
    padding: 3rem 0;
  }

  .cta-banner.section-wave-end {
    padding-bottom: 4.5rem;
  }

  .cta-banner.section-wave-end::after {
    height: 40px;
    transform: translateY(39px);
  }

  .cta-banner p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: calc(100% - 2rem);
    max-width: 340px;
    margin: 0 auto;
    padding: 0;
    gap: 0.65rem;
    box-sizing: border-box;
  }

  .cta-actions .btn-uber {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    box-sizing: border-box;
  }

  .hero-taxi {
    padding-bottom: 0;
    --hero-wave-height: 40px;
    --hero-wave-clearance: calc(var(--hero-wave-height) + 3rem);
  }

  .hero-shell {
    padding: 4.5rem 1rem var(--hero-wave-clearance);
  }

  .hero-grid {
    gap: 0.85rem;
  }

  .hero-taxi h1 {
    font-size: clamp(1.75rem, 7.2vw, 2.15rem);
    margin-bottom: 0.4rem;
    line-height: 1.12;
  }

  .hero-rotate-wrap {
    width: min(100%, 260px);
    margin-bottom: 0.85rem;
  }

  .hero-rotate-viewport {
    height: 1.2rem;
    margin-top: 0.55rem;
  }

  .hero-rotate-track span {
    height: 1.2rem;
    line-height: 1.2rem;
    font-size: 0.875rem;
  }

  .hero-title-mask {
    text-align: center;
  }

  .hero-points {
    margin-bottom: 1rem;
    gap: 0.45rem;
    max-width: 300px;
  }

  .hero-points li {
    font-size: 0.8125rem;
    gap: 0.6rem;
    justify-content: center;
    text-align: center;
  }

  .hero-point-dot {
    width: 6px;
    height: 6px;
  }

  .hero-cta-inline {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .hero-cta-inline .btn-uber {
    flex: 1;
    min-width: 0;
    min-height: 44px;
    font-size: 0.8125rem;
    padding: 0.6rem 0.75rem;
  }

  .hero-cta-inline .btn-uber.btn-lg {
    font-size: 0.8125rem;
    padding: 0.6rem 0.75rem;
  }

  .hero-visual-card {
    aspect-ratio: 16 / 9;
    max-height: 190px;
    border-radius: 18px;
  }

  .hero-line-deco {
    display: none;
  }

  .hero-brand {
    font-size: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .hero-stats.section-wave {
    padding-top: 3.25rem;
  }

  .hero-stats.section-wave::before {
    height: 40px;
    transform: translateY(-39px);
  }

  .hero-stats.section-wave-end {
    padding-bottom: 4.5rem;
  }

  .hero-stats.section-wave-end::after {
    height: 40px;
    transform: translateY(39px);
  }

  .hero-stats-inner {
    padding: 0.35rem 1rem 0.65rem;
    gap: 0.75rem 0.5rem;
  }

  .hero-stat strong {
    font-size: 1rem;
  }

  .hero-stat span {
    font-size: 0.625rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
  }

  #services.section-wave {
    padding-top: 3.5rem;
  }

  #services.section-wave::before {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-visual-card {
    max-height: 170px;
  }

  .hero-cta-inline .btn-uber {
    font-size: 0.75rem;
    padding: 0.55rem 0.5rem;
  }

  .hero-points li {
    font-size: 0.75rem;
  }

  .hero-stat strong {
    font-size: 0.95rem;
  }

  .hero-stat span {
    font-size: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, [data-animate], .hero-anim { animation: none !important; transition-duration: 0.01ms !important; }
  [data-animate], .hero-anim, .hero-points li { opacity: 1; transform: none; }
  .hero-cta-media-img { transform: none; }
  .hero-rotate-track { transform: none; }
  .hero-rotate-viewport { height: auto !important; overflow: visible; }
  .hero-title-highlight {
    -webkit-text-fill-color: var(--black);
    background: none;
    animation: none !important;
  }
  .hero-title-mask .hero-title-line,
  .hero-title-mask .hero-title-highlight {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
