/* ══════════════════════════════════════
   BUTTONS — Combo C
   01. .btn-primary  · Press Block (06)      — main site-wide CTA
   02. .btn-dark     · Sheen Sweep (03)      — secondary action
   03. .btn-secondary · Underline Ghost (08) — text link on dark
   04. .btn-hero     · Triple Stack (28)     — homepage hero ONLY
   05. .btn-holo     · Holographic (18)      — pricing "Most Popular"
   06. .btn-success  · Success Pulse (07)    — confirmations
══════════════════════════════════════ */

/* ── Primary · Press Block (yellow + navy hard shadow) ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--yellow); color: var(--navy);
  border: 2px solid var(--navy);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--navy);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: #ffc933;
  box-shadow: 6px 6px 0 var(--navy);
  transform: translate(-1px, -1px);
}
.btn-primary:active {
  box-shadow: 0 0 0 var(--navy);
  transform: translate(4px, 4px);
}
.btn-primary svg { color: currentColor; }

/* ── Secondary (on dark) · Underline Ghost (yellow for dark bg) ── */
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: none;
  padding: 0.75rem 0.25rem;
  border-radius: 0;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.btn-secondary::after {
  content: '';
  position: absolute;
  left: 0.25rem; bottom: 0.35rem;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-secondary:hover { color: var(--yellow); }
.btn-secondary:hover::after { width: calc(100% - 0.5rem); }
.btn-secondary svg { transition: transform 0.3s ease; }
.btn-secondary:hover svg { transform: translateX(4px); }

/* ── Dark (secondary on light bg) · Sheen Sweep (orange + shimmer) ── */
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: #fff;
  border: none;
  padding: 0.85rem 1.9rem;
  border-radius: 4px;
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(242,107,31,0.4);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
.btn-dark::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: left 0.6s ease;
}
.btn-dark:hover {
  background: var(--orange);
  box-shadow: 0 6px 20px rgba(242,107,31,0.6);
  transform: translateY(-1px);
}
.btn-dark:hover::before { left: 110%; }

/* ── Hero · Triple Stack (HOMEPAGE HERO ONLY — one per page) ── */
.btn-hero {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--orange); color: #fff;
  border: 2px solid var(--navy);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  position: relative;
  box-shadow:
    4px 4px 0 var(--yellow),
    8px 8px 0 var(--sky),
    12px 12px 0 var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  /* reserve room for the stacked shadow so layout doesn't shift */
  margin-right: 12px; margin-bottom: 12px;
}
.btn-hero:hover {
  transform: translate(-4px, -4px);
  box-shadow:
    6px 6px 0 var(--yellow),
    12px 12px 0 var(--sky),
    18px 18px 0 var(--navy);
}
.btn-hero:active {
  transform: translate(12px, 12px);
  box-shadow:
    0 0 0 var(--yellow),
    0 0 0 var(--sky),
    0 0 0 var(--navy);
}

/* ── Holographic · pricing "Most Popular" card ── */
.btn-holo {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 50%, var(--navy) 100%);
  background-size: 200% 200%;
  color: var(--yellow);
  border: none;
  padding: 0.85rem 1.9rem;
  border-radius: 4px;
  font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(26,125,217,0.4);
  text-shadow: 0 0 8px rgba(255,184,0,0.4);
  animation: btn-holo-shift 4s ease infinite;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
@keyframes btn-holo-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn-holo:hover {
  box-shadow: 0 6px 28px rgba(26,125,217,0.7), 0 0 40px rgba(255,184,0,0.3);
  animation-duration: 1.5s;
}

/* ── Success · pulse (confirmations: payment received, booking confirmed) ── */
.btn-success {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: #fff;
  border: none;
  padding: 0.85rem 1.9rem;
  border-radius: 4px;
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(46,139,61,0.4);
  animation: btn-success-pulse 2.4s ease-in-out infinite;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
@keyframes btn-success-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(46,139,61,0.4), 0 0 0 0 rgba(46,139,61,0.5); }
  50%      { box-shadow: 0 4px 14px rgba(46,139,61,0.4), 0 0 0 12px rgba(46,139,61,0); }
}
.btn-success:hover {
  transform: scale(1.04);
  animation-play-state: paused;
  box-shadow: 0 0 28px rgba(46,139,61,0.8);
}

/* ── Service category chips (services.html hero jumplinks) ── */
.svc-chip-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.svc-chip {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition: background 0.2s ease, color 0.2s ease;
}
.svc-chip:hover {
  background: var(--yellow);
  color: var(--navy);
}

/* ══════════════════════════════════════
   WAVE DIVIDER
══════════════════════════════════════ */
.wave-divider {
  display: block; width: 100%;
  overflow: hidden; line-height: 0; margin-top: -2px;
}

/* ══════════════════════════════════════
   CONTENT SECTIONS (alternating)
══════════════════════════════════════ */
.section {
  padding: 7rem 0;
  position: relative; overflow: hidden;
}
.section:nth-child(even) { background: var(--sand); }
.section:nth-child(odd)  { background: var(--cream); }

.section-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.section-inner.reverse { direction: rtl; }
.section-inner.reverse > * { direction: ltr; }

.section-number {
  position: absolute;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22rem; font-weight: 900; line-height: 1;
  color: var(--rule); opacity: 0.35;
  pointer-events: none; user-select: none;
  top: -3rem; right: -2rem; z-index: 0;
}
.section-inner.reverse ~ .section-number,
.section-inner.reverse + .section-number { right: auto; left: -2rem; }

.section-text { position: relative; z-index: 1; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.1rem;
}
.section-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: currentColor;
}

.section-h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy); margin-bottom: 1.25rem;
}
.section-h2 em { font-style: italic; color: var(--ocean); }

/* On dark-background sections, force italic em color to sky blue so it stays readable */
.pricing-section .section-h2 em,
.reviews-section .section-h2 em,
.cta-section .section-h2 em,
.annual-section .section-h2 em {
  color: var(--sky);
}

.section-body {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--muted); margin-bottom: 2rem;
}

.service-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 2rem;
}
.service-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
}

.price-inline {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--accent); margin-left: auto;
}

/* ══════════════════════════════════════
   ILLUSTRATION PANELS
══════════════════════════════════════ */
.illus-panel {
  position: relative; z-index: 1;
  border-radius: 1.5rem; overflow: hidden;
}
.illus-panel svg { display: block; width: 100%; height: auto; }

.illus-badge {
  position: absolute;
  background: #fff; border-radius: 1rem;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 12px 40px rgba(10,42,78,0.18);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
  min-width: 160px;
}
.illus-badge .badge-sub { font-size: 0.72rem; font-weight: 400; color: var(--muted); margin-top: 1px; }
.illus-badge-1 { bottom: 2rem; left: -1.5rem; }
.illus-badge-2 { top: 2rem; right: -1.5rem; }

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-section {
  background: var(--navy);
  padding: 7rem 0;
  position: relative; overflow: hidden;
}
.pricing-inner { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header .section-eyebrow { color: var(--yellow); justify-content: center; }
.pricing-header .section-eyebrow::before { background: var(--yellow); }
.pricing-header .section-h2 { color: #fff; }
.pricing-header .section-body { color: rgba(255,255,255,0.5); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pricing-col {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  transition: background 0.2s;
}
.pricing-col:hover { background: rgba(255,255,255,0.08); }
.pricing-col-cat {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 1.25rem;
}
.pricing-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item-name { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.pricing-item-price {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.95rem; font-weight: 700; color: var(--sky);
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how-section {
  background: var(--cream);
  padding: 7rem 0; position: relative;
}
.how-inner { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.how-header { text-align: center; margin-bottom: 5rem; }

.steps-track {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; position: relative;
}
.steps-track::before {
  content: '';
  position: absolute; top: 3rem; left: 16.66%; right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--ocean), var(--mint));
  z-index: 0;
}
.step {
  position: relative; z-index: 1;
  text-align: center; padding: 0 2.5rem;
}
.step-num {
  width: 4rem; height: 4rem;
  background: var(--navy); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.4rem; font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 6px var(--cream), 0 0 0 8px var(--sky);
}
.step:nth-child(2) .step-num { background: var(--orange); box-shadow: 0 0 0 6px var(--cream), 0 0 0 8px var(--orange); }
.step:nth-child(3) .step-num { background: var(--green); box-shadow: 0 0 0 6px var(--cream), 0 0 0 8px var(--green); }
.step h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.6rem;
}
.step p { font-size: 0.95rem; line-height: 1.7; color: var(--muted); }

/* ══════════════════════════════════════
   CAR SEAT CALLOUT
══════════════════════════════════════ */
.carseat-section {
  background: var(--sand);
  padding: 7rem 0;
  position: relative; overflow: hidden;
}
.policy-box {
  background: rgba(10,42,78,0.07);
  border: 1px solid rgba(10,42,78,0.2);
  border-left: 3px solid var(--ocean);
  border-radius: 0.75rem;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.policy-box-title {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ocean); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.35rem;
}
.policy-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.policy-list li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.9rem; color: var(--ink); line-height: 1.5;
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-section {
  background: var(--navy);
  padding: 7rem 0; overflow: hidden;
}
.reviews-inner { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.reviews-header { text-align: center; margin-bottom: 4rem; }
.reviews-header .section-h2 { color: #fff; }

.reviews-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.25rem; padding: 2rem;
  transition: background 0.2s;
}
.review-card:hover { background: rgba(255,255,255,0.09); }
.review-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.review-text {
  font-size: 0.95rem; line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 0.9rem;
}
.review-card:nth-child(2) .review-avatar { background: var(--orange); }
.review-card:nth-child(3) .review-avatar { background: var(--green); }
.review-card:nth-child(4) .review-avatar { background: var(--yellow); color: var(--ink); }
.review-card:nth-child(5) .review-avatar { background: var(--red); }
.review-card:nth-child(6) .review-avatar { background: var(--orange); }
.review-name { font-weight: 600; color: #fff; font-size: 0.88rem; }
.review-meta { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 1px; }

/* ══════════════════════════════════════
   QUOTE CALCULATOR
══════════════════════════════════════ */
.ctab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.4rem;
  border: none; border-bottom: 3px solid transparent;
  background: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--muted); white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.ctab:hover { color: var(--navy); }
.ctab.active { color: var(--ocean); border-bottom-color: var(--ocean); }

.calc-panel-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1rem;
}
.size-pill {
  padding: 0.5rem 1.1rem; border-radius: 4px;
  border: 1.5px solid var(--rule); background: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: all 0.18s;
}
.size-pill:hover { border-color: var(--sky); color: var(--ocean); }
.size-pill.active { border-color: var(--ocean); background: rgba(10,42,78,0.08); color: var(--ocean); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.svc-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.45rem;
  padding: 1.1rem 0.75rem;
  border: 2px solid var(--rule); border-radius: 1rem;
  background: #fff; cursor: pointer;
  transition: all 0.18s; position: relative;
}
.svc-card:hover { border-color: var(--sky); background: var(--foam); transform: translateY(-2px); }
.svc-card.selected {
  border-color: var(--ocean); background: rgba(10,42,78,0.07);
  box-shadow: 0 0 0 3px rgba(10,42,78,0.15);
}
.svc-card.selected::after {
  content: '';
  position: absolute; top: 0.5rem; right: 0.5rem;
  width: 16px; height: 16px;
  background: var(--mint); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E");
  background-size: cover;
}
.svc-icon { display: flex; align-items: center; justify-content: center; color: var(--ocean); }
.svc-name { font-size: 0.84rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.svc-price { font-size: 0.75rem; color: var(--muted); font-weight: 500; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  padding: 8rem 0;
  background: var(--cream);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto; padding: 0 2rem;
}
.cta-inner .section-h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.cta-sub { font-size: 1.1rem; color: var(--muted); line-height: 1.7; margin: 1.25rem 0 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #0e1a24;
  padding: 4rem 3rem 2.5rem;
  color: rgba(255,255,255,0.45);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem; flex-wrap: wrap; gap: 2rem;
}
.footer-brand .nav-logo-text { color: #fff; font-size: 1.3rem; }
.footer-brand p { font-size: 0.85rem; margin-top: 0.5rem; max-width: 28ch; line-height: 1.6; }
.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h4 {
  color: rgba(255,255,255,0.7); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.4);
  text-decoration: none; font-size: 0.875rem;
  margin-bottom: 0.5rem; transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--sky); text-decoration: none; }

