﻿/* ============================================================
   MADHOK FOUNDATION — International Standard NGO Website
   Theme: Deep Blue + Gold + White | Refined & Accessible
   Version: 2.0 | Cross-platform | WCAG 2.1 AA
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   Core Theme: Navy Blue + Gold + White
   ============================================================ */
:root {
    /* ── PRIMARY — Deep Navy Blue ── */
    --blue-darkest: #0A1628;
    --blue-dark: #0F2645;
    --blue: #1A3A6E;
    --blue-mid: #1D4ED8;
    --blue-light: #2563EB;
    --blue-pale: #EFF6FF;
    /* ── ACCENT — Warm Gold / Yellow ── */
    --gold-dark: #92680A;
    --gold: #C9900C;
    --gold-mid: #D97706;
    --gold-bright: #F59E0B;
    --gold-light: #FCD34D;
    --gold-pale: #FFFBEB;
    /* ── NEUTRALS — White & Greys ── */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --grey-50: #F9FAFB;
    --grey-100: #F3F4F6;
    --grey-200: #E5E7EB;
    --grey-300: #D1D5DB;
    --grey-400: #9CA3AF;
    --grey-600: #4B5563;
    --grey-700: #374151;
    --grey-900: #111827;
    /* ── SEMANTIC COLOURS ── */
    --text-heading: var(--blue-darkest);
    --text-body: var(--grey-700);
    --text-muted: var(--grey-400);
    --text-light: rgba(255,255,255,0.85);
    --text-dim: rgba(255,255,255,0.55);
    --border: var(--grey-200);
    --border-strong: var(--grey-300);
    /* ── SHADOWS ── */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm: 0 2px 8px rgba(10,22,40,0.07);
    --shadow-md: 0 6px 24px rgba(10,22,40,0.10);
    --shadow-lg: 0 16px 48px rgba(10,22,40,0.13);
    --shadow-xl: 0 24px 64px rgba(10,22,40,0.16);
    --shadow-gold: 0 8px 24px rgba(201,144,12,0.35);
    --shadow-blue: 0 8px 24px rgba(26,58,110,0.25);
    /* ── GRADIENTS ── */
    --grad-blue: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    --grad-gold: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold-bright) 60%, var(--gold-light) 100%);
    --grad-hero: linear-gradient(140deg, var(--blue-darkest) 0%, var(--blue-dark) 45%, #142E5E 100%);
    --grad-stripe: linear-gradient(90deg, var(--blue) 0%, var(--blue-mid) 35%, var(--gold-mid) 65%, var(--gold-bright) 100%);
    /* ── RADII ── */
    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 24px;
    --r-full: 9999px;
    /* ── TYPOGRAPHY ── */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', 'Segoe UI', Tahoma, Geneva, sans-serif;
    /* ── TRANSITIONS ── */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
    --trans: all 0.32s var(--ease);
    --trans-fast: all 0.18s var(--ease);
    /* ── LAYOUT ── */
    --nav-h: 88px;
    --topbar-h: 38px;
    --fixed-offset: calc(var(--nav-h) + var(--topbar-h)); /* total fixed bar height */
    --container: 1260px;
    --gap: 28px;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 18px; /* Senior-friendly base */
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.78;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Push content below fixed top-bar + navbar */
    padding-top: var(--fixed-offset);
}

/* All section anchor targets scroll into view correctly */
section[id],
div[id] {
    scroll-margin-top: var(--fixed-offset);
}

body.menu-open {
    overflow: hidden;
    /* Do NOT use position:fixed here — it loses scroll position on iOS.
       Instead we save/restore scrollY in JavaScript. */
}

img, svg, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue-mid);
    text-decoration: none;
    transition: var(--trans-fast);
}

    a:hover {
        color: var(--gold-mid);
    }

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
}

    /* ── Accessibility Focus ── */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
        outline: 3px solid var(--gold-bright);
        outline-offset: 3px;
        border-radius: var(--r-xs);
    }

/* Skip Navigation */
.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    background: var(--blue-dark);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    z-index: 10000;
    font-weight: 700;
    font-size: 0.9rem;
    transition: top 0.25s;
}

    .skip-link:focus {
        top: 0;
        color: var(--white);
    }

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-heading);
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
}

h2 {
    font-size: clamp(1.65rem,3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem,2.5vw, 1.8rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

h5 {
    font-size: 1.15rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: clamp(1rem, 1.7vw, 1.1rem);
    line-height: 1.85;
    color: var(--text-body);
}

/* ============================================================
   LAYOUT SYSTEM
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 28px;
}

.section-pad {
    padding-block: 88px;
}

.section-pad-sm {
    padding-block: 56px;
}

/* Section Label — gold pill above headings */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-pale);
    border: 1.5px solid rgba(201,144,12,0.3);
    color: var(--gold-dark);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--r-full);
    margin-bottom: 18px;
}

/* Section Title with gold underline */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.2vw, 2.4rem);
    color: var(--blue-dark);
    margin-bottom: 16px;
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 52px;
        height: 4px;
        background: var(--grad-gold);
        border-radius: var(--r-full);
        margin-top: 14px;
    }

    .section-title.center::after {
        margin-inline: auto;
    }

.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1rem, 1.7vw, 1.1rem);
    color: var(--grey-600);
    line-height: 1.75;
    max-width: 660px;
    margin-bottom: 52px;
}

    .section-subtitle.center {
        margin-inline: auto;
        text-align: center;
    }

/* ============================================================
   BUTTONS — GLOBAL
   ============================================================ */

/* Gold Primary */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--grad-gold);
    color: var(--blue-darkest);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--r-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--trans);
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-mid) 100%);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-gold);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

/* White Outline Secondary */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--r-sm);
    border: 2px solid rgba(255,255,255,0.55);
    cursor: pointer;
    text-decoration: none;
    transition: var(--trans);
    letter-spacing: 0.02em;
    line-height: 1;
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.12);
        border-color: var(--white);
        color: var(--white);
    }

/* Blue Solid */
.btn-blue {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--blue-mid);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--r-sm);
    border: 2px solid var(--blue-mid);
    cursor: pointer;
    text-decoration: none;
    transition: var(--trans);
    letter-spacing: 0.02em;
    line-height: 1;
}

    .btn-blue:hover {
        background: var(--blue-dark);
        border-color: var(--blue-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-blue);
    }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--blue-darkest);
    color: rgba(255,255,255,0.75);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    /* FIXED — always visible at very top */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
}

    .top-bar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap;
    }

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
}

.top-bar a {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    transition: var(--trans-fast);
}

    .top-bar a:hover {
        color: var(--gold-light);
    }

.tb-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

    .tb-item svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
        opacity: 0.7;
    }

/* Top Bar Social Icons */
.top-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .top-social a {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--trans-fast);
    }

        .top-social a:hover {
            background: var(--gold-bright);
            border-color: var(--gold-bright);
            color: var(--blue-darkest);
        }

        .top-social a svg {
            width: 11px;
            height: 11px;
            fill: currentColor;
        }

.top-bar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.12);
}

/* ============================================================
   NAVIGATION — FIXED TOP (works on ALL browsers, ALL screen sizes,
   inside ASP.NET <form runat="server"> — no sticky breakage)
   ============================================================ */
.navbar {
    position: fixed; /* FIXED — not sticky */
    top: var(--topbar-h); /* sits directly below the fixed top-bar */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
    will-change: box-shadow, background;
}

    /* Scrolled state — elevated with blur */
    .navbar.scrolled {
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 2px 20px rgba(10,22,40,0.1);
        border-bottom-color: var(--grey-200);
    }

        /* Gold accent stripe at top of nav when scrolled */
        .navbar.scrolled::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--grad-stripe);
            border-radius: 0 0 var(--r-xs) var(--r-xs);
        }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    height: 100%;
}

/* ── LOGO ── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

    .nav-logo:hover {
        opacity: 0.88;
        color: inherit;
    }

/* Image logo (when MFlogo.png is used) */
.nav-logo-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.04);
}

/* Fallback SVG icon logo */
.nav-logo-icon {
    width: 52px;
    height: 52px;
    background: var(--grad-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-blue);
}

    .nav-logo-icon svg {
        width: 26px;
        height: 26px;
        fill: var(--gold-bright);
    }

.nav-logo-text .logo-name {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.18;
    display: block;
    letter-spacing: -0.01em;
}

.nav-logo-text .logo-tagline {
    font-size: 0.68rem;
    color: var(--grey-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-top: 1px;
    font-weight: 500;
}

/* ── DESKTOP MENU ── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    flex: 1;
    justify-content: center;
}

    .nav-menu > li {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
    }

        .nav-menu > li > a {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 8px 14px;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--grey-700);
            border-radius: var(--r-xs);
            letter-spacing: 0.01em;
            white-space: nowrap;
            text-decoration: none;
            transition: var(--trans-fast);
            position: relative;
        }

            /* Gold underline on hover / active */
        /* Apply underline ONLY to non-dropdown parent links */
        /* For regular links (without dropdown) - show underline on hover */
        .nav-menu > li:not(.has-dropdown) > a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--gold-bright);
            border-radius: var(--r-full);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.28s var(--ease);
        }

        .nav-menu > li:not(.has-dropdown) > a:hover::after,
        .nav-menu > li:not(.has-dropdown).active > a::after {
            transform: scaleX(1);
        }

        /* For dropdown parent links - NO underline (explicitly set to none) */
        .nav-menu > li > a[aria-haspopup="true"]::after {
            display: none !important;
            transform: none !important;
        }

        /* Alternative approach: Remove underline from any item that has a dropdown */
        .nav-menu > li:has(.nav-dropdown) > a::after {
            display: none !important;
        }

        /* Ensure the dropdown parent item doesn't get any underline on hover */
        .nav-menu > li:has(.nav-dropdown) > a:hover::after,
        .nav-menu > li:has(.nav-dropdown).active > a::after {
            transform: none !important;
            display: none !important;
        }

            .nav-menu > li > a:hover,
            .nav-menu > li.active > a {
                color: var(--blue-dark);
                background: transparent;
            }


.nav-arrow {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    transition: transform 0.28s var(--ease);
    opacity: 0.55;
}

.nav-menu > li:hover > a > .nav-arrow {
    transform: rotate(180deg);
    opacity: 0.85;
}

/* ── DROPDOWN ── */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
    list-style: none;
    padding: 8px;
    z-index: 200;
    /* Gold top border accent */
    border-top: 3px solid var(--gold-bright);
}

    .nav-menu > li:hover .nav-dropdown,
    .nav-menu > li:focus-within .nav-dropdown,
    .nav-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-dropdown li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--grey-700);
        border-radius: var(--r-xs);
        transition: var(--trans-fast);
        text-decoration: none;
    }

        .nav-dropdown li a::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold-bright);
            flex-shrink: 0;
            transition: var(--trans-fast);
        }

        .nav-dropdown li a:hover {
            background: var(--blue-pale);
            color: var(--blue-dark);
            padding-left: 18px;
        }

            .nav-dropdown li a:hover::before {
                background: var(--blue-mid);
            }

/* ── DONATE BUTTON ── */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-donate-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--grad-gold);
    color: var(--blue-darkest);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: var(--r-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--trans);
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1;
}

    .btn-donate-nav:hover {
        background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-mid) 100%);
        color: var(--white);
        transform: translateY(-1px);
        box-shadow: var(--shadow-gold);
    }

/* ── HAMBURGER ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 2px solid var(--border);
    cursor: pointer;
    padding: 8px 10px;
    border-radius: var(--r-sm);
    transition: var(--trans-fast);
    z-index: 1002;
    width: 44px;
    height: 44px;
}

    .nav-hamburger:hover {
        border-color: var(--gold-bright);
        background: var(--gold-pale);
    }

    .nav-hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--blue-dark);
        border-radius: 2px;
        transition: var(--trans);
        transform-origin: center;
    }

    .nav-hamburger.open {
        border-color: var(--blue-dark);
    }

        .nav-hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-hamburger.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .nav-hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

/* ============================================================
   MOBILE NAVIGATION DRAWER
   ============================================================ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.65);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.32s var(--ease), visibility 0.32s;
    visibility: hidden;
}

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 90vw);
    height: 100%;
    height: 100dvh;
    background: var(--white);
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
    transition: right 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(10,22,40,0.15);
}

    .mobile-nav.open {
        right: 0;
    }

/* Mobile nav header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--off-white);
    flex-shrink: 0;
    /* Gold accent bar at top */
    border-top: 4px solid var(--gold-bright);
}

.mobile-nav-close {
    background: none;
    border: 1.5px solid var(--border);
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-600);
    font-size: 1.2rem;
    line-height: 1;
    transition: var(--trans-fast);
}

    .mobile-nav-close:hover {
        background: var(--grey-100);
        border-color: var(--grey-300);
        color: var(--grey-900);
    }

/* Mobile nav list */
.mobile-nav-list {
    flex: 1;
    padding: 12px 0;
    list-style: none;
    overflow-y: auto;
    margin: 0;
}

.mob-accordion-btn .mob-arrow {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    opacity: 0.6;
}

    .mobile-nav-list li a,
    .mobile-nav-list li button.mob-accordion-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 22px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--grey-900);
        border-bottom: 1px solid var(--grey-100);
        text-decoration: none;
        background: none;
        border-left: none;
        border-right: none;
        border-top: none;
        width: 100%;
        font-family: var(--font-body);
        cursor: pointer;
        transition: var(--trans-fast);
        text-align: left;
        position: relative;
        overflow: hidden;
    }

        .mobile-nav-list li a:hover,
        .mobile-nav-list li button.mob-accordion-btn:hover {
            background: var(--blue-pale);
            color: var(--blue-dark);
            padding-left: 28px;
        }

.mob-arrow {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    transition: transform 0.28s var(--ease);
    flex-shrink: 0;
    opacity: 0.5;
}

.mob-accordion-btn.expanded .mob-arrow {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--gold-bright);
}

.mob-accordion-btn {
    position: relative;
    overflow: hidden;
}

.mob-accordion-btn:active::after {
    width: 100px;
    height: 100px;
}
/* Ripple effect on click */
.mob-accordion-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    pointer-events: none;
}
/* Mobile sub-menu */
.mob-submenu {
    display: none;
    background: linear-gradient(135deg, var(--off-white) 0%, #F8FAFC 100%);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-left: 3px solid var(--gold-bright);
    margin-left: 22px;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.03);
}

    .mob-submenu.open {
        display: block;
        animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mob-submenu li {
    transform: translateX(-10px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mob-submenu.open li {
    transform: translateX(0);
    opacity: 1;
}

        /* Staggered animation for submenu items */
        .mob-submenu.open li:nth-child(1) {
            transition-delay: 0.05s;
        }

        .mob-submenu.open li:nth-child(2) {
            transition-delay: 0.10s;
        }

        .mob-submenu.open li:nth-child(3) {
            transition-delay: 0.15s;
        }

        .mob-submenu.open li:nth-child(4) {
            transition-delay: 0.20s;
        }

        .mob-submenu.open li:nth-child(5) {
            transition-delay: 0.25s;
        }

        .mob-submenu.open li:nth-child(6) {
            transition-delay: 0.30s;
        }

.mob-submenu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--grey-700);
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

    .mob-submenu li a::before {
        content: '→';
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 600;
        color: var(--gold-bright);
        flex-shrink: 0;
        transition: all 0.25s ease;
        opacity: 0.8;
    }

    .mob-submenu li a:hover {
        background: linear-gradient(90deg, var(--blue-pale) 0%, transparent 100%);
        color: var(--blue-dark);
        padding-left: 24px;
    }

        /* Add subtle background pattern on hover */
        .mob-submenu li a:hover::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.05));
            pointer-events: none;
        }

        .mob-submenu li a:hover::before {
            content: '➔';
            transform: translateX(3px);
            color: var(--blue-mid);
            opacity: 1;
        }

/* Add subtle separator between items */
.mob-submenu li:not(:last-child) a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    /* Active/Current page styling */
.mob-submenu li a.active {
    background: linear-gradient(90deg, var(--blue-pale) 0%, transparent 100%);
    color: var(--blue-dark);
    font-weight: 600;
    border-right: 2px solid var(--gold-bright);
}

    .mob-submenu li a.active::before {
        color: var(--blue-mid);
        transform: translateX(2px);
    }

/* Divider between items */
.mob-submenu li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Mobile nav footer */
.mobile-nav-footer {
    padding: 20px 22px 28px;
    border-top: 1px solid var(--border);
    background: var(--off-white);
    flex-shrink: 0;
}

.btn-donate-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--grad-gold);
    color: var(--blue-darkest);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 15px 24px;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--trans);
    letter-spacing: 0.02em;
}

    .btn-donate-mobile:hover {
        background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-mid) 100%);
        color: var(--white);
    }

/* Mobile logo in drawer */
.mobile-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
}

/* ============================================================
   HOMES SECTION — Dark Blue Feature Block (FIXED)
   ============================================================ */
.homes-section {
    background: var(--blue-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    .homes-section::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 360px;
        height: 360px;
        background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 68%);
        border-radius: 50%;
        z-index: 0;
    }

    .homes-section::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -40px;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 68%);
        border-radius: 50%;
        z-index: 0;
    }

.homes-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.homes-text h2 {
    color: var(--white);
    margin-bottom: 18px;
}

    .homes-text h2 span {
        color: var(--gold-light);
    }

.homes-text p {
    color: rgba(255,255,255,0.8);
    font-size: clamp(1rem, 1.6vw, 1.08rem);
    margin-bottom: 18px;
}

.homes-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.partner-badge {
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.35);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--r-full);
    letter-spacing: 0.03em;
}

/* IMAGE STYLES - FIXED FOR DESKTOP */
.homes-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homes-image-wrapper {
    width: 100%;
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(245,158,11,0.3);
    transition: var(--trans);
}

    .homes-image-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 40px rgba(0,0,0,0.3);
        border-color: var(--gold-bright);
    }

.homes-img {
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: var(--trans);
}

.homes-image-wrapper:hover .homes-img {
    transform: scale(1.03);
}

/* Caption overlay on hover */
.homes-image-wrapper::after {
    content: 'Savada Ghewra, Delhi — 60+ homes built';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.9), transparent);
    color: var(--white);
    font-size: 0.85rem;
    padding: 20px 16px 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    pointer-events: none;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.homes-image-wrapper:hover::after {
    opacity: 1;
}

/* Stats overlay on image */
.homes-stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-around;
    gap: 15px;
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--r-md);
    padding: 15px;
    border: 1px solid rgba(245,158,11,0.3);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   HOMES SECTION RESPONSIVE
   ============================================================ */
/* Tablet and below - stack layout */
@media (max-width: 1024px) {
    .homes-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .homes-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .homes-img {
        min-height: 380px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .homes-inner {
        gap: 32px;
    }

    .homes-img {
        min-height: 280px;
    }

    .homes-stats-overlay {
        padding: 10px 12px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .homes-image-wrapper::after {
        font-size: 0.7rem;
        padding: 15px 12px 8px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .homes-img {
        min-height: 240px;
    }

    .homes-partners {
        justify-content: center;
    }

    .homes-stats-overlay {
        flex-direction: column;
        gap: 8px;
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 10px;
    }

    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .stat-number {
        font-size: 0.9rem;
        min-width: 60px;
        text-align: left;
    }

    .stat-label {
        font-size: 0.65rem;
        text-align: right;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--fixed-offset));
    min-height: clamp(520px, calc(100vh - var(--fixed-offset)), 860px);
    background: var(--grad-hero);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Decorative background elements */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

    .hero-bg-pattern::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 550px;
        height: 550px;
        background: radial-gradient(circle, rgba(245,158,11,0.14) 0%, transparent 68%);
        border-radius: 50%;
    }

    .hero-bg-pattern::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -60px;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 68%);
        border-radius: 50%;
    }

/* Gold diagonal accent strip */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--grad-stripe);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
    padding-block: 80px;
}

/* Hero text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.15);
    border: 1.5px solid rgba(245,158,11,0.4);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--r-full);
    margin-bottom: 22px;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.13;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

    .hero-text h1 span {
        font-style: italic;
        color: var(--gold-light);
    }

.hero-text > p {
    font-size: clamp(1rem, 1.7vw, 1.12rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 510px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 52px;
}

/* Hero stats row */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.14);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 5px;
    display: block;
}

/* Hero visual image */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-real-image {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(245,158,11,0.3);
    transition: var(--trans);
}

    .hero-real-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 40px rgba(0,0,0,0.3);
        border-color: var(--gold-bright);
    }

.hero-impact-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--trans);
}

.hero-real-image:hover .hero-impact-img {
    transform: scale(1.03);
}

.hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.95), transparent);
    color: var(--gold-light);
    font-size: 0.8rem;
    padding: 20px 16px 12px;
    text-align: center;
    font-weight: 500;
}

/* ============================================================
   IMPACT STRIP
   ============================================================ */
.impact-strip {
    background: var(--grad-blue);
    padding-block: 44px;
    position: relative;
    overflow: hidden;
}

    .impact-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 15% 50%, rgba(245,158,11,0.12) 0%, transparent 55%), radial-gradient(circle at 85% 50%, rgba(245,158,11,0.08) 0%, transparent 45%);
    }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.impact-item {
    text-align: center;
    padding: 14px 24px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

    .impact-item:last-child {
        border-right: none;
    }

.impact-num {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}

.impact-label {
    font-size: clamp(0.75rem, 1.4vw, 0.88rem);
    color: rgba(255,255,255,0.68);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 7px;
    display: block;
    font-weight: 500;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-text p {
    margin-bottom: 18px;
    font-size: clamp(1rem, 1.6vw, 1.08rem);
}

/* Registration info box */
.reg-info {
    margin-top: 28px;
    background: var(--blue-dark);
    color: rgba(255,255,255,0.85);
    border-radius: var(--r-md);
    padding: 22px 26px;
    font-size: 0.9rem;
    line-height: 1.75;
    border-left: 4px solid var(--gold-bright);
}

    .reg-info strong {
        color: var(--gold-light);
    }

/* Vision / Mission / Approach cards */
.vm-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vm-card {
    background: var(--white);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    border-left: 4px solid var(--blue-mid);
    padding: 22px 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
}

    .vm-card:nth-child(1) {
        border-left-color: var(--blue-mid);
    }

    .vm-card:nth-child(2) {
        border-left-color: var(--gold-bright);
    }

    .vm-card:nth-child(3) {
        border-left-color: var(--blue-light);
    }

    .vm-card:hover {
        transform: translateX(5px);
        box-shadow: var(--shadow-md);
        border-left-width: 5px;
    }

    .vm-card h4 {
        font-family: var(--font-body);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gold-dark);
        margin-bottom: 9px;
    }

    .vm-card p {
        font-size: 0.97rem;
        color: var(--text-body);
        margin: 0;
        line-height: 1.7;
    }

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.programs-section {
    background: var(--white);
    position: relative;
}
    /* Colourful top stripe */
    .programs-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--grad-stripe);
    }

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.program-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--trans);
    box-shadow: var(--shadow-xs);
}

    .program-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold-bright);
    }

/* Card icon band */
.program-card-icon {
    background: var(--grad-blue);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 120px;
    overflow: hidden;
}

    .program-card-icon::after {
        content: '';
        position: absolute;
        bottom: -24px;
        right: -24px;
        width: 90px;
        height: 90px;
        background: radial-gradient(circle, rgba(245,158,11,0.25) 0%, transparent 70%);
        border-radius: 50%;
    }
/* Unique gradients per card */
.program-card:nth-child(1) .program-card-icon {
    background: linear-gradient(135deg, #0F2645 0%, #1A3A6E 100%);
}

.program-card:nth-child(2) .program-card-icon {
    background: linear-gradient(135deg, #1A3A6E 0%, #1D4ED8 100%);
}

.program-card:nth-child(3) .program-card-icon {
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
}

.program-card:nth-child(4) .program-card-icon {
    background: linear-gradient(135deg, #0F2645 0%, #1A3A6E 100%);
}

.program-card:nth-child(5) .program-card-icon {
    background: linear-gradient(135deg, #1A3A6E 0%, #1D4ED8 100%);
}

.program-card:nth-child(6) .program-card-icon {
    background: linear-gradient(135deg, #C9900C 0%, #F59E0B 100%);
}

.program-card-icon svg {
    width: 50px;
    height: 50px;
    color: var(--gold-light);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    position: relative;
    z-index: 1;
}

.program-card:nth-child(6) .program-card-icon svg {
    color: var(--white);
}

.program-card-body {
    padding: 26px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .program-card-body h3 {
        font-size: 1.08rem;
        color: var(--blue-dark);
        margin-bottom: 11px;
        font-family: var(--font-display);
    }

    .program-card-body p {
        font-size: 0.92rem;
        color: var(--grey-600);
        line-height: 1.75;
        flex: 1;
        margin-bottom: 18px;
    }

.program-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue-mid);
    text-decoration: none;
    transition: var(--trans-fast);
    letter-spacing: 0.02em;
}

    .program-card-link:hover {
        gap: 10px;
        color: var(--gold-dark);
    }


/* ============================================================
   SKILL DEVELOPMENT SECTION
   ============================================================ */
.skills-section {
    background: var(--grey-50);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.skill-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 32px 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

    .skill-card:nth-child(1) {
        border-top-color: var(--blue-dark);
    }

    .skill-card:nth-child(2) {
        border-top-color: var(--gold-bright);
    }

    .skill-card:nth-child(3) {
        border-top-color: var(--blue-mid);
    }

    .skill-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
    }

.skill-icon {
    width: 54px;
    height: 54px;
    background: var(--blue-pale);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--trans);
}

.skill-card:hover .skill-icon {
    background: var(--gold-pale);
}

.skill-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--blue-mid);
    fill: none;
    stroke-width: 1.75;
}

.skill-card:nth-child(2) .skill-icon svg {
    stroke: var(--gold-dark);
}

.skill-card:hover .skill-icon svg {
    stroke: var(--gold-mid);
}

.skill-card h3 {
    font-size: 1.08rem;
    color: var(--blue-dark);
    margin-bottom: 11px;
}

.skill-card p {
    font-size: 0.92rem;
    color: var(--grey-600);
    line-height: 1.75;
    margin-bottom: 18px;
}

.skill-tag {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--blue-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 13px;
    border-radius: var(--r-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(26,58,110,0.15);
}

/* ============================================================
   COLLABORATORS SECTION
   ============================================================ */
.collab-section {
    background: var(--white);
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.collab-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px 18px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--grey-700);
    line-height: 1.5;
    transition: var(--trans);
    cursor: default;
}

    .collab-card:hover {
        background: var(--blue-dark);
        color: var(--white);
        border-color: var(--blue-dark);
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

/* ============================================================
   AWARENESS PROGRAMS SECTION
   ============================================================ */
.awareness-section {
    background: var(--off-white);
}

.awareness-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.awareness-item {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 26px 18px 22px;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: var(--trans);
}

    .awareness-item:hover {
        border-color: var(--gold-bright);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

    .awareness-item svg {
        width: 36px;
        height: 36px;
        stroke: var(--blue-mid);
        fill: none;
        stroke-width: 1.5;
        margin: 0 auto 14px;
        display: block;
        transition: var(--trans);
    }

    .awareness-item:hover svg {
        stroke: var(--gold-mid);
        transform: scale(1.12);
    }

    .awareness-item p {
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--blue-dark);
        margin: 0;
        line-height: 1.45;
    }

/* ============================================================
   DONATE / CTA SECTION
   ============================================================ */
.donate-section {
    background: var(--blue-darkest);
    padding-block: 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .donate-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 25% 50%, rgba(245,158,11,0.12) 0%, transparent 55%), radial-gradient(circle at 75% 50%, rgba(37,99,235,0.15) 0%, transparent 55%);
    }
    /* Gold accent bars top & bottom */
    .donate-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--grad-stripe);
    }

    .donate-section .container {
        position: relative;
        z-index: 1;
    }

    .donate-section h2 {
        font-size: clamp(1.85rem, 4vw, 3rem);
        color: var(--white);
        margin-bottom: 18px;
    }

        .donate-section h2 em {
            color: var(--gold-light);
            font-style: italic;
        }

    .donate-section > .container > p {
        font-size: clamp(1rem, 1.8vw, 1.18rem);
        color: rgba(255,255,255,0.72);
        max-width: 560px;
        margin: 0 auto 40px;
        line-height: 1.85;
    }

.btn-donate-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--grad-gold);
    color: var(--blue-darkest);
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 700;
    padding: 17px 46px;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: var(--trans);
    border: 2px solid transparent;
    letter-spacing: 0.02em;
}

    .btn-donate-hero:hover {
        background: var(--white);
        color: var(--blue-dark);
        transform: translateY(-3px);
        box-shadow: 0 12px 36px rgba(0,0,0,0.25);
    }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background: var(--grey-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 60px;
    align-items: start;
}

/* Contact info column */
.contact-info h2 {
    margin-bottom: 8px;
}

.contact-info > p {
    margin-bottom: 36px;
    color: var(--grey-600);
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 46px;
    height: 46px;
    background: var(--grad-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-blue);
}

    .contact-detail-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--white);
        fill: none;
        stroke-width: 1.75;
    }

.contact-detail-text strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.contact-detail-text span {
    font-size: 0.97rem;
    color: var(--text-body);
    line-height: 1.6;
}

.contact-detail-text a {
    color: var(--blue-mid);
}

    .contact-detail-text a:hover {
        color: var(--gold-dark);
    }

/* Contact form card */
.contact-form {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 40px 38px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--gold-bright);
}

    .contact-form h3 {
        font-size: 1.4rem;
        color: var(--blue-dark);
        margin-bottom: 26px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        font-size: 0.84rem;
        font-weight: 700;
        color: var(--grey-900);
        margin-bottom: 7px;
        letter-spacing: 0.03em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 13px 16px;
        border: 1.5px solid var(--border);
        border-radius: var(--r-sm);
        font-family: var(--font-body);
        font-size: 1rem;
        color: var(--grey-900);
        background: var(--white);
        transition: var(--trans-fast);
        -webkit-appearance: none;
        appearance: none;
        line-height: 1.5;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--blue-mid);
            outline: none;
            box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
        }

        .form-group input:hover,
        .form-group textarea:hover,
        .form-group select:hover {
            border-color: var(--grey-300);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 128px;
    }

/* Submit button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--grad-blue);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    transition: var(--trans);
    letter-spacing: 0.03em;
    margin-top: 6px;
}

    .btn-submit:hover {
        background: linear-gradient(135deg, var(--blue-darkest) 0%, var(--blue-dark) 100%);
        transform: translateY(-2px);
        box-shadow: var(--shadow-blue);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

/* Validation states */
.field-error-msg {
    color: #DC2626;
    font-size: 0.78rem;
    display: block;
    margin-top: 5px;
    font-weight: 500;
}

.field-error {
    border-color: #DC2626 !important;
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1) !important;
    background: rgba(220,38,38,0.02) !important;
}

/* Validation summary — hidden by default, shown by ASP.NET */
.validation-summary {
    background: #FEF2F2;
    border: 1.5px solid #FECACA;
    border-left: 4px solid #DC2626;
    border-radius: var(--r-sm);
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #991B1B;
    font-size: 0.88rem;
    display: none;
}

    .validation-summary[style*="display: block"] {
        display: block;
    }

.form-success-msg {
    display: block;
    background: #F0FDF4;
    border: 1.5px solid #BBF7D0;
    border-left: 4px solid #16A34A;
    border-radius: var(--r-sm);
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #15803D;
    font-size: 0.97rem;
    font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--blue-darkest);
    color: rgba(255,255,255,0.72);
}
    /* Gold top bar */
    .footer::before {
        content: '';
        display: block;
        height: 4px;
        background: var(--grad-stripe);
    }

.footer-main {
    padding-block: 64px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

/* Brand column */
.footer-brand .footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 14px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-reg {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-left: 3px solid var(--gold-bright);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 14px 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

    .footer-reg strong {
        color: rgba(255,255,255,0.82);
    }

/* Link columns */
.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul li {
    margin-bottom: 10px;
}

    .footer-col ul li a {
        color: rgba(255,255,255,0.58);
        font-size: 0.88rem;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        transition: var(--trans-fast);
    }

        .footer-col ul li a:hover {
            color: var(--gold-light);
            gap: 11px;
        }

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-block: 22px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255,255,255,0.38);
    font-size: 0.8rem;
    margin: 0;
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 8px;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.55);
        font-size: 0.8rem;
        font-weight: 700;
        transition: var(--trans-fast);
        text-decoration: none;
    }

        .footer-social a:hover {
            background: var(--gold-bright);
            border-color: var(--gold-bright);
            color: var(--blue-darkest);
            transform: translateY(-2px);
        }

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--blue-dark);
    color: var(--white);
    border: 2px solid var(--gold-bright);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--trans);
    opacity: 0;
    visibility: hidden;
    z-index: 900;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--gold-bright);
        color: var(--blue-darkest);
        transform: translateY(-3px);
        box-shadow: var(--shadow-gold);
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
    }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blue-darkest);
    color: rgba(255,255,255,0.85);
    padding: 18px 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.38s var(--ease);
    border-top: 3px solid var(--gold-bright);
}

    .cookie-banner.show {
        transform: translateY(0);
    }

    .cookie-banner p {
        font-size: 0.88rem;
        margin: 0;
        color: rgba(255,255,255,0.82) !important;
        line-height: 1.6;
    }

    .cookie-banner a {
        color: var(--gold-light);
    }

        .cookie-banner a:hover {
            color: var(--gold-bright);
        }

.cookie-accept {
    background: var(--grad-gold);
    color: var(--blue-darkest);
    border: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 9px 24px;
    border-radius: var(--r-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--trans-fast);
    flex-shrink: 0;
}

    .cookie-accept:hover {
        background: var(--gold-mid);
        color: var(--white);
    }

/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

    [data-animate].anim-in {
        opacity: 1;
        transform: translateY(0);
    }

    [data-animate][data-delay="1"] {
        transition-delay: 0.10s;
    }

    [data-animate][data-delay="2"] {
        transition-delay: 0.20s;
    }

    [data-animate][data-delay="3"] {
        transition-delay: 0.30s;
    }

    [data-animate][data-delay="4"] {
        transition-delay: 0.40s;
    }

    [data-animate][data-delay="5"] {
        transition-delay: 0.50s;
    }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .navbar, .top-bar, .back-to-top, .cookie-banner, .mobile-nav, .mobile-nav-overlay {
        display: none !important;
    }

    body {
        font-size: 11pt;
        color: #000;
    }

    a {
        color: #000;
    }
}

/* ============================================================
   RESPONSIVE — LARGE TABLET  ≤ 1100px
   ============================================================ */
@media (max-width: 1100px) {
    :root {
        --container: 100%;
    }

    .nav-menu > li > a {
        padding: 8px 10px;
        font-size: 0.87rem;
    }

    .btn-donate-nav {
        padding: 9px 16px;
        font-size: 0.84rem;
    }

    .nav-logo-text .logo-tagline {
        display: none;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 36px;
    }

        .footer-grid > div:last-child {
            grid-column: 1 / -1;
        }
}

/* ============================================================
   RESPONSIVE — TABLET  ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-block: 60px;
    }

    .hero-visual {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-text > p {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.14);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

        .hero-stat:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .impact-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding: 22px 16px;
    }

        .impact-item:nth-child(odd) {
            border-right: 1px solid rgba(255,255,255,0.12);
        }

        .impact-item:nth-child(3),
        .impact-item:nth-child(4) {
            border-bottom: none;
        }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .homes-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .branch-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .collab-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .awareness-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --nav-h: 72px;
        --topbar-h: 0px; /* top-bar hidden on mobile */
        --fixed-offset: 72px; /* only navbar height on mobile */
    }

    html {
        font-size: 17px;
    }

    /* Body padding — only navbar height on mobile */
    body {
        padding-top: var(--nav-h);
    }

    .section-pad {
        padding-block: 56px;
    }

    .section-pad-sm {
        padding-block: 36px;
    }

    .container {
        padding-inline: 18px;
    }

    /* Top bar — hidden on mobile, not fixed */
    .top-bar {
        display: none !important;
        position: static !important;
    }

    /* Navbar sits at top: 0 on mobile since top-bar is hidden */
    .navbar {
        top: 0;
    }

    /* Navigation */
    .nav-menu,
    .nav-cta {
        display: none !important;
    }

    .nav-hamburger {
        display: flex !important;
    }

    .mobile-nav-overlay {
        display: block !important;
    }

    .mobile-nav {
        display: flex !important;
    }

    /* Navbar height */
    .navbar {
        height: var(--nav-h);
    }

    .nav-logo-img {
        width: 52px;
        height: 52px;
    }

    /* Hero */
    .hero {
        position: relative;
    }

    .hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/assets/img/homes-homeless.png');
        background-size: cover;
        background-position: center 30%;
        z-index: 0;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

        /* Add a dark overlay so white text remains readable */
        .hero-bg-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.6) 100%);
        }

    .hero-content {
        padding-block: 48px;
        gap: 32px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .hero-stat {
        border-right: 1px solid rgba(255,255,255,0.14);
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .hero-visual {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .hero-real-image {
        border-radius: var(--r-md);
    }

    .hero-image-caption {
        font-size: 0.7rem;
        padding: 12px 12px 8px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .hero-stat {
        border-right: 1px solid rgba(255,255,255,0.14);
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

        .hero-stat:last-child {
            border-right: none;
        }

        .hero-stat:not(:first-child) {
            padding-left: 16px;
        }

    @media (max-width: 1024px) {
        .hero-visual {
            display: none; /* Hide on tablet/mobile, or keep it */
        }
    }

    /* ============================================================
   RESPONSIVE — MOBILE  ≤ 768px
   ============================================================ */
    @media (max-width: 768px) {
        .homes-inner {
            gap: 32px;
        }

        .homes-img {
            min-height: 260px;
        }

        .homes-image-wrapper::after {
            font-size: 0.7rem;
            padding: 15px 12px 8px;
        }
    }

    /* ============================================================
   RESPONSIVE — SMALL MOBILE  ≤ 480px
   ============================================================ */
    @media (max-width: 480px) {
        .homes-img {
            min-height: 220px;
        }

        .homes-partners {
            justify-content: center;
        }
    }


    /* --- About Section Image --- */
    .about-image {
        text-align: center;
    }

    .about-img {
        width: 100%;
        max-width: 400px;
        border-radius: var(--r-lg);
        box-shadow: var(--shadow-lg);
        border: 4px solid var(--white);
        margin-bottom: 15px;
    }

    .about-img-caption {
        font-size: 0.85rem;
        color: var(--grey-600);
        font-style: italic;
    }

    /* Grids */
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .collab-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awareness-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .homes-visual {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 22px;
    }

    /* Back to top */
    .back-to-top {
        bottom: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
    html {
        font-size: 16px;
    }

    .container {
        padding-inline: 15px;
    }

    .hero-content {
        padding-block: 40px;
        gap: 24px;
    }

    .hero-image-caption {
        font-size: 0.65rem;
        padding: 10px 10px 6px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0;
        border-top: 1px solid rgba(255,255,255,0.14);
    }

    .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 14px 0;
    }

        .hero-stat:last-child {
            border-bottom: none;
        }

        .hero-stat:not(:first-child) {
            padding-left: 0;
        }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .btn-donate-hero {
        padding: 15px 28px;
        font-size: 1rem;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .collab-grid {
        grid-template-columns: 1fr;
    }

    .awareness-list {
        grid-template-columns: 1fr;
    }

    .homes-visual {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .section-pad {
        padding-block: 44px;
    }

    .footer-main {
        padding-block: 44px 28px;
    }

    /* Ensure mobile nav items are large enough for touch */
    .mobile-nav-list li a,
    .mobile-nav-list li button.mob-accordion-btn {
        padding: 16px 22px;
        font-size: 1.05rem;
        position: relative;
        overflow: hidden;
    }
}

/* ============================================================
   ENSURE DESKTOP VISIBILITY (safety override)
   ============================================================ */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
    }

    .nav-cta {
        display: flex !important;
    }

    .nav-hamburger {
        display: none !important;
    }

    .mobile-nav-overlay {
        display: none !important;
        visibility: hidden !important;
    }

    .mobile-nav {
        right: -100% !important;
    }
    /* Restore top-bar as fixed on desktop */
    .top-bar {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
    }
    /* Navbar sits below top-bar on desktop */
    .navbar {
        top: var(--topbar-h) !important;
    }
    /* Body padding = topbar + navbar on desktop */
    body {
        padding-top: var(--fixed-offset) !important;
    }
}
