:root {
  --blue-950: #08205f;
  --blue-900: #1036a5;
  --blue-800: #1f4fd7;
  --blue-700: #3c69f0;
  --yellow-500: #ffe61f;
  --yellow-400: #fff16c;
  --white: #ffffff;
  --soft-white: #f4f8ff;
  --line: rgba(16, 54, 165, 0.12);
  --ink: #13306f;
  --muted: #4d669f;
  --shadow: 0 24px 60px rgba(11, 32, 90, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 230, 31, 0.18), transparent 22%),
    linear-gradient(180deg, #0d38b8 0%, #1749d3 180px, #eef4ff 180px, #eef4ff 100%);
  font-family: "Montserrat", sans-serif;
}

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

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

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: linear-gradient(rgba(8, 28, 78, 0.82), rgba(8, 28, 78, 0.82)), url('bright-hex-backgrounds-networking.jpg.jpeg') no-repeat center/cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue-950);
  background: var(--yellow-500);
}

.cta-button,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.cta-button,
.button-primary {
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
  box-shadow: 0 12px 26px rgba(255, 230, 31, 0.28);
}

.button-secondary {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.cta-button:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.hero-home,
.page-hero {
  padding: 52px 0 76px;
}

.hero-grid,
.page-hero-grid,
.band-grid,
.split-content {
  display: grid;
  gap: 24px;
}

.hero-grid,
.page-hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

.hero-copy,
.page-hero-copy {
  color: var(--white);
}

.hero-home .hero-copy {
  color: var(--blue-950);
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 255, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
}

.page-hero-copy {
  color: var(--blue-950);
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 255, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.band-copy h2,
.content-card h2,
.service-card-large h2,
.fleet-card-large h2,
.plan-card-large h2,
.contact-card-large h2,
.page-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 0.98;
}

.hero-copy h1,
.page-hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  max-width: 10ch;
}

.lead,
.section-heading p,
.content-card p,
.page-card p,
.service-card-large p,
.fleet-card-large p,
.plan-card-large p,
.contact-card-large p,
.band-copy p {
  line-height: 1.75;
}

.lead {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
}

.hero-home .hero-copy .eyebrow {
  color: var(--blue-800);
}

.hero-home .hero-copy .lead {
  color: var(--muted);
}

.hero-home .hero-checks li {
  color: var(--blue-950);
  background: rgba(16, 54, 165, 0.06);
  border: 1px solid rgba(16, 54, 165, 0.14);
}

.page-hero-copy .eyebrow {
  color: var(--blue-800);
}

.page-hero-copy .lead {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-checks li {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.hero-visual-frame,
.page-hero-media {
  border-radius: 32px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-visual-frame img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media {
  min-height: 320px;
}

.section-block {
  padding: 82px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.band-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.1rem);
  color: var(--blue-950);
}

.section-heading p,
.band-copy p,
.content-card p,
.page-card p,
.service-card-large p,
.fleet-card-large p,
.plan-card-large p,
.contact-card-large p {
  color: var(--muted);
}

.page-grid,
.card-columns,
.service-page-grid,
.fleet-page-grid,
.plans-page-grid,
.contact-page-grid,
.mini-stats {
  display: grid;
  gap: 18px;
}

.page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-card,
.content-card,
.service-card-large,
.fleet-card-large,
.plan-card-large,
.contact-card-large {
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.fleet-card-img,
.service-card-img {
  margin: -28px -28px 24px;
  height: 220px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
}

.fleet-card-img img,
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.fleet-card-large:hover .fleet-card-img img,
.service-card-large:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-img--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.service-card-img--icon svg {
  width: 72px;
  height: 72px;
  color: var(--accent);
  stroke: var(--accent);
}

.page-card {
  transition: transform 180ms ease, border-color 180ms ease;
}

.page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 230, 31, 0.78);
}

.page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--blue-950);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-content,
.band-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.accent-card {
  background: linear-gradient(180deg, #1946c8, #1036a5);
  color: var(--white);
}

.accent-card h2,
.accent-card p,
.accent-card li {
  color: var(--white);
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.9;
}

.compact-hero {
  padding-bottom: 44px;
}

.service-page-grid,
.fleet-page-grid,
.plans-page-grid,
.contact-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card-large,
.fleet-card-large,
.plan-card-large,
.contact-card-large {
  min-height: 220px;
}

.section-band {
  padding: 82px 0 96px;
}

.band-copy {
  align-self: center;
}

.mini-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-stats article {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, #1749d3, #1036a5);
  color: var(--white);
  box-shadow: var(--shadow);
}

.mini-stats strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  color: var(--yellow-500);
}

.mini-stats span {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
}

.site-footer {
  padding: 24px 0 34px;
  background: var(--blue-950);
  color: var(--white);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-row strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
}

.footer-row p,
.footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-meta a {
  color: var(--yellow-500);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-row {
    align-items: center;
  }

  .header-row,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .page-hero-grid,
  .page-grid,
  .split-content,
  .band-grid,
  .service-page-grid,
  .fleet-page-grid,
  .plans-page-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-checks,
  .mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .header-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(7, 32, 95, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    text-align: left;
  }

  .cta-button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
  }

  .hero-home,
  .page-hero {
    padding: 36px 0 52px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 4rem);
    max-width: 100%;
  }

  .page-hero-copy,
  .page-card,
  .content-card,
  .service-card-large,
  .fleet-card-large,
  .plan-card-large,
  .contact-card-large {
    padding: 24px;
    border-radius: 24px;
  }

  .page-hero-media {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .hero-checks,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .wrap {
    width: min(100%, calc(100% - 24px));
  }

  .hero-copy,
  .page-hero-copy {
    padding-inline: 0;
  }

  .section-block,
  .section-band {
    padding-top: 64px;
  }

  .section-band {
    padding-bottom: 72px;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .service-card-large,
  .fleet-card-large,
  .plan-card-large,
  .contact-card-large {
    min-height: auto;
  }

  .footer-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy span {
    font-size: 0.8rem;
  }

  .hero-actions .button-primary,
  .hero-actions .button-secondary,
  .cta-button {
    width: 100%;
  }

  .hero-checks li,
  .page-card,
  .content-card,
  .service-card-large,
  .fleet-card-large,
  .plan-card-large,
  .contact-card-large {
    padding: 20px;
  }

  .page-number {
    min-width: 46px;
    height: 30px;
    font-size: 0.74rem;
  }
}

/* ─── Taxi Home ───────────────────────────────────────────── */

.taxi-home {
  background: #f6f8fc;
}



.taxi-hero {
  position: relative;
  min-height: min(720px, calc(100svh - 93px));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
}

.taxi-hero-bg,
.taxi-hero-shade {
  position: absolute;
  inset: 0;
}

.taxi-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.taxi-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 52, 0.9) 0%, rgba(8, 30, 83, 0.76) 42%, rgba(8, 30, 83, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 18, 52, 0.08) 0%, rgba(5, 18, 52, 0.54) 100%);
}

.taxi-hero-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 38px;
  padding: 64px 0 48px;
}

.taxi-hero-copy {
  max-width: 760px;
}

.taxi-hero-copy .eyebrow,
.taxi-intro .eyebrow,
.how-copy .eyebrow,
.trust-copy .eyebrow,
.corporate-copy .eyebrow,
.final-cta .eyebrow {
  color: var(--yellow-500);
}

.taxi-intro .eyebrow,
.trust-copy .eyebrow,
.corporate-copy .eyebrow {
  color: var(--blue-800);
}

.taxi-hero-copy h1,
.taxi-hero-copy h2,
.taxi-intro h2,
.how-copy h2,
.trust-copy h2,
.corporate-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 0.98;
}

.taxi-hero-copy h1 {
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  letter-spacing: 0;
}

.taxi-hero-copy h2 {
  max-width: 17ch;
  margin-top: 14px;
  font-size: clamp(1.85rem, 3.8vw, 3.7rem);
  line-height: 1.04;
}

.taxi-hero-copy p {
  max-width: 62ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(760px, 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-service-strip span {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
}

.taxi-intro,
.taxi-services,
.how-section,
.trust-section,
.corporate-section,
.final-cta {
  padding: 82px 0;
}

.intro-grid,
.how-grid,
.trust-grid,
.corporate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.taxi-intro .section-heading {
  margin: 0;
}

.taxi-intro h2,
.how-copy h2,
.trust-copy h2,
.corporate-copy h2,
.final-cta h2 {
  color: var(--blue-950);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.02;
}

.intro-copy,
.corporate-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.service-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-feature {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 26px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  transition: background-color 180ms ease, transform 180ms ease;
}

.service-feature:first-child {
  border-left: 1px solid var(--line);
}

.service-feature:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.service-feature span {
  color: var(--blue-800);
  font-weight: 800;
  font-size: 0.84rem;
}

.service-feature h3 {
  margin: auto 0 0;
  color: var(--blue-950);
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.06;
}

.service-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-feature a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-900);
  font-weight: 800;
  transition: gap 160ms ease;
}

.service-feature a::after {
  content: "→";
  transition: transform 160ms ease;
}

.service-feature a:hover::after {
  transform: translateX(4px);
}

.how-section {
  background: #071b4c;
}

.how-media {
  min-height: 520px;
  overflow: hidden;
}

.how-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-copy h2 {
  color: var(--white);
}

.step-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: trip;
}

.step-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
}

.step-list li::before {
  counter-increment: trip;
  content: counter(trip, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--yellow-500);
  color: var(--blue-950);
  font-weight: 800;
  border-radius: 2px;
}

.step-list strong,
.step-list span {
  grid-column: 2;
}

.step-list strong {
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 1.22rem;
}

.step-list span {
  margin-top: -10px;
  line-height: 1.7;
}

.trust-section {
  background: linear-gradient(140deg, var(--blue-950) 0%, var(--blue-900) 65%, var(--blue-800) 100%);
}

.trust-section .trust-copy .eyebrow {
  color: var(--yellow-500);
}

.trust-section .trust-copy h2 {
  color: var(--white);
}

.trust-section .trust-list {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.trust-section .trust-list div {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.trust-section .trust-list strong {
  color: var(--yellow-500);
}

.trust-section .trust-list span {
  color: rgba(255, 255, 255, 0.85);
}

.trust-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.trust-list div {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.trust-list strong {
  color: var(--blue-950);
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
}

.trust-list span {
  color: var(--muted);
  line-height: 1.7;
}

.corporate-section {
  background: #eef3fb;
}

.corporate-copy p {
  margin-top: 22px;
}

.button-secondary.dark {
  color: var(--blue-950);
  border-color: rgba(16, 54, 165, 0.24);
  background: rgba(255, 255, 255, 0.68);
}

.corporate-points {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.corporate-points li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue-950);
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.18rem, 1.9vw, 1.75rem);
  line-height: 1.18;
}

.final-cta {
  background: #06183f;
  color: var(--white);
}

.final-cta-inner {
  max-width: 920px;
}

.final-cta h2 {
  max-width: 15ch;
  color: var(--white);
}

/* ─── Floating WhatsApp Button ───────────────────────────── */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.44);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.58);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ─── Contact Form ───────────────────────────────────────── */

.contact-form-section {
  padding: 82px 0 96px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 40px;
  align-items: start;
}

.form-card {
  padding: 36px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--blue-950);
  line-height: 1.1;
}

.form-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--soft-white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%234d669f' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(60, 105, 240, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 0 28px;
  margin-top: 8px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
  box-shadow: 0 12px 26px rgba(255, 230, 31, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 230, 31, 0.38);
}

.form-submit svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
}

.contact-side-card {
  padding: 22px 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-side-card .cs-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-800);
  margin-bottom: 6px;
}

.contact-side-card .cs-value {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-950);
  line-height: 1.2;
}

.contact-side-card .cs-desc {
  display: block;
  margin-top: 5px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-side-card.wa-card {
  background: linear-gradient(160deg, #1946c8, #0e2e96);
  border-color: transparent;
}

.contact-side-card.wa-card .cs-label {
  color: var(--yellow-400);
}

.contact-side-card.wa-card .cs-value,
.contact-side-card.wa-card .cs-desc {
  color: var(--white);
}

/* ─── Tarifas ─────────────────────────────────────────────── */

.tarifas-section {
  background: #fff;
  padding: 82px 0 96px;
}

.tarifas-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.tarifa-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.tarifa-row span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.tarifa-row strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.22rem;
  color: var(--blue-950);
  white-space: nowrap;
}

/* ─── Taxi responsive ────────────────────────────────────── */

/* ─── Testimonios ─────────────────────────────────────────── */

.testimonios-section {
  padding: 82px 0;
  background: #eef3fb;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.testimonio-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.testimonio-card > p {
  margin: 0;
  color: var(--ink);
  line-height: 1.78;
  font-size: 0.97rem;
}

.testimonio-card > p::before {
  content: "\201C";
  color: var(--blue-700);
  font-size: 1.6rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 3px;
}

.testimonio-card footer {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonio-card footer strong {
  display: block;
  color: var(--blue-950);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
}

.testimonio-card footer span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ─── FAQ ─────────────────────────────────────────────────── */

.faq-section {
  padding: 82px 0 96px;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 100px;
}

.faq-heading h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--blue-950);
  line-height: 1.08;
}

.faq-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item dt {
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--blue-950);
  margin-bottom: 10px;
}

.faq-item dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

@media (max-width: 1080px) {
  .testimonios-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  .testimonios-section,
  .faq-section {
    padding: 66px 0;
  }

  .testimonio-card {
    padding: 22px;
  }
}

@media (max-width: 1080px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px;
    border-radius: 24px;
  }
}

@media (max-width: 520px) {
  .contact-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .taxi-hero {
    min-height: auto;
  }

  .taxi-hero-content {
    padding: 86px 0 56px;
  }

  .intro-grid,
  .how-grid,
  .trust-grid,
  .corporate-grid,
  .service-line {
    grid-template-columns: 1fr;
  }

  .service-line,
  .service-feature,
  .service-feature:first-child {
    border-left: 0;
    border-right: 0;
  }

  .service-feature {
    min-height: 260px;
    border-top: 1px solid var(--line);
  }

  .how-media {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .taxi-hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 18, 52, 0.9) 0%, rgba(5, 18, 52, 0.78) 52%, rgba(5, 18, 52, 0.92) 100%);
  }

  .taxi-hero-content {
    padding: 58px 0 32px;
  }

  .taxi-hero-copy h2,
  .final-cta h2 {
    max-width: 100%;
  }

  .hero-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .taxi-intro,
  .taxi-services,
  .how-section,
  .trust-section,
  .corporate-section,
  .final-cta {
    padding: 66px 0;
  }

  .how-media {
    min-height: 300px;
  }

  .step-list li {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .step-list li::before {
    width: 44px;
    height: 44px;
  }

  .trust-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .taxi-hero-copy h1 {
    font-size: clamp(3.4rem, 20vw, 5.2rem);
  }

  .taxi-hero-copy h2,
  .taxi-intro h2,
  .how-copy h2,
  .trust-copy h2,
  .corporate-copy h2,
  .final-cta h2 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .hero-service-strip {
    grid-template-columns: 1fr;
  }

  .service-feature {
    min-height: 230px;
    padding: 28px 0;
  }

  .wa-float {
    bottom: 20px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }
}
