/* ===============================
   The Detailer – Light Theme
   Drop-in replacement for style.css
   =============================== */

:root {
  /* Brand + palette */
  --accent: #0ea5e9;            /* primary (sky blue) */
  --accent-600: #0284c7;
  --accent-100: #e0f2fe;

  --text: #0f172a;              /* slate-900 */
  --text-soft: #334155;         /* slate-700 */
  --muted: #64748b;             /* slate-500 */

  --bg: #e5e7eb;                /* page background */
  --surface: #ffffff;           /* cards, panels */
  --surface-2: #f8fafc;         /* subtle bands/strips */
  --border: #e5e7eb;            /* soft border */
  --ring: #93c5fd;              /* focus ring */

  --container-width: 1200px;
  --radius: 12px;
  --gap: 1.25rem;
  --max-w: 1200px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(2, 132, 199, 0.15);

  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 16px;
}

/* Typography */
h1,h2,h3,h4 { color: var(--text); margin: 0 0 .5rem; line-height: 1.2; }
p { color: var(--text-soft); margin: 0 0 1rem; }

/* Links */
a { color: var(--accent-600); }
a:hover { color: var(--accent); }

/* Focus styles */
:where(a, button, [href], .btn, .operator-link, .locations-grid a):focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: saturate(1.2) blur(6px);
}

.site-header .container { padding: .75rem 0; }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0;
}

.brand { display: flex; align-items: center; text-decoration: none; }

.logo {
  height: 72px;
  max-height: 72px;
  display: block;
  margin: 0;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.15rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: .35rem .5rem;
  border-radius: 8px;
}

.main-nav a:hover { background: var(--surface-2); }

.header-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-sm);
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover { background: var(--accent-600); }

.btn-outline {
  background: #fff;
  color: var(--accent-600);
  border: 1px solid var(--accent-600);
}

.btn-outline:hover {
  background: var(--accent-100);
  color: var(--accent-600);
}

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

.btn-secondary {
  display: inline-block;
  margin-top: .5rem;
  font-weight: 600;
  color: var(--accent-600);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: .25rem .5rem;
  border-radius: 8px;
}

/* Info Strip */
.info-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.info-strip .container { padding: .75rem 0; }
.info-strip p { margin: 0; font-size: .98rem; color: var(--text-soft); }
.info-strip a { color: var(--accent-600); font-weight: 700; }

/* Hero */
.hero {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  min-height: 420px;
  overflow: hidden;
}

.video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #0b1220;
  padding: 2rem 1rem;
  /* Light, legible overlay over video */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.65),
    rgba(255,255,255,0.55)
  );
  border-bottom: 1px solid var(--border);
}

.hero-overlay h1 {
  font-size: 2.4rem;
  margin-bottom: .75rem;
}

.hero-overlay p {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--text-soft);
}

.hero-overlay .btn { margin: .4rem; }

/* Hero Logos */
.hero-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.hero-logo { max-width: 100%; height: auto; width: auto; max-height: 140px; }
.top-logo { max-height: 320px; }
.bottom-logo { max-height: 60px; }

/* Booking */
.booking-widget {
  padding: 2rem 0;
  text-align: center;
  background: var(--surface);
  color: var(--text);
}

.booking-placeholder {
  border: 1px dashed var(--border);
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface-2);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.section-header p { color: var(--muted); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
  cursor: pointer;
  overflow: hidden;
}

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

/* FIX: valid padding value (the old "0.6-0.8rem" was invalid) */
.service-card .service-card-content { padding: 0.7rem; }

.service-card h3 { margin: .5rem 1rem 0; color: var(--text); }
.service-card p { margin: .5rem 1rem 1rem; color: var(--muted); font-size: .98rem; }

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-100);
  box-shadow: var(--shadow-lg);
}

/* Locations */
.locations {
  background: var(--surface-2);
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.locations-grid {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: flex-start;
}

.locations-grid a {
  background: #fff;
  padding: .5rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.locations-grid a:hover {
  border-color: var(--accent-600);
  background: var(--accent-100);
}

/* How It Works */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.how-step {
  background: var(--surface);
  padding: 1.1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  color: var(--text);
  border: 1px solid var(--border);
}

.how-step strong {
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  padding: 0;
  border-radius: 999px;
  margin-bottom: .6rem;
  width: 48px; height: 48px;
  font-weight: 800;
}

/* Footer */
.site-footer {
  background: var(--surface-2);
  color: var(--text);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 180px 220px;
  gap: 1rem;
  align-items: start;
}

.footer-logo { height: 60px; margin-bottom: .6rem; }

.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links a { color: var(--text); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

.footer-contact a { color: var(--accent-600); }

/* Become a Detailer Button */
.operator-link {
  background-color: var(--accent);
  color: #fff;
  font-weight: 800;
  padding: .5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color .25s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-sm);
}

.operator-link:hover {
  background-color: var(--accent-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ===== Premium Section (light) ===== */
.premium-section {
  text-align: center;
  padding: 3.25rem 2rem;
  margin-bottom: 3rem;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.premium-section h2 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.premium-section .text-block { max-width: 800px; margin: 0 auto; }

.premium-section p {
  font-size: 1.075rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
  text-align: left;
}

.comparison h3 { color: var(--text); margin-bottom: .5rem; }
.comparison ul { list-style: none; padding: 0; margin: 0; }
.comparison ul li { margin-bottom: .45rem; color: var(--muted); }

/* ===== Premium Process Section (light) ===== */
.process { margin: 3rem auto; }

.process .section-lead {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 1.5rem;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.1rem 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.process-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 160px at -10% -10%, rgba(2,132,199,.08), transparent 45%);
  pointer-events: none;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-100);
  box-shadow: var(--shadow-lg);
}

.process-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(14,165,233,0.14), rgba(14,165,233,0.06));
  border: 1px solid rgba(14,165,233,0.35);
  box-shadow: inset 0 0 0 1px rgba(14,165,233,0.12);
  margin-bottom: .75rem;
}

.process-card h3 {
  margin: 0 0 .4rem;
  color: var(--text);
  font-size: 1.12rem;
}

.process-accent {
  width: 48px; height: 3px; border-radius: 999px;
  background: var(--accent);
  margin-bottom: .6rem;
}

.process-card p {
  margin: 0 0 .75rem;
  color: var(--muted);
  line-height: 1.6;
}

.process-list { list-style: none; margin: .25rem 0 0; padding: 0; }

.process-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .55rem;
  align-items: start;
  margin: .45rem 0;
  color: var(--text-soft);
  font-size: .98rem;
}

.process-tick {
  margin-top: .15rem;
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(14,165,233,.5);
  background: rgba(14,165,233,.08);
  display: grid; place-items: center;
  font-size: .8rem; line-height: 1; color: var(--accent-600);
}

.badges { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .4rem; }
.badge {
  font-size: .8rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(14,165,233,.35);
  color: var(--accent-600);
  background: rgba(14,165,233,.08);
}

/* Responsive */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 1rem; }

  .main-nav {
    position: absolute;
    right: 1rem;
    top: 72px;
    background: #fff;
    border: 1px solid var(--border);
    padding: .75rem;
    border-radius: 12px;
    display: none;
    box-shadow: var(--shadow);
    width: min(86vw, 320px);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: .4rem; align-items: stretch; }
  .main-nav a { padding: .6rem .75rem; }

  .nav-toggle { display: block; }

  .services-grid, .how-grid, .footer-grid { grid-template-columns: 1fr; }

  .logo { height: 56px; max-height: 56px; }
  .header-inner { padding: 0; }

  .operator-link {
    padding: .45rem .8rem;
    font-size: .9rem;
  }

  .hero-overlay h1 { font-size: 1.9rem; }
}

/* Utility: card content wrapper for services (keeps your markup flexible) */
.service-card > h3,
.service-card > p,
.service-card > .btn,
.service-card > span {
  margin-left: 1rem;
  margin-right: 1rem;
}

/* Small tweaks */
hr { border: 0; border-top: 1px solid var(--border); margin: 2rem 0; }

/* === Section heading alignment fixes === */
.packages-section > h2,
.benefits > h2 {
  grid-column: 1 / -1;
  margin-bottom: .75rem;
}

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

/* Thin chevron caret (not a filled triangle) */
.caret {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
  vertical-align: middle;
}

/* Flip to “^” when open */
.accordion[aria-expanded="true"] .caret {
  transform: rotate(-135deg);
}

/* ----- Slideshow container ----- */
.process--slider { margin: 2rem 0 3rem; }

.process-slider {
  display: grid;
  gap: .75rem;
  justify-items: center;
}

/* The single coloured box */
.process-box {
  --box-bg: var(--accent-100);
  --box-border: var(--accent-600);

  background: var(--box-bg);
  border: 1px solid var(--box-border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1.4rem;
  width: min(860px, 100%);
  text-align: left;
  cursor: pointer;

  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.process-box:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.process-box:focus-visible { outline: 3px solid var(--ring); }

/* Title + copy inside the box (injected by JS) */
.process-box h3 {
  margin: 0 0 .4rem;
  font-size: 1.25rem;
  color: var(--text);
}
.process-box p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Slide animation */
.process-box.is-animating-out { animation: slideOut .22s ease forwards; }
.process-box.is-animating-in  { animation: slideIn  .22s .08s ease forwards; opacity: 0; transform: translateX(10px); }

@keyframes slideOut { to { opacity: 0; transform: translateX(-10px); } }
@keyframes slideIn  { to { opacity: 1; transform: translateX(0); } }

/* Controls */
.process-controls {
  display: grid;
  grid-auto-flow: column;
  gap: .5rem 1rem;
  align-items: center;
}
.process-nav {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .4rem .8rem;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.process-nav:hover { background: var(--surface-2); }

.process-dots { display: inline-flex; gap: .4rem; }
.process-dot {
  width: 9px; height: 9px; border-radius: 999px;
  border: 1px solid var(--accent-600);
  background: transparent;
}
.process-dot[aria-selected="true"] { background: var(--accent-600); }

/* Hide the original static steps (still accessible to AT if needed) */
.process-source { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Reusable landscape media box (deduped) */
.media-landscape{
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-landscape > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Utility for aligning two-column layouts */
.two-col{ align-items: start; }


/* === Valet page (scoped) =============================================== */
.page-detailing .hero {
  text-align: center;
  background: linear-gradient(to right, #ffffff, var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-height: 0;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}
.page-detailing .hero h1 { margin: 0 0 .5rem; }
.page-detailing .hero p  {
  margin: 0;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
  color: var(--text-soft);
}

/* Two Column */
.page-detailing .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.page-detailing .two-col img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Packages */
.page-detailing .packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0 3rem;
}
.page-detailing .package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.page-detailing .package-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-100);
  box-shadow: var(--shadow-lg);
}
.page-detailing .package-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--surface-2);
  overflow: hidden;
}
.page-detailing .package-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.page-detailing .package-card:hover .package-media img { transform: scale(1.04); }
.page-detailing .package-body {
  padding: 1.1rem 1.25rem 1.3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.page-detailing .package-body h2 { font-size: 1.35rem; margin: .2rem 0 .1rem; color: var(--text); }
.page-detailing .price { display:block; font-size:1.1rem; font-weight:800; color: var(--accent-600); }
.page-detailing .duration { display:block; font-size:.95rem; color: var(--muted); }

/* Accordion (uses global .caret visuals from main.css) */
.page-detailing .includes { text-align:left; margin:.25rem 0 1rem; padding:0; list-style:none; }
.page-detailing .includes li { margin-bottom:.5rem; }
.page-detailing .accordion {
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  padding: .55rem .8rem;
  width: 100%;
  border: 1px solid var(--border);
  text-align: left;
  border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .35rem;
  transition: background .2s ease, border-color .2s ease;
}
.page-detailing .accordion:hover { background: #fff; border-color: var(--accent-100); }
.page-detailing .accordion[aria-expanded="true"] { background: var(--accent-100); border-color: var(--accent-100); }
.page-detailing .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: #fff;
  padding: 0 .8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: .5rem;
}
.page-detailing .panel p { margin:.6rem 0; color: var(--text-soft); font-size:.95rem; }

/* Benefits */
.page-detailing .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0 3rem;
}
.page-detailing .benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
  text-align: center;
}
.page-detailing .benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-100);
  box-shadow: var(--shadow-lg);
}

/* Process (overrides – generic process styles already exist) */
@media (max-width: 900px) {
  .page-detailing .two-col { grid-template-columns: 1fr; }
  .process-box { padding: 2rem 1.25rem; }
  .process-box h3 { font-size: 1.5rem; }
  .process-box p  { font-size: 1rem; }
}




/* === Extras / Protection page (scoped) ================================ */
.page-extras .hero {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(to right, #ffffff, var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 0 0 2rem;
  box-shadow: var(--shadow);
  min-height: 0;
}
.page-extras .hero h1 { margin: 0 0 .5rem; }
.page-extras .hero p  { max-width: 820px; margin: .5rem auto 0; color: var(--text-soft); }

/* Card grid: Popular Extras */
.page-extras .extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1rem 0 2.5rem;
}
.page-extras .extra-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
}
.page-extras .extra-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-100);
  box-shadow: var(--shadow-lg);
}
.page-extras .extra-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--surface-2);
  overflow: hidden;
}
.page-extras .extra-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .45s ease;
}
.page-extras .extra-card:hover .extra-media img { transform: scale(1.04); }

.page-extras .extra-body {
  padding: 1.1rem 1.25rem 1.3rem;
  display: flex; flex-direction: column; gap: .55rem;
  text-align: left;
}
.page-extras .extra-title { margin: 0; color: var(--text); }
.page-extras .extra-price { font-weight: 800; color: var(--accent-600); }
.page-extras .extra-note  { color: var(--muted); font-size: .95rem; }

/* Recommended Combos */
.page-extras .bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1rem 0 2.5rem;
}
.page-extras .bundle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.25rem 1.3rem;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
}
.page-extras .bundle-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-100);
  box-shadow: var(--shadow-lg);
}
.page-extras .bundle-card ul { margin: .5rem 0 0; padding-left: 1.1rem; }

/* CTA card (centered) */
.page-extras .packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 1.25rem;
  margin: 1rem 0 2.5rem;
}
.page-extras .package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
}
.page-extras .package-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-100);
  box-shadow: var(--shadow-lg);
}
.page-extras .package-body { padding: 1.1rem 1.25rem 1.3rem; }

@media (max-width: 640px) {
  .page-extras .hero { padding: 2rem 1rem; }
  .page-extras .package-body { padding: 1rem; }
}







