/* ═══════════════════════════════════════════════
   SERVICE-PAGE.CSS  —  IT Doctors
   Shared styles for all service sub-pages
   ═══════════════════════════════════════════════ */

:root {
  --sp-navy:       #0a2c4f;
  --sp-navy-soft:  #1b4f7b;
  --sp-cyan:       #18b4c4;
  --sp-cyan-light: #cdf5f9;
  --sp-amber:      #f2a43b;
  --sp-bg:         #f2f8fc;
  --sp-ink:        #1f3c5a;
  --sp-muted:      #5a7692;
  --sp-white:      #ffffff;
  --sp-line:       #d6e7f3;
  --sp-shadow:     0 20px 44px rgba(10, 44, 79, 0.13);
  --sp-shadow-sm:  0 8px 22px rgba(10, 44, 79, 0.08);
}

/* ── BASE ── */
body {
  font-family: 'Manrope', sans-serif;
  color: var(--sp-ink);
  background:
    radial-gradient(circle at 10% 4%,  rgba(24, 180, 196, 0.13), transparent 36%),
    radial-gradient(circle at 90% 14%, rgba(242, 164, 59, 0.10), transparent 32%),
    var(--sp-bg);
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.02em;
}

/* ── HERO ── */
.sp-hero {
  position: relative;
  overflow: hidden;
  color: var(--sp-white);
  text-align: center;
  padding: 118px 20px 128px;
  background:
    var(--sp-hero-overlay, linear-gradient(135deg, rgba(10,44,79,.92), rgba(27,79,123,.76))),
    var(--sp-hero-image, none) center/cover no-repeat;
}

.sp-hero::before,
.sp-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(3px);
  opacity: 0.28;
  animation: spDrift 10s ease-in-out infinite alternate;
}

.sp-hero::before {
  width: 340px; height: 340px;
  left: -130px; top: -140px;
  background: radial-gradient(circle, rgba(24,180,196,.9), rgba(24,180,196,0));
}

.sp-hero::after {
  width: 380px; height: 380px;
  right: -150px; bottom: -180px;
  background: radial-gradient(circle, rgba(242,164,59,.85), rgba(242,164,59,0));
  animation-delay: 1.1s;
}

@keyframes spDrift {
  from { transform: translateY(0); }
  to   { transform: translateY(24px); }
}

/* tagline pill */
.sp-tagline {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}

.sp-hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.9rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.sp-hero .sp-subtitle {
  max-width: 780px;
  margin: 0 auto 14px;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.68;
  opacity: 0.96;
}

.sp-hero .sp-summary {
  max-width: 960px;
  margin: 0 auto;
  font-size: 0.96rem;
  line-height: 1.78;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(5,16,33,0.45);
  backdrop-filter: blur(4px);
}

/* hero chips strip */
.sp-hero-chips {
  max-width: 920px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.sp-hero-chip {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 13px 12px;
  font-weight: 700;
  font-size: 0.88rem;
  backdrop-filter: blur(2px);
}

.sp-hero-chip i {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 7px;
  color: var(--sp-amber);
}

.sp-breadcrumb {
  margin-top: 22px;
  font-size: 0.9rem;
  opacity: 0.88;
}

.sp-breadcrumb a {
  color: var(--sp-white);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.6);
}

/* ── PAGE WRAPPER ── */
.sp-page { padding: 64px 20px; }

/* ── SECTION LABEL ── */
.sp-label {
  display: inline-block;
  background: linear-gradient(90deg, rgba(24,180,196,0.16), rgba(242,164,59,0.12));
  border: 1px solid rgba(24,180,196,0.32);
  border-radius: 999px;
  padding: 5px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-navy-soft);
  margin-bottom: 10px;
}

/* ── INTRO ── */
.sp-intro {
  max-width: 940px;
  margin: 0 auto 40px;
  text-align: center;
}

.sp-intro h2 {
  color: var(--sp-navy);
  font-size: clamp(1.8rem, 3.4vw, 2.45rem);
  margin-bottom: 14px;
}

.sp-intro p {
  margin: 0 auto 10px;
  max-width: 860px;
  color: var(--sp-muted);
  line-height: 1.84;
  font-size: 1.02rem;
}

/* ── CARDS GRID ── */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.sp-card {
  position: relative;
  overflow: hidden;
  background: var(--sp-white);
  border: 1px solid var(--sp-line);
  border-radius: 18px;
  padding: 26px 22px 22px;
  box-shadow: var(--sp-shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

/* colored top accent bar */
.sp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--sp-cyan), var(--sp-amber));
}

.sp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sp-shadow);
  border-color: #b8d4e8;
}

.sp-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--sp-navy);
  background: linear-gradient(145deg, #ddf4f7, #fef1df);
  box-shadow: 0 4px 12px rgba(24,180,196,0.15);
}

.sp-card h3 {
  font-size: 1.08rem;
  color: var(--sp-navy);
  margin-bottom: 10px;
}

.sp-card p {
  font-size: 0.94rem;
  line-height: 1.72;
  color: var(--sp-muted);
  margin-bottom: 12px;
}

.sp-checklist {
  list-style: none;
  padding: 0; margin: 0;
}

.sp-checklist li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 7px;
  color: #4b6784;
  font-size: 0.87rem;
  line-height: 1.56;
}

.sp-checklist li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 1px;
  color: var(--sp-cyan);
  font-size: 0.82rem;
}

/* ── SPLIT / PANELS ── */
.sp-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.sp-panel {
  background: var(--sp-white);
  border: 1px solid var(--sp-line);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: var(--sp-shadow-sm);
  position: relative;
  overflow: hidden;
}

.sp-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--sp-cyan), var(--sp-amber));
}

.sp-panel h3 {
  font-size: 1.3rem;
  color: var(--sp-navy);
  margin-bottom: 14px;
}

.sp-panel p,
.sp-panel li {
  color: var(--sp-muted);
  line-height: 1.8;
  font-size: 0.96rem;
}

.sp-panel ul {
  margin: 0;
  padding-left: 20px;
}

.sp-panel ul li {
  margin-bottom: 8px;
}

/* numbered steps */
.sp-steps {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: steps;
}

.sp-steps li {
  position: relative;
  padding: 12px 14px 12px 48px;
  border-radius: 12px;
  background: #f3f8fc;
  border: 1px solid #dceaf4;
  margin-bottom: 10px;
  color: #3d5c75;
  font-size: 0.94rem;
  line-height: 1.55;
  counter-increment: steps;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.sp-steps li:hover {
  background: #eaf4fb;
  border-color: #c0d9ed;
}

.sp-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sp-cyan), var(--sp-navy-soft));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

/* ── NOTE BAR ── */
.sp-note {
  margin-bottom: 32px;
  text-align: center;
  color: #3a5a77;
  line-height: 1.82;
  border: 1px solid #c8e0f0;
  border-radius: 14px;
  background: linear-gradient(120deg, #f6fbff 0%, #e8f4fb 100%);
  padding: 20px 24px;
  font-size: 0.97rem;
  position: relative;
  overflow: hidden;
}

.sp-note::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%; width: 4px;
  background: linear-gradient(180deg, var(--sp-cyan), var(--sp-amber));
}

/* ── HIGHLIGHT SECTION ── */
.sp-highlight {
  background: linear-gradient(135deg, rgba(24,180,196,0.1), rgba(10,44,79,0.06));
  border: 1px solid #c4dcec;
  border-radius: 18px;
  padding: 32px 28px;
  margin-bottom: 32px;
}

.sp-highlight h3 {
  color: var(--sp-navy);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.sp-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.sp-benefit {
  background: var(--sp-white);
  border: 1px solid var(--sp-line);
  border-radius: 12px;
  padding: 18px;
}

.sp-benefit h4 { font-size: 0.97rem; color: var(--sp-navy-soft); margin-bottom: 6px; }
.sp-benefit p  { margin: 0; color: var(--sp-muted); font-size: 0.86rem; line-height: 1.62; }

/* ── RELATED ── */
.sp-related { margin-bottom: 28px; }

.sp-related h3 {
  text-align: center;
  color: var(--sp-navy);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sp-related-card {
  background: var(--sp-white);
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 5px 16px rgba(10,44,79,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sp-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(10,44,79,0.11);
  border-color: #b4cde0;
}

.sp-related-card i {
  font-size: 1.6rem;
  color: var(--sp-cyan);
  margin-bottom: 10px;
  display: block;
}

.sp-related-card h4 {
  color: var(--sp-navy);
  margin-bottom: 8px;
  font-size: 0.99rem;
}

.sp-related-card p {
  color: var(--sp-muted);
  font-size: 0.87rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.sp-related-card a {
  display: inline-block;
  text-decoration: none;
  color: var(--sp-navy-soft);
  font-weight: 700;
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(27,79,123,0.35);
  transition: color 0.18s ease;
}

.sp-related-card a:hover { color: var(--sp-cyan); border-color: var(--sp-cyan); }

/* ── CTA ── */
.sp-cta {
  background: linear-gradient(135deg, #0a2d4f 0%, #16527f 55%, #139cac 100%);
  color: var(--sp-white);
  text-align: center;
  border-radius: 18px;
  padding: 46px 28px;
  box-shadow: var(--sp-shadow);
}

.sp-cta h3 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 12px;
}

.sp-cta p {
  max-width: 820px;
  margin: 0 auto 22px;
  line-height: 1.82;
  opacity: 0.94;
  font-size: 1.02rem;
}

.sp-cta a {
  display: inline-block;
  background: #f7f2e8;
  color: #08334f;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 30px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sp-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .sp-grid,
  .sp-related-grid,
  .sp-benefits,
  .sp-hero-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .sp-hero {
    padding: 90px 16px 100px;
  }

  .sp-grid,
  .sp-related-grid,
  .sp-benefits,
  .sp-hero-chips {
    grid-template-columns: 1fr;
  }

  .sp-hero .sp-summary,
  .sp-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sp-cta {
    padding: 32px 18px;
  }
}
