/* MODERN RESET & VARIABLES */
:root {
  --primary: #0ea5e9;
  /* Sky Blue */
  --primary-dark: #0284c7;
  /* Darker Blue */
  --accent: #34d399;
  /* Green Accent */
  --text-dark: #0f172a;
  /* Dark Slate */
  --text-light: #64748b;
  /* Muted Slate */
  --bg-light: #f8fafc;
  /* Very Light Gray */
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --font-main: 'Inter', sans-serif;
}

[data-theme="dark"] {
  /* Restoring Original Dark Mode Palette */
  --primary: #06b6d4;
  /* Cyan-500 */
  --primary-dark: #0e7490;
  /* Cyan-700 */
  --accent: #a7f3d0;
  /* Health-200 */
  --text-dark: #f1f5f9;
  /* Slate-100 */
  --text-light: #94a3b8;
  /* Slate-400 */
  --bg-light: #041627;
  /* Deep Navy (Original BG) */
  --white: #0b2233;
  /* Dark Blue (Original Surface) */
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 18px;
  /* Larger base font for accessibility */
  background-color: var(--white);
}

/* UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--bg-light);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-blue {
  background-color: var(--primary);
  color: var(--white);
}

.text-white {
  color: var(--white);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
  padding: 16px 0;
}

.site-header .container {
  max-width: 100%;
  padding: 0 32px;
}

[data-theme="dark"] .site-header {
  background: #020c1b;
  /* Match Footer Dark Mode BG */
  border-bottom: 1px solid #1e293b;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
}

.main-nav {
  display: none;
  /* Hidden on mobile */
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
  }

  .main-nav a:hover {
    color: var(--primary);
  }
}

.header-cta {
  display: inline-block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.header-phones {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Restored Button Styling for Phones */
.secondary-phone {
  font-size: 1rem;
  padding: 12px 24px;
  /* Match primary btn padding */
}

/* Simplified Phone Styling */
.header-phone-link {
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.header-phone-link:hover {
  background: var(--bg-light);
  color: var(--primary);
}

[data-theme="dark"] .header-phone-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: background 0.2s;
}

.header-panel {
  position: absolute;
  top: 72px;
  right: 24px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  width: 120px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 1001;
  align-items: center;
}

.header-panel.open {
  display: flex;
}

.header-panel .panel-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: center;
}

.header-panel .panel-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  width: 100%;
  font-size: 1rem;
}

.header-hamburger.open span {
  background: var(--primary);
}

.panel-divider {
  border: 0;
  border-top: 1px solid #e2e8f0;
  width: 100%;
  margin: 8px 0;
}

.panel-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.panel-toggle-btn {
  background: none;
  border: none;
  color: var(--text-dark);
  text-align: center;
  font-weight: 600;
  padding: 0;
  font-size: 1rem;
}

.panel-divider {
  border: 0;
  border-top: 1px solid #e2e8f0;
  width: 100%;
  margin: 8px 0;
}

.panel-pricing {
  width: 100%;
}

.panel-pricing .panel-nav-menu {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  background: var(--white);
  display: none;
  box-shadow: var(--shadow);
}

.panel-pricing.open .panel-nav-menu {
  display: block;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0 12px;
  height: 36px;
  font-weight: 700;
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.main-nav.open {
  display: flex;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.main-nav.open a {
  color: var(--text-dark);
  font-weight: 700;
}

[data-theme="dark"] .main-nav.open {
  background: #041627;
  border-color: #1e293b;
}

[data-theme="dark"] .main-nav.open a {
  color: var(--text-dark);
}

/* HERO SECTION */
.hero {
  padding: 60px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.badge {
  display: inline-block;
  background-color: var(--bg-light);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.verified-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.verified-icon svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 800;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-bottom: 32px;
}

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

.cta-uniform {
  padding: 12px 20px;
  font-weight: 700;
  min-width: 180px;
  text-align: center;
}

.hero-overview {
  margin-bottom: 32px;
}


.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

/* PLACEHOLDERS */
.placeholder-box {
  background-color: #e0f2fe;
  /* Light Blue */
  border: 2px dashed #7dd3fc;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 600;
  text-align: center;
}

.hero-placeholder {
  width: 100%;
  height: 400px;
}

.card-img-placeholder {
  width: 100%;
  height: 200px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-light);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.fleet-placeholder {
  width: 100%;
  height: 150px;
  margin-bottom: 12px;
}

/* SERVICES */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 32px;
}

.services-grid-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-body {
  padding: 24px;
}

.icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-light);
  font-size: 1rem;
}

.service-pricing {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* WHY CHOOSE US */
.why-grid {
  display: grid;
  gap: 48px;
}

.why-section {
  background: var(--bg-light);
  color: var(--text-dark);
}

.why-section .why-content h2 {
  text-align: center;
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
}

.feature-list {
  list-style: none;
  margin-top: 24px;
}

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

.feature-list li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-box {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  color: var(--text-light);
  font-weight: 600;
}

/* TESTIMONIALS */
.testimonials-alt {
  background: var(--bg-light);
}

.testimonials-alt .section-header {
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 16px;
  opacity: 0.9;
}

.author {
  font-weight: 700;
}

/* BOOKING */
.booking-split {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .booking-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

.booking-option {
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
}

.booking-option.private {
  border: 2px solid #0ea5e9;
  background: #03152b;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(3, 21, 43, 0.4);
}

.booking-option.private h3 {
  color: var(--white);
}

.booking-option.private p {
  color: #cbd5f5;
}

.booking-option.private .booking-copy {
  margin: 8px 0 24px;
  font-size: 1.05rem;
}

.booking-option.private .hero-numbers {
  justify-content: flex-start;
}

.contact-buttons {
  margin-top: 0;
}

.booking-option.private .btn-outline {
  border-color: rgba(14, 165, 233, 0.8);
  color: #0ea5e9;
  background: transparent;
}

.booking-option.private .btn-primary {
  background: #0ea5e9;
  color: #03152b;
}

.contact-buttons .btn {
  min-width: 220px;
}

.mtm-btn {
  margin: 0;
}

.insurance-body {
  margin-bottom: 12px;
}

.insurance-steps {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #e0f2ff;
  font-weight: 500;
}

.insurance-steps li {
  margin-bottom: 12px;
  line-height: 1.4;
}

.how-to-title {
  margin-top: 16px;
  font-weight: 600;
  color: #94d7ff;
}

.insurance-cta {
  margin-top: 8px;
}

.dispatch-numbers {
  margin: 12px 0 16px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 20px 0;
}

.vehicle-card {
  background: #041b32;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(14, 165, 233, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.pricing-info {
  color: #e0f2ff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.tag-pill {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: #0ea5e9;
  color: #03152b;
  text-transform: none;
}

.pricing-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.pricing-card {
  background: #041b32;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(14, 165, 233, 0.5);
}

.pricing-card-full {
  display: grid;
  gap: 8px;
}

.pricing-card h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.pricing-card .pricing-info {
  color: #e0f2ff;
  font-size: 1.05rem;
  font-weight: 600;
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.tag {
  background: var(--primary);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.phone-display {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-display a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 2px solid var(--primary);
  background: var(--white);
}

[data-theme="dark"] .phone-display a {
  color: var(--text-dark);
  background: #0b2233;
  border-color: #0e7490;
}

.or {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
}

.note {
  font-size: 0.9rem;
  color: var(--text-light);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 16px;
  border: 2px solid var(--primary);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone-link:hover {
  color: var(--primary);
}

[data-theme="dark"] .phone-link {
  color: var(--text-dark);
  background: #0b2233;
  border-color: #0e7490;
}

[data-theme="dark"] .phone-link:hover {
  color: var(--primary);
}

.booking-steps {
  margin: 16px 0;
  padding-left: 18px;
  color: var(--text-dark);
}

.booking-steps li {
  margin-bottom: 8px;
}

/* COVERAGE & FLEET */
.coverage-grid {
  display: grid;
  gap: 48px;
}

.coverage-section {
  background: #f0f9ff;
  color: var(--text-dark);
}

.coverage-section .coverage-info p,
.coverage-section .area-list li,
.coverage-section .city-tags span {
  color: var(--text-dark);
  background: transparent;
  border: none;
}

.coverage-section .city-intro,
.coverage-section .city-footer {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0;
}

.coverage-section .coverage-info p {
  margin-bottom: 24px;
}

.coverage-section .coverage-info h2,
.coverage-section .coverage-info p {
  text-align: center;
}

.coverage-section .city-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.coverage-section .city-tags span {
  background: var(--bg-light);
  border: 1px solid rgba(15, 23, 42, 0.15);
  padding: 6px 18px;
  border-radius: 999px;
  color: var(--text-dark);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.coverage-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.coverage-placeholder-card .placeholder-box {
  border: 2px dashed rgba(15, 23, 42, 0.3);
  background: rgba(236, 246, 255, 0.5);
  min-height: 140px;
}

[data-theme="dark"] .coverage-section .city-tags span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-light);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .coverage-section {
  background: #050b12;
  color: var(--text-light);
}

[data-theme="dark"] .coverage-section .coverage-info p,
[data-theme="dark"] .coverage-section .area-list li,
[data-theme="dark"] .coverage-section .city-tags span {
  color: var(--text-light);
  border: none;
  background: transparent;
}

@media (min-width: 992px) {
  .coverage-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.area-list {
  list-style: none;
  margin: 24px 0;
}

.area-list li {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.fleet-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.fleet-asset {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}

.fleet-asset img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.fleet-item p {
  text-align: center;
  font-weight: 600;
  margin-top: 8px;
}

/* FOOTER */
.site-footer {
  background: var(--white);
  /* Adapts to dark mode now */
  color: var(--text-dark);
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
}

.site-footer .container {
  max-width: 100%;
  padding: 0 32px;
}

[data-theme="dark"] .site-footer {
  background: #020c1b;
  /* Even darker for footer in dark mode */
  border-top: 1px solid #1e293b;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-links,
  .footer-certs,
  .footer-legal {
    flex: 1;
    min-width: 220px;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-certs h4 {
  margin-bottom: 8px;
}

.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #64748b;
  justify-content: flex-start;
}

.cert-list li {
  position: relative;
  padding-right: 12px;
}

.cert-list li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  color: #94a3b8;
}

.footer-certs {
  text-align: left;
}

.legal-note {
  margin-top: 8px;
  color: #64748b;
  font-size: 0.95rem;
}

/* CONTACT */
.contact-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}

.contact-block {
  margin-top: 16px;
}

.align-left {
  text-align: left;
}

.section-header.align-left {
  margin: 0 0 32px;
  max-width: none;
}
