/* css/services.css — responsive, on-brand service page */

/* Ensure navbar stays on top; content never overlays it */
.site-header { position: sticky; top: 0; z-index: 1000; }
.service-page { position: relative; z-index: 0; }

/* ===== Brand tokens ===== */
:root{
  --brand1:#ffcc00;
  --brand2:#ff9900;
  --ink:#0c0c0c;
  --ink-2:#2a2a2a;
  --bg:#ffffff;
  --bg-soft:#f7f7f7;
  --ring:rgba(0,0,0,.06);
  --shadow:0 6px 18px rgba(0,0,0,.06);
  --radius:18px;
}
.dark-mode:root{
  --bg:#0c0c0c;
  --bg-soft:#131313;
  --ink:#ffffff;
  --ink-2:#cfcfcf;
  --ring:rgba(255,255,255,.08);
  --shadow:0 8px 24px rgba(0,0,0,.45);
}

/* ====== INDEX SERVICE LINKS (no underline) ======
   Make service tiles on index look like normal text (no underline)
   but still behave like links on hover. */
.services-grid a,
.service-card a,
.service-card-link,
.services-grid a:link,
.services-grid a:visited,
.service-card-link:link,
.service-card-link:visited{
  text-decoration: none !important;
}
.services-grid a:hover,
.service-card a:hover,
.service-card-link:hover{
  text-decoration: none;
  cursor: pointer;
}

/* ===== HERO ===== */
.service-hero-card{
  margin: clamp(16px,3vw,28px) auto 10px;
  max-width: 1100px;
  background:
    radial-gradient(1200px 200px at -10% -40%, rgba(255,204,0,.18), transparent 60%),
    linear-gradient(180deg, #fff, #fff);
  border-radius: var(--radius);
  border:1px solid var(--ring);
  display:flex;
  gap: clamp(16px,2.2vw,28px);
  align-items:center;
  padding: clamp(18px,3vw,28px);
}
.dark-mode .service-hero-card{
  background:
    radial-gradient(1200px 200px at -10% -40%, rgba(255,204,0,.12), transparent 60%),
    linear-gradient(180deg, #0f0f0f, #101010);
  border-color: var(--ring);
}
.service-chip{
  background:#0c0c0c;
  color:#fff;
  border-radius:999px;
  padding:10px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.service-chip i{ color:var(--brand1); }
.dark-mode .service-chip{ background:#111; }
.service-hero-copy h1{
  font-size: clamp(26px,3.3vw,40px);
  line-height:1.1;
  margin:0 0 4px 0;
  color:var(--ink);
}
.service-hero-copy .service-tagline{
  margin:0;
  color:var(--ink-2);
  font-size: clamp(15px,2vw,18px);
}

/* ===== INTRO ===== */
.service-intro{
  max-width: 1100px;
  margin: 0 auto 16px;
  color:var(--ink-2);
  padding: 0 clamp(16px,3vw,20px);
}

/* ===== HIGHLIGHTS (chips, no bullets) ===== */
.service-highlights{
  max-width:1100px;
  margin: 10px auto 28px;
  padding: 0 clamp(16px,3vw,20px);
}
.service-highlights h2{ margin:0 0 14px; color:var(--ink); }
.chip-grid{
  display:grid;
  grid-template-columns: repeat(12,1fr);
  gap:12px;
}
.chip-card{
  grid-column: span 6;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border:1px solid var(--ring);
  border-radius:12px;
  background:var(--bg);
}
.chip-card i{ color:var(--brand2); min-width:18px; text-align:center; }

/* ===== WHITE GAPS BETWEEN SECTIONS ===== */
.section-gap,
.service-section-gap,
.service-divider{
  height:22px;
  background:#fff !important; /* keep the gap white (not light grey) */
}

/* ===== SPLITS ===== */
.service-splits{
  max-width:1100px;
  margin: 0 auto 32px;
  padding: 0 clamp(16px,3vw,20px);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.split-card{
  background:var(--bg);
  border:1px solid var(--ring);
  border-radius:var(--radius);
  padding:18px;
}
.split-card h2{ margin:0 0 12px; color:var(--ink); }
.tile-grid{
  display:grid;
  grid-template-columns: repeat(12,1fr);
  gap:12px;
}
.tile{
  grid-column: span 6;
  border:1px solid var(--ring);
  background:var(--bg-soft);
  border-radius:12px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  gap:10px;
}
.dark-mode .tile{ background:#121212; }
.tile i{ color:var(--brand1); }

/* ===== PROCESS (vertical path with gradient number balls) ===== */
.service-process{
  max-width:1100px;
  margin: 0 auto 32px;
  padding: 0 clamp(16px,3vw,20px);
}
.service-process h2{ margin:0 0 16px; color:var(--ink); }
.process-track{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:16px;
  padding-left:58px;
}
.process-line{
  position:absolute;
  left:28px;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(180deg, var(--brand1), var(--brand2));
  border-radius:4px;
  opacity:.85;
}
.process-step{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
}
.step-badge{
  position:absolute;
  left:10px;
  width:36px;
  height:36px;
  border-radius:999px;
  background: radial-gradient(120% 120% at 20% 20%, var(--brand1), var(--brand2));
  color:#000;
  font-weight:800;
  display:grid;
  place-items:center;
  box-shadow: 0 6px 14px rgba(255,153,0,.25), inset 0 0 0 2px rgba(0,0,0,.08);
}
.step-pill{
  margin-left:44px; /* keeps text clear of badge */
  background:var(--bg);
  border:1px solid var(--ring);
  border-radius:999px;
  padding:10px 14px;
  color:var(--ink);
  box-shadow:none;
}

/* ===== FAQ (always expanded; separators only) ===== */
.service-faq{
  max-width:1100px;
  margin: 0 auto 36px;
  padding: 0 clamp(16px,3vw,20px);
}
.service-faq h2{ margin:0 0 12px; }
.faq-list{ background:var(--bg); border:1px solid var(--ring); border-radius:var(--radius); }
.faq-item{ padding:14px 16px; }
.faq-item h3{ margin:0 0 6px; font-size:1.05rem; color:var(--ink); }
.faq-item p{ margin:0; color:var(--ink-2); }
.service-faq hr{ margin:0; border:0; border-top:1px solid var(--ring); }

/* ===== CTA ===== */
.service-cta{
  max-width:1100px;
  margin: 0 auto 40px;
  padding: 0 clamp(16px,3vw,20px);
}
.cta-card{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  border:1px solid var(--ring);
  background:linear-gradient(90deg, rgba(255,204,0,.16), rgba(255,153,0,.06));
  border-radius:var(--radius);
  padding:16px 18px;
}
.cta-copy h2{ margin:0 0 6px; }
.cta-copy p{ margin:0; color:var(--ink-2); }
.cta-btn{
  text-decoration:none;
  background:linear-gradient(180deg, var(--brand1), var(--brand2));
  color:#000;
  font-weight:700;
  padding:12px 18px;
  border-radius:12px;
  display:inline-block;
  transition: transform .15s ease;
}
.cta-btn:hover{ transform: translateY(-1px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px){
  .chip-card, .tile{ grid-column: span 12; }
  .service-splits{ grid-template-columns:1fr; }
}
@media (max-width: 640px){
  .service-hero-card{ flex-direction:column; align-items:flex-start; }
  .process-track{ padding-left:54px; }
  .step-badge{ left:8px; width:34px; height:34px; font-size:.95rem; }
  .step-pill{ margin-left:42px; }
}


/* ==== Section gap background (service page only) ==== */
.service-page { background:#ffffff; }

.service-page section,
.service-page .service-intro,
.service-page .service-highlights,
.service-page .service-splits,
.service-page .service-process,
.service-page .service-faq,
.service-page .service-cta {
  background:#ffffff;
}