:root {
  --bg: #101014;
  --bg-soft: #1e2026;
  --surface: rgba(30, 32, 38, 0.84);
  --surface-strong: #262933;
  --text: #fffaf0;
  --muted: #d9d0c0;
  --line: rgba(255, 255, 255, 0.1);
  --primary: #ffb000;
  --primary-strong: #ffd166;
  --accent: #48ca7f;
  --success: #48ca7f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(16, 16, 20, 0.7) 0%, rgba(16, 16, 20, 0.9) 46%, rgba(16, 16, 20, 0.97) 100%),
    linear-gradient(135deg, rgba(255, 176, 0, 0.16), transparent 32%),
    url("./img/skyline.jpg") center bottom / cover fixed no-repeat,
    #101014;
  line-height: 1.6;
}

body.has-overlay-open {
  overflow: hidden;
}

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

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

p,
li {
  color: var(--muted);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(16, 16, 20, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 148px;
  height: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.weather-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.34);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.weather-button:hover,
.weather-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 176, 0, 0.62);
  background: rgba(0, 0, 0, 0.52);
}

.weather-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.weather-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: start;
  justify-content: end;
  padding: 5.75rem 1rem 1rem;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
}

.weather-overlay.is-open {
  display: flex;
}

.booker-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(12px);
}

.booker-overlay.is-open {
  display: flex;
}

.booker-dialog {
  width: min(100%, 1180px);
  max-height: min(92vh, 980px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 176, 0, 0.08), rgba(72, 202, 127, 0.05)),
    rgba(20, 20, 24, 0.98);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booker-dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.2rem 0;
}

.booker-dialog-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.booker-dialog-head p {
  margin: 0.4rem 0 0;
}

.booker-dialog-body {
  padding: 1.2rem;
  overflow: auto;
  max-height: calc(92vh - 110px);
}

.booker-embed-shell {
  min-height: 720px;
  padding: 0.9rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

#taxiapps-web-booker-overlay {
  margin: 0 auto;
}

#taxiapps-web-booker-overlay iframe {
  width: 100% !important;
  min-height: 720px !important;
}

.weather-dialog {
  width: min(100%, 420px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 176, 0, 0.1), rgba(72, 202, 127, 0.06)),
    rgba(20, 20, 24, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.weather-dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.2rem 0;
}

.weather-dialog h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
}

.weather-dialog p {
  margin: 0.3rem 0 0;
}

.weather-close {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.35rem;
  cursor: pointer;
}

.weather-close:hover,
.weather-close:focus-visible {
  border-color: rgba(255, 176, 0, 0.62);
}

.weather-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
}

.weather-big-icon {
  font-size: 3.2rem;
  line-height: 1;
}

.weather-temp {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}

.weather-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0 1.2rem 1.2rem;
}

.weather-detail {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.weather-detail span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.weather-detail strong {
  display: block;
  margin-top: 0.2rem;
}

.weather-note {
  padding: 0.95rem 1.2rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button {
  color: #08111b;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  box-shadow: 0 16px 32px rgba(255, 159, 28, 0.24);
}

.button:hover,
.button:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  transform: translateY(-2px);
}

.button-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.92) 0%, rgba(12, 12, 14, 0.62) 48%, rgba(12, 12, 14, 0.22) 100%),
    url("./img/skyline.jpg") center bottom / cover fixed no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0) 0%, rgba(16, 16, 20, 1) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 4.5rem 0 5rem;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 5.8vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 62ch;
  font-size: 1.06rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.badge {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 22, 35, 0.55);
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.metric {
  padding: 1rem;
  background: rgba(20, 20, 24, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.metric strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.booking-card,
.panel,
.service-card,
.faq-item,
.contact-card,
.highlight-card,
.trust-card,
.hero-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card {
  padding: 1rem;
}

.hero-panel {
  padding: 1.25rem;
}

.hero-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.booking-card-header h2,
.section-head h2,
.panel h2,
.contact-intro h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.booking-card-header p,
.section-head p {
  margin: 0.55rem 0 0;
}

.booking-frame {
  min-height: 720px;
  border-radius: 22px;
  overflow: visible;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.journey-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.pulse-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(72, 202, 127, 0.65);
  animation: pulse 1.7s infinite;
}

.route-ribbon {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffb000;
  color: #161616;
}

.route-track {
  display: flex;
  width: max-content;
  animation: route-scroll 34s linear infinite;
}

.route-track span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 1.75rem;
  font-weight: 900;
  white-space: nowrap;
}

.ride-moments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.moment-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 176, 0, 0.04), rgba(255, 176, 0, 0.14)),
    var(--surface);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.moment-card:hover,
.moment-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 176, 0, 0.55);
}

.moment-card span {
  color: var(--primary-strong);
  font-weight: 900;
}

.moment-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.moment-card p {
  margin: 0;
}

#taxiapps-web-booker {
  margin: 0 auto;
}

#taxiapps-web-booker iframe {
  width: 100% !important;
  min-height: 720px !important;
}

.booker-layout {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.booker-layout .booking-card {
  width: 100%;
}

section {
  padding: 5rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

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

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

.service-card {
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-copy {
  padding: 1.35rem;
}

.service-copy h3,
.highlight-card h3,
.faq-item summary {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.service-copy p,
.highlight-card p {
  margin-bottom: 0;
}

.service-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--primary-strong);
  font-weight: 800;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1.25rem;
}

.panel {
  padding: 1.5rem;
}

.panel ul,
.contact-card ul,
.service-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.service-list li,
.contact-card li,
.faq-item li {
  margin-bottom: 0.55rem;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.areas span,
.client-pill {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  color: var(--text);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.client-logo {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.client-logo img {
  max-height: 70px;
  object-fit: contain;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.link-card:hover,
.service-card:hover,
.contact-card:hover,
.faq-item:hover {
  border-color: rgba(255, 176, 0, 0.42);
}

.link-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.store-badges img {
  width: 180px;
  max-width: 45%;
}

.highlight-card {
  padding: 1.35rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1rem 1.15rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.85rem 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 360px);
  gap: 1.25rem;
}

.contact-card {
  padding: 1.35rem;
}

.contact-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.cta-band {
  padding-top: 0;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 340px);
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.16), rgba(72, 202, 127, 0.08)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes route-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(72, 202, 127, 0.65);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(72, 202, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(72, 202, 127, 0);
  }
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

.page-hero {
  padding: 4.5rem 0 2rem;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.16), rgba(16, 16, 20, 0.86));
}

.page-hero .panel {
  padding: 2rem;
}

.small-note {
  font-size: 0.92rem;
}

.callout {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 1050px) {
  .hero-grid,
  .split-panel,
  .contact-layout,
  .cta-shell,
  .booker-layout {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .highlights,
  .ride-moments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(4, 16, 26, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-cta {
    flex-direction: column;
  }

  .weather-button {
    margin-left: auto;
    padding-inline: 0.75rem;
  }

  .weather-label {
    display: none;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .metrics,
  .highlights,
  .ride-moments,
  .link-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 3rem;
  }

  .footer-shell {
    flex-direction: column;
    align-items: start;
  }

  .booker-overlay {
    padding: 0.75rem;
  }

  .booker-dialog {
    max-height: 94vh;
  }

  .booker-dialog-body {
    padding: 0.85rem;
    max-height: calc(94vh - 100px);
  }

  .booker-embed-shell {
    min-height: 620px;
    padding: 0.4rem;
  }
}
