/* ============================================================
   Aspire Behavioral Academy — ABC of New England style
   Design system: dark blue (#0f4c7d) + gold (#f0bc46)
   Fonts: Baloo 2 (headings), Catamaran (body)
   ============================================================ */

:root {
  --theme-color: #0f4c7d;
  --secondary-color: #f0bc46;
  --title-color: #0A3D62;
  --body-color: #57606f;
  --smoke-color: #f0f4f8;
  --smoke-theme: #e8f4f8;
  --light-color: #9b9b9b;
  --black-color: #000000;
  --white-color: #ffffff;
  --blue-color: #0d96e4;
  /* Aspire logo palette — colorful accents */
  --aspire-green: #1eb742;
  --aspire-yellow: #f6bb00;
  --aspire-red: #ff3334;
  --aspire-blue: #0c96e4;
  --aspire-green-soft: rgba(30,183,66,.12);
  --aspire-yellow-soft: rgba(246,187,0,.14);
  --aspire-red-soft: rgba(255,51,52,.12);
  --aspire-blue-soft: rgba(12,150,228,.12);
  --border-color: rgb(238, 241, 242);
  --title-font: "Baloo 2", cursive;
  --para-font: "Catamaran", sans-serif;
  --body-font: "Catamaran", sans-serif;
  --main-container: 1220px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
a { color: var(--theme-color); text-decoration: none; transition: all .3s ease; }
a:hover { color: var(--secondary-color); }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }
p { font-family: var(--para-font); margin: 0 0 18px 0; color: var(--body-color); line-height: 1.7; }

@media (max-width: 1199px) { h1{font-size:40px} h2{font-size:30px} h3{font-size:24px} h4{font-size:22px} }
@media (max-width: 767px)  { h1{font-size:30px} h2{font-size:26px} h3{font-size:22px} h4{font-size:20px} h5{font-size:18px} }

/* ---------- Layout helpers ---------- */
.abc-container { max-width: var(--main-container); margin: 0 auto; padding: 0 30px; }
.abc-section { padding: var(--section-space) 0; }
.abc-section-sm { padding: 70px 0; }
.abc-section-tight { padding: 50px 0; }
@media (max-width: 767px) { .abc-section { padding: var(--section-space-mobile) 0; } }

.bg-smoke { background: var(--smoke-color); }
.bg-theme { background: var(--theme-color); }
.bg-theme-light { background: var(--smoke-theme); }
.bg-gradient-colorful { background: linear-gradient(135deg, #0a3d62 0%, #0f4c7d 50%, #0c96e4 100%); position: relative; overflow: hidden; }
.bg-gradient-colorful::before { content: ""; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(246,187,0,.15); }
.bg-gradient-colorful::after { content: ""; position: absolute; bottom: -60px; left: 10%; width: 160px; height: 160px; border-radius: 50%; background: rgba(30,183,66,.12); }
.bg-gradient-colorful h2 { color: #fff; }
.bg-gradient-colorful p { color: #d4e6f2; }
.text-theme { color: var(--theme-color) !important; }
.text-secondary-c { color: var(--secondary-color) !important; }
.text-center-c { text-align: center; }

/* ---------- Eyebrow / section labels ---------- */
.abc-eyebrow {
  display: inline-block;
  font-family: var(--para-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 12px;
}
.abc-eyebrow.dark { color: var(--theme-color); }

.abc-section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.abc-section-head h2 { margin-bottom: 16px; position: relative; }
.abc-section-head h2::after { content: ""; display: block; width: 60px; height: 4px; border-radius: 4px; margin: 14px auto 0; background: linear-gradient(90deg, var(--aspire-green), var(--aspire-yellow), var(--aspire-red), var(--aspire-blue)); }
.abc-section-head p { font-size: 17px; }

/* ---------- Buttons ---------- */
.abc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--para-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
}
.abc-btn-primary { background: var(--theme-color); color: #fff; border-color: var(--theme-color); }
.abc-btn-primary:hover { background: var(--secondary-color); border-color: var(--secondary-color); color: var(--title-color); }
.abc-btn-gold { background: var(--secondary-color); color: var(--title-color); border-color: var(--secondary-color); }
.abc-btn-gold:hover { background: transparent; color: var(--secondary-color); }
.abc-btn-outline { background: transparent; color: var(--theme-color); border-color: var(--theme-color); }
.abc-btn-outline:hover { background: var(--theme-color); color: #fff; }
.abc-btn-white { background: #fff; color: var(--theme-color); border-color: #fff; }
.abc-btn-white:hover { background: transparent; color: #fff; border-color: #fff; }
.abc-btn-lg { padding: 16px 38px; font-size: 16px; }

/* ---------- Colorful brand strip ---------- */
.abc-brand-strip {
  height: 5px;
  background: linear-gradient(90deg,
    var(--aspire-blue) 0%,
    var(--aspire-green) 33%,
    var(--aspire-yellow) 66%,
    var(--aspire-red) 100%);
}

/* ---------- Top bar ---------- */
.abc-topbar {
  background: var(--title-color);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 3px solid var(--secondary-color);
}
.abc-topbar a { color: #cfe3ef; }
.abc-topbar a:hover { color: var(--secondary-color); }
.abc-topbar .inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.abc-topbar .contact-info { display: flex; gap: 22px; flex-wrap: wrap; }
.abc-topbar .contact-info i { color: var(--secondary-color); margin-right: 6px; }
.abc-topbar .top-links { display: flex; gap: 18px; align-items: center; }

/* ---------- Header / Nav ---------- */
.abc-header {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(15,76,125,.06);
}
.abc-header .inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.abc-header { overflow: visible; }
.abc-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; position: relative; z-index: 1002; }
.abc-logo img { height: 110px; width: auto; transition: height .3s ease; box-shadow: 0 8px 24px rgba(15,76,125,.18); border-radius: 10px; padding: 6px; background: #fff; margin-bottom: -50px; }
.abc-logo .logo-text { display: flex; flex-direction: column; }
.abc-logo .logo-text strong { font-family: var(--title-font); font-size: 20px; color: var(--title-color); line-height: 1.1; }
.abc-logo .logo-text span { font-size: 12px; color: var(--body-color); letter-spacing: 1px; text-transform: uppercase; }

.abc-nav { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.abc-nav > li { position: relative; }
.abc-nav > li > a {
  display: block;
  padding: 10px 16px;
  font-family: var(--para-font);
  font-weight: 600;
  font-size: 15px;
  color: var(--title-color);
  border-radius: 8px;
}
.abc-nav > li > a:hover,
.abc-nav > li.active > a { color: var(--theme-color); background: var(--smoke-theme); }
.abc-nav .has-dropdown > a::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 10px; margin-left: 6px; }
.abc-nav .dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 240px; background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px; box-shadow: 0 10px 30px rgba(15,76,125,.12);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s ease; list-style: none; margin: 0;
}
.abc-nav .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.abc-nav .dropdown a { display: block; padding: 9px 14px; border-radius: 6px; font-size: 14px; color: var(--body-color); }
.abc-nav .dropdown a:hover { background: var(--smoke-theme); color: var(--theme-color); }

.abc-header-actions { display: flex; align-items: center; gap: 14px; }
.abc-nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--theme-color); cursor: pointer; }

@media (max-width: 1024px) {
  .abc-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px; border-top: 1px solid var(--border-color); box-shadow: 0 10px 20px rgba(0,0,0,.08); }
  .abc-nav.open { display: flex; }
  .abc-nav > li { width: 100%; }
  .abc-nav .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; }
  .abc-nav .has-dropdown.open .dropdown { display: block; }
  .abc-nav-toggle { display: block; }
  .abc-logo img { height: 80px; margin-bottom: -30px; }
}
@media (max-width: 600px) {
  .abc-logo img { height: 64px; margin-bottom: -20px; padding: 4px; }
}

/* ---------- Hero slider (ABC of New England style) ---------- */
.abc-hero-slider {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--theme-color);
}
.abc-hero-slide {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
}
.abc-hero-slide.active { display: flex; }
.abc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.abc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
}
.abc-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15,76,125,.45) 0%, rgba(10,61,98,.35) 45%, rgba(10,61,98,.15) 100%);
}
/* Decorative floating shapes — colorful logo accents */
.abc-hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.abc-hero-shape.s1 { top: -80px; right: -60px; width: 420px; height: 420px; background: var(--aspire-yellow-soft); }
.abc-hero-shape.s2 { bottom: -120px; left: -100px; width: 360px; height: 360px; background: var(--aspire-blue-soft); }
.abc-hero-shape.s3 { top: 40%; right: 18%; width: 90px; height: 90px; background: var(--aspire-green-soft); }
.abc-hero-shape.s4 { bottom: 18%; left: 12%; width: 60px; height: 60px; background: var(--aspire-red-soft); }

.abc-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 120px 0 110px;
}
.abc-hero-content {
  max-width: 660px;
}
.abc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.abc-hero-badge i { color: var(--aspire-yellow); }
.abc-hero-content h1 {
  color: #fff;
  font-size: 72px;
  line-height: 1.08;
  margin-bottom: 24px;
  text-shadow: 0 2px 18px rgba(0,0,0,.18);
}
.abc-hero-content h1 .accent { color: var(--secondary-color); }
.abc-hero-content p {
  color: #e4f0fa;
  font-size: 20px;
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.abc-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Translucent white content panel variant (hero-2 style) */
.abc-hero-content-box {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 50px;
  max-width: 580px;
  box-shadow: 0 24px 60px rgba(10,61,98,.28);
}
.abc-hero-content-box .abc-hero-badge {
  background: var(--aspire-yellow-soft);
  color: var(--title-color);
  border-color: rgba(246,187,0,.3);
}
.abc-hero-content-box .abc-hero-badge i { color: var(--aspire-yellow); }
.abc-hero-content-box h1 { color: var(--title-color); text-shadow: none; }
.abc-hero-content-box h1 .accent { color: var(--aspire-blue); }
.abc-hero-content-box p { color: var(--body-color); }

/* Slider controls */
.abc-hero-arrows {
  position: absolute;
  bottom: 50px;
  right: 30px;
  z-index: 5;
  display: flex;
  gap: 12px;
}
.abc-hero-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.abc-hero-arrow:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--title-color);
  transform: translateY(-2px);
}
.abc-hero-dots {
  position: absolute;
  bottom: 60px;
  left: 30px;
  z-index: 5;
  display: flex;
  gap: 10px;
}
.abc-hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.abc-hero-dots button.active {
  background: var(--secondary-color);
  width: 36px;
  border-radius: 6px;
}

/* Wavy bottom shape — organic section boundary */
.abc-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
  pointer-events: none;
}
.abc-hero-wave svg { width: 100%; height: 80px; display: block; }

@media (max-width: 1199px) {
  .abc-hero-slider { min-height: 600px; }
  .abc-hero-content h1 { font-size: 56px; }
  .abc-hero-content p { font-size: 18px; }
}
@media (max-width: 991px) {
  .abc-hero-slider { min-height: 520px; }
  .abc-hero-content h1 { font-size: 44px; }
  .abc-hero-content-box { padding: 36px; border-radius: 24px; }
  .abc-hero-inner { padding: 90px 0 80px; }
}
@media (max-width: 767px) {
  .abc-hero-slider { min-height: 480px; }
  .abc-hero-content h1 { font-size: 34px; }
  .abc-hero-content p { font-size: 16px; margin-bottom: 24px; }
  .abc-hero-content-box { padding: 26px; border-radius: 20px; }
  .abc-hero-inner { padding: 70px 0 60px; }
  .abc-hero-arrows { bottom: 24px; right: 20px; }
  .abc-hero-dots { bottom: 30px; left: 20px; }
  .abc-hero-arrow { width: 44px; height: 44px; font-size: 15px; }
  .abc-hero-wave svg { height: 50px; }
}

/* ---------- Legacy hero (kept for fallback) ---------- */
.abc-hero {
  position: relative;
  background: linear-gradient(135deg, #0f4c7d 0%, #0A3D62 100%);
  color: #fff;
  padding: 120px 0 110px;
  overflow: hidden;
}
.abc-hero::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(240,188,70,.12);
}
.abc-hero::after {
  content: ""; position: absolute; bottom: -100px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(13,150,228,.1);
}
.abc-hero .inner { position: relative; z-index: 2; max-width: 760px; }
.abc-hero .tagline { font-family: var(--title-font); font-size: 18px; color: var(--secondary-color); margin-bottom: 10px; font-weight: 600; }
.abc-hero h1 { color: #fff; font-size: 56px; margin-bottom: 22px; }
.abc-hero p { font-size: 19px; color: #d4e6f2; max-width: 620px; margin-bottom: 32px; }
@media (max-width: 767px) { .abc-hero h1 { font-size: 34px; } .abc-hero p { font-size: 16px; } }

/* ---------- About preview ---------- */
.abc-about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 991px) { .abc-about-preview { grid-template-columns: 1fr; } }
.abc-about-preview .image-wrap { position: relative; }
.abc-about-preview .image-wrap img { border-radius: 20px; width: 100%; }
.abc-about-preview .image-wrap .badge {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--secondary-color); color: var(--title-color);
  padding: 18px 26px; border-radius: 14px; font-family: var(--title-font); font-weight: 700;
  box-shadow: 0 10px 30px rgba(240,188,70,.4);
}
.abc-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
@media (max-width: 991px) { .abc-pillars { grid-template-columns: 1fr; } }
.abc-pillar { background: #fff; border: 1px solid var(--border-color); border-radius: 16px; padding: 30px; transition: all .3s; border-top: 4px solid var(--aspire-blue); }
.abc-pillar:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15,76,125,.1); border-color: transparent; }
.abc-pillar .icon { width: 56px; height: 56px; border-radius: 14px; background: var(--smoke-theme); color: var(--theme-color); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.abc-pillar:nth-child(1) { border-top-color: var(--aspire-blue); }
.abc-pillar:nth-child(1) .icon { background: var(--aspire-blue-soft); color: var(--aspire-blue); }
.abc-pillar:nth-child(2) { border-top-color: var(--aspire-green); }
.abc-pillar:nth-child(2) .icon { background: var(--aspire-green-soft); color: var(--aspire-green); }
.abc-pillar:nth-child(3) { border-top-color: var(--aspire-yellow); }
.abc-pillar:nth-child(3) .icon { background: var(--aspire-yellow-soft); color: var(--aspire-yellow); }
.abc-pillar h5 { margin-bottom: 10px; }

/* ---------- Guiding principles ---------- */
.abc-principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 991px) { .abc-principles-grid { grid-template-columns: 1fr; } }
.abc-principle-box { background: #fff; border-radius: 18px; padding: 36px; border: 1px solid var(--border-color); border-left: 5px solid var(--aspire-blue); }
.abc-principle-box:nth-child(2) { border-left-color: var(--aspire-green); }
.abc-principle-box h4 { color: var(--theme-color); margin-bottom: 14px; }
.abc-stand-on { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
@media (max-width: 575px) { .abc-stand-on { grid-template-columns: 1fr; } }
.abc-stand-item { display: flex; gap: 14px; align-items: flex-start; }
.abc-stand-item .icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: var(--secondary-color); color: var(--title-color); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.abc-stand-item:nth-child(4n+1) .icon { background: var(--aspire-blue-soft); color: var(--aspire-blue); }
.abc-stand-item:nth-child(4n+2) .icon { background: var(--aspire-green-soft); color: var(--aspire-green); }
.abc-stand-item:nth-child(4n+3) .icon { background: var(--aspire-yellow-soft); color: var(--aspire-yellow); }
.abc-stand-item:nth-child(4n+4) .icon { background: var(--aspire-red-soft); color: var(--aspire-red); }
.abc-stand-item strong { color: var(--title-color); font-family: var(--title-font); }

/* ---------- DEI band ---------- */
.abc-dei { background: linear-gradient(135deg, var(--smoke-theme) 0%, #fff 100%); border-radius: 24px; padding: 60px; text-align: center; border: 1px solid rgba(12,150,228,.12); position: relative; overflow: hidden; }
.abc-dei::before { content: ""; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: var(--aspire-yellow-soft); }
.abc-dei::after { content: ""; position: absolute; bottom: -50px; left: -30px; width: 140px; height: 140px; border-radius: 50%; background: var(--aspire-green-soft); }
.abc-dei h2 { max-width: 720px; margin: 0 auto 20px; }
.abc-dei p { max-width: 820px; margin: 0 auto; font-size: 17px; }
@media (max-width: 767px) { .abc-dei { padding: 36px 24px; } }

/* ---------- Scope of services ---------- */
.abc-scope-meta { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 50px; }
@media (max-width: 991px) { .abc-scope-meta { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .abc-scope-meta { grid-template-columns: 1fr; } }
.abc-scope-meta-item { background: #fff; border: 1px solid var(--border-color); border-radius: 14px; padding: 24px; }
.abc-scope-meta-item .label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary-color); font-weight: 700; margin-bottom: 8px; }
.abc-scope-meta-item .value { font-family: var(--title-font); color: var(--title-color); font-weight: 600; font-size: 16px; }

.abc-service-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
@media (max-width: 767px) { .abc-service-cards { grid-template-columns: 1fr; } }
.abc-service-card { background: #fff; border: 1px solid var(--border-color); border-radius: 18px; padding: 34px; transition: all .3s; border-top: 4px solid var(--aspire-blue); }
.abc-service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15,76,125,.1); border-color: transparent; }
.abc-service-card h4 { color: var(--theme-color); margin-bottom: 6px; }
.abc-service-card .sub { color: var(--body-color); font-weight: 600; margin-bottom: 14px; }
.abc-service-card .meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.abc-service-card .meta span { background: var(--smoke-theme); color: var(--theme-color); padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.abc-service-card:nth-child(4n+1) { border-top-color: var(--aspire-blue); }
.abc-service-card:nth-child(4n+2) { border-top-color: var(--aspire-green); }
.abc-service-card:nth-child(4n+3) { border-top-color: var(--aspire-yellow); }
.abc-service-card:nth-child(4n+4) { border-top-color: var(--aspire-red); }

.abc-scope-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
@media (max-width: 767px) { .abc-scope-lists { grid-template-columns: 1fr; } }
.abc-scope-list { background: #fff; border-radius: 16px; padding: 30px; border-top: 4px solid var(--theme-color); }
.abc-scope-list.not { border-top-color: #e57373; }
.abc-scope-list h5 { margin-bottom: 18px; }
.abc-scope-list ul { list-style: none; padding: 0; margin: 0; }
.abc-scope-list li { padding: 8px 0 8px 28px; position: relative; font-family: var(--para-font); color: var(--body-color); }
.abc-scope-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--theme-color); }
.abc-scope-list.not li::before { content: "\f00d"; color: #e57373; }

/* ---------- Insurance ---------- */
.abc-insurance-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
@media (max-width: 991px) { .abc-insurance-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 575px) { .abc-insurance-grid { grid-template-columns: repeat(2,1fr); } }
.abc-insurance-card { background: #fff; border: 1px solid var(--border-color); border-radius: 14px; padding: 24px 16px; text-align: center; transition: all .3s; }
.abc-insurance-card:hover { box-shadow: 0 10px 30px rgba(15,76,125,.08); transform: translateY(-4px); }
.abc-insurance-card img { max-height: 60px; width: auto; margin: 0 auto 12px; display: block; }
.abc-insurance-card .name { font-family: var(--title-font); font-weight: 600; color: var(--title-color); font-size: 14px; }

/* ---------- Patient rights ---------- */
.abc-rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 991px) { .abc-rights-grid { grid-template-columns: 1fr; } }
.abc-rights-col h4 { color: var(--theme-color); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--smoke-theme); }
.abc-rights-list { list-style: none; padding: 0; margin: 0; }
.abc-rights-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-color); }
.abc-rights-list li:last-child { border-bottom: none; }
.abc-rights-list .num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--theme-color); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--title-font); font-weight: 700; font-size: 13px; }
.abc-rights-list li:nth-child(4n+1) .num { background: var(--aspire-green); }
.abc-rights-list li:nth-child(4n+2) .num { background: var(--aspire-yellow); color: var(--title-color); }
.abc-rights-list li:nth-child(4n+3) .num { background: var(--aspire-red); }
.abc-rights-list li:nth-child(4n+4) .num { background: var(--aspire-blue); }
.abc-rights-list .resp .num { background: var(--secondary-color); color: var(--title-color); }
.abc-rights-list .text strong { color: var(--title-color); font-family: var(--title-font); display: block; margin-bottom: 2px; }

/* ---------- Policies ---------- */
.abc-policies-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media (max-width: 991px) { .abc-policies-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .abc-policies-grid { grid-template-columns: 1fr; } }
.abc-policy-card { background: #fff; border: 1px solid var(--border-color); border-radius: 16px; padding: 30px; transition: all .3s; position: relative; overflow: hidden; }
.abc-policy-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--theme-color); }
.abc-policy-card:nth-child(4n+1)::before { background: var(--aspire-green); }
.abc-policy-card:nth-child(4n+2)::before { background: var(--aspire-yellow); }
.abc-policy-card:nth-child(4n+3)::before { background: var(--aspire-red); }
.abc-policy-card:nth-child(4n+4)::before { background: var(--aspire-blue); }
.abc-policy-card:hover { box-shadow: 0 12px 32px rgba(15,76,125,.08); transform: translateY(-3px); }
.abc-policy-card .icon { width: 52px; height: 52px; border-radius: 12px; background: var(--smoke-theme); color: var(--theme-color); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.abc-policy-card:nth-child(4n+1) .icon { background: rgba(30,183,66,.12); color: var(--aspire-green); }
.abc-policy-card:nth-child(4n+2) .icon { background: rgba(246,187,0,.12); color: var(--aspire-yellow); }
.abc-policy-card:nth-child(4n+3) .icon { background: rgba(255,51,52,.12); color: var(--aspire-red); }
.abc-policy-card:nth-child(4n+4) .icon { background: rgba(12,150,228,.12); color: var(--aspire-blue); }
.abc-policy-card h5 { margin-bottom: 10px; }
.abc-policy-card .link { margin-top: 16px; font-weight: 600; color: var(--theme-color); display: inline-flex; align-items: center; gap: 6px; }
.abc-policy-card .link:hover { color: var(--secondary-color); }

/* ---------- Newsletter ---------- */
.abc-newsletter { background: linear-gradient(135deg, var(--theme-color) 0%, var(--title-color) 100%); color: #fff; border-radius: 24px; padding: 60px; text-align: center; position: relative; overflow: hidden; }
.abc-newsletter::before { content:""; position:absolute; top:-40px; right:-40px; width:200px; height:200px; border-radius:50%; background: rgba(240,188,70,.15); }
.abc-newsletter h2 { color: #fff; margin-bottom: 14px; }
.abc-newsletter p { color: #d4e6f2; max-width: 560px; margin: 0 auto 30px; }
.abc-newsletter-form { display: flex; gap: 12px; max-width: 620px; margin: 0 auto; flex-wrap: wrap; }
.abc-newsletter-form input { flex: 1; min-width: 180px; padding: 14px 20px; border: none; border-radius: 50px; font-family: var(--para-font); font-size: 15px; }
.abc-newsletter-form button { padding: 14px 30px; border: none; border-radius: 50px; background: var(--secondary-color); color: var(--title-color); font-family: var(--para-font); font-weight: 700; cursor: pointer; transition: all .3s; }
.abc-newsletter-form button:hover { background: #fff; }
@media (max-width: 767px) { .abc-newsletter { padding: 36px 24px; } }

/* ---------- Footer ---------- */
.abc-footer { background: linear-gradient(180deg, #0a3d62 0%, #082f4a 100%); color: #cfe3ef; padding: 0 0 0; position: relative; overflow: hidden; }
.abc-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--aspire-green) 0%, var(--aspire-yellow) 33%, var(--aspire-red) 66%, var(--aspire-blue) 100%); }
.abc-footer::after { content: ""; position: absolute; bottom: -80px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(12,150,228,.06); pointer-events: none; }
.abc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding: 60px 0 50px; position: relative; z-index: 2; }
@media (max-width: 991px) { .abc-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 575px) { .abc-footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.abc-footer h5 { color: #fff; margin-bottom: 22px; font-size: 16px; font-family: var(--title-font); font-weight: 700; position: relative; padding-bottom: 12px; }
.abc-footer h5::after { content: ""; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; border-radius: 3px; background: var(--secondary-color); }
.abc-footer ul { list-style: none; padding: 0; margin: 0; }
.abc-footer ul li { margin-bottom: 12px; }
.abc-footer ul a { color: #b8d4e8; font-size: 15px; transition: all .25s ease; display: inline-flex; align-items: center; gap: 6px; }
.abc-footer ul a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 12px; color: var(--secondary-color); opacity: 0; transition: opacity .25s ease; }
.abc-footer ul a:hover { color: #fff; padding-left: 4px; }
.abc-footer ul a:hover::before { opacity: 1; }
.abc-footer .brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.abc-footer .brand img { height: 56px; background: #fff; padding: 6px; border-radius: 10px; box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.abc-footer .brand strong { color: #fff; font-family: var(--title-font); font-size: 20px; display: block; line-height: 1.2; }
.abc-footer .brand span { font-size: 12px; color: var(--secondary-color); letter-spacing: 1.5px; text-transform: uppercase; }
.abc-footer .footer-about { color: #b8d4e8; font-size: 15px; line-height: 1.7; margin-bottom: 8px; }
.abc-footer .contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; font-size: 15px; }
.abc-footer .contact-item i { color: var(--secondary-color); margin-top: 4px; font-size: 15px; }
.abc-footer .contact-item a { color: #b8d4e8; }
.abc-footer .contact-item a:hover { color: #fff; }
.abc-footer .social { display: flex; gap: 10px; margin-top: 22px; }
.abc-footer .social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .3s; font-size: 15px; }
.abc-footer .social a:nth-child(1) { border: 2px solid rgba(12,150,228,.4); }
.abc-footer .social a:nth-child(2) { border: 2px solid rgba(30,183,66,.4); }
.abc-footer .social a:nth-child(3) { border: 2px solid rgba(246,187,0,.4); }
.abc-footer .social a:nth-child(1):hover { background: var(--aspire-blue); border-color: var(--aspire-blue); color: #fff; transform: translateY(-4px); box-shadow: 0 6px 16px rgba(12,150,228,.4); }
.abc-footer .social a:nth-child(2):hover { background: var(--aspire-green); border-color: var(--aspire-green); color: #fff; transform: translateY(-4px); box-shadow: 0 6px 16px rgba(30,183,66,.4); }
.abc-footer .social a:nth-child(3):hover { background: var(--aspire-yellow); border-color: var(--aspire-yellow); color: var(--title-color); transform: translateY(-4px); box-shadow: 0 6px 16px rgba(246,187,0,.4); }
.abc-footer-cta { background: rgba(255,255,255,.04); border-radius: 14px; padding: 22px; margin-top: 8px; border: 1px solid rgba(255,255,255,.08); }
.abc-footer-cta p { margin: 0 0 12px; font-size: 14px; color: #d4e6f2; }
.abc-footer-cta .abc-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; font-size: 14px; }
.abc-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; text-align: center; font-size: 14px; color: #9ab8d0; background: rgba(0,0,0,.2); position: relative; z-index: 2; }
.abc-footer-bottom a { color: var(--secondary-color); }
.abc-footer-bottom a:hover { color: #fff; }

/* ---------- Page banner (inner pages) ---------- */
.abc-page-banner {
  background: linear-gradient(135deg, var(--theme-color) 0%, var(--title-color) 100%);
  color: #fff; padding: 90px 0 110px; text-align: center; position: relative; overflow: hidden;
}
.abc-page-banner.align-left { text-align: left; }
.abc-page-banner .abc-page-banner-inner { position: relative; z-index: 3; }

/* Image-backed variant */
.abc-page-banner.has-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 120px 0 140px;
}
.abc-page-banner.has-image.align-left .abc-page-banner-inner { max-width: 640px; }

/* Overlay treatments for legibility */
.abc-page-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
}
.abc-page-banner.overlay-gradient .abc-page-banner-overlay {
  background: linear-gradient(135deg, rgba(15,76,125,.82) 0%, rgba(10,61,98,.72) 60%, rgba(12,150,228,.55) 100%);
}
.abc-page-banner.overlay-solid .abc-page-banner-overlay {
  background: rgba(10,61,98,.78);
}
.abc-page-banner.overlay-light .abc-page-banner-overlay {
  background: linear-gradient(180deg, rgba(10,61,98,.55) 0%, rgba(10,61,98,.78) 100%);
}
/* Fallback gradient tint when no image (keeps original look + adds subtle shapes) */
.abc-page-banner:not(.has-image)::before {
  content:""; position:absolute; top:-50px; right:-50px; width:280px; height:280px; border-radius:50%;
  background: rgba(240,188,70,.12);
}

/* Decorative colorful Aspire shapes */
.abc-page-banner-shape { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; z-index: 2; pointer-events: none; }
.abc-page-banner .shape-green { width: 90px; height: 90px; background: var(--aspire-green); top: 18%; left: 6%; }
.abc-page-banner .shape-yellow { width: 60px; height: 60px; background: var(--aspire-yellow); bottom: 22%; left: 14%; }
.abc-page-banner .shape-red { width: 70px; height: 70px; background: var(--aspire-red); top: 24%; right: 10%; }
.abc-page-banner .shape-blue { width: 110px; height: 110px; background: var(--aspire-blue); bottom: 16%; right: 5%; opacity: .4; }
.abc-page-banner.has-image .abc-page-banner-shape { opacity: .35; }

/* Wavy bottom edge */
.abc-page-banner-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 60px; z-index: 3; display: block;
}

.abc-page-banner h1 { color: #fff; margin-bottom: 10px; position: relative; z-index: 3; font-size: clamp(28px, 4vw, 46px); }
.abc-page-banner .abc-eyebrow.light { color: var(--secondary-color); background: rgba(255,255,255,.12); display: inline-block; padding: 4px 16px; border-radius: 999px; margin-bottom: 14px; }
.abc-page-banner .abc-page-banner-subtitle { color: #e7f1f8; font-size: 17px; max-width: 640px; margin: 0 auto 14px; position: relative; z-index: 3; }
.abc-page-banner.align-left .abc-page-banner-subtitle { margin-left: 0; }
.abc-page-banner .breadcrumb { color: #d4e6f2; position: relative; z-index: 3; font-size: 14px; }
.abc-page-banner .breadcrumb a { color: var(--secondary-color); }
.abc-page-banner .breadcrumb a:hover { color: #fff; }
.abc-page-banner .breadcrumb span { margin: 0 8px; opacity: .7; }

@media (max-width: 768px) {
  .abc-page-banner { padding: 70px 0 90px; }
  .abc-page-banner.has-image { padding: 80px 0 100px; }
  .abc-page-banner-wave { height: 40px; }
  .abc-page-banner .shape-green, .abc-page-banner .shape-red { width: 60px; height: 60px; }
  .abc-page-banner .shape-yellow, .abc-page-banner .shape-blue { width: 50px; height: 50px; }
}
@media (max-width: 480px) {
  .abc-page-banner .abc-page-banner-shape { opacity: .25; }
  .abc-page-banner.has-image .abc-page-banner-shape { display: none; }
}

/* ---------- Forms ---------- */
.abc-form { background: #fff; border-radius: 18px; padding: 40px; border: 1px solid var(--border-color); }
@media (max-width: 575px) { .abc-form { padding: 24px; } }
.abc-jotform-wrap { width: 100%; overflow: hidden; border-radius: 12px; }
.abc-jotform-wrap iframe { width: 100% !important; min-height: 600px; border: 0; display: block; }
.abc-form h3 { margin-bottom: 8px; }
.abc-form .form-intro { color: var(--body-color); margin-bottom: 28px; }
.abc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 575px) { .abc-form-row { grid-template-columns: 1fr; } }
.abc-field { margin-bottom: 18px; }
.abc-field label { display: block; font-family: var(--para-font); font-weight: 600; color: var(--title-color); margin-bottom: 6px; font-size: 14px; }
.abc-field label .req { color: #e57373; }
.abc-field input, .abc-field select, .abc-field textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border-color); border-radius: 10px;
  font-family: var(--para-font); font-size: 15px; color: var(--body-color); background: #fff; transition: all .2s;
}
.abc-field input:focus, .abc-field select:focus, .abc-field textarea:focus { outline: none; border-color: var(--theme-color); box-shadow: 0 0 0 3px rgba(15,76,125,.1); }
.abc-field textarea { min-height: 120px; resize: vertical; }
.abc-form-section { margin-bottom: 32px; }
.abc-form-section h4 { color: var(--theme-color); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--smoke-theme); }
.abc-form-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.abc-checkbox { display: flex; gap: 10px; align-items: flex-start; }
.abc-checkbox input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }

/* ---------- Alerts ---------- */
.abc-alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-family: var(--para-font); font-weight: 500; }
.abc-alert-success { background: #e3f6e8; color: #1a7a37; border: 1px solid #b8e6c5; }
.abc-alert-error { background: #fde8e8; color: #c0392b; border: 1px solid #f5b8b8; }

/* ---------- Steps (what to expect) ---------- */
.abc-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media (max-width: 991px) { .abc-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .abc-steps { grid-template-columns: 1fr; } }
.abc-step { background: #fff; border: 1px solid var(--border-color); border-radius: 16px; padding: 30px; position: relative; }
.abc-step .step-num { position: absolute; top: -16px; left: 24px; width: 40px; height: 40px; border-radius: 50%; background: var(--theme-color); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--title-font); font-weight: 700; }
.abc-step .icon { font-size: 32px; color: var(--secondary-color); margin-bottom: 16px; margin-top: 10px; }
.abc-step h5 { margin-bottom: 10px; }
/* Colorful step cards — cycle Aspire palette */
.abc-step:nth-child(4n+1) { border-top: 4px solid var(--aspire-green); }
.abc-step:nth-child(4n+1) .step-num { background: var(--aspire-green); }
.abc-step:nth-child(4n+1) .icon { color: var(--aspire-green); }
.abc-step:nth-child(4n+2) { border-top: 4px solid var(--aspire-yellow); }
.abc-step:nth-child(4n+2) .step-num { background: var(--aspire-yellow); color: var(--title-color); }
.abc-step:nth-child(4n+2) .icon { color: var(--aspire-yellow); }
.abc-step:nth-child(4n+3) { border-top: 4px solid var(--aspire-red); }
.abc-step:nth-child(4n+3) .step-num { background: var(--aspire-red); }
.abc-step:nth-child(4n+3) .icon { color: var(--aspire-red); }
.abc-step:nth-child(4n+4) { border-top: 4px solid var(--aspire-blue); }
.abc-step:nth-child(4n+4) .step-num { background: var(--aspire-blue); }
.abc-step:nth-child(4n+4) .icon { color: var(--aspire-blue); }
.abc-step:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(15,76,125,.1); }

/* ---------- Family resource cards ---------- */
.abc-fam-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media (max-width: 991px) { .abc-fam-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .abc-fam-grid { grid-template-columns: 1fr; } }
.abc-fam-card { background: #fff; border: 1px solid var(--border-color); border-radius: 16px; padding: 30px; transition: all .3s; position: relative; overflow: hidden; }
.abc-fam-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--theme-color); }
.abc-fam-card:nth-child(4n+1)::before { background: var(--aspire-green); }
.abc-fam-card:nth-child(4n+2)::before { background: var(--aspire-yellow); }
.abc-fam-card:nth-child(4n+3)::before { background: var(--aspire-red); }
.abc-fam-card:nth-child(4n+4)::before { background: var(--aspire-blue); }
.abc-fam-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(15,76,125,.08); }
.abc-fam-card .icon { width: 52px; height: 52px; border-radius: 12px; background: var(--smoke-theme); color: var(--theme-color); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.abc-fam-card:nth-child(4n+1) .icon { background: rgba(30,183,66,.12); color: var(--aspire-green); }
.abc-fam-card:nth-child(4n+2) .icon { background: rgba(246,187,0,.12); color: var(--aspire-yellow); }
.abc-fam-card:nth-child(4n+3) .icon { background: rgba(255,51,52,.12); color: var(--aspire-red); }
.abc-fam-card:nth-child(4n+4) .icon { background: rgba(12,150,228,.12); color: var(--aspire-blue); }
.abc-fam-card h5 { margin-bottom: 10px; }
.abc-fam-card .link { margin-top: 14px; font-weight: 600; color: var(--theme-color); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Career cards ---------- */
.abc-career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 767px) { .abc-career-grid { grid-template-columns: 1fr; } }
.abc-perks-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 50px; }
@media (max-width: 767px) { .abc-perks-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .abc-perks-strip { grid-template-columns: 1fr; } }
.abc-career-card { background: #fff; border: 1px solid var(--border-color); border-radius: 16px; padding: 28px; transition: all .3s; position: relative; overflow: hidden; }
.abc-career-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--theme-color); }
.abc-career-card:nth-child(4n+1)::before { background: var(--aspire-green); }
.abc-career-card:nth-child(4n+2)::before { background: var(--aspire-yellow); }
.abc-career-card:nth-child(4n+3)::before { background: var(--aspire-red); }
.abc-career-card:nth-child(4n+4)::before { background: var(--aspire-blue); }
.abc-career-card:hover { box-shadow: 0 12px 30px rgba(15,76,125,.08); border-color: transparent; transform: translateY(-3px); }
.abc-career-card h5 { color: var(--theme-color); margin-bottom: 8px; }
.abc-career-card .pos { font-weight: 600; color: var(--title-color); margin-bottom: 6px; }
.abc-career-card .salary { color: var(--secondary-color); font-weight: 700; font-family: var(--title-font); }
.abc-career-card .desc { margin: 14px 0; }

/* ---------- Blog cards ---------- */
.abc-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
@media (max-width: 991px) { .abc-blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .abc-blog-grid { grid-template-columns: 1fr; } }
.abc-blog-card { background: #fff; border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: all .3s; }
.abc-blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15,76,125,.1); }
.abc-blog-card img { width: 100%; height: 220px; object-fit: cover; }
.abc-blog-card .body { padding: 24px; }
.abc-blog-card .date { font-size: 13px; color: var(--secondary-color); font-weight: 600; }
.abc-blog-card h5 { margin: 8px 0 10px; }

/* ---------- Contact ---------- */
.abc-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
@media (max-width: 991px) { .abc-contact-grid { grid-template-columns: 1fr; } }
.abc-contact-info-card { background: linear-gradient(160deg, var(--smoke-theme) 0%, #e0ecf4 100%); border-radius: 18px; padding: 36px; position: relative; overflow: hidden; }
.abc-contact-info-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--aspire-green), var(--aspire-yellow), var(--aspire-red), var(--aspire-blue)); }
.abc-contact-info-card h4 { color: var(--theme-color); margin-bottom: 20px; }
.abc-contact-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.abc-contact-item .icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px; background: var(--theme-color); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.abc-contact-item:nth-child(2) .icon { background: var(--aspire-green); }
.abc-contact-item:nth-child(3) .icon { background: var(--aspire-yellow); color: var(--title-color); }
.abc-contact-item:nth-child(4) .icon { background: var(--aspire-red); }
.abc-contact-item .label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--body-color); font-weight: 600; }
.abc-contact-item .val { font-family: var(--title-font); color: var(--title-color); font-weight: 600; font-size: 17px; }

/* ---------- Generic content prose ---------- */
.abc-prose { max-width: 820px; margin: 0 auto; }
.abc-prose h2, .abc-prose h3 { color: var(--theme-color); margin-top: 36px; }
.abc-prose p { font-size: 17px; margin-bottom: 20px; }
.abc-prose ul { padding-left: 22px; }
.abc-prose li { margin-bottom: 10px; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.rounded-img { border-radius: 18px; }

/* ---------- Preloader ---------- */
.abc-preloader { position: fixed; inset: 0; background: #fff; z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity .4s; }
.abc-preloader.hidden { opacity: 0; pointer-events: none; }
.abc-preloader .spinner { width: 50px; height: 50px; border: 4px solid var(--smoke-theme); border-top-color: var(--theme-color); border-radius: 50%; animation: abc-spin 1s linear infinite; }
@keyframes abc-spin { to { transform: rotate(360deg); } }

/* ---------- Scroll to top ---------- */
.abc-scroll-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; border-radius: 50%; background: var(--theme-color); color: #fff; border: none; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 18px; z-index: 999; box-shadow: 0 6px 20px rgba(15,76,125,.3); transition: all .3s; }
.abc-scroll-top:hover { background: var(--secondary-color); color: var(--title-color); }
.abc-scroll-top.visible { display: flex; }
