/* Public pages stylesheet. Source of truth for _PublicLayout and public Home pages. */


/* ===== Shared layout — color tokens (palette from #F5C98A) ===== */
:root {
    /* Brand */
    --color-brand: #C47A1E;
    --color-brand-light: #E09030;

    /* Text */
    --color-text-body: #2E1400;
    --color-text-body-lt: #4A2200;

    /* Nav & sub-headings */
    --color-text-nav: #5C2E0A;
    --color-text-nav-lt: #7A3E14;

    /* Muted / secondary copy */
    --color-text-muted: #A07840;
    --color-text-muted-lt: #C09050;

    /* Surfaces */
    --color-bg-page: #F5C98A;
    --color-bg-card: #FAE0B8;

    /* Borders & dividers */
    --color-border: #E8B870;
    --color-border-light: #F0CC90;

    /* Shadows */
    --color-shadow: rgba(46, 20, 0, 0.12);
    --color-shadow-hover: rgba(74, 34, 0, 0.18);

    /* Legacy aliases — brown/orange areas only, mapped to new hex */
    --primary: var(--color-brand);
    --primary-dark: var(--color-brand);
    --primary-soft: var(--color-bg-card);
    --hero-from: var(--color-text-body);
    --hero-via: var(--color-text-nav);
    --hero-to: var(--color-brand);
    /* Home hero only — light cream gradient (#F5C98A) */
    --hero-bg-from: var(--color-bg-page);
    --hero-bg-via: var(--color-bg-card);
    --hero-bg-mid: var(--color-border);
    --hero-bg-accent: var(--color-brand-light);
    --hero-bg-cream: var(--color-bg-page);
    --cream-gradient: linear-gradient(
        135deg,
        var(--hero-bg-from) 0%,
        var(--hero-bg-via) 22%,
        var(--hero-bg-mid) 48%,
        var(--hero-bg-accent) 72%,
        var(--hero-bg-cream) 100%
    );
    --footer-bg: var(--color-brand);
    --footer-bg-deep: var(--color-text-body);
    --bg-light: #f8fafc;
    --text-dark: var(--color-text-body);
    --muted: var(--color-text-muted);
    --border: #e2e8f0;
    --card-shadow: 0 20px 40px var(--color-shadow);
    --ui-scale: 1;
    --public-utility-height: 40px;
}

/* Token utilities */
.text-brand { color: var(--color-brand); }
.text-nav { color: var(--color-text-nav); }
.text-muted { color: var(--color-text-muted); }
.bg-page { background-color: var(--color-bg-page); }
.bg-card { background-color: var(--color-bg-card); }
.border-default { border-color: var(--color-border); }

/* Interactive hover (nav, buttons, cards) */
.menu a:hover,
.top-nav .menu a:hover,
.scheme-tab:hover,
.service-card:hover,
.portal-logo-card:hover,
.hero-tab:not(.active):hover,
.hero-link-btn:hover,
.login-btns a:hover,
.hero-form-submit:hover,
.btn-primary:hover,
.orange-strip a:hover,
.cta a:hover,
.fab-contact:hover {
    color: var(--color-brand-light);
}

.service-card:hover,
.scheme-card:hover,
.portal-logo-card:hover,
.app-panel:hover,
.stat-box:hover {
    box-shadow: 0 4px 16px var(--color-shadow-hover);
}

.login-btns a:hover,
.hero-form-submit:hover,
.btn-primary:hover,
.cta a:hover {
    background: var(--color-brand-light);
}

        * {
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
        }

        body {
            color: var(--text-dark);
            background: var(--bg-light);
            font-family: "Inter", "Segoe UI", Arial, sans-serif;
            overflow-x: hidden;
            padding-top: var(--public-utility-height);
        }

            body.font-sm {
                font-size: 14px;
            }

            body.font-md {
                font-size: 16px;
            }

            body.font-lg {
                font-size: 18px;
            }

        a {
            color: inherit;
            text-decoration: none;
        }

        #main-content {
            zoom: var(--ui-scale);
        }

        .utility-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 70;
            background: var(--cream-gradient);
            color: var(--color-text-body);
            border-bottom: 1px solid rgba(196, 122, 30, .18);
            font-size: 12.5px;
        }

        .utility-inner {
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            padding: 8px 0;
        }

        .utility-left, .utility-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .utility-left {
            gap: 14px;
        }

            .utility-left::before {
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 999px;
                background: #22c55e;
                box-shadow: 0 0 0 5px rgba(34, 197, 94, .16);
                animation: pulseDot 2.2s ease-in-out infinite;
            }

        @keyframes pulseDot {
            0%, 100% {
                box-shadow: 0 0 0 5px rgba(34, 197, 94, .16);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(34, 197, 94, .05);
            }
        }

        .utility-divider {
            width: 1px;
            height: 14px;
            background: rgba(196, 122, 30, .25);
            display: inline-block;
        }

        .toll-free,
        .lang-switch {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--color-text-nav);
            font-weight: 600;
        }

            .toll-free svg,
            .lang-switch svg {
                width: 14px;
                height: 14px;
                opacity: .8;
            }

            .toll-free svg {
                color: #34d399;
            }

        .lang-link {
            color: var(--color-text-body);
            opacity: .75;
            font-weight: 600;
            text-decoration: none;
            transition: color .2s ease, opacity .2s ease;
        }

            .lang-link.active {
                opacity: 1;
                color: var(--color-brand);
                text-decoration: underline;
            }

            .lang-link:hover {
                color: var(--color-brand);   
                opacity: 1;
            }

        .font-btn {
            border: 1px solid rgba(196, 122, 30, .35);
            background: rgba(255, 255, 255, .45);
            color: var(--color-text-body);
            border-radius: 8px;
            padding: 3px 8px;
            font-size: 12px;
            font-weight: 700;
            transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
        }

            .font-btn.active,
            .font-btn:hover {
                background: #fff;
                color: var(--color-text-body);
                transform: translateY(-1px);
            }

        .top-nav {
            position: sticky;
            top: var(--public-utility-height, 40px);
            z-index: 60;
            background: #fff;
            border-bottom: 1px solid #e8e8e8;
            box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
        }

        .top-nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            min-height: 76px;
            padding: 0px;
            flex-wrap: wrap;
        }

        .logo-wrap {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border-radius: 16px;
            color: inherit;
            text-decoration: none;
        }

        .logo-wrap img {
            height: 48px;
            width: auto;
            display: block;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .brand-title {
            font-weight: 800;
            font-size: 17px;
            color: var(--color-text-body);
        }

        .brand-sub {
            font-size: 12px;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        .menu {
            display: flex;
            gap: 4px;
            color: var(--color-text-nav);
            font-size: 14.5px;
            font-weight: 600;
            flex-wrap: wrap;
        }

            .menu a {
                border-radius: 999px;
                color: inherit;
                padding: 9px 16px;
                text-decoration: none;
                transition: color .2s ease, background .2s ease, transform .2s ease;
            }

                .menu a:hover {
                    color: var(--color-brand-light);
                    background: var(--primary-soft);
                    transform: translateY(-1px);
                }

                .menu a.is-active {
                    color: var(--primary-dark);
                    background: var(--primary-soft);
                }

        .login-btns {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

            .login-btns a {
                color: var(--color-brand);
                background: #fff;
                border: 1px solid var(--color-border);
                border-radius: 999px;
                padding: 10px 18px;
                font-size: 13px;
                font-weight: 700;
                box-shadow: 0 8px 18px rgba(196, 122, 30, .08);
                text-decoration: none;
                transition: all .2s ease;
            }

                .login-btns a.btn-register-cta {
                    background: linear-gradient(135deg, var(--color-brand), var(--color-brand));
                    color: #fff;
                    border-color: transparent;
                    box-shadow: 0 12px 24px rgba(196, 122, 30, .35);
                }

                .login-btns a:hover {
                    color: #fff;
                    background: var(--primary);
                    border-color: var(--primary);
                    transform: translateY(-1px);
                }

                .login-btns a.btn-register-cta:hover {
                    background: linear-gradient(135deg, var(--color-brand), var(--color-brand));
                    box-shadow: 0 16px 30px rgba(196, 122, 30, .45);
                }

        .home-shell {
            min-height: 56vh;
            background: var(--bg-light);
        }

        .home-top-strip {
            background: var(--cream-gradient);
            color: var(--color-text-body);
            border-bottom: 1px solid rgba(196, 122, 30, .18);
        }

        .home-top-strip-inner {
            padding: 12px 0;
            text-align: center;
        }

        .home-top-tagline {
            margin: 0;
            color: var(--color-text-body);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.6;
            letter-spacing: 0;
        }

        .footer {
            background: var(--cream-gradient);
            color: var(--color-text-body);
            padding: 4px 0 26px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr repeat(3, 1fr);
            gap: 20px;
        }

        .footer h5 {
            margin: 0 0 12px;
            color: var(--color-text-body);
            font-size: 15px;
            letter-spacing: .03em;
            text-transform: uppercase;
        }

        .footer p, .footer a {
            margin: 0 0 8px;
            color: var(--color-text-body-lt);
            font-size: 13px;
            line-height: 1.7;
            text-decoration: none;
            transition: color .2s ease;
        }

            .footer a:hover {
                color: var(--color-brand);
            }

        .copyright {
            border-top: 1px solid rgba(255, 243, 237, .28);
            margin-top: 28px;
            padding-top: 22px;
            text-align: center;
            color: #f3c6ad;
            font-size: 12px;
        }

        @media (max-width: 1200px) {
            .top-nav-inner {
                justify-content: center;
            }

            .menu {
                justify-content: center;
                width: 100%;
                order: 3;
            }

            .login-btns {
                justify-content: center;
                width: 100%;
            }
        }

        @media (max-width: 1024px) {
            .menu {
                display: none;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .utility-inner, .utility-left, .utility-right, .login-btns {
                justify-content: center;
            }

            .top-nav-inner {
                flex-wrap: wrap;
            }

            .brand-text {
                display: none;
            }

            .login-btns {
                width: 100%;
            }

                .login-btns a {
                    flex: 1 1 140px;
                    text-align: center;
                }

            .footer {
                padding-top: 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }


/* ===== Home index ===== */
:root {
            --accent-green: #10b981;
            --accent-teal: #14b8a6;
            --accent-amber: #f59e0b;
        }

        * {
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
            font-family: "Inter", "Segoe UI", Arial, sans-serif;
            color: var(--text-dark);
            background: var(--bg-light);
        }

        body {
            overflow-x: hidden;
            padding-top: var(--public-utility-height);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: min(1200px, 92%);
            margin: 0 auto;
        }

        body.font-sm {
            font-size: 14px;
        }

        body.font-md {
            font-size: 16px;
        }

        body.font-lg {
            font-size: 18px;
        }

        #main-content {
            zoom: var(--ui-scale);
        }

        .utility-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 70;
            background: var(--cream-gradient);
            color: var(--color-text-body);
            border-bottom: 1px solid rgba(196, 122, 30, .18);
            font-size: 12px;
        }

        .utility-inner {
            min-height: 38px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            padding: 6px 0;
        }

        .utility-left, .utility-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .lang-link {
            color: var(--color-text-body);
            opacity: .75;
            font-weight: 600;
        }

            .lang-link.active {
                opacity: 1;
                color: var(--color-brand);
                text-decoration: underline;
            }

        .skip-link {
            color: var(--color-text-body);
            border: 1px solid rgba(196, 122, 30, .35);
            border-radius: 999px;
            padding: 4px 10px;
        }

        .font-btn {
            border: 1px solid rgba(196, 122, 30, .35);
            background: rgba(255, 255, 255, .45);
            color: var(--color-text-body);
            border-radius: 4px;
            padding: 3px 8px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 700;
        }

            .font-btn.active {
                background: #fff;
                color: var(--color-text-body);
            }

        .top-nav {
            position: sticky;
            top: var(--public-utility-height, 40px);
            z-index: 60;
            background: #fff;
            border-bottom: 1px solid #e8e8e8;
            box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
        }

        .top-nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 0;
            flex-wrap: wrap;
        }

        .logo-wrap img {
            height: 68px;
            width: auto;
            display: block;
        }

        .menu {
            display: flex;
            gap: 22px;
            font-size: 14px;
            color: var(--color-text-body);
            font-weight: 600;
            flex-wrap: wrap;
        }

            .menu a:hover {
                color: var(--primary);
            }

        .login-btns {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

            .login-btns a {
                font-size: 12px;
                font-weight: 700;
                color: #fff;
                background: var(--primary);
                padding: 8px 12px;
                border-radius: 5px;
                transition: .2s;
            }

                .login-btns a:hover {
                    background: var(--primary-dark);
                }

        .hero {
            position: relative;
            min-height: 640px;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.04);
            transition: opacity .9s ease, transform 5s ease;
        }

            .hero-slide.active {
                opacity: 1;
                transform: scale(1);
            }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 56%, rgba(0, 0, 0, 0.05) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 3;
            color: #fff;
            padding: 120px 12px 80px;
            width: min(1600px, 98%);
            max-width: none;
            margin: 0 auto;
            box-sizing: border-box;
        }

        .hero-kicker {
            font-size: 12px;
            display: inline-block;
            border: 1px solid rgba(255,255,255,.6);
            border-radius: 100px;
            padding: 6px 12px;
            margin-bottom: 18px;
        }

        .hero h1 {
            margin: 0 0 10px;
            font-size: clamp(28px, 4vw, 52px);
            max-width: 700px;
            line-height: 1.08;
        }

.hero p {
    font-size: 20px;
    max-width: 700px;
    color: var(--color-border-light);
    margin-left: 20px;
}

        .hero-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 11px 18px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            border: 0;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
        }

        .btn-light {
            background: #fff;
            color: #222;
        }

        .hero-dots {
            position: absolute;
            bottom: 56px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 5;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,.4);
            border: 0;
            cursor: pointer;
        }

            .hero-dot.active {
                background: var(--primary);
            }

        .orange-strip {
            background: var(--cream-gradient);
            color: var(--color-text-body);
            width: 100%;
            padding: 20px 24px;
            text-align: center;
        }

        .section {
            padding: 52px 0;
        }

        .title-row h2 {
            margin: 0;
            font-size: 33px;
        }

        .title-row p {
            margin: 10px 0 0;
            color: var(--muted);
        }

        .service-grid {
            margin-top: 24px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .service-card {
            background: #fff;
            border-radius: 10px;
            padding: 18px;
            border: 1px solid var(--color-border);
            box-shadow: 0 4px 16px var(--color-shadow);
            min-height: 138px;
        }

            .service-card img {
                width: 34px;
                height: 34px;
                object-fit: contain;
                margin-bottom: 10px;
            }

            .service-card h4 {
                margin: 0 0 8px;
                font-size: 16px;
            }

            .service-card p {
                margin: 0;
                color: var(--muted);
                font-size: 13px;
                line-height: 1.5;
            }

        /*  .stats-band { background: var(--primary); color: #fff; } */
        .stats-band {
            background: var(--cream-gradient);
            padding: 40px 20px;
        }

        .stats-wrap {
            padding: 44px 0;
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 20px;
            align-items: center;
        }

            .stats-wrap h3 {
                margin: 0;
                font-size: 30px;
                color: var(--color-text-body);
            }

            .stats-wrap p {
                margin: 8px 0 20px;
                color: var(--color-text-body-lt);
                font-size: 14px;
                max-width: 420px;
            }

        .stats-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

            .stats-actions a {
                background: #111;
                color: #fff;
                padding: 10px 12px;
                border-radius: 5px;
                font-size: 13px;
            }

        .stat-grid {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: nowrap;
        }

        .stat-box {
            background: #fff;
            width: 100%;
            padding: 20px 20px;
            border-radius: 16px;
            text-align: center;
        }

            .stat-box h4 {
                margin: 0 0 12px;
                font-size: 40px;
                font-weight: bold;
                color: var(--color-text-body);
            }

            .stat-box span {
                font-size: 15px;
                color: var(--color-text-muted);
            }

        .scheme-toolbar {
            margin-top: 18px;
            background: var(--primary);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            gap: 10px;
            overflow-x: auto;
        }

        .scheme-tab {
            background: #f5f5f5;
            border: 0;
            border-radius: 10px;
            min-width: 190px;
            padding: 12px;
            text-align: left;
            cursor: pointer;
            font-weight: 600;
            color: #2a2a2a;
            white-space: normal;
        }

            .scheme-tab.active {
                background: #fff;
                color: var(--primary-dark);
            }

        .scheme-cards {
            margin-top: 14px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .scheme-card {
            background: #fff;
            border: 1px solid #efefef;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,.05);
        }

            .scheme-card img {
                width: 100%;
                height: 160px;
                object-fit: cover;
                display: block;
            }

            .scheme-card .content {
                padding: 14px;
            }

            .scheme-card h5 {
                margin: 0 0 6px;
                font-size: 16px;
            }

            .scheme-card p {
                margin: 0;
                color: var(--muted);
                font-size: 13px;
                line-height: 1.5;
            }

        .app-panel-wrap {
            background: var(--cream-gradient);
            padding: 30px 0;
        }

        .app-panel {
            background: #fff;
            border-radius: 14px;
            padding: 34px;
            display: grid;
            gap: 12px;
            grid-template-columns: 1.2fr 1fr;
            align-items: center;
        }

            .app-panel h3 {
                margin: 0 0 8px;
                font-size: 29px;
            }

            .app-panel p {
                margin: 0 0 14px;
                color: var(--muted);
                font-size: 14px;
                line-height: 1.5;
            }

        .store-btns {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

            .store-btns a {
                background: #111;
                color: #fff;
                border-radius: 6px;
                padding: 11px 14px;
                font-size: 13px;
            }

        .app-panel img {
            width: 100%;
            max-width: 320px;
            margin-left: auto;
            display: block;
        }

        .cta {
            background: #fff;
        }

            .cta .inner {
                margin: 34px 0;
                background: var(--primary);
                border-radius: 10px;
                color: #fff;
                padding: 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 14px;
            }

            .cta h4 {
                margin: 0;
                font-size: 25px;
                max-width: 840px;
            }

            .cta a {
                background: #101010;
                color: #fff;
                padding: 12px 16px;
                border-radius: 6px;
                white-space: nowrap;
                font-weight: 600;
            }

        .logos {
            padding: 22px 0 34px;
            background: #fff;
        }

        .disclaimer-section {
            padding: 28px 0;
            background: #fff;
        }

        .disclaimer-card {
            background: #fff;
            border: 1px solid #f4d6b4;
            border-left: 5px solid var(--primary);
            border-radius: 12px;
            padding: 22px;
            box-shadow: 0 8px 24px rgba(0,0,0,.06);
        }

            .disclaimer-card h3 {
                margin: 0 0 14px;
                color: #3a2410;
                font-size: 22px;
            }

            .disclaimer-card p {
                margin: 0 0 10px;
                color: #4b3a2b;
                font-size: 14px;
                line-height: 1.7;
            }

                .disclaimer-card p:last-child {
                    margin-bottom: 0;
                }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 14px;
        }

            .logo-grid a {
                border: 1px solid var(--color-border-light);
                border-radius: 10px;
                background: #fff;
                padding: 16px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 10px;
                min-height: 78px;
            }

            .logo-grid img {
                width: 100%;
                max-width: 130px;
                object-fit: contain;
            }

            .portal-logo-text {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: var(--primary-dark);
                font-size: 15px;
                font-weight: 800;
                letter-spacing: .01em;
                text-align: center;
            }

            .portal-logo-icon {
                width: 48px;
                height: 48px;
                border-radius: 16px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: var(--color-brand);
                background: linear-gradient(135deg, #fff7ed, #ffedd5);
                box-shadow: 0 10px 22px rgba(196, 122, 30, .14);
            }

            .portal-logo-icon svg {
                width: 28px;
                height: 28px;
                fill: none;
                stroke: currentColor;
                stroke-width: 1.9;
                stroke-linecap: round;
                stroke-linejoin: round;
            }

            .logo-grid a:nth-child(2) .portal-logo-icon {
                color: #d97706;
                background: linear-gradient(135deg, #fffbeb, #fef3c7);
            }

            .logo-grid a:nth-child(3) .portal-logo-icon {
                color: #0d9488;
                background: linear-gradient(135deg, #ecfeff, #ccfbf1);
            }

            .logo-grid a:nth-child(4) .portal-logo-icon {
                color: #16a34a;
                background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            }

            .logo-grid a:nth-child(5) .portal-logo-icon {
                color: var(--color-brand);
                background: linear-gradient(135deg, #fff7ed, #ffedd5);
            }

        .footer {
            background: var(--cream-gradient);
            color: var(--color-text-body);
            padding: 34px 0 22px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr repeat(3, 1fr);
            gap: 20px;
        }

        .footer h5 {
            margin: 0 0 12px;
            color: var(--color-text-body);
            font-size: 15px;
        }

        .footer p, .footer a {
            margin: 0 0 8px;
            color: var(--color-text-body-lt);
            font-size: 13px;
        }

        .copyright {
            border-top: 1px solid rgba(196, 122, 30, .22);
            margin-top: 16px;
            padding-top: 14px;
            text-align: center;
            color: var(--color-text-muted);
            font-size: 12px;
        }

        /* Home2-inspired visual refresh for the live public landing page. */
        .utility-bar {
            background: var(--cream-gradient);
            color: var(--color-text-body);
            border-bottom: 1px solid rgba(196, 122, 30, .18);
        }

        .utility-inner {
            min-height: 40px;
            padding: 8px 0;
            font-size: 12.5px;
        }

        .utility-left {
            gap: 14px;
        }

        .utility-right {
            gap: 12px;
        }

        .utility-left::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #22c55e;
            box-shadow: 0 0 0 5px rgba(34, 197, 94, .16);
            animation: pulseDot 2.2s ease-in-out infinite;
        }

        @keyframes pulseDot {
            0%, 100% { box-shadow: 0 0 0 5px rgba(34, 197, 94, .16); }
            50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, .05); }
        }

        .utility-divider {
            width: 1px;
            height: 14px;
            background: rgba(196, 122, 30, .25);
            display: inline-block;
        }

        .toll-free {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--color-text-nav);
            font-weight: 600;
        }

        .toll-free svg {
            width: 13px;
            height: 13px;
            color: #34d399;
        }

        .admin-login-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border: 1px solid rgba(196, 122, 30, .3);
            border-radius: 8px;
            color: var(--color-text-body);
            font-weight: 600;
            font-size: 12px;
            background: rgba(255, 255, 255, .5);
            transition: all .2s ease;
        }

        .admin-login-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-1px);
        }

        .admin-login-btn svg {
            width: 12px;
            height: 12px;
        }

        .lang-switch {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--color-text-nav);
            font-weight: 600;
        }

        .lang-switch svg {
            width: 14px;
            height: 14px;
            opacity: .75;
        }

        .lang-link,
        .font-btn {
            transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
        }

        .lang-link:hover {
            color: var(--color-brand);
        }

        .font-btn {
            border-color: rgba(196, 122, 30, .35);
            border-radius: 8px;
            color: var(--color-text-body);
            background: rgba(255, 255, 255, .45);
        }

        .font-btn.active,
        .font-btn:hover {
            background: #fff;
            color: var(--color-text-body);
            transform: translateY(-1px);
        }

        .top-nav {
            background: #fff;
            border-bottom: 1px solid #e8e8e8;
            box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
        }

        .top-nav-inner {
            min-height: 76px;
            padding: 10px 0;
        }

        .logo-wrap {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border-radius: 16px;
        }

        .cm-logo-box {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--color-brand), var(--color-brand));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 17px;
            letter-spacing: .5px;
            box-shadow: 0 10px 22px rgba(196, 122, 30, .35);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .brand-title {
            font-weight: 800;
            font-size: 17px;
            color: var(--color-text-body);
        }

        .brand-sub {
            font-size: 14px;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        .menu {
            gap: 4px;
            color: var(--color-text-nav);
            font-size: 14.5px;
        }

        .menu a {
            border-radius: 999px;
            padding: 9px 16px;
            transition: color .2s ease, background .2s ease, transform .2s ease;
            font-weight: 600;
        }

        .menu a:hover {
            color: var(--color-brand);
            background: #fff;
            transform: translateY(-1px);
        }

        .menu a.is-active {
            color: var(--primary-dark);
            background: var(--primary-soft);
        }

        .login-btns {
            gap: 10px;
            align-items: center;
        }

        .login-btns a {
            color: var(--color-brand);
            background: #fff;
            border: 1px solid #f3c6ad;
            border-radius: 999px;
            padding: 10px 18px;
            font-size: 13px;
            font-weight: 700;
            box-shadow: 0 8px 18px rgba(196, 122, 30, .08);
        }

        .login-btns a.btn-register-cta {
            background: linear-gradient(135deg, var(--color-brand), var(--color-brand));
            color: #fff;
            border-color: transparent;
            box-shadow: 0 12px 24px rgba(196, 122, 30, .35);
        }

        .login-btns a:hover {
            color: #fff;
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-1px);
        }

        .login-btns a.btn-register-cta:hover {
            background: linear-gradient(135deg, var(--color-brand), var(--color-brand));
            box-shadow: 0 16px 30px rgba(196, 122, 30, .45);
        }

        .login-btns a.btn-ghost-login {
            background: transparent;
            border-color: var(--border);
            color: var(--color-text-nav);
            box-shadow: none;
        }

        .login-btns a.btn-ghost-login:hover {
            background: #f1f5f9;
            color: var(--color-text-body);
            border-color: #cbd5e1;
        }

        .hero {
            min-height: 600px;
            background: var(--cream-gradient);
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            opacity: .18;
            background-image:
                linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
            background-size: 54px 54px;
            mask-image: linear-gradient(90deg, #000, transparent 88%);
        }

        .hero::after {
            content: "";
            position: absolute;
            top: -120px;
            right: -120px;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, .65), rgba(245, 201, 138, .35) 50%, transparent 70%);
            filter: blur(40px);
            z-index: 1;
            pointer-events: none;
        }

        .hero-slide {
            opacity: .06;
            mix-blend-mode: soft-light;
            filter: saturate(.9) contrast(1.02);
        }

        .hero-slide-one {
            background:
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .55) 0 0, transparent 140px),
                radial-gradient(circle at 75% 35%, rgba(245, 201, 138, .65) 0 0, transparent 200px),
                linear-gradient(135deg, rgba(245, 201, 138, .35), rgba(250, 224, 184, .25), rgba(232, 184, 112, .2));
        }

        .hero-slide-two {
            background:
                radial-gradient(circle at 28% 70%, rgba(250, 224, 184, .55) 0 0, transparent 160px),
                radial-gradient(circle at 80% 25%, rgba(245, 201, 138, .5) 0 0, transparent 160px),
                linear-gradient(135deg, rgba(245, 201, 138, .3), rgba(224, 144, 48, .18), rgba(250, 224, 184, .28));
        }

        .hero-slide.active {
            opacity: .08;
        }

        .hero-overlay {
            z-index: 2;
            background:
                radial-gradient(circle at 10% 50%, rgba(92, 46, 10, .08), transparent 48%),
                radial-gradient(circle at 90% 15%, rgba(255, 255, 255, .4), transparent 42%),
                linear-gradient(
                    135deg,
                    rgba(245, 201, 138, .12) 0%,
                    rgba(250, 224, 184, .08) 45%,
                    rgba(245, 201, 138, .15) 100%
                );
        }

        .hero-content {
            padding: 20px 12px 10px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            align-items: center;
            width: min(1600px, 98%);
            max-width: none;
            margin-left: auto;
            margin-right: auto;
            box-sizing: border-box;
        }

        .hero-cm-profile {
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            min-width: 0;
            min-height: 100%;
            overflow: visible;
        }

        .hero-cm-profile::before {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 8%;
            transform: translateX(-50%);
            width: min(100%, 280px);
            height: 72%;
            background: radial-gradient(ellipse at center bottom, rgba(245, 201, 138, .5) 0%, rgba(224, 144, 48, .22) 42%, transparent 72%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-cm-photo-wrap {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            width: 100%;
            height: 100%;
            line-height: 0;
        }

        .hero-cm-photo {
            display: block;
            width: auto;
            max-width: 108%;
            height: 100%;
            min-height: clamp(400px, 44vh, 480px);
            max-height: 480px;
            object-fit: contain;
            object-position: bottom center;
            background: transparent;
            border-radius: 0;
            mix-blend-mode: normal;
            filter:
                drop-shadow(0 8px 24px rgba(196, 122, 30, .22))
                drop-shadow(0 18px 32px rgba(46, 20, 0, .12));
            transform: scale(1.06);
            transform-origin: bottom center;
        }

        .hero-bottom-strip {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 4;
            border-top: 1px solid rgba(196, 122, 30, .2);
            background: rgba(245, 201, 138, .45);
            backdrop-filter: blur(8px);
        }

        .hero-bottom-strip-inner {
            width: min(1600px, 98%);
            max-width: none;
            padding: 12px 12px;
            text-align: center;
            box-sizing: border-box;
        }

        .hero-bottom-tagline {
            margin: 0;
            color: var(--color-text-body);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.6;
            letter-spacing: 0;
        }

        .hero-cm-message {
            position: relative;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            align-self: center;
            gap: 0;
            padding: 12px 8px 12px 4px;
            background: transparent;
            border: 0;
            border-radius: 0;
            box-shadow: none;
            backdrop-filter: none;
        }

        .hero-cm-message-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 12px;
            align-self: flex-start;
            padding: 0;
            border: 0;
            background: transparent;
            color: var(--color-text-nav);
            font-size: 20px;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .hero-cm-message-label::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--color-brand-light);
            box-shadow: 0 0 10px rgba(224, 144, 48, .8);
        }

        .hero-cm-quote {
            margin: 0 0 14px;
            padding: 0 0 0 16px;
            border-left: 3px solid var(--color-brand);
            color: var(--color-text-body);
            font-size: clamp(14px, 1.35vw, 16px);
            line-height: 1.75;
            font-style: italic;
            align-self: stretch;
            width: 100%;
        }

        .hero-cm-signature {
            margin: 0;
            padding: 0;
            width: 100%;
            text-align: center;
            align-self: center;
        }

.hero-cm-sign-name {
    display: block;
    margin: 0;
    color: var(--color-text-body);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    text-align: right;
    margin-right:70px;
}

.hero-cm-sign-role {
    display: block;
    margin: 5px 0 0;
    color: var(--color-text-muted);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.45;
    text-align: right;
}

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .18);
            color: rgba(255, 255, 255, .92);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 22px;
            backdrop-filter: blur(8px);
        }

        .hero-badge::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #22c55e;
            box-shadow: 0 0 0 4px rgba(34, 197, 94, .25);
        }

        .hero h2 {
            max-width: 720px;
            margin: 0 0 18px;
            color: #fff;
            font-size: clamp(34px, 4.5vw, 56px) !important;
            line-height: 1.06;
            letter-spacing: -.035em;
            font-weight: 800 !important;
        }

        .hero h2 .accent-grad {
            background: linear-gradient(90deg, var(--color-brand-light), var(--color-brand-light));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .hero p {
            color: rgba(255, 255, 255, .78);
            font-size: clamp(15px, 1.5vw, 18px);
            line-height: 1.7;
            max-width: 560px;
        }

        .hero .hero-bottom-tagline {
            max-width: none;
            margin: 0;
            color: var(--color-text-body);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.6;
            text-align: center;
        }

        .hero-actions {
            gap: 12px;
            margin-top: 32px;
        }

        .hero-actions .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-actions .btn svg {
            width: 16px;
            height: 16px;
        }

        .hero-form-card {
            position: relative;
            z-index: 3;
            align-self: stretch;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
            height: 100%;
            background: linear-gradient(180deg, rgba(92, 46, 10, .72), rgba(46, 20, 0, .68));
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 22px;
            padding: 24px;
            backdrop-filter: blur(18px);
            box-shadow: 0 30px 60px var(--color-shadow);
        }

        .hero-tabs {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .14);
            padding: 5px;
            border-radius: 14px;
            gap: 4px;
        }

        .hero-tab {
            border: 0;
            background: transparent;
            color: rgba(255, 255, 255, .8);
            font-weight: 700;
            font-size: 14px;
            padding: 11px 12px;
            border-radius: 10px;
            cursor: pointer;
            transition: all .2s ease;
        }

        .hero-tab.active {
            background: #fff;
            color: var(--color-text-body);
            box-shadow: 0 8px 20px var(--color-shadow);
        }

        .hero-form-sub {
            margin: 18px 0 14px;
            color: rgba(255, 255, 255, .72);
            font-size: 13.5px;
            line-height: 1.55;
        }

        .hero-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .hero-input-wrap {
            position: relative;
        }

        .hero-input-wrap svg {
            position: absolute;
            top: 50%;
            left: 14px;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            color: rgba(255, 255, 255, .5);
        }

        .hero-input {
            width: 100%;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 12px;
            padding: 13px 14px 13px 40px;
            color: #fff;
            font-size: 14.5px;
            font-family: inherit;
            transition: all .2s ease;
        }

        .hero-input::placeholder {
            color: rgba(255, 255, 255, .55);
        }

        .hero-input:focus {
            outline: none;
            border-color: var(--color-brand-light);
            background: rgba(255, 255, 255, .12);
            box-shadow: 0 0 0 4px rgba(224, 144, 48, .18);
        }

        .hero-form-submit {
            margin-top: 6px;
            background: linear-gradient(135deg, var(--color-brand-light), var(--color-brand));
            border: 0;
            color: #fff;
            font-weight: 700;
            font-size: 14.5px;
            padding: 14px;
            border-radius: 12px;
            cursor: pointer;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
            box-shadow: 0 14px 28px rgba(196, 122, 30, .35);
        }

            .hero-form-submit:hover {
                color: #fff;
                transform: translateY(-1px);
                background: var(--color-brand-light);
                box-shadow: 0 4px 16px var(--color-shadow-hover);
            }

        .hero-form-submit:disabled {
            opacity: .7;
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 14px 28px rgba(196, 122, 30, .35);
        }

        .hero-form-card .hf-hidden {
            display: none !important;
        }

        .hero-alert {
            margin-bottom: 10px;
            padding: 10px 12px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.45;
            border: 1px solid transparent;
        }

        .hero-alert-error {
            background: rgba(239, 68, 68, .14);
            border-color: rgba(239, 68, 68, .4);
            color: #fecaca;
        }

        .hero-alert-success {
            background: rgba(34, 197, 94, .14);
            border-color: rgba(34, 197, 94, .4);
            color: #bbf7d0;
        }

        .hero-form-sub-2 {
            margin: 0 0 14px;
            color: rgba(255, 255, 255, .78);
            font-size: 13.5px;
            line-height: 1.55;
        }

        .hero-form-sub-2 strong {
            color: #fff;
            word-break: break-all;
        }

        .hero-otp-inputs {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
            margin-bottom: 14px;
        }

        .hero-otp-digit {
            height: 48px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 10px;
            color: #fff;
            text-align: center;
            font-size: 18px;
            font-weight: 800;
            font-family: inherit;
            transition: all .2s ease;
            padding: 0;
            min-width: 0;
        }

        .hero-otp-digit:focus {
            outline: none;
            border-color: var(--color-brand-light);
            background: rgba(255, 255, 255, .14);
            box-shadow: 0 0 0 4px rgba(165, 180, 252, .18);
        }

        .hero-form-actions {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin-top: 12px;
        }

        .hero-link-btn {
            background: transparent;
            border: 0;
            color: #f3c6ad;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
            font-family: inherit;
            transition: color .2s ease, background .2s ease;
        }

        .hero-link-btn:hover {
            color: #fff;
            background: rgba(255, 255, 255, .08);
        }

        .hero-link-btn[disabled] {
            opacity: .5;
            cursor: not-allowed;
        }

        .hero-form-footer {
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid rgba(255, 255, 255, .12);
            text-align: center;
            color: rgba(255, 255, 255, .72);
            font-size: 13px;
        }

        .hero-form-footer a {
            color: #f3c6ad;
            font-weight: 700;
            margin-left: 6px;
            transition: color .2s ease;
        }

        .hero-form-footer a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .hero-call-choice {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .hero-call-choice label,
        .hero-call-agree {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            padding: 11px 12px;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 12px;
            background: rgba(255, 255, 255, .08);
            color: rgba(255, 255, 255, .82);
            font-size: 13px;
            font-weight: 700;
            line-height: 1.45;
        }

        .hero-call-choice input,
        .hero-call-agree input {
            margin-top: 2px;
            accent-color: var(--color-brand-light);
        }

        .btn {
            border-radius: 12px;
            padding: 13px 22px;
            box-shadow: 0 16px 30px var(--color-shadow);
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 38px var(--color-shadow);
        }

        .btn-primary {
            background: #fff;
            color: var(--color-text-body);
        }

        .btn-light {
            color: #fff;
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .25);
            backdrop-filter: blur(10px);
        }

        .btn-light:hover {
            background: rgba(255, 255, 255, .18);
        }

        .hero-dots {
            bottom: 56px;
        }

        .hero-dot {
            width: 28px;
            height: 6px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .34);
        }

        .hero-dot.active {
            background: #fff;
        }

        .orange-strip,
        .stats-band,
        .app-panel-wrap {
            background: var(--cream-gradient);
            color: var(--color-text-body);
        }

        .orange-strip-tagline {
            margin: 0;
            width: 100%;
            max-width: none;
            color: var(--color-text-body);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.65;
            letter-spacing: 0;
        }

        .section {
            padding: 72px 0;
        }

        .title-row {
            text-align: center;
            max-width: 760px;
            margin: 0 auto;
        }

        .section-pill {
            display: inline-block;
            background: var(--primary-soft);
            color: var(--primary-dark);
            border: 1px solid #f3c6ad;
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 999px;
            margin-bottom: 14px;
        }

        .title-row h2 {
            color: var(--color-text-body);
            font-size: clamp(28px, 4vw, 42px);
            letter-spacing: -.035em;
        }

        .title-row p {
            color: var(--color-text-muted);
            font-size: 16px;
            line-height: 1.7;
        }

        .service-grid {
            margin-top: 34px;
            gap: 22px;
        }

        .service-card {
            position: relative;
            overflow: hidden;
            min-height: 230px;
            border-radius: 22px;
            padding: 26px;
            border: 1px solid var(--color-border);
            background: linear-gradient(180deg, #fff7ed, #ffedd5);
            box-shadow: none;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
            display: flex;
            flex-direction: column;
        }

        .service-card .svc-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            background: rgba(255, 255, 255, .9);
            box-shadow: 0 10px 22px var(--color-shadow);
        }

        .service-card .svc-icon svg {
            width: 26px;
            height: 26px;
            color: var(--color-brand);
        }

        .service-card:nth-child(1) { border-color: #fed7aa; background: linear-gradient(180deg, #fff7ed, #ffedd5); }
        .service-card:nth-child(1) .svc-icon svg { color: var(--color-brand); }

        .service-card:nth-child(2) { border-color: #99f6e4; background: linear-gradient(180deg, #f0fdfa, #ecfeff); }
        .service-card:nth-child(2) .svc-icon svg { color: #14b8a6; }

        .service-card:nth-child(3) { border-color: #bbf7d0; background: linear-gradient(180deg, #f0fdf4, #ecfdf5); }
        .service-card:nth-child(3) .svc-icon svg { color: #16a34a; }

        .service-card:nth-child(4) { border-color: #fde68a; background: linear-gradient(180deg, #fffbeb, #fef3c7); }
        .service-card:nth-child(4) .svc-icon svg { color: #d97706; }

        .service-card:hover,
        .scheme-card:hover,
        .logo-grid a:hover {
            transform: translateY(-6px);
            box-shadow: var(--card-shadow);
        }

        .service-card h4 {
            color: var(--color-text-body);
            font-size: 18px;
            line-height: 1.35;
            margin: 0 0 8px;
        }

        .service-card p {
            color: var(--color-text-muted);
            font-size: 13.5px;
            line-height: 1.6;
            margin: 0 0 16px;
            flex: 1;
        }

        .service-card .svc-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 700;
            font-size: 13.5px;
            color: var(--color-brand);
            margin-top: auto;
        }

        .service-card:nth-child(2) .svc-cta { color: #0d9488; }
        .service-card:nth-child(3) .svc-cta { color: #15803d; }
        .service-card:nth-child(4) .svc-cta { color: #b45309; }

        .service-card .svc-cta svg {
            width: 13px;
            height: 13px;
            transition: transform .2s ease;
        }

        .service-card:hover .svc-cta svg {
            transform: translateX(3px);
        }

        .stats-band {
            padding: 25px 20px;
            position: relative;
            overflow: hidden;
        }

        .stats-band::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(92, 46, 10, .08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(92, 46, 10, .08) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: radial-gradient(circle at center, #000 30%, transparent 80%);
            pointer-events: none;
        }

        .stats-band .container { position: relative; z-index: 1; }

        .stats-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 36px;
        }

        .stats-header h2 {
            margin: 0;
            color: var(--color-text-body);
            font-size: clamp(28px, 4vw, 35px);
            /*font-weight: 800;*/
            letter-spacing: -.03em;
        }

        .stats-header p {
            margin: 10px 0 0;
            color: var(--color-text-body-lt);
            font-size: 15.5px;
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .stat-box {
            border: 1px solid rgba(196, 122, 30, .22);
            background: rgba(255, 255, 255, .58);
            border-radius: 18px;
            padding: 28px 22px;
            backdrop-filter: blur(12px);
            box-shadow: 0 12px 28px var(--color-shadow);
            transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
        }

        .stat-box:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, .78);
            box-shadow: 0 16px 32px var(--color-shadow-hover);
        }

        .stat-box h4 {
            color: var(--color-text-body);
            font-size: clamp(30px, 4vw, 44px);
        }

        .stat-box span {
            color: var(--color-text-muted);
            font-weight: 600;
        }

        .fab-contact {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--cream-gradient);
            color: var(--color-text-body);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 14px 30px rgba(196, 122, 30, .45), 0 6px 12px var(--color-shadow);
            z-index: 80;
            border: 0;
            cursor: pointer;
            padding: 0;
            text-decoration: none;
            transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
        }

        .fab-contact.fab-whatsapp {
            background: #25d366;
            box-shadow: 0 14px 30px rgba(37, 211, 102, .45), 0 6px 12px var(--color-shadow);
        }

        .fab-contact:hover {
            transform: scale(1.10);
            box-shadow: 0 18px 36px rgba(196, 122, 30, .55), 0 8px 14px var(--color-shadow);
        }

        .fab-contact.fab-whatsapp:hover {
            background: #20bd5a;
            box-shadow: 0 18px 36px rgba(37, 211, 102, .55), 0 8px 14px var(--color-shadow);
        }

        .fab-contact:active {
            transform: scale(.95);
        }

        .fab-contact svg {
            width: 26px;
            height: 26px;
        }

        .fab-contact.fab-whatsapp svg {
            width: 28px;
            height: 28px;
        }

        .scheme-toolbar {
            margin-top: 28px;
            background: #fff;
            border: 1px solid #f3c6ad;
            border-radius: 18px;
        }

        .scheme-tab {
            border: 1px solid transparent;
            border-radius: 14px;
            background: transparent;
            color: var(--color-text-nav);
            transition: background .2s ease, color .2s ease, box-shadow .2s ease;
        }

        .scheme-tab.active,
        .scheme-tab:hover {
            background: #fff;
            color: var(--color-text-nav) !important;
            box-shadow: 0 8px 20px rgba(196, 122, 30, .12);
        }

        .scheme-cards {
            margin-top: 20px;
            gap: 20px;
        }

        .scheme-card {
            border: 1px solid var(--border);
            border-radius: 22px;
            box-shadow: none;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .scheme-visual {
            height: 190px;
            display: flex;
            align-items: center;
            justify-content: center;
            background:
                radial-gradient(circle at 25% 25%, rgba(255, 255, 255, .8), transparent 34%),
                linear-gradient(135deg, #fff7ed, #ffedd5);
            color: var(--color-brand);
            font-size: 62px;
        }

        .scheme-visual svg {
            width: 78px;
            height: 78px;
            filter: drop-shadow(0 14px 22px rgba(196, 122, 30, .18));
        }

        .scheme-card:nth-child(2) .scheme-visual {
            background:
                radial-gradient(circle at 25% 25%, rgba(255, 255, 255, .8), transparent 34%),
                linear-gradient(135deg, #ecfeff, #ccfbf1);
            color: #0d9488;
        }

        .scheme-card:nth-child(3) .scheme-visual {
            background:
                radial-gradient(circle at 25% 25%, rgba(255, 255, 255, .8), transparent 34%),
                linear-gradient(135deg, #f0fdf4, #dcfce7);
            color: #16a34a;
        }

        .scheme-card img {
            height: 190px;
        }

        .scheme-card .content {
            padding: 20px;
        }

        .scheme-card h5 {
            color: var(--color-text-body);
            font-size: 18px;
        }

        .scheme-card p {
            color: var(--color-text-muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .app-panel-wrap {
            padding: 46px 0;
        }

        .app-panel {
            border: 1px solid rgba(196, 122, 30, .22);
            border-radius: 26px;
            background: rgba(255, 255, 255, .62);
            color: var(--color-text-body);
            box-shadow: 0 24px 60px var(--color-shadow);
            backdrop-filter: blur(12px);
        }

        .app-panel h3 {
            color: var(--color-text-body);
            font-size: clamp(27px, 4vw, 42px);
            letter-spacing: -.03em;
        }

        .app-panel p {
            color: var(--color-text-body-lt);
            font-size: 12px;
            line-height: 1.7;
        }

        .app-phone-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 330px;
        }

        .app-phone {
            width: 190px;
            height: 330px;
            border-radius: 34px;
            padding: 16px;
            background: linear-gradient(145deg, var(--color-brand), var(--color-brand-light));
            box-shadow: 0 30px 60px var(--color-shadow);
            position: relative;
            border: 1px solid rgba(196, 122, 30, .28);
        }

        .app-phone-notch {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 8px;
            border-radius: 999px;
            background: #020617;
            z-index: 2;
        }

        .app-phone-screen {
            height: 100%;
            border-radius: 24px;
            background: linear-gradient(180deg, #f8fafc, #ffffff);
            padding: 34px 16px 18px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            overflow: hidden;
        }

        .app-phone-logo {
            width: 72px;
            height: 72px;
            border-radius: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--color-brand), var(--color-brand));
            color: #fff;
            font-weight: 900;
            margin: 0 auto 8px;
            box-shadow: 0 14px 28px rgba(196, 122, 30, .35);
        }

        .app-phone-line {
            height: 12px;
            border-radius: 999px;
            background: #f3c6ad;
        }

        .app-phone-line.short {
            width: 70%;
            margin: 0 auto;
            background: #f3d0bd;
        }

        .app-phone-status {
            height: 42px;
            border-radius: 14px;
            background: #f8fafc;
            border-left: 5px solid var(--color-brand);
            box-shadow: 0 8px 18px var(--color-shadow);
        }

        .app-phone-status.success { border-left-color: #22c55e; }
        .app-phone-status.warning { border-left-color: #f59e0b; }
        .app-phone-status.info { border-left-color: #0ea5e9; }

        .store-btns a,
        .cta a {
            border-radius: 12px;
            background: #fff;
            color: var(--color-text-body);
            font-weight: 700;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .store-btns a:hover,
        .cta a:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 30px var(--color-shadow);
        }

        .cta,
        .logos,
        .disclaimer-section {
            background: var(--bg-light);
        }

        .cta .inner {
            border-radius: 22px;
            background: #fff;
            color: var(--color-text-body);
            border: 1px solid var(--border);
            box-shadow: var(--card-shadow);
            padding: 26px;
        }

        .cta h4 {
            color: var(--color-text-body);
            font-size: clamp(21px, 3vw, 31px);
            letter-spacing: -.025em;
        }

        .cta a {
            background: var(--primary);
            color: #fff;
        }

        .logo-grid a {
            border-color: var(--border);
            border-radius: 18px;
            min-height: 96px;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .disclaimer-section {
            padding: 44px 0;
        }

        .disclaimer-card {
            border: 1px solid #f3c6ad;
            border-left: 6px solid var(--primary);
            border-radius: 22px;
            box-shadow: var(--card-shadow);
        }

        .disclaimer-card h3 {
            color: var(--color-text-nav);
        }

        .disclaimer-card p {
            color: var(--color-text-nav);
        }

        .footer {
            background: var(--cream-gradient);
            color: var(--color-text-body);
            padding: 28px 0 16px;
        }

        .footer h5 {
            color: var(--color-text-body);
            letter-spacing: .03em;
            text-transform: uppercase;
        }

        .footer p,
        .footer a {
            color: var(--color-text-body-lt);
            line-height: 1.5;
            transition: color .2s ease;
        }

        .footer a:hover {
            color: var(--color-brand);
        }

        .copyright {
            border-top-color: rgba(196, 122, 30, .22);
            color: var(--color-text-muted);
            margin-top: 16px;
            padding-top: 12px;
        }

        @media (max-width: 1200px) {
            .top-nav-inner {
                justify-content: center;
            }

            .menu {
                justify-content: center;
                width: 100%;
                order: 3;
            }

            .login-btns {
                justify-content: center;
                width: 100%;
            }
        }

        @media (max-width: 1024px) {
            .menu {
                display: none;
            }

            .stats-wrap, .app-panel {
                grid-template-columns: 1fr;
            }

            .service-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .scheme-cards {
                grid-template-columns: 1fr 1fr;
            }

            .logo-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-content {
                padding: 70px 0 60px;
                grid-template-columns: 1fr;
                gap: 40px;
                align-items: center;
            }

            .hero-cm-profile {
                min-height: auto;
            }

            .hero-cm-photo {
                min-height: 320px;
                max-height: 380px;
                transform: scale(1.03);
            }

            .hero-bottom-strip-inner {
                padding: 10px 0;
            }

            .hero-bottom-tagline {
                font-size: 14px;
                line-height: 1.55;
            }

            .hero-dots {
                bottom: 50px;
            }

            .stat-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .orange-strip h3 {
                font-size: 24px;
            }

            .title-row h2 {
                font-size: 28px;
            }

            .app-panel {
                padding: 26px;
            }

                .app-panel h3 {
                    font-size: 25px;
                }
        }

        @media (max-width: 640px) {
            .utility-inner {
                justify-content: center;
            }

            .utility-left, .utility-right {
                justify-content: center;
            }

            .top-nav-inner {
                flex-wrap: wrap;
            }

            .login-btns {
                width: 100%;
                justify-content: center;
            }

                .login-btns a {
                    flex: 1 1 140px;
                    text-align: center;
                }

            .hero {
                min-height: 430px;
            }

            .hero-content {
                padding-top: 86px;
            }

            .hero h1 {
                line-height: 1.2;
            }

            .hero p {
                font-size: 16px;
            }

            .service-grid, .scheme-cards, .logo-grid, .footer-grid {
                grid-template-columns: 1fr;
            }

            .stat-grid {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }

            .cta .inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta h4 {
                font-size: 20px;
            }

            .section {
                padding: 40px 0;
            }

            .orange-strip {
                padding: 18px 0;
            }

                .orange-strip-tagline {
                    font-size: 14px;
                    line-height: 1.55;
                }

            .app-panel {
                padding: 18px;
                border-radius: 10px;
            }

                .app-panel img {
                    max-width: 250px;
                    margin: 6px auto 0;
                }

            .footer {
                padding-top: 24px;
            }
        }

        @media (max-width: 420px) {
            .container {
                width: 94%;
            }

            .hero .hero-content,
            .hero .hero-bottom-strip-inner {
                width: 98%;
                padding-left: 8px;
                padding-right: 8px;
            }

            .hero {
                min-height: 390px;
            }

            .hero-content {
                padding-top: 74px;
            }

            .hero h1 {
                font-size: clamp(24px, 8vw, 30px);
            }

            .hero-kicker {
                font-size: 11px;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .scheme-toolbar {
                padding: 8px;
                gap: 8px;
            }

            .scheme-tab {
                min-width: 165px;
                font-size: 13px;
                padding: 10px;
            }

            .stat-box h4 {
                margin: 0 0 5px;
                font-size: 28px;
                color: var(--color-text-body);
                font-weight: 700;
            }

            .app-panel h3 {
                font-size: 21px;
            }

            .cta h4 {
                font-size: 14px;
            }
        }

        .active {
            color: var(--primary) !important;
            font-weight: bold;
        }

        @media (max-width: 1024px) {
            .stat-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 767px) {
            .hero {
                min-height: auto;
            }

            .home-top-strip-inner {
                padding: 10px 0;
            }

            .home-top-tagline {
                font-size: 14px;
                line-height: 1.55;
            }

            .hero-content {
                padding: 0px 0 0px;
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hero-cm-photo {
                min-height: 280px;
                max-height: 340px;
                transform: scale(1.02);
            }

            .hero-cm-message {
                align-items: center;
                padding: 12px 4px;
                text-align: center;
            }

            .hero-cm-message-label,
            .hero-cm-quote {
                align-self: center;
                text-align: left;
            }

            .hero-cm-quote {
                max-width: 100%;
            }

            .hero-cm-signature {
                text-align: center;
            }

            .hero-form-card {
                padding: 18px;
            }

            .service-grid,
            .scheme-cards,
            .stat-grid {
                grid-template-columns: 1fr;
            }

            .stat-grid {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
                flex-wrap: initial;
            }

            .stat-box {
                padding: 22px 18px;
            }

            .stat-box h4 {
                color: #fff;
            }

            .cta .inner {
                align-items: stretch;
            }

            .cta h4 {
                font-size: clamp(20px, 6vw, 26px);
            }

            .app-panel h3 {
                font-size: clamp(24px, 7vw, 32px);
            }

            .fab-contact {
                width: 44px;
                height: 44px;
                bottom: 16px;
                right: 16px;
            }

            .fab-contact svg {
                width: 18px;
                height: 18px;
            }
        }


/* ===== Departments page ===== */
.depts-page {
            --dep-primary: var(--color-brand);
            --dep-primary-dark: var(--color-brand);
            --dep-text: var(--color-text-body);
            --dep-muted: var(--color-text-muted);
            --dep-border: var(--color-border-light);
            margin: -26px 0 -26px;
            background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #f1f5f9 100%);
        }

        .depts-hero {
            position: relative;
            overflow: hidden;
            padding: 64px 0 56px;
            color: #fff;
            background: linear-gradient(135deg, var(--color-text-body), var(--color-text-nav), var(--color-brand));
        }

            .depts-hero::before {
                content: "";
                position: absolute;
                inset: 0;
                opacity: .18;
                background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
                background-size: 54px 54px;
                mask-image: linear-gradient(90deg, #000, transparent 85%);
                pointer-events: none;
            }

            .depts-hero::after {
                content: "";
                position: absolute;
                top: -120px;
                right: -120px;
                width: 480px;
                height: 480px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(196, 122, 30, .28), transparent 65%);
                filter: blur(40px);
                pointer-events: none;
            }

            .depts-hero .container {
                position: relative;
                z-index: 1;
            }

        .depts-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13.5px;
            color: rgba(255, 255, 255, .65);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

            .depts-breadcrumb a {
                color: rgba(255, 255, 255, .85);
                text-decoration: none;
                transition: color .2s ease;
            }

                .depts-breadcrumb a:hover {
                    color: #fff;
                }

            .depts-breadcrumb .crumb-sep {
                opacity: .55;
            }

            .depts-breadcrumb .crumb-current {
                color: #fff;
                font-weight: 600;
            }

        .depts-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            padding: 7px 14px;
            border: 1px solid rgba(255, 255, 255, .18);
            background: rgba(255, 255, 255, .08);
            border-radius: 999px;
            color: rgba(255, 255, 255, .92);
            font-size: 12.5px;
            font-weight: 600;
            backdrop-filter: blur(8px);
        }

        .depts-hero h1 {
            max-width: 780px;
            margin: 0 0 12px;
            color: #fff;
            font-size: clamp(28px, 4vw, 44px);
            line-height: 1.08;
            font-weight: 800;
            letter-spacing: -.03em;
        }

        .depts-hero p {
            max-width: 720px;
            margin: 0;
            color: rgba(255, 255, 255, .78);
            font-size: 16.5px;
            line-height: 1.7;
        }

        .depts-content {
            padding: 36px 0 60px;
        }

        .depts-toolbar {
            display: flex;
            gap: 14px;
            margin-bottom: 26px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .depts-search {
            position: relative;
            flex: 1 1 360px;
            max-width: 480px;
        }

            .depts-search i {
                position: absolute;
                top: 50%;
                left: 14px;
                transform: translateY(-50%);
                color: #94a3b8;
                font-size: 14px;
                pointer-events: none;
            }

            .depts-search input {
                width: 100%;
                padding: 12px 16px 12px 40px;
                border: 1.5px solid var(--dep-border);
                background: #fff;
                border-radius: 12px;
                font-size: 14.5px;
                color: var(--dep-text);
                font-family: inherit;
                transition: border-color .2s ease, box-shadow .2s ease;
            }

                .depts-search input:focus {
                    outline: none;
                    border-color: #818cf8;
                    box-shadow: 0 0 0 4px rgba(196, 122, 30, .15);
                }

                .depts-search input::placeholder {
                    color: #94a3b8;
                }

        .depts-count {
            font-size: 13.5px;
            color: var(--dep-muted);
            font-weight: 600;
        }

            .depts-count strong {
                color: var(--dep-primary-dark);
                font-weight: 800;
            }

        .depts-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .dept-card {
            background: #fff;
            border: 1px solid var(--dep-border);
            border-radius: 22px;
            padding: 24px;
            box-shadow: 0 10px 30px var(--color-shadow);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

            .dept-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 22px 44px var(--color-shadow);
                border-color: #f3c6ad;
            }

        .dept-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 14px;
            font-size: 26px;
            background: linear-gradient(135deg, #fff7ed, #ffedd5);
            color: var(--dep-primary-dark);
            box-shadow: 0 10px 22px rgba(196, 122, 30, .12);
            margin-bottom: 14px;
        }

        .dept-card h3 {
            margin: 0 0 4px;
            color: var(--dep-text);
            font-size: 16.5px;
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -.02em;
        }

        .dept-card .dept-head {
            margin: 0 0 14px;
            color: var(--dep-muted);
            font-size: 12.5px;
            font-weight: 600;
        }

        .dept-card-footer {
            margin-top: auto;
            padding-top: 14px;
            border-top: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .dept-meta {
            color: var(--dep-muted);
            font-size: 12.5px;
            font-weight: 600;
        }

        .dept-view {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--dep-primary-dark);
            font-weight: 700;
            font-size: 12.5px;
        }

            .dept-view i {
                transition: transform .2s ease;
            }

        .dept-card:hover .dept-view i {
            transform: translateX(3px);
        }

        .depts-no-results {
            text-align: center;
            padding: 60px 20px;
            color: var(--dep-muted);
        }

            .depts-no-results i {
                font-size: 40px;
                color: #cbd5e1;
                margin-bottom: 12px;
            }

            .depts-no-results p {
                font-size: 16px;
                margin: 0;
            }

        .depts-hidden {
            display: none !important;
        }

        /* Modal */
        .dept-modal {
            position: fixed;
            inset: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

            .dept-modal.depts-hidden {
                display: none !important;
            }

        .dept-modal-overlay {
            position: absolute;
            inset: 0;
            background: var(--color-shadow);
            backdrop-filter: blur(2px);
        }

        .dept-modal-card {
            position: relative;
            z-index: 1;
            background: #fff;
            border-radius: 22px;
            box-shadow: 0 40px 80px var(--color-shadow);
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            animation: modalIn .25s ease;
        }

        @keyframes modalIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(.98);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .dept-modal-head {
            position: sticky;
            top: 0;
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border-bottom: 1px solid var(--dep-border);
            padding: 22px;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
        }

        .dept-modal-head-left {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
        }

            .dept-modal-head-left .dept-icon {
                margin: 0;
                width: 52px;
                height: 52px;
                font-size: 24px;
                flex-shrink: 0;
            }

            .dept-modal-head-left h3 {
                margin: 0;
                color: var(--dep-text);
                font-size: 18px;
                font-weight: 800;
                letter-spacing: -.02em;
            }

            .dept-modal-head-left p {
                margin: 2px 0 0;
                color: var(--dep-muted);
                font-size: 13px;
                font-weight: 600;
            }

        .dept-modal-close {
            border: 0;
            background: rgba(255, 255, 255, .8);
            color: var(--dep-text);
            width: 36px;
            height: 36px;
            border-radius: 10px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all .2s ease;
            flex-shrink: 0;
        }

            .dept-modal-close:hover {
                background: #fff;
                color: var(--dep-primary-dark);
                transform: rotate(90deg);
            }

        .dept-modal-body {
            padding: 22px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .dept-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            background: #f8fafc;
            border: 1px solid var(--dep-border);
            border-radius: 14px;
            padding: 16px;
        }

            .dept-info-grid .label {
                font-size: 11.5px;
                color: var(--dep-muted);
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: .05em;
                margin: 0 0 4px;
            }

            .dept-info-grid .value {
                margin: 0;
                color: var(--dep-text);
                font-size: 13.5px;
                font-weight: 600;
                line-height: 1.4;
            }

        .dept-section-title {
            font-size: 13.5px;
            font-weight: 800;
            color: var(--dep-text);
            margin: 0 0 8px;
        }

        .dept-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
        }

        .dept-tag {
            font-size: 12px;
            background: #fff;
            color: var(--color-brand);
            border: 1px solid #f3c6ad;
            padding: 5px 11px;
            border-radius: 999px;
            font-weight: 600;
        }

        .dept-subdept-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .dept-subdept-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 12px;
            background: #f8fafc;
            border: 1px solid var(--dep-border);
            border-radius: 10px;
            font-size: 13.5px;
            color: var(--dep-text);
            font-weight: 600;
        }

            .dept-subdept-item i {
                color: var(--dep-primary);
                font-size: 12px;
            }

        .dept-modal-cta {
            display: block;
            background: linear-gradient(135deg, var(--color-brand), var(--color-brand));
            color: #fff;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            text-align: center;
            text-decoration: none;
            box-shadow: 0 14px 28px rgba(196, 122, 30, .35);
            transition: transform .2s ease, box-shadow .2s ease;
        }

            .dept-modal-cta:hover {
                color: #fff;
                transform: translateY(-2px);
                box-shadow: 0 18px 36px rgba(196, 122, 30, .45);
            }

        @media (max-width: 992px) {
            .depts-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .depts-hero {
                padding: 52px 0 44px;
            }
        }

        @media (max-width: 640px) {
            .depts-grid {
                grid-template-columns: 1fr;
            }

            .dept-card {
                padding: 20px;
            }

            .depts-hero p {
                font-size: 15px;
            }

            .dept-info-grid {
                grid-template-columns: 1fr;
            }

            .dept-modal-head {
                padding: 18px;
            }

            .dept-modal-body {
                padding: 18px;
            }

            .depts-toolbar {
                flex-direction: column;
                align-items: stretch;
            }

            .depts-search {
                max-width: 100%;
            }
        }


/* ===== Schemes page ===== */
.schemes-page {
            --sch-primary: var(--color-brand);
            --sch-primary-dark: var(--color-brand);
            --sch-text: var(--color-text-body);
            --sch-muted: var(--color-text-muted);
            --sch-border: var(--color-border-light);
            margin: -26px 0 -26px;
            background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #f1f5f9 100%);
        }

        .schemes-hero {
            position: relative;
            overflow: hidden;
            padding: 64px 0 56px;
            color: #fff;
            background: linear-gradient(135deg, var(--color-text-body), var(--color-text-nav), var(--color-brand));
        }

            .schemes-hero::before {
                content: "";
                position: absolute;
                inset: 0;
                opacity: .18;
                background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
                background-size: 54px 54px;
                mask-image: linear-gradient(90deg, #000, transparent 85%);
                pointer-events: none;
            }

            .schemes-hero::after {
                content: "";
                position: absolute;
                top: -120px;
                right: -120px;
                width: 480px;
                height: 480px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(196, 122, 30, .28), transparent 65%);
                filter: blur(40px);
                pointer-events: none;
            }

            .schemes-hero .container {
                position: relative;
                z-index: 1;
            }

        .schemes-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13.5px;
            color: rgba(255, 255, 255, .65);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

            .schemes-breadcrumb a {
                color: rgba(255, 255, 255, .85);
                text-decoration: none;
                transition: color .2s ease;
            }

                .schemes-breadcrumb a:hover {
                    color: #fff;
                }

            .schemes-breadcrumb .crumb-sep {
                opacity: .55;
            }

            .schemes-breadcrumb .crumb-current {
                color: #fff;
                font-weight: 600;
            }

        .schemes-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            padding: 7px 14px;
            border: 1px solid rgba(255, 255, 255, .18);
            background: rgba(255, 255, 255, .08);
            border-radius: 999px;
            color: rgba(255, 255, 255, .92);
            font-size: 12.5px;
            font-weight: 600;
            backdrop-filter: blur(8px);
            text-transform: none;
            letter-spacing: 0;
        }

        .schemes-hero h1 {
            max-width: 780px;
            margin: 0 0 12px;
            color: #fff;
            font-size: clamp(28px, 4vw, 44px);
            line-height: 1.08;
            font-weight: 800;
            letter-spacing: -.03em;
        }

        .schemes-hero p {
            max-width: 720px;
            margin: 0;
            color: rgba(255, 255, 255, .78);
            font-size: 16.5px;
            line-height: 1.7;
        }

        .schemes-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 22px;
        }

            .schemes-hero-actions a,
            .schemes-hero-actions span {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 10px 16px;
                border-radius: 999px;
                color: #fff;
                background: rgba(255, 255, 255, .10);
                border: 1px solid rgba(255, 255, 255, .25);
                font-weight: 600;
                font-size: 13.5px;
                text-decoration: none;
                backdrop-filter: blur(8px);
                transition: all .2s ease;
            }

                .schemes-hero-actions a:hover {
                    background: rgba(255, 255, 255, .20);
                    transform: translateY(-1px);
                }

        .schemes-content {
            padding: 36px 0 60px;
        }

        .schemes-toolbar {
            display: flex;
            gap: 14px;
            margin-bottom: 26px;
            flex-wrap: wrap;
            align-items: center;
        }

        .schemes-search {
            position: relative;
            flex: 1 1 280px;
            min-width: 220px;
        }

            .schemes-search i {
                position: absolute;
                top: 50%;
                left: 14px;
                transform: translateY(-50%);
                color: #94a3b8;
                font-size: 14px;
                pointer-events: none;
            }

            .schemes-search input {
                width: 100%;
                padding: 12px 16px 12px 40px;
                border: 1.5px solid var(--sch-border);
                background: #fff;
                border-radius: 12px;
                font-size: 14.5px;
                color: var(--sch-text);
                font-family: inherit;
                transition: border-color .2s ease, box-shadow .2s ease;
            }

                .schemes-search input:focus {
                    outline: none;
                    border-color: #818cf8;
                    box-shadow: 0 0 0 4px rgba(196, 122, 30, .15);
                }

                .schemes-search input::placeholder {
                    color: #94a3b8;
                }

        .schemes-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .filter-btn {
            padding: 9px 16px;
            border: 1.5px solid var(--sch-border);
            background: #fff;
            color: var(--sch-muted);
            border-radius: 12px;
            font-weight: 600;
            font-size: 13.5px;
            cursor: pointer;
            transition: all .2s ease;
            font-family: inherit;
            white-space: nowrap;
        }

            .filter-btn:hover {
                border-color: #f3c6ad;
                color: var(--sch-primary-dark);
            }

            .filter-btn.active {
                background: var(--sch-primary);
                border-color: var(--sch-primary);
                color: #fff !important;
                box-shadow: 0 8px 18px rgba(196, 122, 30, .25);
            }

        .schemes-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .scheme-card {
            background: #fff;
            border: 1px solid var(--sch-border);
            border-radius: 22px;
            padding: 26px;
            box-shadow: 0 10px 30px var(--color-shadow);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
            display: flex;
            flex-direction: column;
            min-height: 240px;
        }

            .scheme-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 22px 44px var(--color-shadow);
                border-color: #f3c6ad;
            }

        .scheme-card-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 16px;
        }

        .scheme-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            font-size: 22px;
            background: #fff;
            color: var(--color-brand);
            box-shadow: 0 10px 22px var(--color-shadow);
            flex-shrink: 0;
        }

        .scheme-tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .04em;
            border: 1px solid transparent;
            white-space: nowrap;
        }

        .scheme-card[data-category="housing"] .scheme-icon {
            background: #fff;
            color: #d97706;
        }

        .scheme-card[data-category="housing"] .scheme-tag {
            background: #fffbeb;
            color: #b45309;
            border-color: #fde68a;
        }

        .scheme-card[data-category="women"] .scheme-icon {
            background: #fce7f3;
            color: #db2777;
        }

        .scheme-card[data-category="women"] .scheme-tag {
            background: #fdf2f8;
            color: #be185d;
            border-color: #fbcfe8;
        }

        .scheme-card[data-category="agriculture"] .scheme-icon {
            background: #dcfce7;
            color: #16a34a;
        }

        .scheme-card[data-category="agriculture"] .scheme-tag {
            background: #f0fdf4;
            color: #15803d;
            border-color: #bbf7d0;
        }

        .scheme-card[data-category="employment"] .scheme-icon {
            background: #f3e8ff;
            color: #9333ea;
        }

        .scheme-card[data-category="employment"] .scheme-tag {
            background: #fffaf7;
            color: #7e22ce;
            border-color: #e9d5ff;
        }

        .scheme-card[data-category="education"] .scheme-icon {
            background: #fff;
            color: #2563eb;
        }

        .scheme-card[data-category="education"] .scheme-tag {
            background: #eff6ff;
            color: #1d4ed8;
            border-color: #bfdbfe;
        }

        .scheme-card[data-category="financial"] .scheme-icon {
            background: #fff;
            color: var(--color-brand);
        }

        .scheme-card[data-category="financial"] .scheme-tag {
            background: #fff;
            color: var(--color-brand);
            border-color: #f3c6ad;
        }

        .scheme-card h3 {
            margin: 0 0 10px;
            color: var(--sch-text);
            font-size: 17px;
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -.02em;
        }

        .scheme-card p {
            margin: 0;
            color: var(--sch-muted);
            font-size: 14px;
            line-height: 1.65;
            flex: 1;
        }

        .schemes-no-results {
            text-align: center;
            padding: 60px 20px;
            color: var(--sch-muted);
        }

            .schemes-no-results i {
                font-size: 40px;
                color: #cbd5e1;
                margin-bottom: 12px;
            }

            .schemes-no-results p {
                font-size: 16px;
                margin: 0;
            }

        .schemes-hidden {
            display: none !important;
        }

        .scheme-note {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-top: 26px;
            padding: 24px;
            background: #fff;
            border: 1px solid var(--sch-border);
            border-left: 5px solid var(--sch-primary);
            border-radius: 22px;
            box-shadow: 0 10px 30px var(--color-shadow);
        }

            .scheme-note i {
                margin-top: 4px;
                color: var(--sch-primary);
                font-size: 22px;
            }

            .scheme-note strong {
                display: block;
                margin-bottom: 6px;
                color: var(--sch-text);
                font-weight: 800;
            }

            .scheme-note span {
                color: var(--sch-muted);
                line-height: 1.65;
            }

        @media (max-width: 992px) {
            .schemes-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .schemes-hero {
                padding: 52px 0 44px;
            }
        }

        @media (max-width: 640px) {
            .schemes-grid {
                grid-template-columns: 1fr;
            }

            .scheme-card,
            .scheme-note {
                padding: 20px;
            }

            .schemes-hero p {
                font-size: 15px;
            }

            .schemes-toolbar {
                flex-direction: column;
                align-items: stretch;
            }

            .schemes-search {
                flex: 1 1 100%;
            }

            .schemes-filters {
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 4px;
            }
        }


/* ===== Request call page ===== */
.cmhp-callme-page {
            --cmhp-primary: var(--color-brand);
            --cmhp-primary-dark: var(--color-brand);
            --cmhp-text: var(--color-text-body);
            --cmhp-muted: var(--color-text-muted);
            --cmhp-border: var(--color-border-light);
            margin: -26px 0 -26px;
            padding: 56px 0 64px;
            background: linear-gradient(180deg, #ffffff 0%, #ffffff 55%, #f1f5f9 100%);
            min-height: 80vh;
        }

        .cmhp-callme-page .cmhp-form-card {
            position: relative;
            border: 1px solid var(--cmhp-border) !important;
            border-radius: 22px !important;
            background: #fff;
            box-shadow: 0 30px 60px var(--color-shadow), 0 8px 18px var(--color-shadow) !important;
        }

            .cmhp-callme-page .cmhp-form-card::before {
                content: "";
                display: block;
                height: 6px;
                background: linear-gradient(90deg, var(--color-brand), var(--color-brand), var(--color-brand));
            }

            .cmhp-callme-page .cmhp-form-card .card-body {
                padding: 40px !important;
            }

        .cmhp-callme-page .cmhp-form-title {
            color: var(--cmhp-text);
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 800;
            letter-spacing: -.025em;
            line-height: 1.2;
        }

        .cmhp-callme-page .cmhp-call-instruction {
            color: var(--cmhp-muted) !important;
            font-size: 14.5px;
            line-height: 1.65;
            margin: 0 auto 28px !important;
            max-width: 620px;
        }

        .cmhp-callme-page .form-label {
            color: var(--color-text-nav);
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 8px;
        }

            .cmhp-callme-page .form-label .text-danger {
                color: #ef4444 !important;
                font-weight: 700;
            }

        .cmhp-callme-page .form-control {
            background: #f8fafc;
            border: 1.5px solid var(--cmhp-border);
            border-radius: 12px;
            color: var(--cmhp-text);
            font-size: 15px;
            padding: 13px 16px;
            transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        }

            .cmhp-callme-page .form-control::placeholder {
                color: #94a3b8;
            }

            .cmhp-callme-page .form-control:focus {
                background: #fff;
                border-color: #818cf8;
                box-shadow: 0 0 0 4px rgba(196, 122, 30, .15);
                outline: none;
            }

            .cmhp-callme-page .form-control.is-invalid {
                border-color: #ef4444;
            }

                .cmhp-callme-page .form-control.is-invalid:focus {
                    box-shadow: 0 0 0 4px rgba(239, 68, 68, .15);
                }

        .cmhp-callme-page .invalid-feedback {
            font-size: 13px;
            color: #dc2626;
            margin-top: 6px;
            font-weight: 500;
        }

        .cmhp-callme-page .d-flex.gap-4 {
            gap: 12px !important;
            flex-wrap: wrap;
        }

        .cmhp-callme-page .d-flex.gap-4 .form-check {
            flex: 1 1 180px;
            padding: 14px 16px;
            border: 1.5px solid var(--cmhp-border);
            border-radius: 12px;
            background: #f8fafc;
            margin: 0;
            transition: all .2s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .cmhp-callme-page .d-flex.gap-4 .form-check:has(.form-check-input:checked) {
                border-color: var(--cmhp-primary);
                background: #fff;
                box-shadow: 0 8px 18px rgba(196, 122, 30, .12);
            }

        .cmhp-callme-page .form-check-input[type="radio"] {
            width: 18px;
            height: 18px;
            margin: 0;
            border: 2px solid #cbd5e1;
            background: #fff;
            appearance: none;
            -webkit-appearance: none;
            border-radius: 50%;
            position: relative;
            cursor: pointer;
            transition: border-color .2s ease;
            flex-shrink: 0;
        }

            .cmhp-callme-page .form-check-input[type="radio"]:checked {
                border-color: var(--cmhp-primary);
            }

                .cmhp-callme-page .form-check-input[type="radio"]:checked::after {
                    content: "";
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 9px;
                    height: 9px;
                    border-radius: 50%;
                    background: var(--cmhp-primary);
                }

            .cmhp-callme-page .form-check-input[type="radio"]:focus {
                box-shadow: 0 0 0 4px rgba(196, 122, 30, .15);
                outline: none;
            }

        .cmhp-callme-page .d-flex.gap-4 .form-check-label {
            color: var(--cmhp-text);
            font-weight: 600;
            cursor: pointer;
            padding: 0;
            font-size: 14.5px;
        }

        .cmhp-callme-page ol {
            counter-reset: cmhp-list;
            list-style: none;
            padding: 18px 18px 18px 18px;
            margin: 8px 0 0;
            background: linear-gradient(180deg, #fffbeb, #fef3c7);
            border: 1px solid #fde68a;
            border-radius: 16px;
        }

            .cmhp-callme-page ol li {
                counter-increment: cmhp-list;
                position: relative;
                padding: 8px 0 8px 40px;
                color: var(--color-text-nav);
                font-size: 14.5px;
                line-height: 1.55;
            }

                .cmhp-callme-page ol li::before {
                    content: counter(cmhp-list);
                    position: absolute;
                    left: 0;
                    top: 8px;
                    width: 28px;
                    height: 28px;
                    border-radius: 50%;
                    background: rgba(245, 158, 11, .18);
                    color: #b45309;
                    font-weight: 800;
                    font-size: 13px;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                }

        .cmhp-callme-page .form-check.mb-4 {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 14px 16px;
            border: 1.5px solid var(--cmhp-border);
            border-radius: 12px;
            background: #f8fafc;
            margin: 24px 0 28px !important;
        }

            .cmhp-callme-page .form-check.mb-4:has(.form-check-input:checked) {
                border-color: var(--cmhp-primary);
                background: #fff;
            }

        .cmhp-callme-page .form-check-input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin: 2px 0 0 0;
            border: 2px solid #cbd5e1;
            background: #fff;
            border-radius: 6px;
            appearance: none;
            -webkit-appearance: none;
            position: relative;
            cursor: pointer;
            transition: all .2s ease;
            flex-shrink: 0;
        }

            .cmhp-callme-page .form-check-input[type="checkbox"]:checked {
                background: var(--cmhp-primary);
                border-color: var(--cmhp-primary);
            }

                .cmhp-callme-page .form-check-input[type="checkbox"]:checked::after {
                    content: "";
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -55%) rotate(45deg);
                    width: 5px;
                    height: 10px;
                    border: solid #fff;
                    border-width: 0 2px 2px 0;
                }

            .cmhp-callme-page .form-check-input[type="checkbox"]:focus {
                box-shadow: 0 0 0 4px rgba(196, 122, 30, .15);
                outline: none;
            }

        .cmhp-callme-page .form-check.mb-4 .form-check-label {
            color: var(--cmhp-text);
            font-weight: 500;
            font-size: 14.5px;
            line-height: 1.6;
            cursor: pointer;
            padding-left: 0;
        }

        .cmhp-callme-page #btnSave {
            background: linear-gradient(135deg, var(--color-brand), var(--color-brand)) !important;
            border: 0 !important;
            color: #fff !important;
            font-weight: 700;
            padding: 14px 24px !important;
            border-radius: 14px !important;
            font-size: 16px;
            box-shadow: 0 14px 28px rgba(196, 122, 30, .35);
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
        }

            .cmhp-callme-page #btnSave:hover {
                transform: translateY(-2px);
                box-shadow: 0 18px 36px rgba(196, 122, 30, .45);
                background: linear-gradient(135deg, var(--color-brand), var(--color-brand)) !important;
            }

            .cmhp-callme-page #btnSave:active {
                transform: translateY(0);
                box-shadow: 0 10px 22px rgba(196, 122, 30, .35);
            }

            .cmhp-callme-page #btnSave i {
                color: #fff;
            }

        .cmhp-callme-page .alert {
            border-radius: 12px;
            border-width: 1px;
            font-size: 14px;
        }

        .cmhp-callme-page .alert-success {
            background: rgba(34, 197, 94, .10);
            border-color: rgba(34, 197, 94, .35);
            color: #166534;
        }

        .cmhp-callme-page .alert-danger {
            background: rgba(239, 68, 68, .10);
            border-color: rgba(239, 68, 68, .35);
            color: #991b1b;
        }

        .cmhp-callme-page .alert-dismissible .btn-close {
            padding: 14px;
        }

        .cmhp-callme-page .fw-semibold {
            color: var(--cmhp-text);
            font-weight: 700 !important;
        }

        @media (max-width: 768px) {
            .cmhp-callme-page {
                padding: 32px 0 40px;
            }

                .cmhp-callme-page .cmhp-form-card .card-body {
                    padding: 24px !important;
                }

                .cmhp-callme-page ol {
                    padding: 14px;
                }

                .cmhp-callme-page .d-flex.gap-4 .form-check {
                    flex: 1 1 100%;
                }
        }


/* ===== Contact page ===== */
.contact-page {
            --contact-primary: var(--color-brand);
            --contact-primary-dark: var(--color-brand);
            --contact-text: var(--color-text-body);
            --contact-muted: var(--color-text-muted);
            --contact-border: var(--color-border-light);
            margin: -26px 0 -26px;
            background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #f1f5f9 100%);
        }

        .contact-hero {
            position: relative;
            overflow: hidden;
            padding: 90px 0 72px;
            color: #fff;
            background: linear-gradient(135deg, var(--color-text-body), var(--color-text-nav), var(--color-brand));
        }

            .contact-hero::before {
                content: "";
                position: absolute;
                inset: 0;
                opacity: .18;
                background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
                background-size: 54px 54px;
                mask-image: linear-gradient(90deg, #000, transparent 85%);
                pointer-events: none;
            }

            .contact-hero::after {
                content: "";
                position: absolute;
                top: -120px;
                right: -120px;
                width: 480px;
                height: 480px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(196, 122, 30, .28), transparent 65%);
                filter: blur(40px);
                pointer-events: none;
            }

            .contact-hero .container {
                position: relative;
                z-index: 1;
            }

        .contact-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            padding: 7px 14px;
            border: 1px solid rgba(255, 255, 255, .18);
            background: rgba(255, 255, 255, .08);
            border-radius: 999px;
            color: rgba(255, 255, 255, .92);
            font-size: 12.5px;
            font-weight: 600;
            backdrop-filter: blur(8px);
            text-transform: none;
            letter-spacing: 0;
        }

            .contact-kicker::before {
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 999px;
                background: #22c55e;
                box-shadow: 0 0 0 4px rgba(34, 197, 94, .25);
            }

        .contact-hero h1 {
            max-width: 800px;
            margin: 0 0 14px;
            color: #fff;
            font-size: clamp(30px, 4.5vw, 52px);
            line-height: 1.06;
            letter-spacing: -.035em;
            font-weight: 800;
        }

        .contact-hero p {
            max-width: 680px;
            margin: 0;
            color: rgba(255, 255, 255, .78);
            font-size: 17px;
            line-height: 1.7;
        }

        .contact-content {
            padding: 60px 0 70px;
        }

        .contact-summary {
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 22px;
            align-items: stretch;
            margin-bottom: 24px;
        }

        .contact-panel,
        .contact-card,
        .contact-note {
            background: #fff;
            border: 1px solid var(--contact-border);
            border-radius: 22px;
            box-shadow: 0 10px 30px var(--color-shadow);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .contact-panel {
            padding: 32px;
        }

            .contact-panel h2,
            .contact-card h3 {
                margin: 0;
                color: var(--contact-text);
                font-weight: 800;
                letter-spacing: -.02em;
            }

            .contact-panel h2 {
                font-size: clamp(22px, 3vw, 28px);
                line-height: 1.25;
            }

            .contact-panel p {
                margin: 14px 0 0;
                color: var(--contact-muted);
                line-height: 1.75;
                font-size: 15.5px;
            }

        .helpline-box {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 32px;
            color: #fff;
            background: linear-gradient(135deg, var(--contact-primary), var(--contact-primary-dark));
            border-radius: 22px;
            box-shadow: 0 22px 44px rgba(196, 122, 30, .32);
        }

            .helpline-box::after {
                content: "";
                position: absolute;
                top: -70px;
                right: -70px;
                width: 220px;
                height: 220px;
                border-radius: 50%;
                background: rgba(255, 255, 255, .14);
            }

        .helpline-label {
            position: relative;
            font-size: 12.5px;
            font-weight: 700;
            color: rgba(255, 255, 255, .85);
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .helpline-number {
            position: relative;
            margin-top: 10px;
            font-size: clamp(46px, 7vw, 72px);
            line-height: 1;
            font-weight: 900;
            letter-spacing: -.03em;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .contact-card {
            min-height: 220px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            border-color: #f3d0bd;
            background: linear-gradient(180deg, #fff7ed, #fffaf7);
        }

            .contact-card:nth-child(2) {
                border-color: #99f6e4;
                background: linear-gradient(180deg, #f0fdfa, #ecfeff);
            }

            .contact-card:nth-child(3) {
                border-color: #bbf7d0;
                background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
            }

        .contact-card:hover,
        .contact-panel:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px var(--color-shadow);
        }

        .contact-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            margin-bottom: 18px;
            border-radius: 14px;
            color: var(--color-brand);
            background: rgba(255, 255, 255, .92);
            font-size: 22px;
            box-shadow: 0 10px 22px var(--color-shadow);
        }

            .contact-card:nth-child(2) .contact-icon {
                color: #0d9488;
            }

            .contact-card:nth-child(3) .contact-icon {
                color: #15803d;
            }

        .contact-card h3 {
            font-size: 18px;
            line-height: 1.35;
        }

        .contact-card p {
            margin: 12px 0 0;
            color: var(--contact-muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .contact-note {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-top: 24px;
            padding: 24px;
            border-left: 5px solid var(--contact-primary);
        }

            .contact-note i {
                margin-top: 4px;
                color: var(--contact-primary);
                font-size: 22px;
            }

            .contact-note strong {
                display: block;
                margin-bottom: 4px;
                color: var(--contact-text);
                font-weight: 800;
            }

            .contact-note span {
                color: var(--contact-muted);
                line-height: 1.65;
            }

        @media (max-width: 992px) {
            .contact-summary,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-hero {
                padding: 64px 0 50px;
            }
        }

        @media (max-width: 576px) {
            .contact-panel,
            .helpline-box,
            .contact-card,
            .contact-note {
                padding: 22px;
            }

            .contact-hero p {
                font-size: 16px;
            }
        }


/* ===== About page ===== */
.about-page {
            --about-primary: var(--color-brand);
            --about-primary-dark: var(--color-brand);
            --about-text: var(--color-text-body);
            --about-muted: var(--color-text-muted);
            --about-border: var(--color-border-light);
            margin: -26px 0 -26px;
            background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #f1f5f9 100%);
        }

        .about-hero {
            position: relative;
            overflow: hidden;
            padding: 90px 0 72px;
            color: #fff;
            background: linear-gradient(135deg, var(--color-text-body), var(--color-text-nav), var(--color-brand));
        }

            .about-hero::before {
                content: "";
                position: absolute;
                inset: 0;
                opacity: .18;
                background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
                background-size: 54px 54px;
                mask-image: linear-gradient(90deg, #000, transparent 85%);
                pointer-events: none;
            }

            .about-hero::after {
                content: "";
                position: absolute;
                top: -120px;
                right: -120px;
                width: 480px;
                height: 480px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(196, 122, 30, .28), transparent 65%);
                filter: blur(40px);
                pointer-events: none;
            }

            .about-hero .container {
                position: relative;
                z-index: 1;
            }

        .about-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            padding: 7px 14px;
            border: 1px solid rgba(255, 255, 255, .18);
            background: rgba(255, 255, 255, .08);
            border-radius: 999px;
            color: rgba(255, 255, 255, .92);
            font-size: 12.5px;
            font-weight: 600;
            backdrop-filter: blur(8px);
            text-transform: none;
            letter-spacing: 0;
        }

            .about-kicker::before {
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 999px;
                background: #22c55e;
                box-shadow: 0 0 0 4px rgba(34, 197, 94, .25);
            }

        .about-hero h1 {
            max-width: 820px;
            margin: 0 0 14px;
            color: #fff;
            font-size: clamp(30px, 4.5vw, 52px);
            line-height: 1.06;
            letter-spacing: -.035em;
            font-weight: 800;
        }

        .about-hero p {
            max-width: 720px;
            margin: 0;
            color: rgba(255, 255, 255, .78);
            font-size: 17px;
            line-height: 1.7;
        }

        .about-content {
            padding: 60px 0 70px;
        }

        .about-intro {
            display: grid;
            grid-template-columns: 1.35fr .65fr;
            gap: 22px;
            margin-bottom: 24px;
        }

        .about-panel,
        .about-card,
        .about-note {
            background: #fff;
            border: 1px solid var(--about-border);
            border-radius: 22px;
            box-shadow: 0 10px 30px var(--color-shadow);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .about-highlight {
            border-radius: 22px;
        }

        .about-panel {
            padding: 32px;
        }

            .about-panel h2,
            .about-card h3 {
                margin: 0;
                color: var(--about-text);
                font-weight: 800;
                letter-spacing: -.02em;
            }

            .about-panel h2 {
                font-size: clamp(22px, 3vw, 28px);
                line-height: 1.25;
            }

            .about-panel p {
                margin: 14px 0 0;
                color: var(--about-muted);
                line-height: 1.75;
                font-size: 15.5px;
            }

        .about-highlight {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 32px;
            color: #fff;
            background: linear-gradient(135deg, var(--about-primary), var(--about-primary-dark));
            box-shadow: 0 22px 44px rgba(196, 122, 30, .32);
        }

            .about-highlight::after {
                content: "";
                position: absolute;
                top: -70px;
                right: -70px;
                width: 220px;
                height: 220px;
                border-radius: 50%;
                background: rgba(255, 255, 255, .14);
            }

            .about-highlight span {
                position: relative;
                color: rgba(255, 255, 255, .85);
                font-size: 12.5px;
                font-weight: 700;
                letter-spacing: .08em;
                text-transform: uppercase;
            }

            .about-highlight strong {
                position: relative;
                margin-top: 10px;
                font-size: clamp(42px, 6vw, 64px);
                line-height: 1;
                font-weight: 900;
                letter-spacing: -.03em;
            }

            .about-highlight small {
                position: relative;
                margin-top: 14px;
                color: rgba(255, 255, 255, .78);
                font-size: 14px;
                line-height: 1.55;
            }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .about-card {
            min-height: 240px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            border-color: #f3d0bd;
            background: linear-gradient(180deg, #fff7ed, #fffaf7);
        }

            .about-card:nth-child(2) {
                border-color: #99f6e4;
                background: linear-gradient(180deg, #f0fdfa, #ecfeff);
            }

            .about-card:nth-child(3) {
                border-color: #bbf7d0;
                background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
            }

        .about-card:hover,
        .about-panel:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px var(--color-shadow);
        }

        .about-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            margin-bottom: 18px;
            border-radius: 14px;
            color: var(--color-brand);
            background: rgba(255, 255, 255, .92);
            font-size: 22px;
            box-shadow: 0 10px 22px var(--color-shadow);
        }

            .about-card:nth-child(2) .about-icon {
                color: #0d9488;
            }

            .about-card:nth-child(3) .about-icon {
                color: #15803d;
            }

        .about-card h3 {
            font-size: 18px;
            line-height: 1.35;
        }

        .about-card p {
            margin: 12px 0 0;
            color: var(--about-muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .about-note {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-top: 24px;
            padding: 24px;
            border-left: 5px solid var(--about-primary);
        }

            .about-note i {
                margin-top: 4px;
                color: var(--about-primary);
                font-size: 22px;
            }

            .about-note strong {
                display: block;
                margin-bottom: 4px;
                color: var(--about-text);
                font-weight: 800;
            }

            .about-note span {
                color: var(--about-muted);
                line-height: 1.65;
            }

        @media (max-width: 992px) {
            .about-intro,
            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-hero {
                padding: 64px 0 50px;
            }
        }

        @media (max-width: 576px) {
            .about-panel,
            .about-highlight,
            .about-card,
            .about-note {
                padding: 22px;
            }

            .about-hero p {
                font-size: 16px;
            }
        }


/* ===== Privacy page ===== */
.privacy-page {
    background:
        radial-gradient(circle at 8% 12%, rgba(196, 122, 30, .12), transparent 28%),
        radial-gradient(circle at 92% 4%, rgba(20, 184, 166, .12), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 46%, #f8fafc 100%);
}

.privacy-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 58px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(60, 22, 0, .92), rgba(92, 46, 10, .88), rgba(196, 122, 30, .78)),
        url('/images2/slide-new-1.jpg') center/cover no-repeat;
}

.privacy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 46px 46px;
}

.privacy-hero::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -145px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
    box-shadow: -150px -50px 0 rgba(255, 255, 255, .07);
}

.privacy-hero .container {
    position: relative;
    z-index: 1;
}

.privacy-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 15px;
    border: 1px solid rgba(199, 210, 254, .5);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: var(--color-bg-card);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.privacy-hero h1 {
    max-width: 760px;
    margin: 0 0 14px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -.04em;
}

.privacy-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(199, 210, 254, .38);
    border-radius: 999px;
    color: var(--color-bg-card);
    background: var(--color-shadow);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.privacy-content {
    padding: 50px 0 70px;
}

.privacy-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.privacy-card {
    overflow: hidden;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}

.privacy-body {
    padding: 34px;
    line-height: 1.75;
    color: var(--color-text-nav);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .92)),
        radial-gradient(circle at top right, rgba(196, 122, 30, .08), transparent 32%);
}

.privacy-body h2 {
    position: relative;
    margin: 30px 0 14px;
    padding-left: 18px;
    color: var(--color-text-body);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.privacy-body h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--color-brand), #14b8a6);
}

.privacy-body h2:first-child {
    margin-top: 0;
}

.privacy-body p,
.privacy-body li {
    font-size: 15px;
}

.privacy-body p {
    margin-bottom: 14px;
    padding: 15px 17px;
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: 14px;
    box-shadow: 0 8px 20px var(--color-shadow);
}

.privacy-body ul {
    margin-bottom: 16px;
    padding: 16px 18px 16px 38px;
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: 14px;
    box-shadow: 0 8px 20px var(--color-shadow);
}

.privacy-body li {
    margin-bottom: 8px;
    color: var(--color-text-nav);
}

.privacy-body li:last-child {
    margin-bottom: 0;
}

.privacy-body li::marker {
    color: var(--primary);
}

.privacy-footer {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 20px 24px;
    border-top: 1px solid #dbe4f0;
    background: linear-gradient(135deg, #ffffff, #f0fdfa);
    color: var(--color-text-nav);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.privacy-footer i {
    margin-top: 3px;
    color: var(--primary);
    font-size: 20px;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 54px 0 38px;
    }

    .privacy-meta {
        align-items: flex-start;
        border-radius: 18px;
    }

    .privacy-content {
        padding: 32px 0 48px;
    }

    .privacy-body {
        padding: 20px;
    }

    .privacy-body h2 {
        font-size: 18px;
    }

    .privacy-body p,
    .privacy-body ul {
        padding: 14px;
    }

    .privacy-body ul {
        padding-left: 32px;
    }

    .privacy-footer {
        padding: 16px;
    }
}


/* ===== OTP disclaimer page ===== */
.otp-page {
            margin: -26px 0 -26px;
            background: linear-gradient(180deg, #ffffff 0%, #ffffff 45%, #f8f8f8 100%);
        }

        .otp-hero {
            position: relative;
            overflow: hidden;
            padding: 64px 0 42px;
            color: #fff;
            background:
                linear-gradient(90deg, rgba(18, 13, 11, .84), rgba(238, 139, 29, .76)),
                url('/images2/slide-new-1.jpg') center/cover no-repeat;
        }

        .otp-hero::after {
            content: "";
            position: absolute;
            right: -100px;
            bottom: -130px;
            width: 340px;
            height: 340px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .14);
        }

        .otp-hero .container {
            position: relative;
            z-index: 1;
        }

        .otp-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            padding: 7px 14px;
            border: 1px solid rgba(255, 255, 255, .6);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
        }

        .otp-hero h1 {
            max-width: 780px;
            margin: 0 0 12px;
            font-size: clamp(30px, 4vw, 48px);
            line-height: 1.1;
            font-weight: 800;
        }

        .otp-hero p {
            max-width: 720px;
            margin: 0;
            color: #fff4e8;
            font-size: 18px;
            line-height: 1.6;
        }

        .otp-content {
            padding: 42px 0 58px;
        }

        .otp-shell {
            display: grid;
            grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
            gap: 18px;
            align-items: start;
        }

        .otp-panel,
        .otp-form-card,
        .otp-note {
            background: #fff;
            border: 1px solid #efefef;
            border-radius: 14px;
            box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
        }

        .otp-panel,
        .otp-form-card {
            padding: 26px;
        }

        .otp-panel h2,
        .otp-form-card h2 {
            margin: 0;
            color: #1c1c1c;
            font-size: 24px;
            font-weight: 800;
        }

        .otp-panel p {
            margin: 10px 0 20px;
            color: var(--muted);
            line-height: 1.7;
        }

        .otp-disclaimer-list {
            margin: 0;
            padding-left: 20px;
            color: #333;
        }

        .otp-disclaimer-list li {
            margin-bottom: 12px;
            padding-left: 4px;
            line-height: 1.55;
        }

        .otp-disclaimer-list li::marker {
            color: var(--primary);
            font-weight: 800;
        }

        .otp-step-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 20px 0 24px;
        }

        .cmhp-step-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e7e7e7;
            border: 2px solid #fff;
            box-shadow: 0 0 0 1px #dedede;
        }

        .cmhp-step-dot.active {
            background: var(--primary);
            box-shadow: 0 0 0 4px #fff3e4;
        }

        .complaint-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            padding: 10px 14px;
            border-radius: 100px;
            color: var(--primary-dark);
            background: #fff3e4;
            font-weight: 700;
            font-size: 14px;
        }

        .agree-box {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-bottom: 18px;
            padding: 16px;
            border: 1px solid #f1dfc9;
            border-radius: 12px;
            background: #fffaf4;
        }

        .agree-box .form-check-input {
            margin-top: 4px;
            flex: 0 0 auto;
        }

        .form-control-lg {
            min-height: 52px;
            border-radius: 10px;
        }

        .otp-action-btn {
            min-height: 52px;
            border: 0;
            border-radius: 10px;
            background: var(--primary);
            font-weight: 800;
        }

        .otp-action-btn:hover {
            background: var(--primary-dark);
        }

        .otp-verify-btn {
            min-height: 52px;
            border: 0;
            border-radius: 10px;
            font-weight: 800;
        }

        .otp-note {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-top: 18px;
            padding: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
        }

        .otp-note i {
            margin-top: 3px;
            color: var(--primary);
            font-size: 20px;
        }

        .otp-note span {
            color: var(--muted);
            line-height: 1.6;
        }

        @media (max-width: 992px) {
            .otp-shell {
                grid-template-columns: 1fr;
            }

            .otp-hero {
                padding: 52px 0 34px;
            }
        }

        @media (max-width: 576px) {
            .otp-panel,
            .otp-form-card,
            .otp-note {
                padding: 18px;
            }

            .otp-hero p {
                font-size: 16px;
            }
        }

/* ===== Shared footer refinements ===== */
.footer .container {
    width: min(1600px, 98%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 0.85fr;
    gap: 20px 28px;
    align-items: start;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.45;
}

.footer h5 {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 2px;
}

.footer-links a,
.footer-brand p {
    margin-bottom: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.footer-links a:hover {
    color: var(--color-brand);
    transform: translateX(2px);
}

.footer .copyright {
    margin-top: 16px;
    padding-top: 12px;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 22px 0 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* ===== Officer login (public layout) ===== */
.home-shell:has(.officer-login-page) {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--public-utility-height, 40px));
    padding-top: 0;
}

.officer-login-page {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px 56px;
    overflow: hidden;
}

.officer-login-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images2/slide-new-1.jpg') center/cover no-repeat;
    z-index: 0;
}

.officer-login-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 78% 22%, rgba(196, 122, 30, .22), transparent 34%),
        linear-gradient(135deg, rgba(60, 22, 0, .92), rgba(92, 46, 10, .88), rgba(196, 122, 30, .72));
}

.officer-login-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.officer-login-card.form-card {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #e8e8e8 !important;
    background: #fff;
    box-shadow: 0 20px 48px var(--color-shadow);
    overflow: hidden;
}

.officer-login-card .logo-side {
    background: linear-gradient(180deg, #fff7ed, #ffedd5);
    padding: 24px 16px;
}

.officer-login-card .logo-side img {
    max-width: 88%;
}

.officer-login-title {
    color: var(--color-text-body);
    font-weight: 800;
}

.officer-login-sub,
.officer-login-page .hint {
    color: var(--color-text-muted) !important;
}

.officer-login-page .form-label {
    color: var(--color-text-nav);
    font-weight: 600;
}

.officer-login-page .form-control {
    border-color: #e8d4c8;
    color: var(--color-text-body);
}

.officer-login-page .form-control:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 .2rem rgba(196, 122, 30, .18);
}

.officer-login-page .form-check-input:checked {
    background-color: var(--color-brand) !important;
    border-color: var(--color-brand) !important;
}

.officer-login-link {
    color: var(--color-brand) !important;
    font-weight: 600;
}

.officer-login-link:hover {
    color: var(--color-text-nav) !important;
}

.officer-login-page .btn-gradient {
    background: linear-gradient(135deg, var(--color-brand), #a84314);
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    padding: 12px 18px;
}

.officer-login-page .btn-gradient:hover,
.officer-login-page .btn-gradient:focus {
    background: linear-gradient(135deg, #a84314, #8f3812);
    color: #fff;
}

.officer-captcha-wrap {
    border: 1px solid #e8d4c8;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.officer-captcha-wrap .form-control {
    border-radius: 10px 0 0 10px;
    min-width: 0;
    border-right: 1px solid #e8d4c8;
}

.officer-captcha-img {
    background: #fff;
    border-right: 1px solid #e8d4c8;
    min-width: 110px;
}

.officer-captcha-img img {
    height: 28px;
    display: block;
}

.officer-captcha-refresh {
    width: 44px;
    height: auto;
    background: #f3e8df;
    color: var(--color-brand);
    transition: background .2s ease;
}

.officer-captcha-refresh:hover {
    background: #e8d4c8;
}

@media (max-width: 991.98px) {
    .officer-login-card.form-card {
        flex-direction: column;
        max-width: 480px;
    }

    .officer-login-card .logo-side {
        width: 100%;
        padding: 20px;
    }

    .officer-login-card .login-padding {
        width: 100%;
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .officer-login-page {
        padding: 28px 12px 40px;
    }
}

/* Officer login — footer above hero bg */
body:has(.officer-login-page) .footer {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

/* Safari (macOS/iOS): keep Officer Login on the same header row — other browsers unchanged */
@supports (-webkit-touch-callout: none) {
    @media (min-width: 1025px) {
        .top-nav-inner {
            flex-wrap: nowrap;
            justify-content: space-between;
        }

        .logo-wrap {
            flex-shrink: 0;
        }

        .menu {
            flex: 1 1 auto;
            min-width: 0;
            flex-wrap: nowrap;
            width: auto;
            order: unset;
            justify-content: flex-start;
        }

        .login-btns {
            flex-shrink: 0;
            flex-wrap: nowrap;
            width: auto;
            justify-content: flex-end;
        }
    }
}

