/* ═══════════════════════════════════════════════════════════════
   SVC · Extended Content Page Library — common stylesheet
   ═══════════════════════════════════════════════════════════════
   One shared stylesheet for every "extended content" page built in
   Admin > Extended Contents. Link it once, then paste ONLY the body
   markup (no <!DOCTYPE>/<html>/<head>/<body>/<style>/<script>) into
   the linkcontents field's Summernote Code View (the "<>" button).

   USAGE
   -----
   <link rel="stylesheet" href="/svc_home/css/extended_page.css">
   ...then your .sp-hero / .sp-section / card markup...

   This file is tuned for that context: the fragment lands inside the
   site's existing padded, full-width container (extended_link_show
   .blade.php already renders a breadcrumb + <h1>{{ link_name }}</h1>
   above it, and already loads Bootstrap 5 / Font Awesome / Google
   Fonts) — so .sp-hero has rounded corners instead of edge-to-edge,
   and .sp-wrap carries no extra side padding (the parent supplies
   it). Because the page already shows its own title above the
   fragment, prefer .sp-hero-lead (icon + one sentence) over
   .sp-hero-title in the hero — don't repeat the page name.

   COMPONENTS
   ----------
   Hero:      .sp-hero > .sp-hero-wrap > .sp-hero-inner
                { .sp-hero-eyebrow | .sp-hero-title | .sp-hero-lead |
                  .sp-hero-subtitle | .sp-hero-stats > .sp-hero-stat-num/-lbl }
   Layout:    .sp-wrap, .sp-section, .sp-section-hd
                { .sp-section-icon, .sp-section-title, .sp-section-badge }
   Cards:     .sp-intro-card            — prose / about blocks
              .sp-quote-card            — pull-quote / message card
              .sp-spotlight-card        — one-person highlight (Chairman, Principal…)
              .sp-photo-card            — image up top + highlight rows / checklist below
              .sp-video-card            — 16:9 embed (YouTube etc.) + caption below
              .sp-member-card           — photo-grid person tile (Trust Nominees, Reps…)
              .sp-person-card           — icon-avatar person tile (no photo needed)
              .sp-group-card            — headed list of names (sub-teams, councils)
              .sp-link-item             — icon + label + sub row (Connect / downloads)
              .sp-stats-banner          — big-number impact strip
              .sp-feature-card          — icon + title + body (divisions/features)
              .sp-timeline              — numbered/lettered process steps
              .sp-note-card             — left-border policy/info block
              .sp-callout               — red warning/notice box
              .sp-faq-accordion         — Bootstrap accordion, restyled
              .sp-glb-wrap/.sp-gallery-item — gallery tiles (+ optional GLightbox)
              .sp-logo-card             — partner/recruiter logo tile
              .sp-cta-banner            — closing call-to-action band
              .sp-footer                — plain copyright line
═══════════════════════════════════════════════════════════════ */

/* ── Design tokens (supplement project's site_styles) ── */
:root {
    --sp-blue:     #1d4ed8;
    --sp-blue-mid: #1e56c9;
    --sp-navy:     #12336b;
    --sp-ink:      #1f2937;
    --sp-surface:  #ffffff;
    --sp-soft:     #eff6ff;
    --sp-line:     rgba(29,78,216,0.12);
    --sp-shadow:   0 18px 45px rgba(15,23,42,0.08);
    --sp-muted:    #64748b;
}

/* ── HERO ── */
.sp-hero {
    background: linear-gradient(135deg, #0f2554 0%, #12336b 35%, #1d4ed8 75%, #2563eb 100%);
    padding: 2.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
}
.sp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sp-hero-inner { position: relative; z-index: 1; }
.sp-hero-wrap { width: 100%; margin: 0 auto; padding: 0; }
.sp-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    color: rgba(255,255,255,0.92);
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.07em; text-transform: uppercase;
    margin-bottom: 1rem;
}
/* Only use .sp-hero-title when the page title is NOT already shown
   above the fragment by the site shell — otherwise prefer .sp-hero-lead. */
.sp-hero-title {
    color: #fff;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.sp-hero-lead {
    display: flex; align-items: flex-start; gap: 0.65rem;
    color: rgba(255,255,255,0.92);
    font-size: 1.02rem; line-height: 1.7; font-weight: 500;
    max-width: 780px; margin: 0 0 1.5rem;
}
.sp-hero-lead i { margin-top: 0.2rem; color: rgba(255,255,255,0.75); flex-shrink: 0; }
.sp-hero-subtitle {
    color: rgba(255,255,255,0.78);
    font-size: 1rem; line-height: 1.6;
    max-width: 720px; margin-bottom: 1.5rem;
}
.sp-hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.sp-hero-stat-num { font-size: 1.65rem; font-weight: 700; color: #fff; line-height: 1; }
.sp-hero-stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.72); margin: 0; }

/* ── WRAPPER ── */
.sp-wrap { max-width: 1200px; margin: 0 auto; padding: 2rem 0 3rem; }

/* ── SECTION HEADER ── */
.sp-section { margin-bottom: 3rem; }
.sp-section-hd {
    display: flex; align-items: center; gap: 0.9rem;
    margin-bottom: 1.6rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid var(--sp-line);
}
.sp-section-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sp-navy) 0%, var(--sp-blue) 100%);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
    box-shadow: 0 8px 18px rgba(29,78,216,0.22);
}
.sp-section-title {
    color: var(--sp-navy);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 700; margin: 0;
}
.sp-section-badge {
    margin-left: auto; flex-shrink: 0;
    background: var(--sp-soft);
    border: 1px solid var(--sp-line);
    border-radius: 999px;
    padding: 0.28rem 0.85rem;
    font-size: 0.75rem; font-weight: 600;
    color: var(--sp-blue); white-space: nowrap;
}

/* ── INTRO / ABOUT CARD ── */
.sp-intro-card {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 60%);
    border: 1px solid var(--sp-line);
    border-radius: 1.5rem;
    padding: 2rem 2.25rem;
    box-shadow: var(--sp-shadow);
}
.sp-intro-card p { font-size: 1rem; line-height: 1.9; color: #334155; text-align: justify; margin: 0; }
.sp-intro-card p + p { margin-top: 1rem; }

/* ── QUOTE / MESSAGE CARD ── */
.sp-quote-card {
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
    border: 1px solid var(--sp-line);
    border-radius: 1.5rem; padding: 2rem;
    box-shadow: var(--sp-shadow);
}
.sp-quote-role {
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: var(--sp-navy); color: #fff;
    padding: 0.28rem 0.85rem; border-radius: 999px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 1rem;
}
.sp-quote-text {
    border-left: 4px solid var(--sp-blue);
    padding: 1rem 1.25rem; background: var(--sp-soft);
    border-radius: 0 0.85rem 0.85rem 0;
    font-size: 0.95rem; line-height: 1.8; color: #334155; font-style: italic;
    margin-bottom: 1rem;
}

/* ── SPOTLIGHT (single-person highlight) ── */
.sp-spotlight-card {
    background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
    border: 1px solid var(--sp-line);
    border-radius: 1.75rem;
    padding: 2.25rem;
    box-shadow: var(--sp-shadow);
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.sp-spotlight-photo {
    width: 168px; height: 200px; flex-shrink: 0;
    object-fit: cover; object-position: top center;
    border-radius: 18px;
    border: 4px solid #fff;
    box-shadow: 0 16px 36px rgba(29,78,216,0.22);
}
.sp-spotlight-role {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: linear-gradient(135deg, var(--sp-navy) 0%, var(--sp-blue) 100%);
    color: #fff;
    padding: 0.32rem 1rem; border-radius: 999px;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 0.85rem;
}
.sp-spotlight-name { color: var(--sp-navy); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.35rem; }
.sp-spotlight-desig { color: #475569; font-size: 0.95rem; margin-bottom: 1.1rem; }
.sp-spotlight-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--sp-blue); color: #fff;
    padding: 0.55rem 1.35rem; border-radius: 999px;
    font-weight: 700; font-size: 0.85rem; text-decoration: none;
    box-shadow: 0 8px 20px rgba(29,78,216,0.28);
    transition: transform 0.2s, box-shadow 0.2s;
}
.sp-spotlight-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(29,78,216,0.36); color: #fff; }

/* ── PHOTO CARD (image + highlight rows / checklist) ── */
.sp-photo-card {
    background: var(--sp-surface);
    border: 1px solid var(--sp-line);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--sp-shadow);
    height: 100%;
}
.sp-photo-card img { width: 100%; display: block; object-fit: cover; }
.sp-photo-card-body { padding: 1.5rem 1.75rem 1.75rem; }
.sp-highlight-row {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.75rem 0; border-bottom: 1px solid var(--sp-line);
}
.sp-highlight-row:last-of-type { border-bottom: 0; }
.sp-highlight-row i {
    font-size: 1.4rem; color: var(--sp-blue); flex-shrink: 0;
    width: 2.5rem; text-align: center;
}
.sp-highlight-row span {
    font-size: 0.95rem; font-weight: 700; color: var(--sp-navy);
}
.sp-checklist { list-style: none; padding: 0; margin: 1rem 0 0; }
.sp-checklist li {
    display: flex; align-items: flex-start; gap: 0.6rem;
    padding: 0.45rem 0; font-size: 0.9rem; font-weight: 600; color: #334155;
}
.sp-checklist li i { color: var(--sp-blue); margin-top: 0.2rem; flex-shrink: 0; }

/* ── VIDEO CARD (16:9 embed + caption) ── */
.sp-video-card {
    background: var(--sp-surface);
    border: 1px solid var(--sp-line);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--sp-shadow);
}
.sp-video-wrap { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.sp-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.sp-video-body {
    padding: 1.5rem 1.75rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
}
.sp-video-title { color: var(--sp-navy); font-size: 1.05rem; font-weight: 700; margin: 0 0 0.35rem; }
.sp-video-desc { color: var(--sp-muted); font-size: 0.88rem; margin: 0; max-width: 560px; }

/* ── MEMBER CARD (photo-grid tile — Trust Nominees, Reps, etc.) ── */
.sp-member-card {
    background: var(--sp-surface);
    border: 1px solid var(--sp-line);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--sp-shadow);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sp-member-card:hover { transform: translateY(-5px); box-shadow: 0 28px 56px rgba(15,23,42,0.14); }
.sp-member-photo-wrap {
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 100%);
    padding: 1.75rem 1.5rem 1.25rem; text-align: center;
}
.sp-member-photo {
    width: 120px; height: 120px; border-radius: 50%;
    object-fit: cover; object-position: top center;
    border: 3px solid #fff;
    box-shadow: 0 10px 24px rgba(29,78,216,0.18);
}
.sp-member-body { padding: 0 1.35rem 1.6rem; text-align: center; }
.sp-member-name-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--sp-soft); color: var(--sp-navy);
    border: 1px solid var(--sp-line);
    padding: 0.4rem 1.05rem; border-radius: 999px;
    font-weight: 700; font-size: 0.86rem;
    text-decoration: none; margin-bottom: 0.85rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.sp-member-name-btn:hover { background: var(--sp-blue); color: #fff; transform: translateY(-2px); }
.sp-member-desig { color: #475569; font-size: 0.85rem; line-height: 1.55; margin-bottom: 0.6rem; }
.sp-member-email {
    display: inline-flex; align-items: center; gap: 0.35rem;
    color: var(--sp-muted); font-size: 0.78rem; text-decoration: none; word-break: break-word;
    transition: color 0.2s;
}
.sp-member-email:hover { color: var(--sp-blue); }
.sp-member-email + .sp-member-email { margin-top: 0.25rem; }
.sp-member-emails { display: flex; flex-direction: column; align-items: center; }

/* ── PERSON CARD (icon-avatar tile — no photo file needed) ── */
.sp-person-card {
    background: var(--sp-surface); border: 1px solid var(--sp-line);
    border-radius: 1.5rem; overflow: hidden; box-shadow: var(--sp-shadow);
    height: 100%; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sp-person-card:hover { transform: translateY(-5px); box-shadow: 0 28px 56px rgba(15,23,42,0.14); }
.sp-person-photo-wrap {
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 100%);
    padding: 1.75rem 1.5rem 0; text-align: center; position: relative;
}
.sp-avatar {
    width: 115px; height: 115px; border-radius: 50%;
    border: 3px solid #fff; box-shadow: 0 10px 24px rgba(29,78,216,0.18);
    background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 100%);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 2.6rem; color: var(--sp-blue);
}
.sp-person-badge {
    position: absolute; bottom: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sp-navy) 0%, var(--sp-blue-mid) 100%);
    color: #fff; padding: 0.32rem 0.95rem; border-radius: 999px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
    box-shadow: 0 6px 14px rgba(29,78,216,0.28); white-space: nowrap;
}
.sp-person-body { padding: 1.9rem 1.25rem 1.35rem; text-align: center; }
.sp-person-name { color: var(--sp-navy); font-size: 1rem; font-weight: 700; margin-bottom: 0.7rem; }
.sp-person-contact { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.sp-person-contact a {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.38rem;
    color: var(--sp-muted); font-size: 0.82rem; text-decoration: none; transition: color 0.2s;
}
.sp-person-contact a:hover { color: var(--sp-blue); }
.sp-person-quote {
    font-size: 0.83rem; line-height: 1.7; color: #64748b; text-align: justify;
    border-top: 1px solid var(--sp-line); padding-top: 0.85rem; font-style: italic;
}

/* ── GROUPED LIST CARD (sub-teams, councils) ── */
.sp-group-card {
    background: var(--sp-surface); border: 1px solid var(--sp-line);
    border-radius: 1.25rem; overflow: hidden;
    box-shadow: 0 10px 24px rgba(15,23,42,0.06); height: 100%;
}
.sp-group-card-hd {
    background: linear-gradient(135deg, var(--sp-navy) 0%, var(--sp-blue-mid) 100%);
    padding: 0.85rem 1.25rem; display: flex; align-items: center; gap: 0.6rem; color: #fff;
}
.sp-group-card-hd-icon {
    width: 32px; height: 32px; border-radius: 9px;
    background: rgba(255,255,255,0.18);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
}
.sp-group-card-hd-title { font-size: 0.88rem; font-weight: 700; letter-spacing: 0.02em; margin: 0; }
.sp-group-card-body { padding: 0.5rem 0; }
.sp-group-member {
    display: flex; align-items: center; gap: 0.65rem; padding: 0.65rem 1.25rem;
    border-bottom: 1px solid rgba(29,78,216,0.06); transition: background 0.18s;
}
.sp-group-member:last-child { border-bottom: 0; }
.sp-group-member:hover { background: var(--sp-soft); }
.sp-group-avatar {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--sp-blue); font-size: 0.82rem; font-weight: 700;
}
.sp-group-name { font-size: 0.88rem; font-weight: 600; color: var(--sp-navy); margin: 0; }

/* ── LINK ITEM (Connect / download rows) ── */
.sp-link-item {
    display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem;
    background: var(--sp-surface); border: 1px solid var(--sp-line);
    border-radius: 1rem; text-decoration: none; color: var(--sp-ink);
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; margin-bottom: 0.85rem;
}
.sp-link-item:hover {
    transform: translateY(-3px); box-shadow: 0 18px 36px rgba(15,23,42,0.12);
    border-color: rgba(29,78,216,0.28); color: var(--sp-blue);
}
.sp-link-icon {
    width: 46px; height: 46px; border-radius: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex-shrink: 0; color: #fff;
}
.sp-link-label { font-size: 0.9rem; font-weight: 600; margin: 0; }
.sp-link-sub { font-size: 0.78rem; color: var(--sp-muted); margin: 0; }

/* ── STATS / IMPACT BANNER ── */
.sp-stats-banner {
    background: linear-gradient(135deg, #0f2554 0%, var(--sp-navy) 40%, var(--sp-blue) 100%);
    border-radius: 1.5rem; padding: 2.25rem 2rem; color: #fff;
    box-shadow: 0 24px 48px rgba(18,51,107,0.28);
}
.sp-stats-num { font-size: 2.4rem; font-weight: 800; color: #fff; }
.sp-stats-lbl { font-size: 0.85rem; color: rgba(255,255,255,0.76); margin: 0; }

/* ── FEATURE / DIVISION CARD ── */
.sp-feature-card {
    background: var(--sp-surface); border: 1px solid var(--sp-line);
    border-radius: 1.25rem; padding: 1.4rem;
    box-shadow: 0 10px 24px rgba(15,23,42,0.06); height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}
.sp-feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(15,23,42,0.1); }
.sp-feature-icon {
    width: 54px; height: 54px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 1rem;
}
.sp-feature-title { color: var(--sp-navy); font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.sp-feature-body { font-size: 0.88rem; color: var(--sp-muted); line-height: 1.75; margin: 0; }

/* ── PROCESS TIMELINE ── */
.sp-timeline { position: relative; padding-left: 2.75rem; }
.sp-timeline::before {
    content: ""; position: absolute; left: 19px; top: 6px; bottom: 0; width: 2px;
    background: linear-gradient(180deg, var(--sp-blue) 0%, #bfdbfe 100%);
}
.sp-timeline-item { position: relative; margin-bottom: 1.5rem; }
.sp-timeline-dot {
    position: absolute; left: -2.75rem; top: 0;
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sp-navy) 0%, var(--sp-blue) 100%);
    color: #fff; font-size: 0.72rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(29,78,216,0.3);
}
.sp-timeline-card {
    background: var(--sp-surface); border: 1px solid var(--sp-line);
    border-radius: 1rem; padding: 1.15rem 1.35rem; box-shadow: 0 8px 20px rgba(15,23,42,0.05);
}
.sp-timeline-title { color: var(--sp-navy); font-size: 0.97rem; font-weight: 700; margin-bottom: 0.45rem; }
.sp-timeline-body { font-size: 0.9rem; color: #475569; line-height: 1.75; margin: 0; }

/* ── POLICY / NOTE CARD ── */
.sp-note-card {
    background: var(--sp-surface); border-left: 4px solid var(--sp-blue);
    border-radius: 0 1rem 1rem 0; padding: 1.1rem 1.35rem; margin-bottom: 1rem;
    box-shadow: 0 6px 16px rgba(15,23,42,0.05);
}
.sp-note-title {
    color: var(--sp-blue); font-size: 0.88rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem;
    display: flex; align-items: center; gap: 0.4rem;
}
.sp-note-card ul, .sp-note-card p { color: #475569; font-size: 0.9rem; line-height: 1.75; margin: 0; }
.sp-note-card ul { padding-left: 1.3rem; }
.sp-note-card li { margin-bottom: 0.35rem; }

/* ── CALLOUT (warning-style) ── */
.sp-callout {
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
    border: 1px solid rgba(220,38,38,0.18);
    border-radius: 1rem; padding: 1.25rem 1.5rem; margin-top: 1.5rem;
}
.sp-callout-hd {
    color: #dc2626; font-size: 0.88rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.65rem;
    display: flex; align-items: center; gap: 0.4rem;
}
.sp-callout ul { padding-left: 1.3rem; margin: 0; }
.sp-callout li { color: #7f1d1d; font-size: 0.86rem; line-height: 1.65; margin-bottom: 0.35rem; }

/* ── FAQ ACCORDION ── */
.sp-faq-accordion .accordion-item {
    border: 1px solid var(--sp-line) !important; border-radius: 0.85rem !important;
    margin-bottom: 0.6rem; overflow: hidden;
}
.sp-faq-accordion .accordion-button {
    font-weight: 600; font-size: 0.88rem;
    color: var(--sp-navy); background: #f8faff; border-radius: 0 !important; box-shadow: none !important;
}
.sp-faq-accordion .accordion-button:not(.collapsed) { color: var(--sp-blue); background: var(--sp-soft); }
.sp-faq-accordion .accordion-body { font-size: 0.88rem; color: #475569; line-height: 1.75; }

/* ── GALLERY (works with or without GLightbox) ── */
@keyframes spGalleryReveal {
    from { opacity: 0; transform: scale(0.86) translateY(28px); filter: blur(3px); }
    to   { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
.sp-glb-wrap {
    display: block; border-radius: 1rem; overflow: hidden; text-decoration: none;
    animation: spGalleryReveal 0.65s cubic-bezier(0.22,0.61,0.36,1) both;
    animation-delay: var(--g-delay, 0s); animation-play-state: paused; cursor: pointer;
}
.sp-glb-wrap.sp-revealed { animation-play-state: running; }
.sp-gallery-item {
    position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 4/3;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--sp-blue); font-size: 2rem;
    box-shadow: 0 12px 28px rgba(15,23,42,0.1);
    transition: transform 0.38s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.38s ease;
}
.sp-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.sp-glb-wrap:hover .sp-gallery-item { transform: scale(1.04) translateY(-5px); box-shadow: 0 28px 56px rgba(15,23,42,0.26); }
.sp-gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 0.55rem 0.8rem;
    color: var(--sp-navy); font-size: 0.72rem; font-weight: 600; text-align: center;
    background: rgba(255,255,255,0.85);
}

/* ── LOGO / PARTNER CARD ── */
.sp-logo-card {
    background: #fff; border: 1px solid rgba(29,78,216,0.09); border-radius: 1rem;
    padding: 1rem 0.65rem; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 0.4rem; box-shadow: 0 6px 18px rgba(15,23,42,0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
    min-height: 90px; width: 100%; text-align: center;
}
.sp-logo-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(15,23,42,0.12); border-color: rgba(29,78,216,0.26); }
.sp-logo-card img { width: 100%; max-width: 80px; height: 38px; object-fit: contain; filter: grayscale(15%); transition: filter 0.22s; }
.sp-logo-card:hover img { filter: grayscale(0%); }
.sp-logo-card i { font-size: 1.4rem; color: var(--sp-blue); }
.sp-logo-name { font-size: 0.72rem; font-weight: 600; color: #64748b; margin: 0; }

/* ── CTA BANNER ── */
.sp-cta-banner {
    background: linear-gradient(135deg,#0f2554 0%,var(--sp-navy) 40%,var(--sp-blue) 100%);
    border-radius: 1.5rem; padding: 2.5rem 2rem; text-align: center;
    box-shadow: 0 24px 48px rgba(18,51,107,0.28); margin-bottom: 2rem;
}
.sp-cta-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #fff; color: var(--sp-navy); padding: 0.65rem 1.5rem;
    border-radius: 999px; font-weight: 700;
    font-size: 0.88rem; text-decoration: none; box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.sp-cta-btn-outline { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }

/* ── PLAIN FOOTER ── */
.sp-footer { text-align: center; padding: 1.5rem; color: var(--sp-muted); font-size: 0.82rem; }

/* ── RESPONSIVE ── */
@media (max-width: 767.98px) {
    .sp-hero { padding: 2rem 1.25rem; }
    .sp-hero-stats { gap: 1.25rem; }
    .sp-hero-stat-num { font-size: 1.4rem; }
    .sp-intro-card { padding: 1.35rem 1.25rem; }
    .sp-spotlight-card { padding: 1.5rem; justify-content: center; text-align: center; }
    .sp-stats-num { font-size: 1.9rem; }
    .sp-timeline { padding-left: 2.25rem; }
}
@media (max-width: 575.98px) {
    .sp-section-title { font-size: 1.1rem; }
    .sp-section-icon { width: 40px; height: 40px; font-size: 0.95rem; }
    .sp-spotlight-photo { width: 130px; height: 155px; }
    .sp-avatar { width: 100px; height: 100px; }
    .sp-stats-banner { padding: 1.5rem 1rem; }
}
