﻿:root {
  --taxi-yellow: #ffd400;
  --taxi-yellow-soft: #ffe86a;
  --taxi-black: #070707;
  --taxi-ink: #171717;
  --taxi-charcoal: #272727;
  --taxi-muted: #6a6f75;
  --taxi-smoke: #f4f4f1;
  --taxi-panel: #ffffff;
  --taxi-line: rgba(7, 7, 7, 0.14);
  --taxi-shadow: 0 20px 60px rgba(7, 7, 7, 0.18);
}

html {
  font-size: 16px;
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--taxi-ink);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  background: linear-gradient(180deg, #111 0, #111 17rem, #f2f2ee 17rem, #fbfbf8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(135deg, rgba(255, 212, 0, 0.08) 0 10px, transparent 10px 24px);
  opacity: 0.18;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.site-header {
  position: relative;
  z-index: 4;
}

.site-navbar {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 212, 0, 0.26);
  background: rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(12px);
}

.taxi-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  color: #fff;
  text-decoration: none;
}

.taxi-brand:hover,
.taxi-brand:focus {
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  min-height: 2.7rem;
  padding: 0 0.8rem;
  border-radius: 6px;
  color: #050505;
  background: var(--taxi-yellow);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 0 30px rgba(255, 212, 0, 0.28);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand-copy small {
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  font-weight: 700;
}

.navbar-toggler {
  border-color: rgba(255, 212, 0, 0.45);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(255, 212, 0, 0.26);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar-nav {
  gap: 0.25rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link:focus {
  color: #050505;
  background: var(--taxi-yellow);
}

.section-label {
  margin-bottom: 0.75rem;
  color: var(--taxi-yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: stretch;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 212, 0, 0.12) 0 1px, transparent 1px 80px),
    radial-gradient(circle at 78% 28%, rgba(255, 212, 0, 0.3), transparent 30rem),
    linear-gradient(118deg, #030303 0%, #111 46%, #2a2606 72%, #ffd400 145%);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: repeating-linear-gradient(135deg, var(--taxi-yellow) 0 24px, var(--taxi-black) 24px 48px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 2rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-copy h1,
.section-heading h2,
.route-panel h2,
.services-intro h1,
.service-card h2,
.contact-hero h1,
.contact-card h2,
.map-card h2,
.reviews-section h2 {
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 12ch;
  margin: 0 0 1.2rem;
  font-size: clamp(2.65rem, 6vw, 5.3rem);
  text-transform: uppercase;
}

.hero-lead {
  max-width: 43rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.hero-actions,
.appointment-actions,
.services-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 2rem;
}

.btn-taxi,
.btn-outline-taxi,
.btn-outline-dark-taxi,
.inline-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.78rem 1.25rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-taxi {
  border: 1px solid var(--taxi-yellow);
  color: #050505;
  background: var(--taxi-yellow);
  box-shadow: 0 14px 34px rgba(255, 212, 0, 0.25);
}

.btn-taxi:hover,
.btn-taxi:focus {
  color: #050505;
  background: var(--taxi-yellow-soft);
  border-color: var(--taxi-yellow-soft);
}

.btn-outline-taxi {
  border: 1px solid rgba(255,255,255,0.42);
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.btn-outline-taxi:hover,
.btn-outline-taxi:focus {
  color: #050505;
  border-color: var(--taxi-yellow);
  background: var(--taxi-yellow);
}

.btn-outline-dark-taxi {
  border: 1px solid rgba(7,7,7,0.36);
  color: #050505;
  background: rgba(7,7,7,0.04);
}

.btn-outline-dark-taxi:hover,
.btn-outline-dark-taxi:focus {
  color: #050505;
  border-color: var(--taxi-yellow);
  background: var(--taxi-yellow);
}

.hero-photo {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, 0.24);
  border-radius: 8px;
  background: #090909;
  box-shadow: var(--taxi-shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero-photo-caption {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(7,7,7,0.72), #050505);
}

.hero-photo-caption span,
.hero-photo-caption strong {
  display: block;
}

.hero-photo-caption span,
.business-facts dt,
.contact-list dt,
.compliance-strip span {
  color: var(--taxi-yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-photo-caption strong {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.18;
}

.section-band,
.split-section,
.compliance-strip,
.services-intro,
.services-list-section,
.contact-hero,
.contact-grid,
.reviews-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.35rem;
}

.section-heading h2,
.route-panel h2,
.services-intro h1,
.contact-hero h1,
.reviews-section h2 {
  font-size: clamp(2rem, 4.2vw, 3.65rem);
}

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

.feature-card,
.route-panel,
.details-panel,
.service-card,
.contact-card,
.map-card,
.contact-hero,
.services-intro,
.appointment-hero,
.appointment-form {
  border: 1px solid var(--taxi-line);
  border-radius: 8px;
  box-shadow: var(--taxi-shadow);
}

.feature-card,
.service-card,
.map-card,
.contact-hero,
.services-intro,
.appointment-form,
.details-panel {
  background: var(--taxi-panel);
}

.feature-card,
.service-card {
  padding: 1.5rem;
  border-top: 5px solid var(--taxi-yellow);
}

.feature-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  font-weight: 950;
}

.feature-card span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--taxi-muted);
  font-size: 0.8rem;
  font-weight: 950;
}

.feature-card p,
.route-panel p,
.services-intro p,
.contact-hero p,
.map-card p,
.service-list p {
  color: #596168;
}

.reviews-section {
  overflow: hidden;
  padding: 4rem 0;
  color: #fff;
  background: #080808;
}

.reviews-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.review-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 1.2rem 1rem;
  animation: review-scroll 34s linear infinite;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  width: min(23rem, 82vw);
  flex: 0 0 auto;
  padding: 1.3rem;
  border: 1px solid rgba(255, 212, 0, 0.32);
  border-radius: 8px;
  background: linear-gradient(180deg, #161616, #0d0d0d);
}

.review-card span {
  color: var(--taxi-yellow);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.review-card h3 {
  margin: 0.55rem 0;
  font-size: 1.2rem;
  font-weight: 950;
}

.review-card p {
  margin: 0;
  color: rgba(255,255,255,0.76);
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.route-panel {
  padding: 2rem;
  color: #fff;
  background:
    repeating-linear-gradient(135deg, rgba(255, 212, 0, 0.12) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #080808, #1b1b1b);
}

.route-panel p {
  color: rgba(255,255,255,0.74);
}

.inline-contact {
  margin-top: 1rem;
  color: #050505;
  background: var(--taxi-yellow);
}

.details-panel {
  padding: 1.6rem;
}

.business-facts,
.contact-list,
.service-list,
.service-sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-facts {
  display: grid;
  gap: 1rem;
}

.business-facts div,
.contact-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--taxi-line);
}

.business-facts div:last-child,
.contact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.business-facts dd,
.contact-list dd {
  margin: 0;
}

.business-facts a,
.contact-list a {
  color: inherit;
  text-decoration: none;
}

.business-facts a:hover,
.contact-list a:hover,
.business-facts a:focus,
.contact-list a:focus {
  text-decoration: underline;
}

.compliance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--taxi-line);
  border: 1px solid var(--taxi-line);
}

.compliance-strip div {
  padding: 1.3rem;
  background: #fff;
}

.compliance-strip strong {
  display: block;
  margin-top: 0.25rem;
}

.services-intro,
.contact-hero,
.appointment-hero {
  padding: 2rem;
}

.services-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.services-intro-copy {
  max-width: 50rem;
}

.services-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-card-header {
  padding-bottom: 1rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--taxi-line);
}

.service-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.service-category-description {
  margin: 0.75rem 0 0;
  color: #596168;
}

.service-list > li {
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(7,7,7,0.18);
}

.service-list > li:last-child {
  border-bottom: 0;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
  font-weight: 950;
}

.service-price {
  color: #806600;
  white-space: nowrap;
}

.service-sublist {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  padding-left: 1rem;
  border-top: 1px solid var(--taxi-line);
}

.service-sublist li + li {
  margin-top: 0.8rem;
}

.alert {
  border-radius: 8px;
}

.appointment-hero {
  margin-top: 4rem;
  color: #fff;
  background:
    repeating-linear-gradient(135deg, rgba(255, 212, 0, 0.10) 0 1px, transparent 1px 18px),
    linear-gradient(118deg, #050505 0%, #111 52%, #2d2705 80%, #ffd400 150%);
}

.appointment-hero h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  font-weight: 950;
  line-height: 1.03;
  text-transform: uppercase;
}

.appointment-hero p:last-child {
  max-width: 46rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.appointment-shell {
  margin-top: 1rem;
  margin-bottom: 4rem;
}

.appointment-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.form-section {
  padding: 1.35rem;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7f7f2);
}

.form-section-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-section-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  color: #050505;
  background: var(--taxi-yellow);
  font-size: 0.78rem;
  font-weight: 950;
}

.form-section-heading h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 950;
}

.appointment-form .form-label {
  color: #394247;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-form .form-control,
.appointment-form .form-select {
  min-height: 3rem;
  border-color: rgba(7, 7, 7, 0.18);
  border-radius: 8px;
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
  border-color: var(--taxi-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 212, 0, 0.22);
}

.appointment-date-picker {
  position: relative;
}

.appointment-date-toggle {
  text-align: left;
}

.appointment-date-popover {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.35rem);
  left: 0;
  width: min(21rem, calc(100vw - 2rem));
  padding: 0.8rem;
  color: #fff;
  background: var(--taxi-black);
  border: 1px solid rgba(255, 212, 0, 0.38);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(7, 7, 7, 0.34);
}

.appointment-date-header {
  display: grid;
  grid-template-columns: 2.4rem 1fr 2.4rem;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  text-align: center;
}

.appointment-date-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  font-weight: 950;
}

.appointment-date-nav:hover,
.appointment-date-nav:focus {
  color: #050505;
  border-color: var(--taxi-yellow);
  background: var(--taxi-yellow);
}

.appointment-date-weekdays,
.appointment-date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.appointment-date-weekdays {
  margin-bottom: 0.35rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.68rem;
  font-weight: 850;
  text-align: center;
}

.appointment-date-spacer,
.appointment-date-day {
  aspect-ratio: 1;
}

.appointment-date-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  font-weight: 950;
}

.appointment-date-day:hover:not(:disabled),
.appointment-date-day:focus:not(:disabled) {
  color: #050505;
  border-color: var(--taxi-yellow);
  background: var(--taxi-yellow);
}

.appointment-date-day.is-selected {
  border-color: var(--taxi-yellow);
  color: #050505;
  background: var(--taxi-yellow);
}

.appointment-date-day.is-unavailable,
.appointment-date-day:disabled {
  color: rgba(255,255,255,0.32);
  cursor: not-allowed;
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  text-decoration: line-through;
}

.appointment-actions {
  justify-content: flex-end;
}

.contact-hero p:last-child,
.services-intro p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
}

.contact-card {
  padding: 2rem;
  color: #fff;
  background: var(--taxi-black);
}

.contact-card h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

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

.contact-list div {
  border-bottom-color: rgba(255,255,255,0.12);
}

.contact-list dd {
  color: rgba(255,255,255,0.82);
}

.contact-list a {
  color: #fff;
}

.map-card {
  overflow: hidden;
}

.map-card-header {
  padding: 1.6rem 1.6rem 1rem;
}

.map-embed {
  padding: 0 1rem 1rem;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(7,7,7,0.12);
  color: #4d5559;
  background: #fff;
  font-size: 0.94rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--taxi-ink);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.footer-credit-logo {
  height: 2.28em;
  width: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .hero-grid,
  .summary-grid,
  .split-section,
  .compliance-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .services-intro,
  .reviews-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  body {
    background: linear-gradient(180deg, #111 0, #111 13rem, #f2f2ee 13rem, #fbfbf8 100%);
  }

  .brand-mark {
    min-width: 4.1rem;
    min-height: 2.35rem;
    font-size: 0.94rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .hero-grid {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .hero-photo img {
    min-height: 300px;
  }

  .hero-actions,
  .appointment-actions,
  .services-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-band,
  .split-section,
  .compliance-strip,
  .services-intro,
  .services-list-section,
  .appointment-hero,
  .appointment-shell,
  .contact-hero,
  .contact-grid,
  .reviews-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .reviews-section {
    padding: 2rem 0;
  }

  .feature-card,
  .route-panel,
  .details-panel,
  .services-intro,
  .service-card,
  .appointment-hero,
  .appointment-form,
  .form-section,
  .contact-hero,
  .contact-card,
  .map-card-header {
    padding: 1.2rem;
  }

  .service-meta {
    flex-direction: column;
    gap: 0.15rem;
  }

  .map-embed iframe {
    min-height: 320px;
  }
}
