/* =====================================================
   SERVICES PAGES – MMSM & ASSOCIATES
   Clean, ICAI-compliant, non-overlapping styles
   ===================================================== */

/* ================= HERO ================= */

.service-hero {
  background: radial-gradient(
    circle at top,
    #0f766e 0%,
    #020617 72%
  );
  padding: 44px 0;
  text-align: center;
  color: #ffffff;
}

.service-hero h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-hero p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5f5;
}

/* ================= MAIN CONTENT ================= */

.service-content {
  padding: 56px 0 48px;
}

.container.narrow {
  max-width: 880px;
  margin: auto;
}

/* Section headings */

.service-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--text-primary);
  margin: 44px 0 18px;
}

/* Paragraphs */

.service-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 16px;
}

/* ================= SERVICE LIST ================= */

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.service-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: var(--text-body);
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
}

/* ================= APPROACH / HIGHLIGHT BOX ================= */

.service-approach {
  margin-top: 40px;
  padding: 26px 28px;
  background: var(--bg-soft);
  border-left: 5px solid var(--primary);
  border-radius: 12px;
}

.service-approach strong {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.service-approach p {
  margin: 0;
  font-size: 15px;
}

/* ================= RELATED SERVICES ================= */

.related-services {
  margin-top: 56px;
  padding: 36px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.related-services strong {
  display: block;
  text-align: center;
  font-size: 18px;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.related-services .service-list {
  max-width: 520px;
  margin: auto;
}

.related-services a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}

.related-services a:hover {
  text-decoration: underline;
}

/* ================= COMPLIANCE NOTE ================= */

.service-note {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 16px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #475569;
  text-align: center;

  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border: 1px solid #e5e7eb;
  border-radius: 12px;

  position: relative;
}

.service-note::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  background: var(--primary);
  border-radius: 4px;
}

.service-note.compact {
  font-size: 13.5px;
  padding: 14px 16px;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .service-hero h1 {
    font-size: 30px;
  }

  .service-content {
    padding: 44px 0;
  }
}

/* ================= ICAI DISCLAIMER – WARNING STYLE ================= */

.service-disclaimer {
  max-width: 920px;
  margin: 48px auto 0;
  padding: 18px 22px 18px 52px;

  background: #fff7ed;              /* soft warning background */
  border: 1px solid #fed7aa;
  border-left: 6px solid #f97316;   /* warning accent */
  border-radius: 12px;

  position: relative;
  color: #7c2d12;                   /* readable warning text */
  font-size: 14.5px;
  line-height: 1.65;
}

/* Warning icon */
.service-disclaimer::before {
  content: "⚠";
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 18px;
  color: #ea580c;
}

/* Strong emphasis text */
.service-disclaimer strong {
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .service-disclaimer {
    padding: 16px 18px 16px 48px;
    font-size: 13.8px;
  }
}
