/* ============================================================
   SERVICES PAGE — services.css  (v2 — matches reference image)
   ============================================================ */

/* ── HERO — dark navy, minimal ── */
.svc-hero {
    background: var(--midnight);
    padding: 100px 64px 72px;
    position: relative;
    overflow: hidden;
}
.svc-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 18px;
}
.svc-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
.svc-breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.svc-breadcrumb span:last-child { color: rgba(255,255,255,0.7); }

.svc-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: #FFBB4E; margin-bottom: 14px;
}
.svc-ey-line { width: 28px; height: 2px; background: #FFBB4E; flex-shrink: 0; }

.svc-hero-h1 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 800; color: #fff; line-height: 1.1;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.svc-hero-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  line-height: 1.75; max-width: 520px;
}
.svc-hero-tags { display: none; }

/* ══════════════════════════════════════════
   MAIN EXPLORER
══════════════════════════════════════════ */
.svc-explorer { background: #fff; }
.svc-explorer-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
}

/* Left nav */
.svc-left-nav {
  background: #fff;
  border-right: 1px solid #e8e8f0;
  padding: 8px 0;
}
.svc-nav-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  cursor: pointer; position: relative;
  border-bottom: 1px solid #f0f0f8;
  transition: background 0.18s;
}
.svc-nav-item:last-child { border-bottom: none; }
.svc-nav-item.active { background: #EEE8FF; }
.svc-nav-item:hover:not(.active) { background: #f7f5ff; }

/* Numbered circle badge */
.svc-nav-num {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  font-family: 'Archivo', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  background: #e8e8f0; color: #888;
  transition: background 0.18s, color 0.18s;
}
.svc-nav-item.active .svc-nav-num {
  background: #6617FF; color: #fff;
}
.svc-nav-item:hover:not(.active) .svc-nav-num {
  background: #d4c5ff; color: #6617FF;
}

.svc-nav-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.83rem; font-weight: 400;
  color: var(--midnight); line-height: 1.35;
  flex: 1; transition: color 0.18s;
}
.svc-nav-item.active .svc-nav-label { color: #6617FF; font-weight: 500; }
.svc-nav-item:hover:not(.active) .svc-nav-label { color: #444; }

.svc-nav-arrow {
  display: block;
  font-size: 1.1rem; line-height: 1;
  color: #ccc;
  flex-shrink: 0; transition: color 0.18s;
}
.svc-nav-item.active .svc-nav-arrow { color: #6617FF; }
.svc-nav-item:hover:not(.active) .svc-nav-arrow { color: #999; }

/* Right panels */
.svc-right-panels { background: #fff; position: relative; }
.svc-panel { display: none; padding: 32px 40px 28px; }
.svc-panel.active { display: block; }

.svc-panel-head { margin-bottom: 20px; }
.svc-panel-tag { display: none; }
.svc-panel-h {
  font-family: 'Archivo', sans-serif;
  font-size: 21px; font-weight: 700;
  color: #1a1a2e; margin-bottom: 8px;
}
.svc-panel-sub {
  font-size: 0.83rem; color: #777; line-height: 1.65;
}

/* Sub-service items — row style with purple left border */
.svc-items-grid {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px;
}
.svc-item {
  display: flex; align-items: center; gap: 0;
  padding: 10px 14px;
  background: var(--indigo-t4);
  border-left: 3px solid var(--midnight);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
}
.svc-item:hover { background: var(--midnight); }

.svc-item-num { display: none; }
.svc-item-body { flex: 1; }
.svc-item-name {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem; font-weight: 400;
  color: var(--midnight); line-height: 1.3; transition: color 0.18s;
}
.svc-item:hover .svc-item-name { color: #fff; }
.svc-item-hint { display: none; }

/* + / × expand icon */
.svc-item-arrow {
  font-size: 1.1rem; font-weight: 300; line-height: 1;
  color: var(--midnight);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.18s;
  user-select: none;
}
.svc-item:hover .svc-item-arrow { color: #fff; }

.svc-panel-cta-row { display: none; }

/* ══════════════════════════════════════════
   INLINE DROPDOWN — accordion (slides DOWN)
══════════════════════════════════════════ */
.svc-item-wrap {
  position: relative;
}

.svc-inline-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--midnight);
  border-radius: 0 0 8px 8px;
}

/* Open state — expands down */
.svc-item-wrap.open .svc-inline-dropdown {
  max-height: 1000px;
}

/* Item highlighted when open */
.svc-item-wrap.open .svc-item {
  background: var(--indigo-t4);
  border-left-color: var(--midnight);
  border-radius: 8px 8px 0 0;
}
.svc-item-wrap.open .svc-item-name { color: var(--midnight); }
.svc-item-wrap.open .svc-item-arrow {
  color: var(--midnight);
  transform: rotate(45deg);
}

.svc-idp-inner {
  padding: 22px 24px; position: relative; z-index: 1;
}

.svc-idp-title {
  font-family: 'Archivo', sans-serif; font-size: 1rem; font-weight: 800;
  color: var(--gold); margin-bottom: 8px; line-height: 1.25;
}

.svc-idp-body {
  font-size: 0.75rem; color: #FFFFFF;
  line-height: 1.7; margin-bottom: 14px;
}
.svc-idp-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 5px; margin-bottom: 18px;
}
.svc-idp-sub {
  display: flex; align-items: flex-start; gap: 7px;
  padding: 7px 10px;
  background: var(--indigo-t4);
  /* border: 1px solid var(--indigo-t4); */
  border-radius: 6px;
  font-size: 0.82rem; color: var(--charcoal); line-height: 1.4;
}
/* .svc-idp-sub::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--midnight); margin-top: 5px; flex-shrink: 0;
} */
.svc-idp-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; background: #FFBB4E; border: 1px solid #FFFFFF;
  color: var(--midnight); font-size: 0.85rem; font-weight: 500;
  border-radius: 100px; text-decoration: none; transition: all 0.2s;
}
.svc-idp-cta:hover { background: #FFC776; }

/* Hide the old fixed dropdown */
.svc-dropdown-panel, .svc-dp-overlay { display: none !important; }


/* ══════════════════════════════════════════
   CTA BAND — solid purple like image
══════════════════════════════════════════ */
.svc-cta-band {
  background: var(--indigo);
  padding: 35px 56px; text-align: center;
  position: relative;
}
.svc-cta-beam, .svc-cta-hotspot { display: none; }
.svc-cta-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  max-width: 700px; margin: 0 auto;
}
.svc-cta-h {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 800; color: #fff; line-height: 1.3; text-align: center;
}
.svc-cta-sub {
  font-size: 0.85rem; color: rgba(255,255,255,0.65); text-align: center;
}
.svc-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 40px; background: #FFBB4E;
  color: #0A0A56; font-family: 'Archivo', sans-serif;
  font-size: 0.88rem; font-weight: 800;
  border-radius: 100px; text-decoration: none; transition: all 0.25s;
  margin-top: 8px; border: 1px solid #FFFFFF;
}
.svc-cta-btn:hover { background: var(--midnight); color:#FFF; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .svc-hero { padding: 70px 24px 48px; }
  .svc-explorer-wrap { grid-template-columns: 1fr; }
  .svc-left-nav {
    border-right: none; border-bottom: 1px solid #e8e8f0;
    display: flex; overflow-x: auto; padding: 8px 4px;
    -webkit-overflow-scrolling: touch;
  }
  .svc-nav-item {
    min-width: 120px; padding: 10px 12px; text-align: center;
    border-bottom: none;
    flex-shrink: 0; flex-direction: column; gap: 6px;
    margin: 0 4px; border-radius: 10px;
  }
  .svc-nav-arrow { display: none; }
  .svc-nav-item.active { background: #EEE8FF; }
  .svc-nav-label { font-size: 0.72rem; }
  .svc-panel { padding: 20px; }
  .svc-idp-grid { grid-template-columns: 1fr; }
  .svc-diff-grid { grid-template-columns: repeat(2,1fr); }
  .svc-cta-band { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .svc-diff-grid { grid-template-columns: 1fr; }
  .svc-nav-item { min-width: 100px; }
  .svc-hero-h1 { font-size: clamp(22px, 5vw, 29px); }
}
