/* Light default – warm red accent; use --accent for primary CTAs, --accent-soft for hover/links. */
:root {
  --bg: #f7f9fb;
  --paper: #ffffff;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #5b6573;
  --accent: #e24b3c;
  --accent-soft: #0f6b72;
  --border: rgba(17, 24, 39, 0.08);
  --shadow: 0 22px 60px rgba(12, 16, 26, 0.12);
  --page-width: min(1140px, calc(100% - 32px));
  /* Shared accent for chips/buttons (matches primary accent) */
  --brand-gold: #e24b3c;
}

:root[data-theme="dark-charcoal"] {
  --bg: #0f1218;
  --paper: #161a23;
  --panel: #141a26;
  --ink: #f1f3f8;
  --muted: #9ba1ad;
  --accent: #e24b3c;
  --accent-soft: #3fa7a5;
  --border: rgba(241, 243, 248, 0.1);
  --shadow: 0 24px 70px rgba(5, 6, 10, 0.55);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 18% 18%, rgba(15, 107, 114, 0.05), transparent 32%),
              radial-gradient(circle at 82% 0%, rgba(226, 75, 60, 0.06), transparent 26%),
              var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

html {
  scroll-padding-top: 110px;
  scroll-behavior: smooth;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  width: var(--page-width);
  margin: 10px auto 0;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(12, 16, 26, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.brand-logo {
  width: 40px;
  height: auto;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.logo-badge {
  width: 50%;
  height: 140px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--paper) 60%, transparent);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  padding: 4px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.logo-badge .brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.small-lockup {
  margin-bottom: 10px;
}

.logo-lockup.small-lockup .logo-badge {
  width: 50%;
  height: 140px;
  background: color-mix(in srgb, var(--paper) 60%, transparent);
  border: 1px solid var(--border);
  padding: 4px;
}

.logo-lockup.small-lockup .brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-lockup.small-lockup .logo-text strong {
  font-size: 17px;
}

.logo-lockup.small-lockup .logo-text span {
  font-size: 17px;
  display: block;
}

.contact-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin-top: 10px;
}

.contact-strip .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: transparent;
  border: 2px solid var(--brand-gold, #e24b3c);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  min-width: 42px;
}

.icon-chip {
  font-size: 18px;
  line-height: 1;
  padding: 8px 10px;
}

.number-chip {
  flex: 1 1 auto;
  text-align: center;
}

.logo-text strong {
  display: block;
  font-family: "DM Serif Display", "Times New Roman", serif;
  font-size: 18px;
}

.logo-text span {
  color: var(--muted);
  font-size: 13px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 17px;
  letter-spacing: 0.01em;
}

.brand-text span {
  color: var(--muted);
  font-size: 13px;
}

.nav-inline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-weight: 600;
  flex: 1;
}

.nav-inline a {
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-inline a:hover {
  background: rgba(15, 107, 114, 0.08);
  color: var(--accent-soft);
}

.nav-inline .nav-quote {
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(12, 16, 26, 0.08);
  background: var(--panel);
}

.nav-cta {
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(14, 18, 28, 0.08);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--paper);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.theme-toggle .icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--paper);
  display: none;
  place-items: center;
  cursor: pointer;
}

.menu-icon {
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  border-radius: 999px;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  padding: clamp(32px, 7vw, 56px) 0 38px;
  align-items: flex-start;
  width: var(--page-width);
  margin: 0 auto;
  scroll-margin-top: 90px;
}

.hero h1 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(36px, 3vw + 10px, 52px);
  line-height: 1.08;
  margin: 12px 0 10px;
  letter-spacing: -0.01em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--accent-soft);
  font-size: 12px;
  margin: 0;
}

.lede {
  color: var(--muted);
  margin: 12px 0 20px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 30%, transparent);
}

.btn.ghost {
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
}

.btn.link {
  background: none;
  color: var(--accent-soft);
  padding-left: 0;
  padding-right: 0;
}

.btn.full {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(12, 16, 26, 0.08);
  padding: 18px;
  border-left: 3px solid var(--accent-soft);
}

.card-header p {
  color: var(--muted);
  margin: 0;
}

.card-header strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.card-body ul {
  margin: 12px 0 16px;
  padding-left: 18px;
  color: var(--muted);
}

.home-cta {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 12px;
}

.home-cta-row1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}

.home-cta-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.home-cta-row3 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  max-height: 200px;
}

.card-cta {
  padding: 14px;
  border-radius: 12px;
  background: rgba(15, 107, 114, 0.05);
  border: 1px solid var(--border);
  width: 100%;
}

.card-cta p {
  margin: 0 0 10px;
  font-weight: 700;
}

.section {
  padding: clamp(28px, 6vw, 48px) 0;
  width: var(--page-width);
  margin: 0 auto;
  scroll-margin-top: 90px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.section-heading h2 {
  margin: 6px 0 10px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 16px;
  align-items: stretch;
}

.card, .map-card, .rate-card, .quote-card, .fare-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(12, 16, 26, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card h3, .map-card h3, .rate-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 107, 114, 0.12);
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 12px;
}

.services-grid .card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.services-grid .card .tag {
  margin-top: auto;
  align-self: center;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  color: var(--muted);
}

.list li {
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}

.list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-soft);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

.map-card {
  display: grid;
  gap: 10px;
}

.map-embed {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(226, 75, 60, 0.08) 0%, rgba(15, 107, 114, 0.06) 40%, transparent 60%);
}

.map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.fleet .card {
  border-top: 3px solid rgba(15, 107, 114, 0.25);
}

.rate-card .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.rate-card .chips .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  border: 1px solid var(--brand-gold, #e24b3c);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.quote {
  background: color-mix(in srgb, var(--accent-soft) 6%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote .section-heading {
  padding: 0 6px 4px;
  margin-bottom: 8px;
  gap: 8px;
}

.quote .section-heading .lede {
  margin: 0;
}

.quote.is-collapsed .quote-form {
  display: none;
}

.quote .quote-collapsed-cta {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.quote.is-collapsed .quote-collapsed-cta {
  display: flex;
  flex-wrap: wrap;
}

.quote-form {
  margin-top: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}

input, textarea, select {
  background: rgba(15, 107, 114, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(15, 107, 114, 0.4);
  border-color: rgba(15, 107, 114, 0.4);
}

textarea {
  resize: vertical;
}

.assist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin: 12px 0 6px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 107, 114, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}

.checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-soft);
}

.inline-note {
  margin: 6px 0 0;
  flex: 1 1 100%;
  color: var(--muted);
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

.testimonials .quote-card {
  border-left: 4px solid rgba(15, 107, 114, 0.35);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 12px;
}

.quote-card p {
  margin: 0;
}

.quote-card span {
  margin-top: auto;
  align-self: center;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 107, 114, 0.12);
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 13px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  color: var(--muted);
}

.faq-grid h3 {
  margin: 0 0 6px;
  color: var(--ink);
}

.faq-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  align-items: flex-start;
  justify-content: space-between;
}

.top-destinations .card ul.list {
  margin: 0;
}

.group-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
}

.group-cta .small {
  margin: 0;
}

.faq-card .group-cta {
  align-self: flex-start;
}

.faq-card ul.list {
  flex: 1;
  margin-bottom: 0;
  width: 100%;
}

.faq-card .group-cta {
  margin-top: 0;
  width: 100%;
  align-self: flex-start;
}

.photo-section {
  position: relative;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: auto;
  background: #0b0d12;
  aspect-ratio: 4 / 3;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(180deg, rgba(15, 18, 26, 0) 0%, rgba(15, 18, 26, 0.82) 80%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.caption strong {
  font-size: 16px;
}

.caption span {
  font-size: 13px;
  color: #d9e2ee;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 18, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
  backdrop-filter: blur(6px);
}

.lightbox[data-open] {
  display: flex;
}

.lightbox-dialog {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  max-width: min(960px, 100%);
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.lightbox-header h3 {
  margin: 0;
  font-size: 16px;
}

.lightbox-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.lightbox-body {
  position: relative;
  background: #0b0d12;
}

.lightbox-body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  padding: 12px 14px 14px;
  background: var(--panel);
  border-top: 1px solid var(--border);
}

.lightbox-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 22px 18px 26px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  width: var(--page-width);
  margin: 0 auto;
  box-shadow: 0 10px 26px rgba(12, 16, 26, 0.08);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-drawer {
  position: fixed;
  inset: 70px 0 0 0;
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  border-top: 1px solid var(--border);
  display: none;
  padding: 16px;
  gap: 10px;
  z-index: 15;
  box-shadow: 0 18px 34px rgba(12, 16, 26, 0.12);
}

.nav-drawer[data-open] {
  display: grid;
}

.nav-drawer a {
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(15, 107, 114, 0.05);
  font-weight: 700;
}

.nav-drawer .nav-cta {
  justify-content: center;
}

body.nav-open {
  overflow: hidden;
}

.btn.compact {
  padding: 10px 12px;
}

@media (min-width: 1041px) {
  .nav-drawer {
    display: none !important;
  }
}

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

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

@media (max-width: 1040px) {
  .topbar {
    width: 100%;
    border-radius: 0;
    margin: 0;
    padding: 12px 16px;
  }

  .nav-inline {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .topbar-actions {
    margin-left: auto;
  }

  .nav-drawer {
    inset: 68px 0 0 0;
  }
}

@media (max-width: 720px) {
  .theme-toggle {
    display: none;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .photo-card {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero {
    padding: 40px 0 32px;
    gap: 20px;
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: 32px;
  }

  .section {
    padding: 36px 0;
    width: calc(100% - 32px);
  }

  .card-body.two-col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-cta-row1 {
    grid-template-columns: 1fr;
  }

  .home-cta-row2 {
    grid-template-columns: 1fr;
  }

  .card,
  .map-card,
  .rate-card,
  .quote-card,
  .fare-card {
    padding: 14px;
  }

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

  .form-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 540px) {
  .brand-logo {
    width: 34px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .nav-drawer {
    inset: 64px 0 0 0;
  }

  .logo-lockup.small-lockup {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-lockup.small-lockup .logo-badge {
    width: 100%;
  }

  .logo-lockup.small-lockup .logo-text {
    text-align: center;
  }

  .logo-lockup.small-lockup .logo-text span {
    display: inline-block;
    font-size: 13px;
  }
}
