/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  /* Colors */
  --clr-primary: #000f83;
  /* Brand Blue */
  --clr-accent: #000f83;
  /* Brand Blue */
  --clr-highlight: #38bdf8;
  /* Light blue */
  --clr-bg-light: #f8fafc;
  /* Light background */
  --clr-text-secondary: #64748b;
  /* Secondary text */
  --clr-btn-cta: #f59e0b;
  /* Amber CTA */
  --clr-white: #ffffff;
  --clr-dark: #0f172a;

  /* Variables requested */
  --amber: #f59e0b;
  --navy: #000f83;
  --electric: #000f83;
  --top-bar-height: 36px;

  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --font-alt: "DM Sans", sans-serif;

  /* Transitions & Shadows */
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Reset & Basics
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--clr-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--clr-bg-light);
}

.bg-dark {
  background-color: var(--clr-dark);
  color: var(--clr-white);
}

.bg-accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--amber) 100%);
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--clr-white) !important;
}

.text-dark {
  color: var(--clr-primary) !important;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--amber);
  color: var(--navy);
  padding: 8px;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--electric);
  outline-offset: 2px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--clr-text-secondary);
  margin-bottom: 3rem;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--amber);
  color: var(--navy);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #d97706;
  /* darker amber */
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--clr-white);
  border: 2px solid var(--clr-white);
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--clr-white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-submit {
  width: 100%;
  background-color: var(--amber);
  color: var(--navy);
  font-size: 1.125rem;
}

.btn-submit:hover,
.btn-submit:focus {
  background-color: #d97706;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge-amber {
  background-color: var(--amber);
  color: var(--navy);
}

.badge-primary {
  background-color: rgba(0, 15, 131, 0.1);
  color: var(--electric);
}

/* ==========================================================================
   Header & Top Bar
   ========================================================================== */
.top-bar {
  background-color: var(--electric);
  color: var(--clr-white);
  font-size: 13px;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  transition: transform var(--transition);
}

.top-bar.hidden {
  transform: translateY(-100%);
}

.top-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.top-bar-divider {
  opacity: 0.5;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  width: 100%;
  background-color: var(--navy);
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}

.header.scrolled {
  top: 0;
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo link wrapper — keeps logo vertically centred and prevents shrink */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  /* removes inline-block gap beneath img */
  border-radius: 6px;
  padding: 4px 8px;
  background: rgba(255,
      255,
      255,
      0.92);
  /* semi-white pill so logo stays crisp on dark header */
  transition: var(--transition);
}

.logo-link:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.02);
}

.logo {
  display: block;
  height: 48px;
  /* fixed height — aspect ratio preserved by width: auto */
  width: auto;
  max-width: 200px;
  /* prevents logo from growing too wide on large screens */
  object-fit: contain;
  filter: none;
  /* no filter — official logo already has the correct colours */
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--clr-white);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--amber);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-links a.nav-cta-btn {
  background-color: var(--amber);
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
}

.nav-links a.nav-cta-btn::after {
  display: none;
}

.nav-links a.nav-cta-btn:hover {
  background-color: #d97706;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--clr-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding top to account for topbar and header */
  padding-top: calc(80px + var(--top-bar-height));
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(0, 15, 131, 0.4),
      rgba(0, 15, 131, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--clr-white);
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.location-pills-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.location-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--clr-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--electric);
}

.service-icon {
  font-size: 3rem;
  color: var(--electric);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--clr-text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: 1.125rem;
  color: var(--clr-text-secondary);
  margin-bottom: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature-icon {
  color: var(--amber);
  font-size: 1.25rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mv-card {
  background: var(--clr-bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  border-top: 4px solid var(--electric);
}

.mv-icon {
  font-size: 1.5rem;
  color: var(--electric);
  margin-bottom: 0.75rem;
}

.mv-card h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.mv-card p {
  color: var(--clr-text-secondary);
  font-size: 0.9rem;
}

.mv-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--electric);
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.3s;
}

.mv-read-more:hover {
  color: var(--navy);
}

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

/* ==========================================================================
   Mileage Banner
   ========================================================================== */
.mileage-banner {
  background-color: var(--amber);
  padding: 4rem 0;
}

.mileage-icon {
  font-size: 3rem;
  color: var(--navy);
}

.mileage-text {
  color: var(--navy);
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.95;
  font-weight: 500;
}

/* ==========================================================================
   Driver Credentials Section
   ========================================================================== */
.trust-badges-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.credential-badge {
  background: var(--clr-white);
  color: var(--navy);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 180px;
  flex: 1;
  transition: var(--transition);
}

.credential-badge:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.credential-badge i {
  font-size: 2.25rem;
  color: var(--amber);
}

.credential-badge span {
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

/* ==========================================================================
   How It Works (Timeline) Section
   ========================================================================== */
.how-it-works-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
  position: relative;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.step-circle {
  width: 60px;
  height: 60px;
  background-color: var(--electric);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 8px var(--clr-bg-light);
}

.step-title {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.step-desc {
  color: var(--clr-text-secondary);
  font-family: var(--font-alt);
  font-size: 0.95rem;
}

.step-connector {
  flex: 0.5;
  height: 3px;
  background-color: var(--amber);
  margin-top: 30px;
  /* Align to center of the 60px circle */
  z-index: 1;
}

/* Animation classes for timeline */
.step-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.step-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

/* ==========================================================================
   Vehicle Monitoring Section
   ========================================================================== */
.monitoring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.monitoring-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.monitoring-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--clr-bg-light);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--navy);
}

.monitoring-feature i {
  font-size: 1.5rem;
  color: var(--electric);
}

.monitoring-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Service Areas
   ========================================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.area-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition);
}

.area-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.area-icon {
  font-size: 2.5rem;
  color: var(--clr-highlight);
  margin-bottom: 1rem;
}

.areas-footer {
  opacity: 0.8;
  font-size: 1.125rem;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: var(--transition);
  cursor: default;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Testimonials Carousel
   ========================================================================== */
/* Old grid kept as fallback but not used on index.html */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Carousel */
.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0 1.5rem;
}

.tc-track-wrapper {
  flex: 1;
  overflow: hidden;
}

.tc-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Each slide: basis computed by JS, but give a sensible default */
.tc-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  /* allow shrink */
}

.tc-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--electric);
  background: var(--clr-white);
  color: var(--electric);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.tc-btn:hover {
  background: var(--electric);
  color: var(--clr-white);
  transform: scale(1.08);
}

.tc-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.testimonial-card {
  background: var(--clr-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--clr-highlight);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--clr-text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.testimonial-author strong {
  color: var(--navy);
  font-family: var(--font-heading);
}

.author-role {
  color: var(--clr-text-secondary);
  font-size: 0.9rem;
}

.testimonial-stars {
  color: var(--amber);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-highlight);
  vertical-align: top;
  line-height: 2;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Edge-to-edge stats styles */
.stats-grid.edge-to-edge {
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.stats-grid.edge-to-edge .stat-item {
  flex: 1;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-amber {
  background-color: var(--amber);
}

.stat-amber .stat-top-icon {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--navy);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-amber .stat-label {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 600;
}

.stat-amber .stat-number {
  color: var(--clr-white);
  font-size: 2.5rem;
}

.stat-navy {
  background-color: var(--navy);
}

.stat-navy .stat-top-icon {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--amber);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-navy .stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  font-weight: 500;
}

.stat-navy .stat-number {
  color: var(--clr-white);
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .stats-grid.edge-to-edge {
    flex-direction: column;
  }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  padding: 2.5rem;
  background: var(--clr-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 15, 131, 0.1);
  color: var(--electric);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-link,
.contact-text {
  font-size: 1.125rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-link:hover {
  color: var(--electric);
}

.state-email-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background: var(--clr-bg-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.state-name {
  color: var(--amber);
  display: inline-block;
  margin-bottom: 0.25rem;
  font-size: 14px;
  font-family: var(--font-heading);
}

.state-email {
  color: var(--navy);
  font-size: 14px;
}

.state-email-item a:hover {
  color: var(--electric);
}

/* Social links — row layout (contact.html) */
.social-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.social-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--electric);
  font-size: 0.95rem;
  background: rgba(0, 15, 131, 0.07);
  border: 1px solid rgba(0, 15, 131, 0.2);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  transition: var(--transition);
}

.social-link-pill:hover {
  background: var(--electric);
  color: var(--clr-white);
  border-color: var(--electric);
}

.social-link-pill i {
  font-size: 1.1rem;
}

/* keep old .social-link for any other existing usage */
.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--electric);
  font-size: 1.125rem;
}

.social-link i {
  font-size: 1.5rem;
}

.contact-form-wrapper {
  background: var(--clr-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(0, 15, 131, 0.1);
}

.form-message {
  margin-top: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #dcfce7;
  color: #166534;
}

.form-message.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: block;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.social-icons a {
  color: var(--clr-white);
  font-size: 1.5rem;
  opacity: 0.8;
}

.social-icons a:hover {
  opacity: 1;
  color: var(--clr-highlight);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.footer-links a:hover {
  color: var(--clr-highlight);
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 1rem;
  color: #cbd5e1;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-contact i {
  margin-top: 5px;
  color: var(--clr-highlight);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* ==========================================================================
   New Sections (Patch Updates)
   ========================================================================== */
.wheelchair-section {
  background-color: var(--clr-white);
}

.wheelchair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wheelchair-highlight {
  background-color: var(--navy);
  color: var(--clr-white);
  border-radius: 8px;
  padding: 16px;
  max-width: fit-content;
  margin-bottom: 1.5rem;
}

.hipaa-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: rgba(0, 15, 131, 0.08);
  color: #000f83;
  border: 1px solid rgba(0, 15, 131, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.compliance-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 1.5rem;
  padding: 14px 16px;
  background: rgba(0, 15, 131, 0.05);
  border-left: 3px solid #000f83;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #64748b;
}

.compliance-note i {
  color: #000f83;
  font-size: 1.1rem;
  margin-top: 2px;
}

.impact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.impact-label {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-white);
}

.impact-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.intake-card {
  background: var(--clr-bg-light);
  padding: 32px;
  border-left: 5px solid var(--amber);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.intake-icon {
  font-size: 2.5rem;
  color: var(--amber);
  margin-top: 5px;
}

.intake-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.intake-text {
  color: var(--clr-text-secondary);
  font-size: 1.125rem;
}

.mileage-tracking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mileage-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mileage-stat-box {
  background: var(--navy);
  color: var(--clr-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mileage-stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

.mileage-stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

.payment-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.payment-icon {
  font-size: 3rem;
  color: var(--electric);
  margin-bottom: 1rem;
}

.payment-text {
  font-size: 1.125rem;
  color: var(--clr-text-secondary);
  margin-bottom: 1.5rem;
}

.payment-btn {
  font-size: 1rem;
  padding: 0.75rem 2rem;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .monitoring-grid,
  .mileage-tracking-grid,
  .wheelchair-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .monitoring-image-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .top-bar-divider {
    display: none;
  }

  /* Shrink logo on tablets / small screens */
  .logo {
    height: 38px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--navy);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    box-shadow: var(--shadow-md);
  }

  .hamburger {
    display: block;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intake-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .about-image-wrapper {
    order: -1;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works-timeline {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .step-connector {
    flex: none;
    width: 3px;
    height: 40px;
    margin: -10px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    flex-direction: column;
  }

  .stat-item {
    margin-bottom: 2rem;
  }

  .stat-item:last-child {
    margin-bottom: 0;
  }

  .state-email-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  /* Further reduce logo on phones */
  .logo {
    height: 32px;
  }

  .footer-logo {
    max-width: 140px;
  }

  .top-bar {
    font-size: 11px;
  }

  /* Hide top bar items except phone on very small screens to avoid overflow */
  .top-bar-item:not(:first-child) {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Dark mode toggle button */
/* ==========================================================================
   Nav Dropdown
   ========================================================================== */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 2000;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.25rem;
  color: var(--navy) !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  border-radius: 0;
}

.dropdown-menu li a:hover {
  background: rgba(0, 15, 131, 0.08);
  color: var(--electric) !important;
  padding-left: 1.5rem;
}

.dropdown-menu li a i {
  color: var(--electric);
  width: 16px;
  text-align: center;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Booking Section
   ========================================================================== */
.booking-section {
  background-color: var(--clr-white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-form-wrapper {
  background: var(--clr-white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking-step {
  margin-bottom: 1.5rem;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--clr-bg-light);
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--electric);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.step-label {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* .form-group label flex layout consolidated into main definition (line ~1113) */

.form-group label i {
  color: var(--electric);
  font-size: 0.85rem;
}

.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
  background-color: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(0, 15, 131, 0.1);
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  padding: 0.5rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: var(--transition);
  margin-bottom: 0;
}

.checkbox-item:hover {
  border-color: var(--electric);
  background: rgba(0, 15, 131, 0.05);
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--electric);
  width: 16px;
  height: 16px;
}

.booking-submit-btn {
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.booking-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--clr-text-secondary);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.booking-disclaimer i {
  color: var(--electric);
}

/* Booking Info Panel */
.booking-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-info-card {
  background: var(--clr-bg-light);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}

.booking-info-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.booking-info-icon {
  font-size: 1.5rem;
  color: var(--electric);
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-info-card h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.booking-info-card p {
  color: var(--clr-text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.booking-phone-link {
  color: var(--electric);
  font-weight: 700;
  font-size: 1.05rem;
}

.booking-states {
  background: var(--clr-bg-light);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-states-label {
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.booking-state-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booking-state-pill {
  background: var(--clr-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 500;
}

/* ==========================================================================
   Locations Section
   ========================================================================== */
.locations-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.loc-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid var(--electric);
  background: transparent;
  color: var(--electric);
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.loc-tab:hover,
.loc-tab.active {
  background: var(--electric);
  color: white;
}

.location-panel {
  display: none;
}

.location-panel.active {
  display: block;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-title {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.location-desc {
  color: var(--clr-text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.location-services-list {
  margin-bottom: 1.5rem;
}

.location-services-list h4 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.location-services-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.location-services-list ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
}

.location-services-list ul li i {
  color: var(--amber);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.location-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
}

.location-contact i {
  color: var(--electric);
  width: 16px;
  text-align: center;
}

.location-contact a {
  color: var(--electric);
  font-weight: 500;
}

.location-contact a:hover {
  text-decoration: underline;
}

.location-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.location-image-wrapper:hover .location-image {
  transform: scale(1.05);
}

.location-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--amber);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Social contact flex (kept for backwards compatibility) */
.social-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   Who We Are — 2-column layout
   ========================================================================== */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-main-col {
  /* left side: badge + title + text + features */
}

.about-mv-col {
  /* right side: mission & vision stacked */
}

.mv-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ==========================================================================
   Dark mode — Carousel & new elements
   ========================================================================== */
[data-theme="dark"] .tc-btn {
  background: #1e293b;
  border-color: #60a5fa;
  color: #60a5fa;
}

[data-theme="dark"] .tc-btn:hover {
  background: #60a5fa;
  color: #fff;
  border-color: #60a5fa;
}

[data-theme="dark"] .social-contact-row {
  border-top-color: #334155;
}

[data-theme="dark"] .social-link-pill {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
  color: #60a5fa;
}

[data-theme="dark"] .social-link-pill:hover {
  background: #60a5fa;
  border-color: #60a5fa;
  color: #fff;
}

/* ==========================================================================
   Responsive — new sections
   ========================================================================== */
@media (max-width: 992px) {

  .booking-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-image-wrapper {
    order: -1;
  }

  .location-image {
    height: 280px;
  }

  /* About 2-col stacks on tablet */
  .about-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Carousel shows 2 cards on tablet */
  .tc-slide {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 768px) {

  .form-row,
  .checkbox-group,
  .location-services-list ul {
    grid-template-columns: 1fr;
  }

  .booking-form-wrapper {
    padding: 1.5rem;
  }

  .locations-tabs {
    gap: 0.5rem;
  }

  .loc-tab {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
    min-width: auto;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu li a {
    color: white !important;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .nav-dropdown .dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  /* Carousel: 1-up on mobile */
  .tc-slide {
    flex: 0 0 100%;
  }

  .tc-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Active page nav link (for subpages)
   ========================================================================== */
.nav-links a.active-page {
  color: var(--amber);
}

.nav-links a.active-page::after {
  width: 100%;
}

/* ==========================================================================
   Dark Mode — Complete System
   Uses CSS variables so every component inherits correct colors automatically
   ========================================================================== */

/* 1. Re-declare all color variables for dark theme */
[data-theme="dark"] {
  --clr-bg-light: #1e293b;
  --clr-white: #1e293b;
  --clr-dark: #f1f5f9;
  --clr-text-secondary: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  /* Lighter blue variants for readability in dark mode */
  --electric: #60a5fa;
  --clr-accent: #60a5fa;
  --clr-primary: #93c5fd;
  --navy: #93c5fd;
}

/* 2. Base — body & page background */
[data-theme="dark"] body {
  background-color: #0f172a;
  color: #f1f5f9;
}

/* 3. Generic text elements — headings and paragraphs */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #f1f5f9;
}

[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] span:not(.badge):not(.location-pill):not(.hipaa-tag):not(.nj-hero-pill):not(.booking-state-pill):not(.nj-service-tag) {
  color: #cbd5e1;
}

/* 4. Section titles and subtitles */
[data-theme="dark"] .section-title {
  color: #f1f5f9 !important;
}

[data-theme="dark"] .section-subtitle {
  color: #94a3b8 !important;
}

/* 5. White-background cards → dark cards */
[data-theme="dark"] .service-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .mv-card,
[data-theme="dark"] .contact-info,
[data-theme="dark"] .contact-form-wrapper,
[data-theme="dark"] .booking-form-wrapper,
[data-theme="dark"] .booking-info-card,
[data-theme="dark"] .booking-states,
[data-theme="dark"] .intake-card,
[data-theme="dark"] .credential-badge,
[data-theme="dark"] .monitoring-feature,
[data-theme="dark"] .mileage-stat-box {
  background-color: #1e293b !important;
  color: #f1f5f9 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .mv-read-more:hover {
  color: #f1f5f9 !important;
}

[data-theme="dark"] .booking-states-label {
  color: #f1f5f9 !important;
}

[data-theme="dark"] .booking-state-pill {
  background-color: #0f172a !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #cbd5e1 !important;
}

/* 6. Light backgrounds → darker */
[data-theme="dark"] .bg-light,
[data-theme="dark"] section.bg-light,
[data-theme="dark"] .services.bg-light,
[data-theme="dark"] .how-it-works.bg-light,
[data-theme="dark"] .gallery.bg-light,
[data-theme="dark"] .customer-service,
[data-theme="dark"] .careers-form-section {
  background-color: #162032 !important;
}

[data-theme="dark"] .state-email-grid {
  background-color: #253448;
}

[data-theme="dark"] .svc-highlight-box {
  background-color: #000f83 !important;
}

[data-theme="dark"] .bg-accent {
  background: linear-gradient(135deg, #000f83 0%, #0f172a 100%);
}

/* 7. White plain sections */
[data-theme="dark"] .wheelchair-section,
[data-theme="dark"] .monitoring-section,
[data-theme="dark"] .client-intake,
[data-theme="dark"] .payment-methods,
[data-theme="dark"] .about.section-padding {
  background-color: #0f172a;
}

/* 8. Form inputs */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select,
[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="email"],
[data-theme="dark"] input[type="tel"],
[data-theme="dark"] input[type="date"],
[data-theme="dark"] input[type="time"],
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background-color: #253448 !important;
  color: #f1f5f9 !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
  color: #64748b;
}

[data-theme="dark"] .form-group label,
[data-theme="dark"] label {
  color: #f1f5f9 !important;
}

/* 9. Checkbox items */
[data-theme="dark"] .checkbox-item {
  border-color: #334155;
  color: #94a3b8;
}

[data-theme="dark"] .checkbox-item:hover {
  background: rgba(0, 15, 131, 0.1);
  border-color: var(--electric);
}

/* 10. Step indicator — consolidated into DARK MODE FIXES section */

/* 11. Dropdown menu */
[data-theme="dark"] .dropdown-menu {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .dropdown-menu::before {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .dropdown-menu li a {
  color: #f1f5f9 !important;
}

[data-theme="dark"] .dropdown-menu li a:hover {
  background: rgba(0, 15, 131, 0.1);
  color: #93c5fd !important;
}

/* 12. Top bar */
[data-theme="dark"] .top-bar {
  background-color: #0d1e3a;
}

/* 13. Mileage banner */
[data-theme="dark"] .mileage-banner {
  background-color: #b45309;
}

[data-theme="dark"] .mileage-text,
[data-theme="dark"] .mileage-icon {
  color: #fef3c7;
}

/* 14. Mileage tracking section */
[data-theme="dark"] .mileage-tracking {
  background-color: #92400e !important;
}

/* 15. Payment methods */
[data-theme="dark"] .payment-text {
  color: #94a3b8;
}

/* 16. About section features */
[data-theme="dark"] .about-features li {
  color: #cbd5e1;
}

/* 17. Testimonials */
[data-theme="dark"] .testimonial-text {
  color: #94a3b8;
}

/* .testimonial-author strong — consolidated into DARK MODE FIXES section */

/* 18. Contact info text — consolidated into DARK MODE FIXES section */

[data-theme="dark"] .state-name {
  color: var(--amber);
}

/* .state-email — consolidated into DARK MODE FIXES section */

[data-theme="dark"] .compliance-note {
  background: rgba(0, 15, 131, 0.08);
  color: #94a3b8;
}

/* === Dark Mode: Wheelchair Highlight Box Fix === */
/* --clr-white is remapped to a dark color in dark mode.
   Force white text so the navy-background box stays readable. */
[data-theme="dark"] .wheelchair-highlight,
[data-theme="dark"] .wheelchair-highlight * {
  color: #ffffff !important;
}

/* 19. Locations section */
/* .location-title — consolidated into DARK MODE FIXES section */

[data-theme="dark"] .location-desc,
[data-theme="dark"] .location-contact {
  color: #94a3b8;
}

[data-theme="dark"] .location-services-list h4,
[data-theme="dark"] .location-services-list ul li {
  color: #94a3b8;
}

/* === Dark Mode: Location Tabs Fix === */
[data-theme="dark"] .loc-tab {
  color: #ffffff !important;
  border-color: #3b82f6 !important;
  background-color: transparent !important;
}

[data-theme="dark"] .loc-tab:hover {
  background-color: #60a5fa !important;
  color: #ffffff !important;
  border-color: #60a5fa !important;
}

[data-theme="dark"] .loc-tab.active {
  background-color: #60a5fa !important;
  color: #ffffff !important;
  border-color: #60a5fa !important;
}

/* === Dark Mode: Hero Location Pills Fix === */
/* --clr-white is remapped to a dark color in dark mode, so pills
   inside .hero-content inherit it and become unreadable. Override here. */
[data-theme="dark"] .location-pill {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

/* 20. Booking section */
[data-theme="dark"] .booking-section {
  background-color: #0f172a;
}

/* .booking-info-card h4 — consolidated into DARK MODE FIXES section */

[data-theme="dark"] .booking-disclaimer,
[data-theme="dark"] .booking-info-card p {
  color: #94a3b8;
}

/* 21. Footer — already dark, keep it */
[data-theme="dark"] .footer {
  background-color: #060e1a;
}

/* 22. Gallery images */
[data-theme="dark"] .gallery-img {
  opacity: 0.85;
}

/* 23. Breadcrumb */
[data-theme="dark"] .breadcrumb {
  background: #162032;
  border-color: #334155;
  color: #94a3b8;
}

/* 24. NJ page cards */
/* .nj-service-card background moved to Final Cleanup Pass section */

[data-theme="dark"] .nj-service-name {
  color: #f1f5f9;
}

/* .nj-service-desc — consolidated into Final Cleanup Pass section */

[data-theme="dark"] .nj-info-strip {
  background: #060e1a;
}

/* 25. Careers page */
[data-theme="dark"] .why-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .why-card h3 {
  color: #f1f5f9;
}

[data-theme="dark"] .why-card p {
  color: #94a3b8;
}

[data-theme="dark"] .requirement-item {
  background: #1e293b;
  color: #94a3b8;
}

[data-theme="dark"] .form-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .form-card-header h2,
[data-theme="dark"] .process-step h4 {
  color: #f1f5f9;
}

[data-theme="dark"] .form-card-header p {
  color: #94a3b8;
}

/* .process-step p, .form-note, .optional-tag — have their own overrides in Final Cleanup Pass */

/* 26. Dark mode toggle button */
.dark-mode-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.dark-mode-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ==========================================================================
   ADDED DARK MODE FIXES (TEXT VISIBILITY)
   ========================================================================== */

/* 1. NAV + HEADER */
[data-theme="dark"] .nav-links a,
[data-theme="dark"] .hamburger,
[data-theme="dark"] .top-bar,
[data-theme="dark"] .top-bar-item {
  color: #ffffff !important;
}

/* Logo pill keeps same white background in dark mode — no extra override needed.
   The background on .logo-link already ensures the logo remains fully visible. */
[data-theme="dark"] .logo-link {
  background: rgba(255, 255, 255, 0.92);
}

[data-theme="dark"] .logo-link:hover {
  background: rgba(255, 255, 255, 1);
}

/* 2. HERO SECTION */
[data-theme="dark"] .btn-outline {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* 3. SERVICES SECTION */
[data-theme="dark"] .service-title {
  color: #f1f5f9 !important;
}

[data-theme="dark"] .service-desc {
  color: #cbd5e1 !important;
}

/* 4. ABOUT / HOW IT WORKS / TIMELINE */
[data-theme="dark"] .step-title,
[data-theme="dark"] .step-label {
  color: #f1f5f9 !important;
}

[data-theme="dark"] .step-desc {
  color: #cbd5e1 !important;
}

/* 5. TESTIMONIALS */
[data-theme="dark"] .testimonial-author strong {
  color: #f1f5f9 !important;
}

/* 6. CONTACT FORM */
[data-theme="dark"] .contact-text,
[data-theme="dark"] .contact-link {
  color: #f1f5f9 !important;
}

/* 7. BOOKING SECTION */
[data-theme="dark"] .booking-info-card h4 {
  color: #f1f5f9 !important;
}

/* 8. LOCATIONS SECTION */
[data-theme="dark"] .location-title {
  color: #f1f5f9 !important;
}

/* ==========================================================================
   DARK MODE — Final Cleanup Pass
   Targets remaining contrast / readability gaps across all pages
   ========================================================================== */

/* ── Badges ── */
/* badge-primary uses rgba(0, 15, 131,0.1) — near-invisible on dark bg */
[data-theme="dark"] .badge-primary {
  background-color: rgba(59, 130, 246, 0.2) !important;
  color: #93c5fd !important;
}

/* ── HIPAA tag ── */
[data-theme="dark"] .hipaa-tag {
  background: rgba(59, 130, 246, 0.15) !important;
  color: #93c5fd !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
}

/* ── nj-service-tag (amber pill on state pages) ── */
[data-theme="dark"] .nj-service-tag {
  background: rgba(245, 158, 11, 0.15) !important;
  color: var(--amber) !important;
}

/* ── Service card in dark mode ── */
[data-theme="dark"] .nj-service-card {
  background: #1e293b;
  border-color: #334155 !important;
}

/* ── nj-service-desc ── */
[data-theme="dark"] .nj-service-desc {
  color: #94a3b8 !important;
}

/* ── CTA section (amber gradient bg) — text must stay navy, not be forced light ── */
[data-theme="dark"] .nj-cta p {
  color: rgba(0, 15, 131, 0.85) !important;
}

[data-theme="dark"] .nj-cta h2 {
  color: var(--navy) !important;
}

/* ── Intake card ── */
[data-theme="dark"] .intake-title {
  color: #f1f5f9 !important;
}

[data-theme="dark"] .intake-text {
  color: #94a3b8 !important;
}

/* ── Contact icon circle ── */
[data-theme="dark"] .contact-icon {
  background: rgba(59, 130, 246, 0.15) !important;
}

/* ── Social contact divider line ── */
[data-theme="dark"] .social-contact {
  border-color: #334155 !important;
}

/* ── State email grid text ── */
[data-theme="dark"] .state-email-item span,
[data-theme="dark"] .state-email {
  color: #cbd5e1 !important;
}

/* ── Step circle ring — --clr-bg-light remaps to #1e293b in dark;
      ring becomes invisible against dark cards ── */
[data-theme="dark"] .step-circle {
  box-shadow: 0 0 0 8px #0f172a;
}

/* ── Monitoring feature items ── */
[data-theme="dark"] .monitoring-feature {
  color: #f1f5f9 !important;
}

/* ── Credential badge labels ── */
[data-theme="dark"] .credential-badge span {
  color: #f1f5f9 !important;
}

/* ── Mission/Vision card headings ── */
[data-theme="dark"] .mv-card h4 {
  color: #f1f5f9 !important;
}

/* ── Mileage stat label ── */
[data-theme="dark"] .mileage-stat-label {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ── Form messages — green/red on dark ── */
[data-theme="dark"] .form-message.success {
  background-color: #14532d !important;
  color: #bbf7d0 !important;
}

[data-theme="dark"] .form-message.error {
  background-color: #7f1d1d !important;
  color: #fecaca !important;
}

/* ── Careers: process step paragraphs ── */
[data-theme="dark"] .process-step p {
  color: #94a3b8 !important;
}

/* ── Careers: form-note & optional-tag ── */
[data-theme="dark"] .form-note {
  color: #94a3b8 !important;
}

[data-theme="dark"] .optional-tag {
  color: #64748b !important;
}

/* ── Careers: hero paragraph text ── */
[data-theme="dark"] .careers-hero p {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ── Booking step indicator border ── */
[data-theme="dark"] .step-indicator {
  border-color: #334155 !important;
}

/* ── Location contact links ── */
[data-theme="dark"] .location-contact a {
  color: #93c5fd !important;
}

/* ── Footer column titles ── */
[data-theme="dark"] .footer-title {
  color: #f1f5f9 !important;
}

/* ── About text ── */
[data-theme="dark"] .about-text {
  color: #94a3b8 !important;
}

/* ==========================================================================
   Service Detail Pages — IDD & Wheelchair (shared reusable styles)
   ========================================================================== */

/* ── Service page hero (reuses nj-hero structure) ── */
.svc-hero {
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(100px + var(--top-bar-height));
  padding-bottom: 4rem;
  position: relative;
}

.svc-hero-content {
  position: relative;
  z-index: 1;
  color: var(--clr-white);
  max-width: 800px;
}

.svc-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.svc-hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.svc-hero-body {
  font-size: 1rem;
  opacity: 0.88;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Two-column intro grid ── */
.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.svc-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.6rem;
}

.svc-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.svc-section-subtitle {
  font-size: 1rem;
  font-style: italic;
  color: var(--clr-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.svc-body-text {
  font-size: 1.05rem;
  color: var(--clr-text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.svc-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.svc-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.svc-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.svc-image-wrapper:hover img {
  transform: scale(1.04);
}

.svc-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--amber);
  color: var(--navy);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── CTA band ── */
.svc-cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%);
  padding: 4rem 0;
  text-align: center;
}

.svc-cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.svc-cta-band p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.svc-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Support cards (IDD page) ── */
.svc-support-section {
  background: var(--clr-bg-light);
}

.svc-support-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.svc-support-card {
  background: var(--clr-white);
  border-radius: 12px;
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--electric);
  transition: var(--transition);
}

.svc-support-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.svc-support-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.svc-support-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 15, 131, 0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--electric);
  flex-shrink: 0;
}

.svc-support-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.svc-support-card-desc {
  font-size: 0.92rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── Rider highlight box (Wheelchair page) ── */
.svc-highlight-box {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  text-align: center;
  margin: 3rem 0;
}

.svc-highlight-box p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.svc-benefits-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.svc-benefit-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.svc-benefit-pill:hover {
  background: rgba(255, 255, 255, 0.22);
}

.svc-benefit-pill i {
  color: var(--amber);
}

/* ── Occasions cards (Wheelchair page) ── */
.svc-occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.svc-occasion-card {
  background: var(--clr-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}

.svc-occasion-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 15, 131, 0.15);
}

.svc-occasion-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 15, 131, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--electric);
  flex-shrink: 0;
}

.svc-occasion-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.svc-occasion-card p {
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* ── Closing CTA strip ── */
.svc-closing-cta {
  background: var(--navy);
  padding: 2.5rem 0;
  text-align: center;
}

.svc-closing-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

/* ── Services overview cards (updated services.html) ── */
.svc-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.svc-preview-card {
  background: var(--clr-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.svc-preview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--electric), var(--amber));
  opacity: 0;
  transition: var(--transition);
}

.svc-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 15, 131, 0.12);
}

.svc-preview-card:hover::before {
  opacity: 1;
}

.svc-preview-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 15, 131, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--electric);
  margin-bottom: 1.25rem;
}

.svc-preview-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.svc-preview-desc {
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.svc-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--electric);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  padding-bottom: 2px;
}

.svc-preview-link:hover {
  border-bottom-color: var(--electric);
  gap: 0.7rem;
}

/* ── Dark mode overrides for new service pages ── */
[data-theme="dark"] .svc-section-title,
[data-theme="dark"] .svc-support-card-title,
[data-theme="dark"] .svc-preview-title {
  color: #f1f5f9;
}

[data-theme="dark"] .svc-section-subtitle,
[data-theme="dark"] .svc-body-text,
[data-theme="dark"] .svc-support-card-desc,
[data-theme="dark"] .svc-preview-desc {
  color: #94a3b8;
}

[data-theme="dark"] .svc-support-section {
  background: #0f172a;
}

[data-theme="dark"] .svc-support-card {
  background: #1e293b;
  border-left-color: #3b82f6;
}

[data-theme="dark"] .svc-support-icon {
  background: rgba(59, 130, 246, 0.15);
}

[data-theme="dark"] .svc-preview-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .svc-preview-icon {
  background: rgba(59, 130, 246, 0.15);
}

[data-theme="dark"] .svc-preview-link {
  color: #93c5fd;
}

[data-theme="dark"] .svc-preview-link:hover {
  border-bottom-color: #93c5fd;
}

[data-theme="dark"] .svc-occasion-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .svc-occasion-card h4 {
  color: #f1f5f9;
}

[data-theme="dark"] .svc-occasion-card p {
  color: #94a3b8;
}

[data-theme="dark"] .svc-occasion-icon {
  background: rgba(59, 130, 246, 0.15);
}

/* ── Responsive — service detail pages ── */
@media (max-width: 992px) {
  .svc-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .svc-image-wrapper img {
    height: 300px;
  }

  .svc-support-cards {
    grid-template-columns: 1fr;
  }

  .svc-occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .svc-cta-row {
    flex-direction: column;
  }

  .svc-cta-row .btn {
    width: 100%;
    text-align: center;
  }

  .svc-occasions-grid {
    grid-template-columns: 1fr;
  }

  .svc-highlight-box {
    padding: 2rem 1.5rem;
  }

  .svc-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ── Service layout variations and visual utility classes ── */
@media (min-width: 993px) {
  .svc-grid-reverse {
    grid-template-columns: 1fr 1fr;
  }

  .svc-grid-reverse>div:first-child {
    order: 2;
  }

  .svc-grid-reverse>div:last-child {
    order: 1;
  }
}

/* Image-backed closing CTA banner */
.svc-photo-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  /* safe for mobile */
  padding: 5rem 0;
  text-align: center;
}

.svc-photo-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 15, 131, 0.85);
  /* brand navy overlay */
  z-index: 1;
}

[data-theme="dark"] .svc-photo-cta::before {
  background: rgba(15, 23, 42, 0.9);
  /* darker overlay for dark theme */
}

.svc-photo-cta .container {
  position: relative;
  z-index: 2;
}

.svc-photo-cta p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Split-content layout stats card */
.svc-stats-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  background: var(--clr-bg-light);
  border-radius: 16px;
  padding: 3rem;
  margin-top: 3rem;
  align-items: center;
}

[data-theme="dark"] .svc-stats-block {
  background: #1e293b;
}

.svc-stats-image {
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
}

.svc-stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-stats-text h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

[data-theme="dark"] .svc-stats-text h3 {
  color: #f1f5f9;
}

.svc-stats-text p {
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .svc-stats-text p {
  color: #94a3b8;
}

@media (max-width: 768px) {
  .svc-stats-block {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .svc-stats-image {
    height: 200px;
  }
}

/* ── Aspect ratio and crop position helpers for service images ── */
.svc-image-wrapper img.svc-img-portrait {
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center 15%;
  /* Default for portraits to prevent head cutoff */
}

.svc-image-wrapper img.svc-img-square {
  aspect-ratio: 1 / 1;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  object-position: center center;
}

.svc-image-wrapper img.svc-img-landscape {
  aspect-ratio: 3 / 2;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center center;
}

/* Prevent squeezing of portrait images inside stats section */
.svc-stats-image img.svc-img-portrait {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

@media (max-width: 992px) {
  .svc-image-wrapper img.svc-img-portrait {
    max-height: 380px;
  }

  .svc-image-wrapper img.svc-img-square {
    max-height: 340px;
  }

  .svc-image-wrapper img.svc-img-landscape {
    max-height: 300px;
  }
}

/* --- New Footer Contact Layout --- */
.footer-emails-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.email-item {
  display: flex;
  flex-direction: column;
}

.email-title {
  color: var(--clr-secondary);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.email-item a {
  color: var(--clr-white);
  text-decoration: none;
  font-size: 0.85rem;
  word-break: break-all;
}

.email-item a:hover {
  color: var(--clr-secondary);
}

.footer-contact-main {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.footer-phone {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.2rem;
}

.footer-address {
  font-size: 1.1rem;
  color: var(--clr-white);
}

@media (max-width: 992px) {
  .footer-emails-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Page-Specific Styles (moved from inline <style> blocks)
   ========================================================================== */

/* ── Shared: NJ Hero / Breadcrumb / Services Grid / Info Strip / CTA ──
   Used by: index.html, about.html, contact.html, services.html, locations/*.html
   ========================================================================== */

/* Hero */
.nj-hero {
  min-height: 520px;
  background-image:
    linear-gradient(to right,
      rgba(0, 15, 131, 0.4),
      rgba(0, 15, 131, 0.1)),
    url("../Imagen/nj-hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(80px + var(--top-bar-height));
  position: relative;
}

.nj-hero-content {
  position: relative;
  z-index: 1;
  color: var(--clr-white);
  max-width: 760px;
}

.nj-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.nj-hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.nj-hero-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.nj-hero-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: #fff;
  backdrop-filter: blur(4px);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--clr-bg-light);
  padding: 0.85rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
}

.breadcrumb a {
  color: var(--electric);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.4rem;
  opacity: 0.5;
}

/* Services grid (NJ/location pages) */
.nj-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.nj-service-card {
  background: var(--clr-white);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nj-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--electric);
  opacity: 0;
  transition: var(--transition);
}

.nj-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 15, 131, 0.15);
}

.nj-service-card:hover::before {
  opacity: 1;
}

.nj-service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 15, 131, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--electric);
  margin-bottom: 1rem;
}

.nj-service-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.nj-service-desc {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
}

.nj-service-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.1);
  padding: 3px 10px;
  border-radius: 9999px;
}

/* Info strip */
.nj-info-strip {
  background: var(--navy);
  color: #fff;
  padding: 3rem 0;
}

.nj-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.nj-info-item i {
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: block;
}

.nj-info-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.nj-info-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* CTA */
.nj-cta {
  background: linear-gradient(135deg, var(--amber) 0%, #d97706 100%);
  padding: 4rem 0;
  text-align: center;
}

.nj-cta h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.nj-cta p {
  font-size: 1.05rem;
  color: rgba(0, 15, 131, 0.8);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.nj-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border: none;
}

.btn-navy:hover {
  background: #0f172a;
  transform: translateY(-2px);
  color: #fff;
}

/* Dark mode — shared */
[data-theme="dark"] .nj-service-card {
  background: #1e293b;
}

[data-theme="dark"] .nj-service-name {
  color: #f1f5f9;
}

[data-theme="dark"] .breadcrumb {
  background: #162032;
  border-color: #334155;
  color: #94a3b8;
}

[data-theme="dark"] .nj-info-strip {
  background: #0f172a;
}

/* Responsive — shared NJ/location */
@media (max-width: 992px) {
  .nj-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nj-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .nj-services-grid,
  .nj-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ── index.html page-specific styles ──
   ========================================================================== */

/* Hero home variant (background image) */
.hero--home {
  background-image: url("../Imagen/home-hero.jpeg");
}

/* Hero badges row */
.hero-badges-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

/* HIPAA badge */
.badge-hipaa {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  margin-bottom: 0;
}

/* Service learn-more links */
.service-learn-more {
  margin-top: 1rem;
  display: inline-flex;
  color: var(--electric);
}

/* Impact / Stats title */
.impact-title {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Booking CTA section */
.booking-cta-content {
  text-align: center;
  padding: 2rem 0;
}

.booking-cta-icon {
  font-size: 3.5rem;
  color: var(--electric);
  margin-bottom: 1.5rem;
}

.booking-cta-heading {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.booking-cta-text {
  color: var(--clr-text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.booking-cta-btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── about.html page-specific styles ──
   ========================================================================== */

.nj-hero--about {
  min-height: 400px;
  background-image:
    linear-gradient(to right,
      rgba(0, 15, 131, 0.4),
      rgba(0, 15, 131, 0.1)),
    url("../Imagen/gallery-3.jpeg");
  padding-top: calc(120px + var(--top-bar-height));
}

.customer-service-bg {
  background-color: var(--clr-bg-light);
}

.client-intake-bg {
  background-color: var(--clr-white);
}

[data-theme="dark"] .customer-service-bg {
  background-color: #0f172a;
}

[data-theme="dark"] .client-intake-bg {
  background-color: #111827;
}

/* ── contact.html page-specific styles ──
   ========================================================================== */

.nj-hero--contact {
  min-height: 400px;
  background-image:
    linear-gradient(to right,
      rgba(0, 15, 131, 0.4),
      rgba(0, 15, 131, 0.1)),
    url("../Imagen/gallery-2.jpg");
  padding-top: calc(120px + var(--top-bar-height));
}

/* ── services.html page-specific styles ──
   ========================================================================== */

.nj-hero--services {
  min-height: 400px;
  background-image:
    linear-gradient(to right,
      rgba(0, 15, 131, 0.4),
      rgba(0, 15, 131, 0.1)),
    url("../Imagen/home-hero.jpeg");
  padding-top: calc(120px + var(--top-bar-height));
}

/* IDD Travel Assistance Full Section */
.idd-section {
  background: var(--clr-white);
}

.idd-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.idd-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.6rem;
}

.idd-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.idd-section-subtitle {
  font-size: 1rem;
  font-style: italic;
  color: var(--clr-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.idd-body-text {
  font-size: 1.05rem;
  color: var(--clr-text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.idd-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.idd-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.idd-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.idd-image-wrapper:hover img {
  transform: scale(1.04);
}

.idd-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--amber);
  color: var(--navy);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Support subsection */
.idd-support-section {
  background: var(--clr-bg-light);
}

.idd-support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.idd-support-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.idd-support-card {
  background: var(--clr-white);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--electric);
  transition: var(--transition);
}

.idd-support-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.idd-support-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.idd-support-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 15, 131, 0.09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--electric);
  flex-shrink: 0;
}

.idd-support-card-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.idd-support-card-desc {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.idd-support-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.idd-support-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.idd-support-image-wrapper:hover img {
  transform: scale(1.04);
}

/* Closing CTA line */
.idd-closing-cta {
  background: var(--navy);
  padding: 2.5rem 0;
  text-align: center;
}

.idd-closing-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--amber);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  padding-bottom: 2px;
}

.idd-closing-cta a:hover {
  border-bottom-color: var(--amber);
  gap: 0.9rem;
}

/* Dark mode — IDD section */
[data-theme="dark"] .idd-section {
  background: #111827;
}

[data-theme="dark"] .idd-section-title,
[data-theme="dark"] .idd-support-card-title {
  color: #f1f5f9;
}

[data-theme="dark"] .idd-section-subtitle,
[data-theme="dark"] .idd-body-text,
[data-theme="dark"] .idd-support-card-desc {
  color: #94a3b8;
}

[data-theme="dark"] .idd-support-section {
  background: #0f172a;
}

[data-theme="dark"] .idd-support-card {
  background: #1e293b;
  border-left-color: #3b82f6;
}

[data-theme="dark"] .idd-support-card-icon {
  background: rgba(59, 130, 246, 0.15);
}

/* Responsive — IDD section */
@media (max-width: 992px) {

  .idd-intro-grid,
  .idd-support-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .idd-image-wrapper img,
  .idd-support-image-wrapper img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .idd-cta-row {
    flex-direction: column;
  }

  .idd-cta-row .btn {
    width: 100%;
    text-align: center;
  }
}

/* Featured services section bg */
.featured-services-bg {
  background: var(--clr-white);
}

[data-theme="dark"] .featured-services-bg {
  background: #111827;
}

/* Mileage tracking section */
.mileage-tracking-bg {
  background-color: var(--amber);
}

/* ── careers.html page-specific styles ──
   ========================================================================== */

/* Hero */
.careers-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2044 100%);
  padding: calc(120px + var(--top-bar-height)) 0 5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(245, 158, 11, 0.12) 0%,
      transparent 70%);
  pointer-events: none;
}

.careers-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(0, 15, 131, 0.15) 0%,
      transparent 70%);
  pointer-events: none;
}

.careers-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.careers-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.careers-hero h1 span {
  color: var(--amber);
}

.careers-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Why Join section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-card {
  background: var(--clr-bg-light);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  background: var(--clr-white);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 15, 131, 0.1);
  transform: translateY(-4px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 15, 131, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--electric);
  margin: 0 auto 1rem;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Requirements */
.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--clr-bg-light);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  border-left: 3px solid var(--electric);
}

.requirement-item i {
  color: var(--electric);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Application form */
.careers-form-section {
  background: var(--clr-bg-light);
}

.form-card {
  background: var(--clr-white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-card-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-card-header h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-card-header p {
  color: var(--clr-text-secondary);
  font-size: 0.95rem;
}

.optional-tag {
  font-size: 0.75rem;
  color: var(--clr-text-secondary);
  font-weight: 400;
  margin-left: 4px;
}

.careers-submit-btn {
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--clr-text-secondary);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-note i {
  color: var(--electric);
}

/* Careers select dropdown */
.careers-select {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  background: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

[data-theme="dark"] .careers-select {
  background-color: #1e293b;
  border-color: #334155;
  color: #f1f5f9;
}

/* Form label icon */
.form-label-icon {
  color: var(--electric);
  margin-right: 5px;
}

/* Process steps */
.process-steps {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.6rem;
  right: -1px;
  width: 2px;
  height: 2px;
  background: var(--amber);
  box-shadow:
    4px 0 0 var(--amber),
    8px 0 0 var(--amber),
    12px 0 0 var(--amber),
    16px 0 0 var(--amber),
    20px 0 0 var(--amber);
}

.process-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--clr-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Dark mode — Careers */
[data-theme="dark"] .why-card {
  background: #1e293b;
}

[data-theme="dark"] .why-card:hover {
  background: #253448;
}

[data-theme="dark"] .why-card h3,
[data-theme="dark"] .process-step h4,
[data-theme="dark"] .form-card-header h2 {
  color: #f1f5f9;
}

[data-theme="dark"] .form-card {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .requirement-item {
  background: #1e293b;
  color: #94a3b8;
}

[data-theme="dark"] .careers-form-section {
  background: #0f172a;
}

/* Responsive — Careers */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .why-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 1.75rem;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }
}

/* ── Service subpage styles ──
   Used by: services/*.html
   ========================================================================== */

/* Wheelchair / service intro section */
.wc-intro-section {
  background: var(--clr-white);
}

[data-theme="dark"] .wc-intro-section {
  background: #111827;
}

/* Occasions section */
.wc-occasions-section {
  background: var(--clr-bg-light);
}

[data-theme="dark"] .wc-occasions-section {
  background: #0f172a;
}

/* ── shared-ride-services.html page-specific styles ──
   ========================================================================== */

/* Intro section */
.shared-intro-section {
  background: var(--clr-white);
}

[data-theme="dark"] .shared-intro-section {
  background: #111827;
}

/* Process Section */
.process-section {
  background: var(--clr-bg-light);
}

[data-theme="dark"] .process-section {
  background: #0f172a;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-card {
  background: var(--clr-white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 4px solid var(--electric);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .process-card {
  background: #1e293b;
}

.process-step-num {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

[data-theme="dark"] .process-card h3 {
  color: #f1f5f9;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
}

[data-theme="dark"] .process-card p {
  color: #94a3b8;
}

/* Mileage custom section */
.mileage-showcase {
  background: var(--clr-white);
}

[data-theme="dark"] .mileage-showcase {
  background: #111827;
}

.mileage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mileage-content-left i {
  font-size: 2.5rem;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.mileage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mileage-item {
  background: var(--clr-bg-light);
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 3px solid var(--amber);
}

[data-theme="dark"] .mileage-item {
  background: #1e293b;
}

.mileage-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

[data-theme="dark"] .mileage-item h4 {
  color: #f1f5f9;
}

.mileage-item p {
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
  line-height: 1.5;
  margin: 0;
}

[data-theme="dark"] .mileage-item p {
  color: #94a3b8;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .mileage-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .mileage-list {
    grid-template-columns: 1fr;
  }
}

/* ── Utility classes (replacing inline style="" attributes) ──
   ========================================================================== */

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-1-25 {
  margin-bottom: 1.25rem;
}

.mt-2 {
  margin-top: 2rem;
}

.content-narrow {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.text-primary {
  color: var(--clr-primary);
}

.text-secondary {
  color: var(--clr-text-secondary);
}

.text-amber {
  color: var(--amber);
}

.text-light-sm {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.bg-light-inline {
  background-color: var(--clr-bg-light);
}

.bg-white-inline {
  background-color: var(--clr-white);
}

.bg-amber-inline {
  background-color: var(--amber);
}

.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
}

.obj-pos-top {
  object-position: center 15%;
}

.obj-pos-top-20 {
  object-position: center 20%;
}

.feature-list-plain {
  margin-bottom: 2rem;
  list-style: none;
  padding-left: 0;
}

.feature-list-icon {
  color: var(--electric);
  margin-top: 0.25rem;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
}

[data-theme="dark"] .feature-list-item {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
}

/* Location hero badges row (same as home but different margin) */
.loc-hero-badges-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

/* Location hero CTA row */
.loc-hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}