/* ═══════════════════════════════════════════════════════════════
   AARA LLC — Non-Emergency Medical Transportation
   Master Stylesheet
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy: #0B2545;
  --deep-blue: #0B4F6C;
  --teal: #01BAEF;
  --teal-light: #7ECCE5;
  --teal-dark: #0891b2;
  --sky: #E3F6FF;
  --white: #FFFFFF;
  --off-white: #F7FBFD;
  --gray-50: #f8fafc;
  --gray-100: #F0F4F8;
  --gray-200: #D9E2EC;
  --gray-300: #BCCCDC;
  --gray-400: #9FB3C8;
  --gray-500: #627D98;
  --gray-600: #486581;
  --gray-700: #334E68;
  --text: #102A43;
  --green: #27AE60;
  --green-bg: #e8f8ef;
  --red: #E74C3C;
  --red-bg: #fde8e8;
  --amber: #F39C12;
  --amber-bg: #fef9e7;

  --shadow-sm: 0 1px 3px rgba(11,37,69,0.08);
  --shadow-md: 0 4px 16px rgba(11,37,69,0.1);
  --shadow-lg: 0 8px 32px rgba(11,37,69,0.12);
  --shadow-xl: 0 16px 48px rgba(11,37,69,0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: all 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(1,186,239,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(1,186,239,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fade-up { animation: fadeUp 0.65s ease forwards; }
.fade-up-d1 { animation: fadeUp 0.65s ease 0.1s forwards; opacity: 0; }
.fade-up-d2 { animation: fadeUp 0.65s ease 0.2s forwards; opacity: 0; }
.fade-up-d3 { animation: fadeUp 0.65s ease 0.3s forwards; opacity: 0; }
.fade-up-d4 { animation: fadeUp 0.65s ease 0.4s forwards; opacity: 0; }
.fade-in { animation: fadeIn 0.5s ease forwards; }
.slide-right { animation: slideRight 0.5s ease forwards; }

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

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.1;
  transition: var(--transition);
}
.navbar-brand .brand-tagline {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.navbar.scrolled .brand-name { color: var(--navy); }
.navbar.scrolled .brand-tagline { color: var(--gray-500); }
/* non-home pages always show dark text */
.navbar.always-solid { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-200); padding: 12px 0; }
.navbar.always-solid .brand-name { color: var(--navy); }
.navbar.always-solid .brand-tagline { color: var(--gray-500); }
.navbar.always-solid .nav-link { color: var(--gray-600); }
.navbar.always-solid .nav-link.active { color: var(--deep-blue); background: var(--sky); }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  background: none;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.active { color: #fff; background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-link { color: var(--gray-600); }
.navbar.scrolled .nav-link:hover { color: var(--deep-blue); background: var(--sky); }
.navbar.scrolled .nav-link.active { color: var(--deep-blue); background: var(--sky); }

.nav-btn-admin {
  background: var(--deep-blue);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 8px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.nav-btn-admin:hover { background: var(--navy); transform: translateY(-1px); }

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 4px;
}
.navbar.scrolled .mobile-toggle,
.navbar.always-solid .mobile-toggle { color: var(--navy); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.3s ease;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 4px;
  transition: var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active { background: var(--sky); color: var(--deep-blue); }
.mobile-menu .admin-link {
  display: block;
  background: var(--deep-blue);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ═══════════════════════════════════════════
   SVG LOGO
   ═══════════════════════════════════════════ */
.logo-svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════
   HERO SECTION (Home)
   ═══════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 50%, #0a6b8a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(1,186,239,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(1,186,239,0.05) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.03) 0%, transparent 30%);
}
.hero-circle-1, .hero-circle-2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(1,186,239,0.1);
}
.hero-circle-1 { right: -5%; top: 10%; width: 500px; height: 500px; }
.hero-circle-2 { right: 5%; top: 20%; width: 300px; height: 300px; border-color: rgba(1,186,239,0.07); }

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(1,186,239,0.15);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 1px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--teal); }
.hero-text {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  margin-top: 80px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.hero-stat {
  padding: 28px 24px;
  text-align: center;
  background: rgba(255,255,255,0.05);
}
.hero-stat .stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
}
.hero-stat .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   PAGE HEADER (inner pages)
   ═══════════════════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  padding: 140px 24px 80px;
}
.page-header .section-label { color: var(--teal); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
}
.page-header h1 span { color: var(--teal); }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--deep-blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(11,79,108,0.3);
}
.btn-primary:hover { background: var(--navy); box-shadow: 0 6px 24px rgba(11,79,108,0.4); }

.btn-white { background: #fff; color: var(--deep-blue); }
.btn-white:hover { box-shadow: var(--shadow-md); }

.btn-secondary { background: var(--sky); color: var(--deep-blue); }
.btn-secondary:hover { background: #d0effc; }

.btn-outline {
  background: transparent;
  color: var(--deep-blue);
  border: 2px solid var(--deep-blue);
}
.btn-outline:hover { background: var(--deep-blue); color: #fff; }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

.btn svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section {
  padding: 80px 24px;
}
.section-alt { background: var(--gray-100); }
.section-sky { background: var(--sky); }
.section-white { background: var(--white); }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 600px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-48 { margin-bottom: 48px; }
.mb-32 { margin-bottom: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-16 { margin-bottom: 16px; }
.mt-32 { margin-top: 32px; }

/* ═══════════════════════════════════════════
   CARDS / GRID
   ═══════════════════════════════════════════ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--deep-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SERVICES PAGE — Detailed
   ═══════════════════════════════════════════ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-200);
}
.service-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-row.reverse .service-info { order: 1; }

.service-info .service-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.service-info .service-header .icon-box {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-info .service-header .icon-box svg {
  width: 24px; height: 24px;
  stroke: var(--deep-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
}
.service-info p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-features {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.feature-item:last-child { margin-bottom: 0; }
.feature-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-check svg {
  width: 12px; height: 12px;
  stroke: var(--deep-blue);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

@media (max-width: 768px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row.reverse .service-info { order: 0; }
}

/* ═══════════════════════════════════════════
   CLIENTS & PAYMENT SECTION
   ═══════════════════════════════════════════ */
.client-check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.client-check .check-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.client-check .check-circle svg {
  width: 14px; height: 14px;
  stroke: var(--deep-blue);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.client-check span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.payment-box {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
}
.payment-box h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}
.payment-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
}
.payment-item svg {
  width: 20px; height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.payment-item .pay-title { font-weight: 600; margin-bottom: 2px; }
.payment-item .pay-desc { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  text-align: center;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE — Values
   ═══════════════════════════════════════════ */
.value-card {
  background: var(--sky);
  border-radius: var(--radius-md);
  padding: 24px;
}
.value-card svg {
  width: 28px; height: 28px;
  stroke: var(--deep-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 12px 0 6px;
}
.value-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* State cards */
.state-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.state-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.state-card svg {
  width: 28px; height: 28px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto;
}
.state-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 12px;
}

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  background: #fff;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
}
.form-textarea { resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Transport type toggle */
.transport-toggle {
  display: flex;
  gap: 12px;
}
.transport-option {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.transport-option svg {
  width: 22px; height: 22px;
  stroke: var(--gray-400);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
.transport-option.active,
.transport-option:hover {
  border-color: var(--deep-blue);
  background: var(--sky);
  color: var(--deep-blue);
}
.transport-option.active svg,
.transport-option:hover svg {
  stroke: var(--deep-blue);
}

/* ═══════════════════════════════════════════
   SIDEBAR INFO BOXES (appointment & contact)
   ═══════════════════════════════════════════ */
.info-box {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.info-box h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.info-row:last-child { margin-bottom: 0; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 20px; height: 20px;
  stroke: var(--deep-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-row .info-label {
  font-size: 13px;
  color: var(--gray-500);
}
.info-row .info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

/* Hours list */
.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}
.hours-item:last-child { border-bottom: none; }
.hours-item .day { font-size: 14px; font-weight: 500; color: var(--gray-700); }
.hours-item .time { font-size: 14px; color: var(--gray-500); }

/* Payment badge */
.payment-badges {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy));
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
}
.payment-badges h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.badge-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px; height: 22px;
  stroke: var(--deep-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item .contact-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item .contact-value {
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}

.area-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.area-tag {
  background: var(--sky);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--deep-blue);
}

/* Success message */
.success-box {
  text-align: center;
  padding: 60px 24px;
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-icon svg {
  width: 40px; height: 40px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-box h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.success-box p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 400px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 24px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.footer p { font-size: 14px; line-height: 1.7; }
.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--teal); }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-contact-row svg {
  width: 16px; height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-hours { font-size: 14px; line-height: 2; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ═══════════════════════════════════════════
   ADMIN — LOGIN
   ═══════════════════════════════════════════ */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  padding: 24px;
}
.admin-login-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
}
.admin-login-box .login-header {
  text-align: center;
  margin-bottom: 32px;
}
.admin-login-box .login-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 16px;
  margin-bottom: 4px;
}
.admin-login-box .login-header p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════
   ADMIN — DASHBOARD LAYOUT
   ═══════════════════════════════════════════ */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
  width: 240px;
  background: var(--navy);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 1100;
}
.sidebar-brand {
  padding: 0 20px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-brand .sb-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.sidebar-brand .sb-tag {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}
.sidebar-nav { flex: 1; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-right: 3px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.sidebar-link svg {
  width: 18px; height: 18px;
  stroke: rgba(255,255,255,0.4);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(1,186,239,0.15);
  color: var(--teal);
  border-right-color: var(--teal);
}
.sidebar-link:hover svg,
.sidebar-link.active svg {
  stroke: var(--teal);
}
.sidebar-signout {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  width: 100%;
  text-decoration: none;
}
.sidebar-signout svg {
  width: 18px; height: 18px;
  stroke: rgba(255,255,255,0.4);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Main content */
.admin-main {
  flex: 1;
  margin-left: 240px;
  background: var(--gray-100);
  min-height: 100vh;
}
.admin-topbar {
  background: #fff;
  padding: 16px 32px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1050;
}
.admin-topbar h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}
.admin-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--deep-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.admin-content { padding: 32px; }

/* Stat cards */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--gray-200);
}
.stat-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.stat-card .stat-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 8px;
}
.stat-card .stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-display);
}
.stat-card .stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card .stat-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Data tables */
.data-table-wrap {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.data-table-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.data-table-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.filter-btns { display: flex; gap: 8px; }
.filter-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--deep-blue);
  color: #fff;
  border-color: var(--deep-blue);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.data-table tr:hover { background: var(--gray-50); }
.data-table .id-col { font-size: 13px; font-weight: 600; color: var(--deep-blue); }
.data-table .name-col { font-weight: 500; }
.data-table .muted-col { font-size: 13px; color: var(--gray-500); max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}
.status-confirmed { background: var(--green-bg); color: var(--green); }
.status-pending { background: var(--amber-bg); color: var(--amber); }
.status-progress { background: var(--sky); color: var(--deep-blue); }
.status-completed { background: var(--gray-100); color: var(--gray-500); }
.status-active { background: var(--green-bg); color: var(--green); }
.status-off { background: var(--gray-100); color: var(--gray-500); }

.view-btn {
  background: var(--sky);
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--deep-blue);
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.view-btn:hover { background: #d0effc; }

/* Driver cards */
.driver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.driver-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 24px;
}
.driver-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 16px;
}
.driver-info {
  display: flex;
  gap: 12px;
  align-items: center;
}
.driver-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--deep-blue);
  font-size: 16px;
}
.driver-name { font-size: 16px; font-weight: 600; color: var(--navy); }
.driver-id { font-size: 12px; color: var(--gray-400); }
.driver-details .detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
}
.detail-row .detail-label { color: var(--gray-400); }
.detail-row .detail-value { font-weight: 500; color: var(--gray-700); }

/* Reports */
.report-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 24px;
}
.report-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.metric-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.metric-row:last-child { border-bottom: none; }
.metric-label { font-size: 14px; color: var(--gray-500); }
.metric-value { font-size: 15px; font-weight: 600; color: var(--navy); }
.metric-change { font-size: 12px; font-weight: 600; color: var(--green); margin-left: 8px; }

.progress-bar-group { margin-bottom: 16px; }
.progress-bar-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.progress-bar-label { font-size: 14px; font-weight: 500; color: var(--gray-700); }
.progress-bar-value { font-size: 13px; color: var(--gray-500); }
.progress-bar {
  height: 8px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--deep-blue), var(--teal));
  border-radius: var(--radius-full);
  transition: width 0.6s ease;
}

/* Settings */
.settings-box {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 32px;
  max-width: 600px;
}
.settings-box h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

/* Admin responsive */
@media (max-width: 768px) {
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .admin-content { padding: 16px; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .data-table-wrap { overflow-x: auto; }
}
@media (max-width: 480px) {
  .stat-cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   UTILITY / MISC
   ═══════════════════════════════════════════ */
.overflow-x { overflow-x: auto; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.items-center { align-items: center; }

/* Alert */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.alert-success { background: var(--green-bg); color: var(--green); }
.alert-error { background: var(--red-bg); color: var(--red); }
.alert-warning { background: var(--amber-bg); color: var(--amber); }

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 16px; }
  .page-header { padding: 120px 16px 60px; }
}
