/* Base reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
  line-height: 1.5;
}

/* Color system */
:root {
  --bg-body: #f8fafc;
  --bg-elevated: #ffffff;
  --bg-soft: #f1f5f9;
  --bg-accent: #0f172a;

  --primary: #0ea5e9;
  --primary-soft: rgba(14, 165, 233, 0.1);
  --primary-deep: #0369a1;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-soft: #e2e8f0;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}

.section-light {
  background-color: #f1f5f9;
}

.section-accent {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #e5e7eb;
}

/* Utility */
.hidden {
  display: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #22c55e, #0ea5e9);
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #0f172a;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.main-nav a:hover {
  background-color: var(--primary-soft);
  color: var(--primary-deep);
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #f9fafb;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background-color: transparent;
  color: #0f172a;
  border-color: rgba(148, 163, 184, 0.8);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-deep);
}

.btn-soft {
  background-color: var(--primary-soft);
  color: var(--primary-deep);
  border-color: transparent;
}

.btn-soft:hover {
  background-color: rgba(14, 165, 233, 0.2);
}

.btn-wide {
  width: 100%;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top left, #e0f2fe, #f8fafc 50%, #f1f5f9 80%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(1.9rem, 3vw + 1rem, 2.7rem);
  line-height: 1.15;
  margin: 0;
  color: #020617;
}

.hero-copy .highlight {
  color: var(--primary-deep);
}

.hero-subtitle {
  margin-top: 1.1rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-flags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.flag-item {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.flag-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
}

.flag-value {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Hero card / panel */
.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background-color: var(--bg-elevated);
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
  width: 100%;
  max-width: 360px;
}

.hero-card h2 {
  margin: 0 0 0.9rem;
  font-size: 1.1rem;
}

/* Forms */
.booking-form {
  margin-top: 0.3rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.8rem;
}

.form-row-half {
  flex-direction: row;
  gap: 0.75rem;
}

.form-row-half > div {
  flex: 1;
}

.form-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.form-input {
  border-radius: 0.75rem;
  border: 1px solid var(--border-soft);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background-color: #f9fafb;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.18);
  background-color: #ffffff;
}

.form-input::placeholder {
  color: #94a3b8;
}

textarea.form-input {
  resize: vertical;
}

.form-hint {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Booking summary & fare */
.booking-summary {
  border-radius: 1rem;
  background-color: #f1f5f9;
  padding: 0.8rem 0.9rem;
  margin-bottom: 0.9rem;
}

.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.5);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.summary-value {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
}

.fare-box {
  border-radius: 1rem;
  background-color: #f8fafc;
  border: 1px dashed rgba(148, 163, 184, 0.9);
  padding: 0.8rem 0.9rem;
  margin-bottom: 1rem;
}

.fare-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.fare-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-deep);
}

.fare-note {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Section headers */
.section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.section-header p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Card & grid */
.card {
  background-color: var(--bg-elevated);
  border-radius: 1rem;
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.card-soft {
  background-color: #f8fafc;
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.benefit-card p {
  font-size: 0.9rem;
}

/* Pill grid */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.86rem;
  color: #0f172a;
  background-color: #f8fafc;
}

/* Areas */
.areas-layout {
  display: grid;
  gap: 1.7rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: flex-start;
}

.areas-copy h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.areas-copy ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.areas-note {
  margin-top: 0.75rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}

.step {
  background-color: var(--bg-elevated);
  border-radius: 1rem;
  padding: 1.2rem 1.2rem 1.1rem;
  border: 1px solid var(--border-soft);
  position: relative;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Drivers */
.drivers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
}

.drivers-block ul {
  margin: 0 0 0.9rem 1.2rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.drivers-note {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 640px;
}

.faq-item {
  margin-bottom: 0.75rem;
  border-radius: 0.9rem;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  padding: 0.5rem 0.9rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 0.2rem 0.2rem 0.2rem 0;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.35rem 0 0.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact */
.contact-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.contact-inner h2 {
  margin: 0 0 0.55rem;
  font-size: 1.4rem;
}

.contact-inner p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 30rem;
  color: #e5e7eb;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: min(280px, 100%);
}

.contact-email {
  font-size: 0.9rem;
  color: #cbd5f5;
  text-decoration: none;
  text-align: center;
}

.contact-email:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background-color: #020617;
  color: #9ca3af;
  padding: 1.8rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-left {
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-left .brand-name {
  color: #e5e7eb;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.footer-tagline {
  color: #e5e7eb;
}

.footer-note {
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-links a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-meta {
  align-self: flex-end;
  color: #6b7280;
}

/* Responsive tweaks */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .nav-cta {
    display: none;
  }

  .section-header {
    text-align: left;
  }

  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-flags {
    flex-direction: column;
  }

  .areas-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .drivers-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    justify-content: flex-start;
  }

  .main-nav a {
    padding-inline: 0.25rem;
  }

  .form-row-half {
    flex-direction: column;
  }
}
