* {
    font-family: "DM Sans", sans-serif;
}

.hero-overlay {
    background: linear-gradient(to right,
            rgba(10, 40, 20, 0.82) 35%,
            rgba(10, 40, 20, 0.2) 100%);
}

.goog-te-gadget-simple {
    display: flex !important;
    cursor: pointer !important;
}

.goog-te-gadget {
    width: 150px;
    overflow: hidden;
    background-color: #fff;
    border-left: 1px solid #d5d5d5;
    border-top: 1px solid #9b9b9b;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #d5d5d5;
    font-size: 10pt;
    display: inline-block;
    padding-top: 1px;
    padding-bottom: 2px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    cursor: pointer !important;
}

.goog-te-gadget select {
    width: 150px;
}

.goog-te-gadget-simple a {
    display: flex;
}

.plan-card {
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
    border: 2px solid #1a5632;
}

.check-item::before {
    content: "✓";
    color: #1a5632;
    font-weight: 700;
    margin-right: 8px;
}

.stat-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ticker {
    background: #1a5632;
}

.savings-tab.active {
    background: #1a5632;
    color: white;
}

.savings-tab {
    transition: all 0.2s;
}

.procedure-item {
    transition: background 0.15s;
    cursor: pointer;
}

.procedure-item:hover {
    background: #f0faf4;
}

.procedure-item.active {
    background: #e8f5ee;
    border-left: 3px solid #1a5632;
}

.testimonial-card {
    border-radius: 16px;
}

.step-connector {
    position: absolute;
    top: 24px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #d1fae5;
    z-index: 0;
}

.btn-primary {
    background: #1a5632;
    color: white;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #0f3a21;
}

.btn-outline {
    border: 2px solid #1a5632;
    color: #1a5632;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #1a5632;
    color: white;
}

.btn-accent {
    background: #f5a623;
    color: #1a5632;
    font-weight: 700;
    transition: background 0.2s;
}

.btn-accent:hover {
    background: #e09518;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        border-color var(--transition);
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

.social-icon:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon.twitter:hover {
    background: #000;
    border-color: #000;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);
    border-color: #e1306c;
}

.social-icon.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

.social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-icon.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

/* Contact page social icons (light bg) */
.social-icon-light {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    transition: all var(--transition);
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.social-icon-light:hover {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
    transform: translateY(-2px);
}

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
    --g900: #0d3320;
    --g800: #124428;
    --g700: #1a6b3c;
    --g600: #22763f;
    --g500: #2a9150;
    --g100: #dcf0e6;
    --g50: #f0faf4;
    --amber: #f59e0b;
    --amberD: #d97706;
    --blue: #2563eb;
    --blueL: #dbeafe;
    --gray900: #111827;
    --gray700: #374151;
    --gray600: #4b5563;
    --gray500: #6b7280;
    --gray400: #9ca3af;
    --gray300: #d1d5db;
    --gray200: #e5e7eb;
    --gray100: #f3f4f6;
    --gray50: #f9fafb;
    --white: #ffffff;
    --serif: Georgia, "Times New Roman", "Palatino Linotype", serif;
    --sans:
        -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial,
        "Noto Sans", sans-serif;
    --mono:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", monospace;
    --green-dark: #1a3a2a;
    --green-primary: #1f4d35;
    --green-mid: #2d6a4f;
    --green-light: #3a8a60;
    --green-accent: #4caf78;
    --gold: #e5a020;
    --gold-light: #f0b432;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f4;
    --gray-200: #e2e6ea;
    --gray-400: #9aa3ad;
    --gray-600: #5a6472;
    --gray-800: #2c3440;
    --text-main: #1a2430;
    --text-muted: #6b7685;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.13);
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─────────────────────────────────────────────── */
*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--gray900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ─── UTILITY BAR ────────────────────────────────────────── */
.ubar {
    background: var(--g900);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    padding: 0.38rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ubar-left,
.ubar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ubar a {
    color: rgba(255, 255, 255, 0.8);
}

.ubar a:hover {
    color: #fff;
}

.ussd-pill {
    background: var(--amber);
    color: #111;
    font-weight: 700;
    padding: 0.08rem 0.45rem;
    border-radius: 3px;
    font-family: var(--mono);
    font-size: 1rem;
}

.nhia-chip {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    padding: 0.1rem 0.55rem;
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.88);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.logo-box {
    width: 50px;
}

.logo-box.noimg {
    font-size: 1.2rem;
}

.brand-text .name {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--g800);
    font-size: 1.05rem;
    line-height: 1;
}

.brand-text .sub {
    font-size: 0.62rem;
    color: var(--gray500);
    margin-top: 0.1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.nav-links a {
    font-size: 0.83rem;
    color: var(--gray600);
    padding: 0.45rem 1rem;
    border-radius: 6px;
    transition: 0.15s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--g700);
    background: var(--g50);
}

.nav-links a.active {
    color: var(--g700);
    font-weight: 600;
}

.btn-nav-enroll {
    background: var(--g700);
    color: var(--white) !important;
    padding: 0.45rem 1.1rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}

.btn-nav-enroll:hover {
    background: var(--g800) !important;
}

/* ─── HAMBURGER BUTTON ────────────────────────────────────── */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--g50);
    border: 1.5px solid var(--g100);
    gap: 5px;
    transition: 0.2s;
    flex-shrink: 0;
    z-index: 200;
}

.hamburger-btn:hover {
    background: var(--g100);
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--g800);
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        width 0.3s ease;
    transform-origin: center;
}

/* Animated X state */
.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE DRAWER ────────────────────────────────────────── */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 300;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-overlay.open {
    display: block;
}

.drawer-overlay.visible {
    opacity: 1;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: var(--white);
    z-index: 400;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 28px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.open {
    transform: translateX(0);
}

/* Drawer header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray100);
    background: var(--g50);
    flex-shrink: 0;
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.drawer-brand .db-box {
    width: 34px;
    height: 34px;
    background: var(--g700);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.drawer-brand .db-name {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--g800);
    font-size: 0.98rem;
    line-height: 1;
}

.drawer-brand .db-sub {
    font-size: 0.58rem;
    color: var(--gray500);
    margin-top: 0.08rem;
}

.drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: var(--white);
    border: 1.5px solid var(--gray200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gray600);
    transition: 0.15s;
    flex-shrink: 0;
}

.drawer-close:hover {
    background: var(--gray100);
    color: var(--gray900);
}

/* Drawer nav links */
.drawer-nav {
    flex: 1;
    padding: 1rem 0;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray700);
    transition: 0.15s;
    border-left: 3px solid transparent;
}

.drawer-nav a:hover {
    color: var(--g700);
    background: var(--g50);
    border-left-color: var(--g100);
}

.drawer-nav a.active {
    color: var(--g700);
    font-weight: 600;
    background: var(--g50);
    border-left-color: var(--g700);
}

.drawer-nav .drawer-icon {
    font-size: 1rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.drawer-divider {
    height: 1px;
    background: var(--gray100);
    margin: 0.5rem 1.4rem;
}

/* Drawer enroll button */
.drawer-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--gray100);
    flex-shrink: 0;
}

.drawer-enroll-btn {
    display: block;
    width: 100%;
    background: var(--g700);
    color: #fff;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.15s;
}

.drawer-enroll-btn:hover {
    background: var(--g800);
}

.drawer-contact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    font-size: 0.72rem;
    color: var(--gray500);
}

.drawer-contact-note a {
    color: var(--g600);
    font-weight: 600;
}

.drawer-contact-note a:hover {
    color: var(--g700);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    background: var(--g800);
}

#carousel {
    position: relative;
    width: 100%;
    min-height: 580px;
    overflow: hidden;
}

.cslide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.cslide.active {
    opacity: 1;
}

.cslide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(13, 51, 32, 0.78) 0%,
            rgba(13, 51, 32, 0.42) 55%,
            transparent 100%);
}

.s1 {
    background-image:
        url("../kgshia_images/1.jpg"),
        linear-gradient(135deg, #1a6b3c 0%, #2a9150 100%);
}

.s2 {
    background-image:
        url("../kgshia_images/3.jpg"),
        linear-gradient(135deg, #124428 0%, #1a6b3c 100%);
}

.s3 {
    background-image:
        url("../kgshia_images/5.jpg"),
        linear-gradient(135deg, #0d3320 0%, #124428 100%);
}

.s4 {
    background-image:
        url("../kgshia_images/6.jpeg"),
        linear-gradient(135deg, #1a6b3c 0%, #0d3320 100%);
}

.s5 {
    background-image:
        url("../kgshia_images/4.jpg"),
        linear-gradient(135deg, #1a6b3c 0%, #0d3320 100%);
}

.s6 {
    background-image:
        url("../kgshia_images/kanovisit.jpg"),
        linear-gradient(135deg, #1a6b3c 0%, #0d3320 100%);
}

.slide-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 2.5rem 3.5rem;
    max-width: 580px;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.22rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    width: fit-content;
}

.slide-body h1 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.slide-body p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 430px;
}

.slide-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-amber {
    background: var(--amber);
    color: #fff;
    padding: 0.62rem 1.6rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.15s;
    display: inline-block;
}

.btn-amber:hover {
    background: var(--amberD);
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    padding: 0.62rem 1.5rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.15s;
    display: inline-block;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.26);
}

.c-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.15s;
}

.c-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
}

.c-arrow.prev {
    left: 1.2rem;
}

.c-arrow.next {
    right: 1.2rem;
}

.c-pause-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.32);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    font-size: 0.65rem;
    transition: 0.15s;
}

.c-pause-btn:hover {
    background: rgba(0, 0, 0, 0.55);
}

.c-dots {
    position: absolute;
    bottom: 1.1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
    z-index: 10;
}

.c-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    border: none;
    padding: 0;
    transition: 0.25s;
    cursor: pointer;
}

.c-dot.on {
    background: #fff;
    width: 20px;
    border-radius: 4px;
}

.plan-panel {
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    z-index: 20;
    width: 300px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 18px;
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pp-head {
    margin-bottom: 0.1rem;
    text-align: center;
}

.pp-head h2 {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.pp-head p {
    display: none;
}

.plan-card-sm {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: 0.15s;
    cursor: pointer;
    color: var(--gray900);
    position: relative;
}

.plan-card-sm:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.01);
}

.pc-icon {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.ic-g {
    background: rgba(26, 107, 60, 0.12);
}

.ic-b {
    background: rgba(37, 99, 235, 0.1);
}

.ic-a {
    background: rgba(245, 158, 11, 0.12);
}

.pc-info {
    flex: 1;
    min-width: 0;
}

.pc-name {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    color: var(--gray900);
}

.pop-tag {
    background: var(--amber);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 20px;
    letter-spacing: 0.02em;
    position: absolute;
    top: -0.55rem;
    right: 0.75rem;
}

.pc-sub {
    font-size: 1rem;
    color: var(--gray500);
    margin-top: 0.08rem;
}

.pc-price {
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.price-g {
    color: var(--g700);
}

.price-b {
    color: #d97706;
}

.price-a {
    color: #d97706;
}

.pc-arrow {
    display: none;
}

.pp-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    padding-top: 0.25rem;
    display: block;
    transition: 0.15s;
}

.pp-note:hover {
    color: #fff;
    text-decoration: underline;
}

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
    background: var(--g800);
    color: #fff;
    padding: 1.4rem 1.5rem;
}

.stats-in {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-n {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.stat-n.amber {
    color: var(--amber);
}

.stat-l {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-ic {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    opacity: 0.65;
}

.sdiv {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
}

/* ─── SHARED SECTION STYLES ──────────────────────────────── */
.sec {
    padding: 4.5rem 1.5rem;
}

.sec-in {
    max-width: 1140px;
    margin: 0 auto;
}

.sec-head {
    text-align: center;
    margin-bottom: 3rem;
}

.sec-label {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--g600);
    margin-bottom: 0.5rem;
}

.sec-title {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 0.5rem;
}

.stat-ic i {
    color: #f59e0b;
    font-size: 25px;
}

.step-ic i {
    color: #1a6b3c;
    font-size: 25px;
}

.ico i {
    color: #f59e0b;
    font-size: 25px;
}

.sec-sub {
    font-size: 1rem;
    color: var(--gray500);
    margin: 0 auto;
}

/* ─── PLANS SECTION ──────────────────────────────────────── */
.plans-sec {
    background: var(--gray50);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

.pcard {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--gray200);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: 0.2s;
}

.pcard:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pcard.featured {
    border-color: var(--g600);
    box-shadow: 0 4px 18px rgba(34, 118, 63, 0.12);
}

.pcard-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.bar-g {
    background: var(--g700);
}

.bar-b {
    background: var(--blue);
}

.bar-a {
    background: var(--amber);
}

.pcard-badge {
    display: inline-block;
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    padding: 0.18rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.badge-pop {
    background: var(--g700);
    color: #fff;
}

.pcard h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.pcard .psub {
    font-size: 1rem;
    color: var(--gray500);
    margin-bottom: 1rem;
}

.pcard-price {
    margin-bottom: 1.25rem;
}

.price-big {
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1;
}

.price-per {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray500);
}

.clr-g {
    color: var(--g700);
}

.clr-b {
    color: var(--blue);
}

.clr-a {
    color: var(--amberD);
}

.pcard ul {
    margin-bottom: 1.4rem;
}

.pcard li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--gray700);
    padding: 0.28rem 0;
}

.pcard li .ck {
    color: var(--g600);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-plan {
    display: block;
    text-align: center;
    border: 2px solid;
    padding: 0.58rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.15s;
}

.btn-g {
    border-color: var(--g700);
    color: var(--g700);
}

.btn-g:hover {
    background: var(--g700);
    color: #fff;
}

.btn-b {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-b:hover {
    background: var(--blue);
    color: #fff;
}

.btn-a {
    border-color: var(--amber);
    color: var(--amberD);
}

.btn-a:hover {
    background: var(--amber);
    color: #fff;
}

.cmp-wrap {
    text-align: center;
    margin-top: 1.75rem;
}

.cmp-btn {
    font-size: 1rem;
    color: var(--g600);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--g100);
    background: var(--g50);
}

.cmp-btn:hover {
    background: var(--g100);
}

#cmp-tbl {
    display: none;
    margin-top: 1.5rem;
    overflow-x: auto;
}

#cmp-tbl.open {
    display: block;
}

#cmp-tbl table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

#cmp-tbl th,
#cmp-tbl td {
    padding: 0.58rem 1rem;
    border: 1px solid var(--gray200);
    text-align: left;
}

#cmp-tbl th {
    background: var(--g50);
    color: var(--g800);
    font-weight: 600;
}

#cmp-tbl tr:nth-child(even) td {
    background: var(--gray50);
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 2rem;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 2px;
    background: linear-gradient(to right, var(--g100), var(--amber));
    z-index: 0;
}

@media (max-width: 768px) {
    .steps-grid::before {
        display: none;
    }
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-ic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--g50);
    border: 2px solid var(--g100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
    position: relative;
}

.step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--g700);
    color: #fff;
    border-radius: 50%;
    font-size: 0.58rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-lbl {
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--g600);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.step h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.step p {
    font-size: 0.874rem;
    color: var(--gray500);
    line-height: 1.55;
}

/* ─── SAVINGS CALCULATOR ─────────────────────────────────── */
.calc-sec {
    background: var(--gray50);
}

.calc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .calc-layout {
        grid-template-columns: 1fr;
    }
}

.calc-L h3 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.calc-L>p {
    font-size: 1rem;
    color: var(--gray500);
    margin-bottom: 1rem;
}

.proc-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.proc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border: 1.5px solid var(--gray200);
    font-size: 1rem;
    cursor: pointer;
    transition: 0.15s;
    background: var(--white);
}

.proc-item:hover,
.proc-item.sel {
    border-color: var(--g600);
    background: var(--g50);
}

.proc-item.sel {
    font-weight: 600;
}

.proc-cost {
    font-size: 0.76rem;
    color: var(--gray500);
}

.plan-tabs {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.ptab {
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    border: 1.5px solid var(--gray200);
    background: var(--white);
    color: var(--gray600);
    transition: 0.15s;
}

.ptab.on,
.ptab:hover {
    background: var(--g700);
    color: #fff;
    border-color: var(--g700);
}

.calc-R {
    background: var(--white);
    border-radius: 14px;
    border: 1.5px solid var(--gray200);
    padding: 1.75rem;
    position: sticky;
    top: 80px;
}

.calc-R h3 {
    font-family: var(--serif);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--g800);
    margin-bottom: 1.2rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--gray100);
    font-size: 1rem;
}

.calc-row:last-of-type {
    border-bottom: none;
}

.calc-row .lbl {
    color: var(--gray500);
}

.calc-row .val {
    font-weight: 600;
}

.savings-box {
    background: linear-gradient(135deg, var(--g50) 0%, #ecfdf5 100%);
    border: 1.5px solid var(--g100);
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    margin-top: 1.2rem;
    text-align: center;
}

.save-amt {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--g700);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.save-pct {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--g600);
}

.save-lbl {
    font-size: 1rem;
    color: var(--gray500);
    margin-top: 0.22rem;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

.tcard {
    background: var(--white);
    border: 1.5px solid var(--gray200);
    border-radius: 14px;
    padding: 1.5rem;
    transition: 0.2s;
}

.tcard:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.tquote {
    font-size: 11px;
    color: var(--gray700);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1.1rem;
    position: relative;
    padding-left: 0.5rem;
}

.tquote::before {
    content: '"';
    font-family: var(--serif);
    font-size: 2.8rem;
    color: var(--g100);
    position: absolute;
    top: -0.6rem;
    left: -0.3rem;
    line-height: 1;
    z-index: 0;
}

.tauthor {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tavatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.av-g {
    background: var(--g700);
}

.av-b {
    background: var(--blue);
}

.av-a {
    background: var(--amberD);
}

.tname {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray900);
}

.trole {
    font-size: 1rem;
    color: var(--gray500);
}

/* ─── ACCREDITATIONS BAR ─────────────────────────────────── */
.accred {
    background: var(--gray50);
    border-top: 1px solid var(--gray200);
    border-bottom: 1px solid var(--gray200);
    padding: 1.2rem 1.5rem;
}

.accred-in {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    flex-wrap: wrap;
}

.accred-label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray400);
    white-space: nowrap;
}

.adiv {
    width: 1px;
    height: 22px;
    background: var(--gray200);
}

.aitem {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray600);
}

.aicon {
    width: 100px;
    height: auto;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-sec {
    background: var(--g800);
    padding: 4.25rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top,
            rgba(42, 145, 80, 0.3) 0%,
            transparent 70%);
}

.cta-in {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: var(--amber);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.28rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}

.cta-sec h2 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-sec>div>p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta-p {
    background: var(--amber);
    color: #fff;
    padding: 0.72rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: 0.15s;
}

.btn-cta-p:hover {
    background: var(--amberD);
}

.btn-cta-g {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.72rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: 0.15s;
}

.btn-cta-g:hover {
    background: rgba(255, 255, 255, 0.22);
}

.cta-opts {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-opt {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.cta-opt-ic {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.cta-opt strong {
    color: rgba(255, 255, 255, 0.9);
    display: block;
    font-size: 1rem;
}

/* blog carousel */
.blog-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    background: white;
    border-radius: 20px;
    border: 1.5px solid #f0f0f0;
    overflow: hidden;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.blog-card:hover .blog-card-title {
    color: #1a5632;
}

.blog-card-title {
    transition: color 0.2s;
}

.blog-card-banner {
    height: 172px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-banner-inner {
    transition: transform 0.45s ease;
    font-size: 4rem;
}

.blog-card:hover .blog-card-banner-inner {
    transform: scale(1.08);
}

.cat-badge-health {
    background: #dcfce7;
    color: #166534;
}

.cat-badge-policy {
    background: #dbeafe;
    color: #1e40af;
}

.cat-badge-stories {
    background: #fef3c7;
    color: #92400e;
}

.cat-badge-wellness {
    background: #f3e8ff;
    color: #6b21a8;
}

.cat-badge-news {
    background: #fee2e2;
    color: #991b1b;
}

.cat-badge-finance {
    background: #ffedd5;
    color: #9a3412;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: #e5e7eb;
    transition: all 0.3s;
    cursor: pointer;
}

.carousel-dot.active {
    background: #1a5632;
    width: 24px;
}

@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 100%;
    }
}

/* ─── USSD STICKY BAR ────────────────────────────────────── */
.ussd-bar {
    background: var(--g900);
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ussd-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
}

.ussd-code {
    background: var(--amber);
    color: #111;
    font-weight: 700;
    font-family: var(--mono);
    padding: 0.12rem 0.5rem;
    border-radius: 4px;
    font-size: 0.72rem;
}

.ussd-bar-right {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.ussd-bar a {
    color: rgba(255, 255, 255, 0.8);
}

.ussd-bar a:hover {
    color: #fff;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
    background: #081c0f;
    color: rgba(255, 255, 255, 0.55);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-in {
    max-width: 1140px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-brand .fb-box {
    width: 60px;
}

.footer-brand .fb-name {
    font-family: var(--serif);
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.nhia-foot {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    padding: 0.28rem 1rem;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.72);
}

.foot-col-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.foot-links a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.52);
    transition: 0.15s;
}

.foot-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.foot-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fci {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
}

.fci-ic {
    flex-shrink: 0;
    opacity: 0.55;
    margin-top: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.38);
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.fb-right {
    display: flex;
    gap: 1rem;
}

/* ─── WHATSAPP FAB ───────────────────────────────────────── */
.wa-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.42);
    z-index: 200;
    transition: 0.15s;
}

.wa-fab:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* ─── SKIP LINK ──────────────────────────────────────────── */
.skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    width: auto;
    height: auto;
    background: var(--g700);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    z-index: 9999;
}

/* ─── RESPONSIVE OVERRIDES ───────────────────────────────── */
@media (max-width: 965px) {
    .nav-links .hl {
        display: none;
    }

    .plan-panel {
        width: 260px;
        padding: 1.2rem 1rem;
        right: 1.5rem;
    }

    .calc-layout {
        grid-template-columns: 1fr;
    }
}

/* ─── MOBILE: show hamburger, hide desktop links ─────────── */
@media (max-width: 965px) {

    /* Show hamburger */
    .hamburger-btn {
        display: flex;
    }

    /* Hide all desktop nav links + enroll button */
    .nav-links {
        display: none;
    }

    /* Pull plan panel below carousel on small screens */
    .plan-panel {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: calc(100% - 2rem);
        margin: -1.5rem auto 0;
        background: rgba(255, 255, 255, 0.96);
        border-color: rgba(255, 255, 255, 0.8);
        border-radius: 14px;
    }

    .pp-head h2 {
        color: var(--g800);
    }

    .pp-note {
        color: var(--g600);
    }

    .ubar-left .hide-sm,
    .ubar-right .hide-sm {
        display: none;
    }

    .steps-grid::before {
        display: none;
    }

    * Social row in contact */ .contact-social-row {
        display: flex;
        gap: 10px;
        margin-top: 16px;
        flex-wrap: wrap;
    }

    /* ── SOCIAL MEDIA ICONS (Footer) ── */
    .footer-social {
        display: flex;
        gap: 9px;
        margin-top: 16px;
        flex-wrap: wrap;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: rgba(255, 255, 255, 0.75);
        transition:
            background var(--transition),
            color var(--transition),
            transform var(--transition),
            border-color var(--transition);
        text-decoration: none;
        font-size: 15px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .social-icon:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.2);
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .social-icon.facebook:hover {
        background: #1877f2;
        border-color: #1877f2;
    }

    .social-icon.twitter:hover {
        background: #000;
        border-color: #000;
    }

    .social-icon.instagram:hover {
        background: linear-gradient(45deg,
                #f09433,
                #e6683c,
                #dc2743,
                #cc2366,
                #bc1888);
        border-color: #e1306c;
    }

    .social-icon.linkedin:hover {
        background: #0a66c2;
        border-color: #0a66c2;
    }

    .social-icon.youtube:hover {
        background: #ff0000;
        border-color: #ff0000;
    }

    .social-icon.whatsapp:hover {
        background: #25d366;
        border-color: #25d366;
    }
}

/* ── FILTER TABS ── */
.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.filter-tab {
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid var(--gray-200);
    background: transparent;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-tab:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.filter-tab.active {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
}

/* ── FAQ ── */
.faq-group {
    margin-bottom: 36px;
}

.faq-group-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    gap: 12px;
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--green-primary);
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition:
        transform var(--transition),
        border-color var(--transition);
    color: var(--text-muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.faq-a {
    padding: 0 4px 14px;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

/* FAQ Hero */
.faq-hero {
    background: var(--green-dark);
    padding: 56px 0 48px;
    text-align: center;
}

.faq-hero-title {
    font-size: clamp(1rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 10px;
}

.faq-hero-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 24px;
}

.faq-search-wrap {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
}

.faq-search {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border-radius: 8px;
    border: none;
    color: var(--white);
    font-size: 14px;
    outline: none;
}

.faq-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 14px;
}

.faq-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

/* FAQ CTA */
.faq-cta-box {
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.faq-cta-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.faq-cta-sub {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    margin-bottom: 24px;
}

.faq-cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-outline-white {
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

.btn-gold {
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    background: var(--gold);
    color: var(--green-dark);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: background var(--transition);
}

.btn-gold:hover {
    background: var(--gold-light);
}

/* ── NAVBAR ── */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--green-primary);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    font-family: "Fraunces", serif;
}

.nav-logo-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-main);
    letter-spacing: 0.02em;
}

.nav-logo-sub {
    font-size: 10.5px;
    color: var(--text-muted);
}

.nav-links a {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.nav-links a:hover {
    color: var(--green-primary);
    background: var(--gray-100);
}

.nav-links a.active {
    color: var(--green-primary);
    font-weight: 600;
}

.btn-enroll {
    background: var(--green-primary);
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
}

.btn-enroll:hover {
    background: var(--green-mid) !important;
    transform: translateY(-1px);
}

/* ============================================
   KGSHIA - Kogi State Health Insurance Agency
   Main Stylesheet
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap");

:root {
    --green-dark: #1a3a2a;
    --green-primary: #1f4d35;
    --green-mid: #2d6a4f;
    --green-light: #3a8a60;
    --green-accent: #4caf78;
    --gold: #e5a020;
    --gold-light: #f0b432;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f4;
    --gray-200: #e2e6ea;
    --gray-400: #9aa3ad;
    --gray-600: #5a6472;
    --gray-800: #2c3440;
    --text-main: #1a2430;
    --text-muted: #6b7685;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.13);
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-hero-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--green-dark);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(26, 58, 42, 0.92) 45%,
            rgba(26, 58, 42, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    max-width: 520px;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero-title em {
    color: var(--gold);
    font-style: normal;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15.5px;
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    transition:
        background var(--transition),
        transform var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    transition:
        border-color var(--transition),
        background var(--transition);
}

.btn-secondary-outline:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.07);
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 240px;
}

.hero-plan-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 230px;
}

.hero-plan-card.featured {
    border: 2px solid var(--gold);
    position: relative;
}

.hero-plan-card.featured .featured-tag {
    position: absolute;
    top: -10px;
    right: 12px;
    background: var(--gold);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-plan-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray-800);
}

.hero-plan-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--green-primary);
}

.hero-plan-price span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-plan-badge {
    font-size: 10.5px;
    color: var(--text-muted);
}

/* ── SECTION COMMON ── */
.section {
    padding: 72px 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-main);
    margin-bottom: 14px;
}

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.65;
}

.section-head {
    margin-bottom: 40px;
}

.section-head.center {
    text-align: center;
}

.section-head.center .section-sub {
    margin: 0 auto;
}

.badge-featured {
    background: var(--gold);
    color: var(--green-dark);
}

.badge-student {
    background: #e8f4fd;
    color: #1a6fa0;
}

.badge-informal {
    background: #fff3e0;
    color: #b05e00;
}

.btn-outline-white {
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

.btn-gold {
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    background: var(--gold);
    color: var(--green-dark);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: background var(--transition);
}

.btn-gold:hover {
    background: var(--gold-light);
}

.badge-tertiary {
    background: #f3e5ff;
    color: #6a1fa0;
}

.badge-secondary {
    background: #e3f2fd;
    color: #0d5fa0;
}

.badge-primary {
    background: #e8f5ee;
    color: #1a6640;
}

.badge-specialist {
    background: #fff8e1;
    color: #a07000;
}

/* Step 2 - Details form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
}

.form-input {
    padding: 10px 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: 7px;
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
}

.form-input:focus {
    border-color: var(--green-primary);
}

.form-hint {
    font-size: 11.5px;
    color: var(--text-muted);
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg,
            var(--green-dark) 0%,
            var(--green-primary) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%,
            rgba(229, 160, 32, 0.12) 0%,
            transparent 70%);
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 10px;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    margin-bottom: 28px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-extras {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-extra-item {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── FOOTER ── */
.footer {
    background: var(--green-dark);
    padding: 48px 0 28px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    font-family: "Fraunces", serif;
}

.footer-logo-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-nhia {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact li .ic {
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-gov {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ── CONTACT PAGE ── */
.contact-hero {
    background: var(--green-dark);
    padding: 60px 0 52px;
    text-align: center;
    color: var(--white);
}

.contact-hero-title {
    font-size: clamp(1rem, 3.5vw, 2.6rem);
    margin-bottom: 10px;
}

.contact-hero-sub {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.contact-form-sub {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition:
        box-shadow var(--transition),
        transform var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-info-val {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-info-val a {
    color: var(--green-primary);
    font-weight: 500;
}

.contact-info-val a:hover {
    text-decoration: underline;
}

.contact-map-card {
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: var(--white);
    margin-top: 14px;
}

.contact-map-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-map-placeholder {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.contact-hours {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.contact-hours strong {
    color: var(--white);
}

/* Contact select/textarea */
.form-textarea {
    padding: 10px 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: 7px;
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    width: 100%;
}

.form-textarea:focus {
    border-color: var(--green-primary);
}

.contact-submit {
    background: var(--green-primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition:
        background var(--transition),
        transform var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.contact-submit:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

/* Contact USSD card */
.contact-ussd-card {
    background: #fff8e1;
    border: 1px solid #ffe0a0;
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 14px;
}

.contact-ussd-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.contact-ussd-title {
    font-weight: 700;
    font-size: 13.5px;
    color: var(--gray-800);
    margin-bottom: 3px;
}

.contact-ussd-sub {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-ussd-sub strong {
    color: var(--gold);
    font-size: 14px;
}

/* Social row in contact */
.contact-social-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* ── SOCIAL MEDIA ICONS (Footer) ── */
.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        border-color var(--transition);
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

.social-icon:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon.twitter:hover {
    background: #000;
    border-color: #000;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);
    border-color: #e1306c;
}

.social-icon.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

.social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-icon.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

/* Contact page social icons (light bg) */
.social-icon-light {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    transition: all var(--transition);
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.social-icon-light:hover {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
    transform: translateY(-2px);
}

/* ── MOBILE RESPONSIVE ADDITIONS ── */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero play animation on load */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hero ── */
.hero-editorial {
    background: #0a1f10;
    position: relative;
    overflow: hidden;
}

.hero-noise {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-lines {
    background-image: repeating-linear-gradient(0deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.02) 80px,
            rgba(255, 255, 255, 0.02) 81px);
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, #f5a623, #1a5632, #f5a623);
}

/* Featured article gradient */
.featured-gradient {
    background: linear-gradient(to top,
            rgba(10, 31, 16, 0.97) 0%,
            rgba(10, 31, 16, 0.7) 50%,
            transparent 100%);
}

/* ── Category chips ── */
.cat-chip {
    transition: all 0.2s;
    cursor: pointer;
}

.cat-chip.active {
    background: #1a5632;
    color: white;
    border-color: #1a5632;
}

.cat-chip:not(.active):hover {
    border-color: #1a5632;
    color: #1a5632;
}

/* ── Article cards ── */
.article-card {
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.article-card:hover .card-title {
    color: #1a5632;
}

.card-title {
    transition: color 0.2s;
}

/* Card image placeholder */
.card-img {
    position: relative;
    overflow: hidden;
}

.card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 60%);
}

.card-img-inner {
    transition: transform 0.5s ease;
}

.article-card:hover .card-img-inner {
    transform: scale(1.04);
}

/* Category label colours */
.cat-health {
    background: #dcfce7;
    color: #166534;
}

.cat-policy {
    background: #dbeafe;
    color: #1e40af;
}

.cat-stories {
    background: #fef3c7;
    color: #92400e;
}

.cat-wellness {
    background: #f3e8ff;
    color: #6b21a8;
}

.cat-news {
    background: #fee2e2;
    color: #991b1b;
}

.cat-finance {
    background: #ffedd5;
    color: #9a3412;
}

.reader-body {
    font-family: "Source Serif 4", serif;
    font-size: 1.075rem;
    line-height: 1.85;
    color: #2d2d2d;
}

.reader-body p {
    margin-bottom: 1.4rem;
}

.reader-body h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2.2rem 0 01rem;
}

.reader-body h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 11rem 0 0.6rem;
}

.reader-body blockquote {
    border-left: 4px solid #1a5632;
    padding-left: 1.25rem;
    margin: 11rem 0;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

.reader-body ul {
    list-style: none;
    margin-bottom: 1.4rem;
}

.reader-body ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.reader-body ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5632;
    font-weight: 700;
    font-family: "DM Sans";
}

.reader-progress {
    height: 3px;
    background: linear-gradient(90deg, #1a5632, #f5a623);
    transition: width 0.1s linear;
}

/* Reading progress top bar */
#reading-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 0;
}

/* ── Newsletter ── */
.newsletter-bg {
    background: linear-gradient(135deg, #0f3a21, #1a5632 60%, #246840);
    position: relative;
    overflow: hidden;
}

.newsletter-pattern {
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px,
            transparent 1px);
    background-size: 24px 24px;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ── Sidebar ── */
.sidebar-widget {
    border-radius: 20px;
}

/* ── Tag cloud ── */
.tag {
    transition: all 0.2s;
    cursor: pointer;
}

.tag:hover {
    background: #1a5632;
    color: white;
}

/* Share buttons */
.share-btn {
    transition: all 0.15s;
}

.share-btn:hover {
    transform: scale(1.08);
}

/* ── Typography pull quote ── */
.pull-quote {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    font-style: italic;
    color: #1a5632;
    border-top: 2px solid #1a5632;
    border-bottom: 2px solid #1a5632;
    padding: 1.2rem 0;
    margin: 2rem 0;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

/* Print */
@media print {
    #reader-overlay {
        display: flex !important;
        position: static;
    }
}

/* Search bar glass */
.search-glass {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border-radius: 20px;
}

/* Filter chips */
.chip {
    transition: all 0.2s;
    cursor: pointer;
    user-select: none;
}

.chip.active {
    background: #1a5632;
    color: white;
    border-color: #1a5632;
}

.chip:not(.active):hover {
    border-color: #1a5632;
    color: #1a5632;
}

/* View toggle */
.view-btn {
    transition: all 0.2s;
}

.view-btn.active {
    background: #1a5632;
    color: white;
}

/* Hospital card */
.hosp-card {
    transition:
        transform 0.22s,
        box-shadow 0.22s;
    cursor: pointer;
}

.hosp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.hosp-card.featured-hosp {
    border: 2px solid #1a5632;
}

/* Tier badge colors */
.tier-tertiary {
    background: #fef3c7;
    color: #92400e;
}

.tier-secondary {
    background: #dbeafe;
    color: #1e40af;
}

.tier-primary {
    background: #dcfce7;
    color: #166534;
}

.tier-specialist {
    background: #f3e8ff;
    color: #6b21a8;
}

/* Star rating */
.star-fill {
    color: #f5a623;
}

.star-empty {
    color: #e5e7eb;
}

/* Map placeholder */
.map-container {
    background: linear-gradient(135deg, #e8f5ee, #d1fae5);
    position: relative;
    overflow: hidden;
}

.map-grid {
    background-image:
        linear-gradient(rgba(26, 86, 50, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 86, 50, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    transition: transform 0.2s;
}

.map-pin:hover {
    transform: translate(-50%, -100%) scale(1.25);
}

.map-pin .pin-dot {
    width: 36px;
    height: 36px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.map-pin .pin-dot span {
    transform: rotate(45deg);
    font-size: 14px;
}

.map-pin .pin-label {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.map-pin:hover .pin-label {
    opacity: 1;
}

/* Modal */
#hosp-modal-overlay {
    display: none;
}

#hosp-modal-overlay.open {
    display: flex;
}

/* Pagination */
.page-btn {
    transition: all 0.2s;
}

.page-btn.active {
    background: #1a5632;
    color: white;
}

.page-btn:not(.active):hover {
    background: #f0faf4;
    color: #1a5632;
}

/* Skeleton loader */
.skeleton {
    animation: pulse 1.6s ease-in-out infinite;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
}

@keyframes pulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Availability dot */
.dot-green {
    background: #22c55e;
}

.dot-orange {
    background: #f59e0b;
}

.dot-red {
    background: #ef4444;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* ─── DESIGN TOKENS (shared with index.html) ─────────────── */
:root {
    --g900: #0d3320;
    --g800: #124428;
    --g700: #1a6b3c;
    --g600: #22763f;
    --g500: #2a9150;
    --g100: #dcf0e6;
    --g50: #f0faf4;
    --amber: #f59e0b;
    --amberD: #d97706;
    --blue: #2563eb;
    --gray900: #111827;
    --gray700: #374151;
    --gray600: #4b5563;
    --gray500: #6b7280;
    --gray400: #9ca3af;
    --gray200: #e5e7eb;
    --gray100: #f3f4f6;
    --gray50: #f9fafb;
    --white: #ffffff;
    --serif: Georgia, "Times New Roman", "Palatino Linotype", serif;
    --sans:
        -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial,
        "Noto Sans", sans-serif;
    --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* ─── RESET ──────────────────────────────────────────────── */
*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--gray900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ─── UTILITY BAR ────────────────────────────────────────── */
.ubar {
    background: var(--g900);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    padding: 0.38rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ubar-left,
.ubar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ubar a {
    color: rgba(255, 255, 255, 0.8);
}

.ubar a:hover {
    color: #fff;
}

.ussd-pill {
    background: var(--amber);
    color: #111;
    font-weight: 700;
    padding: 0.08rem 0.45rem;
    border-radius: 3px;
    font-family: var(--mono);
    font-size: 1rem;
}

.nhia-chip {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    padding: 0.1rem 0.55rem;
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.88);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.nav-in {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 60px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.brand-text .name {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--g800);
    font-size: 1.05rem;
    line-height: 1;
}

.brand-text .sub {
    font-size: 0.62rem;
    color: var(--gray500);
    margin-top: 0.1rem;
}

.nav-links a {
    font-size: 0.83rem;
    color: var(--gray600);
    padding: 0.45rem 1rem;
    border-radius: 6px;
    transition: 0.15s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--g700);
    background: var(--g50);
}

.nav-links a.active {
    color: var(--g700);
    font-weight: 600;
}

.btn-nav-enroll {
    background: var(--g700);
    color: var(--white) !important;
    padding: 0.45rem 1.1rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}

.btn-nav-enroll:hover {
    background: var(--g800) !important;
}

/* ─── PAGE HERO (About) ───────────────────────────────────── */
.page-hero {
    position: relative;
    background: var(--g800);
    min-height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../kgshia_images/KGSHIA1stBM-8.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.28;
}

/* Decorative diagonal stripe */
.page-hero::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(60% 100% at 50% 100%);
}

.page-hero-in {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 1.5rem 5rem;
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.35);
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    max-width: 600px;
}

.page-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    line-height: 1.7;
}

/* ─── SHARED SECTION ─────────────────────────────────────── */
.sec {
    padding: 4.5rem 1.5rem;
}

.sec-in {
    max-width: 1140px;
    margin: 0 auto;
}

.sec-label {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--g600);
    margin-bottom: 0.5rem;
}

.sec-title {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 1.95rem);
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 0.6rem;
}

.sec-sub {
    font-size: 1rem;
    color: var(--gray500);
    line-height: 1.7;
}

/* ─── MISSION & VISION ───────────────────────────────────── */
.mv-section {
    background: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 700px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    border-radius: 16px;
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
}

.mv-card.mission {
    background: var(--g800);
    color: #fff;
}

.mv-card.vision {
    background: var(--g50);
    border: 1.5px solid var(--g100);
}

.mv-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.mv-card.mission .mv-card-icon {
    background: rgba(255, 255, 255, 0.15);
}

.mv-card.vision .mv-card-icon {
    background: var(--g100);
}

.mv-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.mv-card.mission h3 {
    color: #fff;
}

.mv-card.vision h3 {
    color: var(--g800);
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.75;
}

.mv-card.mission p {
    color: rgba(255, 255, 255, 0.82);
}

.mv-card.vision p {
    color: var(--gray600);
}

/* decorative circle */
.mv-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.06;
}

.mv-card.mission::before {
    background: #fff;
    bottom: -60px;
    right: -60px;
}

.mv-card.vision::before {
    background: var(--g700);
    top: -60px;
    left: -60px;
}

/* values row */
.values-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
}

@media (max-width: 900px) {
    .values-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .values-row {
        grid-template-columns: 1fr;
    }
}

.val-card {
    background: var(--white);
    border: 1.5px solid var(--gray200);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: 0.2s;
}

.val-card:hover {
    border-color: var(--g600);
    box-shadow: 0 8px 24px rgba(26, 107, 60, 0.1);
    transform: translateY(-3px);
}

.val-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.val-card h4 {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--g800);
    margin-bottom: 0.4rem;
}

.val-card p {
    font-size: 1rem;
    color: var(--gray500);
    line-height: 1.6;
}

/* ─── WHO WE COVER ───────────────────────────────────────── */
.cover-section {
    background: var(--gray50);
}

.cover-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .cover-layout {
        grid-template-columns: 1fr;
    }
}

.cover-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--g700) 0%, var(--g500) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.cover-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(13, 51, 32, 0.55),
            transparent 60%);
}

.cover-img-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.cover-img-badge .badge-n {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--g700);
    line-height: 1;
}

.cover-img-badge .badge-l {
    font-size: 0.68rem;
    color: var(--gray500);
    line-height: 1.3;
}

/* placeholder art when no image */
.cover-placeholder {
    font-size: 4rem;
    opacity: 0.35;
}

.cover-text .sec-label {
    margin-bottom: 0.4rem;
}

.cover-text .sec-title {
    margin-bottom: 1rem;
}

.cover-text .sec-sub {
    margin-bottom: 0rem;
}

.beneficiary-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.bene-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: var(--white);
    border: 1.5px solid var(--gray200);
    border-radius: 10px;
    transition: 0.15s;
}

.bene-item:hover {
    border-color: var(--g600);
    background: var(--g50);
}

.bene-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bi-g {
    background: var(--g100);
}

.bi-b {
    background: #dbeafe;
}

.bi-a {
    background: #fef3c7;
}

.bene-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray900);
    margin-bottom: 0.15rem;
}

.bene-info p {
    font-size: 1rem;
    color: var(--gray500);
    line-height: 1.5;
}

/* ─── STATS BANNER ───────────────────────────────────────── */
.stats-banner {
    background: linear-gradient(135deg, var(--g800) 0%, var(--g900) 100%);
    padding: 3.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    top: -100px;
    right: -100px;
}

.stats-banner::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    bottom: -80px;
    left: 5%;
}

.stats-grid {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.stat-box {
    text-align: center;
    padding: 1rem;
}

.stat-box .num {
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-box .num.amber {
    color: var(--amber);
}

.stat-box .lbl {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.stat-box .ico {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
    margin: 1rem 0;
}

@media (max-width: 900px) {
    .stat-divider {
        display: none;
    }
}

/* ─── HISTORY TIMELINE ───────────────────────────────────── */
.history-section {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 780px;
    margin: 3rem auto 0;
}

/* vertical line */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
            var(--g100),
            var(--g200, #86efac),
            var(--g100));
    transform: translateX(-50%);
}

@media (max-width: 640px) {
    .timeline::before {
        left: 20px;
    }
}

.tl-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}

.tl-item:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 640px) {

    .tl-item,
    .tl-item:nth-child(even) {
        flex-direction: column;
        padding-left: 50px;
    }
}

.tl-side {
    flex: 1;
}

.tl-dot {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--g700);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--g100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .tl-dot {
        position: absolute;
        left: 0;
        top: 0;
    }
}

.tl-card {
    background: var(--white);
    border: 1.5px solid var(--gray200);
    border-radius: 12px;
    padding: 1.25rem 1.4rem;
    transition: 0.2s;
}

.tl-card:hover {
    border-color: var(--g600);
    box-shadow: 0 6px 20px rgba(26, 107, 60, 0.08);
}

.tl-year {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--g600);
    margin-bottom: 0.35rem;
}

.tl-card h4 {
    font-family: var(--serif);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--g800);
    margin-bottom: 0.4rem;
}

.tl-card p {
    font-size: 1rem;
    color: var(--gray600);
    line-height: 1.6;
}

/* ─── LEADERSHIP TEAM ────────────────────────────────────── */
.leadership-section {
    background: var(--gray50);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: var(--white);
    border: 1.5px solid var(--gray200);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.2s;
}

.team-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.team-photo {
    height: 200px;
    background: linear-gradient(135deg, var(--g700) 0%, var(--g500) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    inset: 0;
}

.team-initials {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    position: relative;
    z-index: 1;
}

.team-body {
    padding: 1.25rem;
}

.team-name {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--g800);
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--g600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.65rem;
}

.team-bio {
    font-size: 1rem;
    color: var(--gray500);
    line-height: 1.6;
}

/* featured card (DG) — slightly larger */
.team-card.dg .team-photo {
    height: 240px;
}

.team-card.dg .team-name {
    font-size: 1.1rem;
}

/* ─── Other TEAM ────────────────────────────────────── */
.leadership-section {
    background: var(--gray50);
}

.teamcc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .teamcc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .teamcc-grid {
        grid-template-columns: 1fr;
    }
}

.teamcc-card {
    background: var(--gray50);
    border: 1.5px solid var(--gray50);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.2s;
}

.teamcc-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.teamcc-photo {
    height: 200px;
    background: var(--gray50);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.teamcc-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    inset: 0;
}

.teamcc-initials {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    position: relative;
    z-index: 1;
}

/* featured card (DG) — slightly larger */
.teamcc-card.dg .teamcc-photo {
    height: 240px;
}

.teamcc-card.dg .teamcc-name {
    font-size: 1.1rem;
}

/* ─── ACCREDITATIONS & PARTNERS ──────────────────────────── */
.accred-section {
    background: var(--white);
}

.accred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (max-width: 700px) {
    .accred-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .accred-grid {
        grid-template-columns: 1fr;
    }
}

.accred-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--gray50);
    border: 1.5px solid var(--gray200);
    border-radius: 12px;
    padding: 1.25rem 1.1rem;
    transition: 0.15s;
}

.accred-card:hover {
    border-color: var(--g600);
    background: var(--g50);
}

.accred-badge {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--g100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.accred-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--g800);
    margin-bottom: 0.25rem;
}

.accred-info p {
    font-size: 0.76rem;
    color: var(--gray500);
    line-height: 1.5;
}

/* ─── CTA ────────────────────────────────────────────────── */
.cta-sec {
    background: var(--g800);
    padding: 4.25rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top,
            rgba(42, 145, 80, 0.3) 0%,
            transparent 70%);
}

.cta-in {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: var(--amber);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.28rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}

.cta-sec h2 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-sec p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta-p {
    background: var(--amber);
    color: #fff;
    padding: 0.72rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: 0.15s;
}

.btn-cta-p:hover {
    background: var(--amberD);
}

.btn-cta-g {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.72rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: 0.15s;
}

.btn-cta-g:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* ─── USSD BAR ───────────────────────────────────────────── */
.ussd-bar {
    background: var(--g900);
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ussd-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
}

.ussd-code {
    background: var(--amber);
    color: #111;
    font-weight: 700;
    font-family: var(--mono);
    padding: 0.12rem 0.5rem;
    border-radius: 4px;
    font-size: 0.72rem;
}

.ussd-bar-right {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.ussd-bar a {
    color: rgba(255, 255, 255, 0.8);
}

.ussd-bar a:hover {
    color: #fff;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
    background: #081c0f;
    color: rgba(255, 255, 255, 0.55);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-in {
    max-width: 1140px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.fb-box {
    width: 32px;
    height: 32px;
    background: var(--g700);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.fb-name {
    font-family: var(--serif);
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.nhia-foot {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    padding: 0.28rem 1rem;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.72);
}

.foot-col-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.foot-links a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.52);
    transition: 0.15s;
}

.foot-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.foot-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fci {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
}

.fci-ic {
    flex-shrink: 0;
    opacity: 0.55;
    margin-top: 1px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.38);
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.fb-right {
    display: flex;
    gap: 1rem;
}

/* ─── WHATSAPP FAB ───────────────────────────────────────── */
.wa-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.42);
    z-index: 200;
    transition: 0.15s;
    text-decoration: none;
}

.wa-fab:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.mob-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray200);
    display: none;
    z-index: 150;
    padding: 0.4rem 0 max(0.4rem, env(safe-area-inset-bottom));
}

@media (max-width: 640px) {
    .mob-nav {
        display: flex;
    }

    body {
        padding-bottom: 58px;
    }

    .wa-fab {
        bottom: 1rem;
    }

    .ubar .hide-sm {
        display: none;
    }

    .nav-links .hl {
        display: none;
    }
}

.mob-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.12rem;
    font-size: 0.58rem;
    color: var(--gray500);
    padding: 0.3rem 0;
    transition: 0.15s;
}

.mob-nav a.on {
    color: var(--g700);
}

.mn-ic {
    font-size: 1.2rem;
}

/* ─── SKIP LINK ──────────────────────────────────────────── */
.skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    width: auto;
    height: auto;
    background: var(--g700);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    z-index: 9999;
}

/* ─── SCROLL REVEAL ANIMATION ────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 1;
    animation: fadeUp 0.6s ease forwards;
    animation-play-state: running;
}

.reveal.d1 {
    animation-delay: 0.1s;
}

.reveal.d2 {
    animation-delay: 0.2s;
}

.reveal.d3 {
    animation-delay: 0.3s;
}

.reveal.d4 {
    animation-delay: 0.4s;
}

.reveal.d5 {
    animation-delay: 0.5s;
}

.reveal.d6 {
    animation-delay: 0.6s;
}

/* ─── DOWNLOAD CARD ──────────────────────────────────────── */
.dl-card {
    background: var(--white);
    border: 1.5px solid var(--gray200);
    border-radius: 18px;
    padding: 2.25rem 2rem;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: 0.2s;
}

.dl-card:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.dl-card-icon-wrap {
    width: 68px;
    height: 68px;
    background: var(--g50);
    border: 2px solid var(--g100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.dl-card-icon {
    font-size: 11rem;
}

.dl-card-badge {
    display: inline-block;
    background: var(--g100);
    color: var(--g700);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.85rem;
}

.dl-card-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 0.65rem;
}

.dl-card-desc {
    font-size: 1rem;
    color: var(--gray500);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 380px;
}

.dl-card-meta {
    list-style: none;
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    text-align: left;
    padding: 0 0.5rem;
}

.dl-card-meta li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--gray700);
}

.dl-meta-dot {
    width: 7px;
    height: 7px;
    background: var(--g600);
    border-radius: 50%;
    flex-shrink: 0;
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--g700);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.15s;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.dl-btn:hover {
    background: var(--g800);
}

.dl-btn-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.dl-card-note {
    font-size: 1rem;
    color: var(--gray400);
}

@media (max-width: 480px) {
    .dl-card {
        padding: 1.75rem 1.25rem;
    }

    .dl-card-title {
        font-size: 1.05rem;
    }

    .dl-btn {
        font-size: 1rem;
        padding: 0.72rem 1.25rem;
    }
}

:root {
    --primary: #1a5632;
    --primary-dark: #0f3a21;
    --accent: #f5a623;
}

/* Nav */
nav.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

/* Hero */
.hero-bg {
    background: linear-gradient(70deg, #0f3a21 0%, #1a5632 50%, #276640 70%);
}

.hero-grid {
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px,
            transparent 1px);
    background-size: 32px 32px;
}

/* Plan tabs */
.plan-tab {
    transition: all 0.25s;
    cursor: pointer;
}

.plan-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(26, 86, 50, 0.35);
}

/* Plan cards */
.plan-card {
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.plan-card.featured-card {
    box-shadow: 0 8px 40px rgba(26, 86, 50, 0.18);
}

/* Check icons */
.check {
    color: #1a5632;
}

.cross {
    color: #d1d5db;
}

/* Comparison table */
.comp-row:nth-child(even) {
    background: #f9fafb;
}

.comp-row td {
    padding: 13px 16px;
    font-size: 0.875rem;
}

.comp-row td:first-child {
    font-weight: 500;
    color: #374151;
}

/* FAQ accordion */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-body.open {
    max-height: 300px;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* Pill badge */
.badge-popular {
    background: #f5a623;
    color: #7a4a00;
}

.badge-student {
    background: #dbeafe;
    color: #1e40af;
}

.badge-value {
    background: #fef3c7;
    color: #92400e;
}

/* Sticky plan bar */
#sticky-bar {
    transform: translateY(-100%);
    transition: transform 0.35s ease;
}

#sticky-bar.show {
    transform: translateY(0);
}

/* Enrollment modal */
#modal-overlay {
    display: none;
}

#modal-overlay.open {
    display: flex;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

/* Input style */
.form-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #1a5632;
}

.border-2 {
    border-width: 2px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Progress bar */
.progress-fill {
    transition: width 0.4s ease;
}

/* Tooltips */
.tooltip-wrapper {
    position: relative;
}

.tooltip-box {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 99;
}

.tooltip-box::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1f2937;
}

.tooltip-wrapper:hover .tooltip-box {
    visibility: visible;
    opacity: 1;
}

.carousel img {
    width: 70px;
    max-height: 70px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
}

.carousel-inner {
    padding: 1em;
}

@media screen and (min-width: 576px) {
    .carousel-inner {
        display: flex;
        width: 90%;
        margin-inline: auto;
        padding: 1em 0;
        overflow: hidden;
    }

    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 2);
    }
}

@media screen and (min-width: 768px) {
    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 3);
    }
}

.carousel .card {
    margin: 0 0.5em;
    border: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background-color: grey;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

input#inputHiddenContent3,
#inputShownContent3 {
    display: none;
}

span#spanHiddenContent3 {
    display: none;
}

input#inputShownContent3:checked~span#spanHiddenContent3 {
    display: block;
}

input#inputHiddenContent3:checked~span#spanHiddenContent3 {
    display: none;
}

input#inputShownContent3:checked~#myReadMore p {
    display: none;
}