/* ================================================================
   service-page.css — AuraGo Service & Route content pages
   Shared by /pages/services/*.html and /pages/routes/*.html
   Palette: "Tech-Modern / Hardwired Branding" — neutral near-black /
   Charcoal / Cream / Brown. (Source design's bg swatch was a purple-
   tinted black, #060126; swapped for the palette's own neutral
   #0D0D0D swatch instead — no invented color, just dropping the
   purple cast.) Source design's brown (#734D2D) is too dark to read
   as text on either the charcoal card or the bg (~1.5:1 and ~2.6:1)
   — it's kept as the true accent for borders, pale tints and
   gradients that never carry text, while a brown+cream derivative
   (#C6A679) covers actual accent text/icons (~4.8:1 on the card,
   ~8.5:1 on bg). Cream (#F2D6A2) is the headline/off-white; raw
   brown doubles as the dark accent for the light band, where it
   reads at ~5.3:1.
   ================================================================ */

:root {
  --svc-gold:          #734D2D; /* true brown — gradients, borders, pale tints (not for text on dark) */
  --svc-gold-light:    #C6A679; /* brown+cream derivative — readable accent text/icons on the charcoal card (~4.8:1) */
  --svc-gold-dark:     #734D2D; /* true brown reused — accent text on LIGHT surfaces, e.g. the beige band (~5.3:1) */
  --svc-gold-pale:     rgba(115, 77, 45, 0.10);
  --svc-bg:            #0D0D0D; /* neutral near-black, no purple tint */
  --svc-card:          #383D40;
  --svc-card-2:        #444943;
  --svc-off-white:     #F2D6A2;
  --svc-off-white-soft: rgba(242, 214, 162, 0.72);
  --svc-off-white-dim: rgba(242, 214, 162, 0.10);
  --svc-off-white-line: rgba(242, 214, 162, 0.16);
  --svc-text:          #ADA79C; /* warm-neutral gray — ~4.6:1 on the charcoal card, ~8.5:1 on bg */
  --svc-muted:         rgba(242, 214, 162, 0.7);
  --svc-border:        rgba(115, 77, 45, 0.2);
  --svc-max:           1100px;
  --svc-gutter:        clamp(1.25rem, 5vw, 3.5rem);
  --svc-shadow:         0 14px 32px rgba(0, 0, 0, 0.45);
}

body { background: var(--svc-bg); }

/* ── Section rhythm: a hairline gold→transparent seam between
   sections so the page doesn't read as one flat black slab ──── */
.svc-section,
.svc-final-cta,
.svc-cta-strip {
  position: relative;
}
.svc-section + .svc-section::before {
  content: "";
  position: absolute;
  top: 0; right: var(--svc-gutter); left: var(--svc-gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--svc-off-white-line) 20%, var(--svc-border) 55%, transparent);
}

/* ── Hero ─────────────────────────────────────────────────── */
.svc-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(6.5rem, 13vw, 9rem) var(--svc-gutter) clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(115,77,45,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(242,214,162,0.05) 0%, transparent 70%);
}
.svc-hero__inner { max-width: 820px; margin: 0 auto; }
.svc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid var(--svc-off-white-line);
  border-radius: 999px;
  background: var(--svc-gold-pale);
  color: var(--svc-off-white);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.svc-hero__badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--svc-gold-light);
  box-shadow: 0 0 8px 1px var(--svc-gold-light);
}
.svc-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--svc-off-white);
  line-height: 1.3;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(115,77,45,0.2);
}
.svc-hero__title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--svc-gold-light) 20%, var(--svc-off-white) 55%, var(--svc-gold-light) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.svc-hero__subtitle {
  color: var(--svc-text);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 660px;
  margin: 0 auto 30px;
}
.svc-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.svc-hero__quicklist {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--svc-off-white-line);
}
.svc-hero__quicklist span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--svc-off-white-soft);
  font-size: 0.85rem;
  font-weight: 600;
}
.svc-hero__quicklist i { color: var(--svc-gold-light); }

/* ── Buttons ──────────────────────────────────────────────── */
.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: none;
  cursor: pointer;
}
.svc-btn--primary {
  background: linear-gradient(135deg, var(--svc-off-white) 0%, var(--svc-gold-light) 100%);
  color: #100c00;
  box-shadow: 0 8px 20px rgba(115,77,45,0.3);
}
.svc-btn--ghost {
  background: transparent;
  border: 1px solid var(--svc-off-white-line);
  color: var(--svc-off-white);
}
.svc-btn--ghost:hover { background: var(--svc-off-white-dim); border-color: var(--svc-gold-light); }
.svc-btn--block { width: 100%; justify-content: center; }
.svc-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }

/* ── Section shell ────────────────────────────────────────── */
.svc-section {
  max-width: var(--svc-max);
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.5rem) var(--svc-gutter);
}
.svc-section__eyebrow {
  color: var(--svc-gold-light);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.svc-section__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--svc-off-white);
  margin-bottom: 10px;
}
.svc-section__subtitle {
  color: var(--svc-muted);
  font-size: 0.95rem;
  margin-bottom: 26px;
}
.svc-section__text {
  color: var(--svc-text);
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 16px;
}
.svc-section__text strong { color: var(--svc-off-white); }

/* ── Pricing cards ────────────────────────────────────────── */
.svc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 10px;
}
.svc-price-card {
  position: relative;
  background: linear-gradient(165deg, var(--svc-card-2), var(--svc-card) 60%);
  border: 1px solid var(--svc-border);
  border-radius: 18px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--svc-shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.svc-price-card:hover { transform: translateY(-3px); border-color: var(--svc-off-white-line); }
.svc-price-card--featured {
  border-color: var(--svc-gold-light);
  background: linear-gradient(165deg, #4A4239, #0A0908 65%);
  box-shadow: 0 0 0 1px var(--svc-gold-light), 0 18px 40px rgba(115,77,45,0.22);
}
.svc-price-card__ribbon {
  position: absolute;
  top: -13px;
  right: 22px;
  background: linear-gradient(135deg, var(--svc-off-white), var(--svc-gold-light));
  color: #100c00;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}
.svc-price-card__name { color: var(--svc-off-white); font-size: 1.15rem; font-weight: 900; margin-bottom: 4px; }
.svc-price-card__capacity {
  color: var(--svc-muted);
  font-size: 0.82rem;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--svc-off-white-line);
}
.svc-price-card__price-label { color: var(--svc-muted); font-size: 0.78rem; }
.svc-price-card__price {
  color: var(--svc-gold-light);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
}
.svc-price-card__price span { font-size: 1rem; font-weight: 700; color: var(--svc-off-white); }
.svc-price-card__desc { color: var(--svc-text); font-size: 0.9rem; margin-bottom: 16px; }
.svc-price-card__features { list-style: none; padding: 0; margin: 0 0 22px; flex-grow: 1; }
.svc-price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--svc-text);
  font-size: 0.88rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.svc-price-card__features i { color: var(--svc-gold-light); margin-top: 3px; flex-shrink: 0; }

/* ── Feature grid ("الباقة تشمل") ────────────────────────── */
.svc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .svc-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-features { grid-template-columns: 1fr; }
}
.svc-feature {
  background: var(--svc-card);
  border: 1px solid var(--svc-border);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: var(--svc-shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.svc-feature:hover { transform: translateY(-3px); border-color: var(--svc-off-white-line); }
.svc-feature i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--svc-gold-pale), var(--svc-off-white-dim));
  border: 1px solid var(--svc-border);
  color: var(--svc-gold-light);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.svc-feature h3 {
  color: var(--svc-off-white);
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.svc-feature p {
  color: var(--svc-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── Booking steps ────────────────────────────────────────── */
.svc-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 10px;
}
.svc-step__number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--svc-off-white), var(--svc-gold-light));
  color: #100c00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(115,77,45,0.32);
}
.svc-step h3 { color: var(--svc-off-white); font-size: 1.02rem; font-weight: 800; margin-bottom: 6px; }
.svc-step p { color: var(--svc-muted); font-size: 0.88rem; line-height: 1.7; }

/* ── Comparison table ─────────────────────────────────────── */
.svc-compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--svc-border);
  box-shadow: var(--svc-shadow);
  background: var(--svc-card);
}
.svc-compare th, .svc-compare td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--svc-border);
  font-size: 0.88rem;
}
.svc-compare th {
  background: linear-gradient(135deg, var(--svc-gold-pale), var(--svc-off-white-dim));
  color: var(--svc-off-white);
  font-weight: 800;
}
.svc-compare th:first-child, .svc-compare td:first-child {
  text-align: right;
  color: var(--svc-off-white);
  font-weight: 700;
  width: 30%;
  background: rgba(255,255,255,0.015);
}
.svc-compare tbody tr:nth-child(even) td { background: rgba(255,255,255,0.012); }
.svc-compare td { color: var(--svc-text); }
.svc-compare tr:last-child td { border-bottom: none; }
.svc-compare .yes { color: var(--svc-gold-light); font-weight: 700; }
.svc-compare .no  { color: var(--svc-muted); }

/* ── Testimonials ─────────────────────────────────────────── */
.svc-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.svc-testimonial-card {
  position: relative;
  background: var(--svc-card);
  border: 1px solid var(--svc-border);
  border-radius: 18px;
  padding: 26px 22px 24px;
  box-shadow: var(--svc-shadow);
  overflow: hidden;
}
.svc-testimonial-card::before {
  content: "\201D";
  position: absolute;
  top: -18px;
  left: 12px;
  font-size: 5.5rem;
  font-family: Georgia, serif;
  color: var(--svc-off-white-dim);
  line-height: 1;
  pointer-events: none;
}
.svc-testimonial-card__stars { color: var(--svc-gold-light); font-size: 0.85rem; margin-bottom: 12px; }
.svc-testimonial-card__quote {
  position: relative;
  color: var(--svc-text);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.svc-testimonial-card__author { color: var(--svc-off-white); font-weight: 800; font-size: 0.92rem; }
.svc-testimonial-card__context { color: var(--svc-muted); font-size: 0.78rem; margin-top: 2px; }

/* ── FAQ accordion ────────────────────────────────────────── */
.svc-faq { margin-top: 10px; }
.svc-faq-item {
  border: 1px solid var(--svc-border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--svc-card);
  transition: border-color .2s ease;
}
.svc-faq-item.open { border-color: var(--svc-off-white-line); }
.svc-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  color: var(--svc-off-white);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: right;
  cursor: pointer;
  font-family: inherit;
}
.svc-faq-q i { color: var(--svc-gold-light); transition: transform .25s ease; flex-shrink: 0; }
.svc-faq-item.open .svc-faq-q i { transform: rotate(180deg); }
.svc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 20px;
  border-top: 0 solid var(--svc-off-white-line);
}
.svc-faq-item.open .svc-faq-a { max-height: 300px; padding: 0 20px 18px; border-top-width: 1px; }
.svc-faq-a p { color: var(--svc-muted); font-size: 0.9rem; line-height: 1.8; padding-top: 14px; }
.svc-faq__more { text-align: center; margin-top: 28px; }

/* ── Final CTA banner ─────────────────────────────────────── */
.svc-final-cta {
  background: linear-gradient(120deg, var(--svc-off-white) 0%, var(--svc-gold-light) 100%);
  padding: clamp(2.5rem, 6vw, 3.5rem) var(--svc-gutter);
  text-align: center;
  margin-top: clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}
.svc-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 15% 0%, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
}
.svc-final-cta h2 { color: #100c00; font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 900; margin-bottom: 8px; position: relative; }
.svc-final-cta p { color: rgba(16,12,0,0.85); font-size: 0.95rem; margin-bottom: 22px; position: relative; }
.svc-final-cta .svc-btn--primary {
  background: #100c00;
  color: var(--svc-off-white);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  position: relative;
}

/* ── Hub grid (services/routes index pages) ──────────────── */
.svc-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.svc-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--svc-card);
  border: 1px solid var(--svc-border);
  border-radius: 18px;
  padding: 26px 22px;
  text-decoration: none;
  box-shadow: var(--svc-shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.svc-hub-card:hover { transform: translateY(-4px); border-color: var(--svc-gold-light); }
.svc-hub-card i.svc-hub-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--svc-gold-pale), var(--svc-off-white-dim));
  border: 1px solid var(--svc-border);
  color: var(--svc-gold-light);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.svc-hub-card__name { color: var(--svc-off-white); font-size: 1.08rem; font-weight: 900; margin-bottom: 8px; }
.svc-hub-card__desc { color: var(--svc-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; flex-grow: 1; }
.svc-hub-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--svc-off-white-line);
}
.svc-hub-card__price { color: var(--svc-gold-light); font-size: 0.85rem; font-weight: 800; }
.svc-hub-card__arrow { color: var(--svc-off-white); font-size: 0.9rem; }

/* ── Service cards with photography (services hub grid) ───
   Distinct from .svc-hub-card above (kept for routes hub /
   inline booking-option cards, which have no imagery) ───── */
.svc-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  margin-top: 10px;
}
.svc-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--svc-card);
  border: 1px solid var(--svc-border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--svc-shadow);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .4s ease;
}
.svc-service-card:hover {
  transform: translateY(-7px);
  border-color: var(--svc-gold-light);
  box-shadow: 0 24px 46px rgba(0,0,0,0.55);
}
.svc-service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--svc-card-2);
}
.svc-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.svc-service-card:hover .svc-service-card__media img { transform: scale(1.09); }
.svc-service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, var(--svc-card) 96%);
}
.svc-service-card__icon {
  position: absolute;
  bottom: 5px;
  inset-inline-start: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--svc-gold-light), var(--svc-off-white));
  color: #100c00;
  font-size: 1.1rem;
  box-shadow: 0 10px 22px rgba(115,77,45,0.5);
}
.svc-service-card__body {
  padding: 32px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.svc-service-card__name { color: var(--svc-off-white); font-size: 1.1rem; font-weight: 900; margin-bottom: 10px; }
.svc-service-card__desc { color: var(--svc-muted); font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; flex-grow: 1; }
.svc-service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--svc-gold-light);
  font-size: 0.85rem;
  font-weight: 800;
  padding-top: 14px;
  border-top: 1px dashed var(--svc-off-white-line);
}
.svc-service-card__cta i { font-size: 0.8rem; transition: transform .3s ease; }
.svc-service-card:hover .svc-service-card__cta i { transform: translateX(-4px); }

/* ── CTA strip (secondary, inline within page) ───────────── */
.svc-cta-strip {
  max-width: var(--svc-max);
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  padding: clamp(2rem, 5vw, 2.8rem) var(--svc-gutter);
  background: linear-gradient(135deg, rgba(115,77,45,0.18), rgba(242,214,162,0.03));
  border: 1px solid var(--svc-border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.svc-cta-strip h4 { color: var(--svc-off-white); font-size: 1.2rem; font-weight: 900; margin-bottom: 4px; }
.svc-cta-strip p { color: var(--svc-muted); font-size: 0.9rem; }
.svc-cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Split CTA (full-bleed 2-panel pricing/marketing block) ──
   Replaces the 3-card pricing grid on service pages: two tall
   full-width panels with a diagonal seam, marketing copy, and a
   hover-reveal booking button. ─────────────────────────────── */
.svc-split {
  display: flex;
  width: 100%;
  min-height: 560px;
}
.svc-split__panel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 56px 64px;
  text-decoration: none;
  overflow: hidden;
  transition: flex .6s cubic-bezier(.22,1,.36,1);
}
.svc-split__panel--a {
  background: radial-gradient(ellipse 90% 70% at 25% 15%, rgba(242,214,162,0.12), transparent 55%),
              linear-gradient(160deg, #2E2820 0%, #0D0D0D 75%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%);
  margin-inline-end: -70px;
  z-index: 1;
}
.svc-split__panel--b {
  background: radial-gradient(ellipse 90% 70% at 75% 15%, rgba(115,77,45,0.18), transparent 55%),
              linear-gradient(200deg, #201A14 0%, #000 75%);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
}
/* clip-path coordinates are always physical (never mirror with dir), but the
   flex row order does flip in LTR — panel--a lands on the left instead of
   the right. Without this, the diagonal cuts stay shaped for the RTL
   arrangement and end up clipping/overlapping the (longer) English copy. */
[dir="ltr"] .svc-split__panel--a {
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
}
[dir="ltr"] .svc-split__panel--b {
  clip-path: polygon(0 0, 93% 0, 100% 100%, 7% 100%);
}
.svc-split__panel::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.18);
  transition: background .5s ease;
}
.svc-split__panel:hover::before { background: rgba(0,0,0,0); }
.svc-split__panel:hover { flex: 1.12; }
.svc-split__content { position: relative; z-index: 2; max-width: 380px; }
.svc-split__eyebrow {
  display: inline-block;
  color: var(--svc-gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.svc-split__headline {
  color: var(--svc-off-white);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 14px;
}
.svc-split__text {
  color: var(--svc-text);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 20px;
}
.svc-split__price {
  display: block;
  color: var(--svc-off-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.svc-split__price strong { color: var(--svc-gold-light); font-size: 1.2rem; }
.svc-split__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--svc-off-white), var(--svc-gold-light));
  color: #100c00;
  font-weight: 800;
  font-size: 0.88rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}
.svc-split__panel:hover .svc-split__cta { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  .svc-split { flex-direction: column; min-height: 0; }
  .svc-split__panel { clip-path: none !important; margin: 0 !important; padding: 40px var(--svc-gutter); }
  .svc-split__panel:hover { flex: 1; }
  .svc-split__panel::before { background: rgba(0,0,0,0.1); }
  .svc-split__content { max-width: 100%; }
  .svc-split__cta { opacity: 1; transform: none; }
}

/* ── Light band (full-bleed alternate section background) ────
   Wrap any .svc-section in <div class="svc-band svc-band--beige">
   to break the dark monotony — cards/tables inside keep their own
   dark surfaces, so the band mixes all the brand colors: off-white
   backdrop, navy cards, bronze/terracotta accents. Class name kept
   as -beige for zero HTML churn; the color itself is now navy→gray. ── */
.svc-band { width: 100%; }
/* Eased (smoothstep) fade between near-black and off-white — plain
   2-stop linear gradients read as an abrupt seam because the eye is
   far more sensitive to contrast near black. These extra stops
   approximate a smoothstep curve so the blend feels gradual at both
   ends and quicker through the middle, like a soft dissolve. */
.svc-band--beige {
  background: linear-gradient(
    to bottom,
    var(--svc-bg)       0,
    #423B2F             16px,
    #766952             32px,
    #AB9874             48px,
    #D4BC8F             61px,
    var(--svc-off-white) 70px,
    var(--svc-off-white) calc(100% - 70px),
    #D4BC8F             calc(100% - 61px),
    #AB9874             calc(100% - 48px),
    #766952             calc(100% - 32px),
    #423B2F             calc(100% - 16px),
    var(--svc-bg)        100%
  );
}
@media (max-width: 700px) {
  .svc-band--beige {
    background: linear-gradient(
      to bottom,
      var(--svc-bg)       0,
      #423B2F             10px,
      #766952             20px,
      #AB9874             30px,
      #D4BC8F             38px,
      var(--svc-off-white) 45px,
      var(--svc-off-white) calc(100% - 45px),
      #D4BC8F             calc(100% - 38px),
      #AB9874             calc(100% - 30px),
      #766952             calc(100% - 20px),
      #423B2F             calc(100% - 10px),
      var(--svc-bg)        100%
    );
  }
}
.svc-band--beige .svc-section__eyebrow { color: var(--svc-gold-dark); }
.svc-band--beige .svc-section__title   { color: var(--svc-bg); }
.svc-band--beige .svc-section__subtitle { color: rgba(13, 13, 13, 0.7); }
.svc-band--beige .svc-section__text    { color: rgba(13, 13, 13, 0.78); }
.svc-band--beige .svc-section__text strong { color: var(--svc-bg); }
