/* ═══════════════════════════════════════════
   APEX AUTO DETAIL — BOOKING-V3 STYLES
   Sports-tech aesthetic: metallic silver + cobalt blue
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg-dark: #0B0F19;
  --bg-card: #151A28;
  --bg-silver: #F0F2F5;
  --bg-silver-mid: #D1D5DB;
  --bg-glass: rgba(21, 26, 40, 0.75);
  --cobalt: #0047AB;
  --cobalt-bright: #0055D4;
  --cobalt-glow: #3B82F6;
  --accent-cyan: #38BDF8;
  --white: #FFFFFF;
  --text-primary: #F0F2F5;
  --text-muted: #9CA3AF;
  --text-dark: #1E293B;
  --border: rgba(209, 213, 219, 0.12);
  --border-light: rgba(209, 213, 219, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 30px rgba(0, 71, 171, 0.25);
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; text-transform: uppercase; letter-spacing: 0.03em; }
.section-tag {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  color: var(--cobalt-bright);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white), var(--bg-silver-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 8px;
  transition: var(--transition);
  text-transform: uppercase;
  gap: 8px;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--cobalt), var(--cobalt-bright));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 71, 171, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 85, 212, 0.55);
}
.btn--outline {
  border: 2px solid var(--border-light);
  color: var(--text-primary);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--cobalt-bright);
  color: var(--cobalt-bright);
  background: rgba(0, 71, 171, 0.08);
}
.btn--full { width: 100%; }
.btn:disabled { opacity: 0.35; pointer-events: none; }

/* ═══════ NAVIGATION ═══════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(11, 15, 25, 0.92); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-icon { color: var(--cobalt-bright); font-size: 1.2rem; }
.logo-accent { color: var(--cobalt-bright); }
.nav__links { display: none; gap: 28px; }
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cobalt-bright);
  transition: var(--transition);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: none; }
.nav__hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 15, 25, 0.97);
  backdrop-filter: blur(30px);
  justify-content: center;
  align-items: center;
  gap: 36px;
  z-index: 999;
}
.nav__links.open a { font-size: 1.3rem; }

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #050810 0%, #0B1225 30%, #0D1A3A 60%, #091230 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(0, 71, 171, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 85, 212, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.hero__content {
  position: relative;
  text-align: center;
  padding: 120px 20px 80px;
  z-index: 2;
}
.hero__tag {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  color: var(--cobalt-bright);
  letter-spacing: 0.35em;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white) 20%, var(--bg-silver-mid) 50%, var(--cobalt-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__title--accent { color: var(--cobalt-bright); -webkit-text-fill-color: var(--cobalt-bright); }
.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 48px; }
.hero__stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cobalt-bright);
}
.stat__label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll-hint span { font-size: 0.65rem; letter-spacing: 0.3em; color: var(--text-muted); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--cobalt-bright), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ═══════ SERVICES ═══════ */
.services { padding: 100px 0; }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cobalt), var(--cobalt-bright));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(0, 71, 171, 0.3); box-shadow: var(--shadow-glow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ═══════ PRICING TIERS ═══════ */
.pricing { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(0, 71, 171, 0.04), transparent); }
.pricing__grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card--featured {
  border-color: var(--cobalt-bright);
  background: linear-gradient(170deg, rgba(0, 71, 171, 0.12) 0%, var(--bg-card) 60%);
  box-shadow: var(--shadow-glow);
}
.price-card--featured:hover { box-shadow: 0 0 50px rgba(0, 71, 171, 0.35); }
.price-card__badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cobalt-bright);
  background: rgba(0, 71, 171, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
}
.price-card__name { font-size: 1.4rem; margin-bottom: 8px; }
.price-card__price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.price-card__price sup { font-size: 1.4rem; vertical-align: super; color: var(--text-muted); }
.price-card__desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.price-card__features { text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.price-card__features li { font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.check { color: var(--cobalt-bright); font-weight: 700; }
.x { color: #4B5563; }
.price-card__features .disabled { color: #4B5563; }

/* ═══════ BOOKING WIZARD ═══════ */
.booking { padding: 100px 0; }
.wizard-progress { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 48px; max-width: 460px; margin-left: auto; margin-right: auto; }
.wizard-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.wizard-progress__step span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--border-light);
  color: var(--text-muted);
  transition: var(--transition);
}
.wizard-progress__step.active span {
  border-color: var(--cobalt-bright);
  background: var(--cobalt);
  color: var(--white);
  box-shadow: 0 0 20px rgba(0, 71, 171, 0.4);
}
.wizard-progress__step.done span { border-color: #22c55e; background: #22c55e; color: var(--white); }
.wizard-progress__step p { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.wizard-progress__line { flex: 1; height: 2px; background: var(--border); position: relative; min-width: 40px; }
.wizard-progress__fill { position: absolute; top: 0; left: 0; height: 100%; width: 0; background: var(--cobalt-bright); transition: width 0.5s ease; }

.wizard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.wizard__step { display: none; animation: fadeSlide 0.4s ease; }
.wizard__step.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.wizard__step h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 28px;
}

/* Vehicle cards */
.vehicle-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 20px; }
.vehicle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
}
.vehicle-card:hover, .vehicle-card.selected {
  border-color: var(--cobalt-bright);
  background: rgba(0, 71, 171, 0.1);
  box-shadow: var(--shadow-glow);
}
.vehicle-card__icon { font-size: 2.5rem; }
.vehicle-card__label { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.vehicle-card__time { font-size: 0.8rem; color: var(--text-muted); }
.wizard__est { text-align: center; font-size: 0.9rem; color: var(--cobalt-bright); margin-bottom: 16px; min-height: 24px; }

/* Package cards */
.package-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
.package-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
  position: relative;
}
.package-card:hover, .package-card.selected {
  border-color: var(--cobalt-bright);
  background: rgba(0, 71, 171, 0.1);
}
.package-card__name { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; text-transform: uppercase; }
.package-card__price { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--cobalt-bright); }
.package-card__tag {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--cobalt);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 100px;
}

/* Calendar */
.schedule-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; }
.calendar {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.calendar__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.calendar__month { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; }
.calendar__nav {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: var(--transition);
}
.calendar__nav:hover { border-color: var(--cobalt-bright); color: var(--cobalt-bright); }
.calendar__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: 8px; }
.calendar__weekdays span { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.calendar__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  width: 100%;
  aspect-ratio: 1;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  background: transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) { background: rgba(0, 71, 171, 0.2); }
.cal-day.selected { background: var(--cobalt); color: var(--white); box-shadow: 0 0 12px rgba(0, 71, 171, 0.5); }
.cal-day--disabled { color: #374151; pointer-events: none; }
.cal-day--empty { pointer-events: none; }
.cal-day--today { border: 1px solid var(--cobalt-bright); }

/* Time slots */
.time-slots__label { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.time-slots__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.time-slot {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  cursor: pointer;
}
.time-slot:hover, .time-slot.selected {
  border-color: var(--cobalt-bright);
  background: rgba(0, 71, 171, 0.15);
  color: var(--cobalt-bright);
}

.wizard__nav-row { display: flex; gap: 12px; justify-content: space-between; }
.wizard__nav-row .btn { flex: 1; }

/* Confirmation */
.confirm { text-align: center; padding: 20px 0; }
.confirm__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
  animation: popIn 0.5s ease;
}
@keyframes popIn { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.confirm h3 { font-size: 1.6rem; margin-bottom: 8px; }
.confirm p { color: var(--text-muted); margin-bottom: 24px; }
.confirm__summary {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
  text-align: left;
}
.confirm__summary p { margin-bottom: 8px; color: var(--text-primary); font-size: 0.95rem; }
.confirm__summary strong { color: var(--cobalt-bright); }

/* ═══════ REVIEW TICKER ═══════ */
.reviews { padding: 100px 0; overflow: hidden; background: linear-gradient(180deg, transparent, rgba(0, 71, 171, 0.03), transparent); }
.ticker-wrapper { overflow: hidden; margin-top: 48px; position: relative; }
.ticker-wrapper::before, .ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrapper::before { left: 0; background: linear-gradient(90deg, var(--bg-dark), transparent); }
.ticker-wrapper::after { right: 0; background: linear-gradient(270deg, var(--bg-dark), transparent); }
.ticker {
  display: flex;
  gap: 24px;
  animation: tickerScroll 35s linear infinite;
  width: max-content;
}
.ticker:hover { animation-play-state: paused; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.review-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.review-card:hover { border-color: rgba(0, 71, 171, 0.3); transform: translateY(-3px); }
.review-card__stars { color: #FBBF24; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.review-card__author { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; color: var(--cobalt-bright); }

/* ═══════ WEB PRICING (ABBOTT) ═══════ */
.web-pricing { padding: 100px 0; }
.web-pricing__grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 48px; margin-bottom: 48px; }
.web-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.web-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.web-card--featured { border-color: var(--cobalt-bright); box-shadow: var(--shadow-glow); }
.web-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--cobalt-bright); }
.web-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.web-card__price sup { font-size: 1.2rem; vertical-align: super; color: var(--text-muted); }
.web-card__price span { font-size: 1.4rem; color: var(--text-muted); }
.web-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.web-card ul { text-align: left; display: flex; flex-direction: column; gap: 8px; }
.web-card li { font-size: 0.9rem; color: var(--text-primary); }

.web-addons, .web-hosting { margin-top: 48px; }
.web-addons h3, .web-hosting h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white), var(--bg-silver-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.addon-grid { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 600px; margin: 0 auto; }
.addon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.addon:hover { border-color: rgba(0, 71, 171, 0.3); }
.addon__name { font-size: 0.95rem; }
.addon__price { font-family: var(--font-heading); font-weight: 700; color: var(--cobalt-bright); font-size: 1rem; }
.hosting-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 700px; margin: 0 auto; }
.hosting-option {
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.hosting-option:hover { transform: translateY(-2px); }
.hosting-option--featured { border-color: var(--cobalt-bright); box-shadow: var(--shadow-glow); }
.hosting-option__price {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cobalt-bright);
  margin-bottom: 4px;
}
.hosting-option__price small { font-size: 0.9rem; color: var(--text-muted); }
.hosting-option__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.hosting-option p { color: var(--text-muted); font-size: 0.85rem; }

/* ═══════ CONTACT ═══════ */
.contact { padding: 100px 0; }
.contact-form { max-width: 640px; margin: 32px auto 0; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group:not(.form-row .form-group) { margin-bottom: 16px; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.form-group input, .form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--cobalt-bright); box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.15); }
.form-group textarea { resize: vertical; }

/* ═══════ FOOTER ═══════ */
.footer { padding: 60px 0 0; border-top: 1px solid var(--border); }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
.footer__brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; }
.footer__links h4 { font-family: var(--font-heading); font-size: 0.9rem; margin-bottom: 12px; color: var(--cobalt-bright); letter-spacing: 0.08em; }
.footer__links a { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; transition: var(--transition); }
.footer__links a:hover { color: var(--cobalt-bright); }
.footer__links p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer__badge {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer__badge p { font-size: 0.8rem; color: var(--text-muted); }
.footer__badge a { color: var(--cobalt-bright); font-weight: 600; transition: var(--transition); }
.footer__badge a:hover { text-decoration: underline; }

/* ═══════ TOAST ═══════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--cobalt);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ═══════ REVEAL ANIMATION ═══════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════ */

/* 480px+ */
@media (min-width: 480px) {
  .vehicle-grid { grid-template-columns: repeat(3, 1fr); }
  .time-slots__grid { grid-template-columns: repeat(3, 1fr); }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 768px+ */
@media (min-width: 768px) {
  .container { padding: 0 40px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .price-card--featured { transform: scale(1.04); }
  .price-card--featured:hover { transform: scale(1.04) translateY(-6px); }
  .web-pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .hosting-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
  .wizard { padding: 48px 36px; }
  .review-card { width: 360px; }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; padding: 10px 24px; font-size: 0.8rem; }
  .nav__hamburger { display: none; }
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .hero__content { padding: 160px 20px 100px; }
  .time-slots__grid { grid-template-columns: repeat(3, 1fr); }
}

/* 1200px+ */
@media (min-width: 1200px) {
  .container { padding: 0 24px; }
  .wizard { padding: 56px 48px; }
}
