/* ============================================================
   NOIDA I CARE — MASTER STYLESHEET
   Project  : Noida Lok Manch | Noida I Care Initiative
   Version  : 1.0
   Fonts    : Playfair Display (headings) + DM Sans (body)
   Palette  : Deep Navy · Saffron Gold · Ivory White · Leaf Green
   ============================================================ */

/* ── 1. CSS VARIABLES ───────────────────────────────────────── */
:root {
    /* Core Palette */
    --navy:          #0f2044;
    --navy-mid:      #1a3260;
    --navy-light:    #243d74;
    --gold:          #c9921a;
    --gold-light:    #e8b84b;
    --gold-pale:     #fdf3dc;
    --saffron:       #e87722;
    --ivory:         #faf8f3;
    --white:         #ffffff;
    --green:         #2d7a4f;
    --green-light:   #e8f5ee;

    /* Neutrals */
    --gray-100:      #f7f6f2;
    --gray-200:      #ece9e0;
    --gray-300:      #d4cfbf;
    --gray-400:      #a89f8c;
    --gray-500:      #716859;
    --gray-700:      #3d3428;
    --gray-900:      #1a1510;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', 'Segoe UI', sans-serif;
    --font-hindi:   'Tiro Devanagari Hindi', serif;

    /* Spacing scale */
    --space-xs:   0.25rem;
    --space-sm:   0.5rem;
    --space-md:   1rem;
    --space-lg:   1.5rem;
    --space-xl:   2.5rem;
    --space-2xl:  4rem;
    --space-3xl:  6rem;

    /* Layout */
    --container-max: 1200px;
    --navbar-h:      64px;
    --radius-sm:     4px;
    --radius-md:     8px;
    --radius-lg:     16px;
    --radius-full:   9999px;

    /* Shadows */
    --shadow-sm:   0 1px 3px rgba(15,32,68,0.08), 0 1px 2px rgba(15,32,68,0.06);
    --shadow-md:   0 4px 16px rgba(15,32,68,0.12), 0 2px 6px rgba(15,32,68,0.08);
    --shadow-lg:   0 12px 40px rgba(15,32,68,0.18), 0 4px 12px rgba(15,32,68,0.10);
    --shadow-gold: 0 4px 20px rgba(201,146,26,0.30);

    /* Transitions */
    --transition: 0.25s ease;
    --transition-slow: 0.45s ease;
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--ivory);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-green   { color: var(--green); }
.text-center  { text-align: center; }
.hindi        { font-family: var(--font-hindi); }

/* ── 4. LAYOUT UTILITIES ────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
}
.section-sm {
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}
.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-md);
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--saffron));
    border-radius: var(--radius-full);
}
.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 600px;
    margin: var(--space-md) auto 0;
}

/* Fade-in animation (triggered by JS IntersectionObserver) */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

/* ── 5. BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201,146,26,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gold-pale);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

/* ── 6. NAVBAR ──────────────────────────────────────────────── */
/* ── 5. NAVBAR ───────────────────────────────────────────────── */
/* ── NAVBAR ────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15,32,68,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,146,26,0.20);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(15,32,68,0.35); }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--navbar-h);
    box-sizing: border-box;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}
.brand-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.brand-logo {
    width: 46px; height: 46px;
    border-radius: 8px;
    object-fit: contain;
    border: 2px solid var(--gold);
    background: #fff;
    padding: 3px;
    flex-shrink: 0;
}
.brand-text  { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name  { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #fff; }
.brand-sub   { font-size: 0.6rem; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; }

/* Desktop nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
    margin: 0; padding: 0;
    flex: 0 0 auto;
}
.nav-item  { list-style: none; }
.nav-link  {
    display: block;
    color: rgba(255,255,255,0.82);
    font-size: 0.86rem;
    font-weight: 500;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: #fff; }

.btn-nav-join {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #fff !important;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-left: 0.4rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    flex: 0 0 auto;
    -webkit-tap-highlight-color: transparent;
}
.ham-line {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.28s ease;
    transform-origin: center;
    pointer-events: none;
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    width: 100%;
    background: rgba(15,32,68,0.99);
    z-index: 998;
    border-top: 2px solid rgba(201,146,26,0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    overflow-y: auto;
    max-height: calc(100vh - var(--navbar-h));
}
.mobile-nav.open { display: block; }

.mobile-nav-links { list-style: none; margin: 0; padding: 0.75rem 1.5rem 2rem; }
.mobile-nav-link,
.mobile-nav-cta {
    display: block;
    padding: 0.9rem 0;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold-light); }
.mobile-nav-cta {
    color: var(--gold-light);
    font-weight: 700;
    border-bottom: none;
    padding-top: 1.2rem;
}

.navbar-spacer { height: var(--navbar-h); }

/* ── MOBILE BREAKPOINT ─────────────────────────────────────── */
@media (max-width: 860px) {
    .nav-links  { display: none !important; }
    .hamburger  { display: flex !important; }
}



/* ── 7. HERO SLIDER ─────────────────────────────────────────── */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--navbar-h));
    min-height: 500px;
    overflow: hidden;
    background: var(--navy);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active { opacity: 1; }

.slide-img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
}
.slide.active .slide-img { transform: scale(1); }

/* Ken Burns overlay gradient */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15,32,68,0.25) 0%,
        rgba(15,32,68,0.10) 40%,
        rgba(15,32,68,0.55) 100%
    );
}

/* Slide caption */
.slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: var(--space-2xl) var(--space-xl);
    background: linear-gradient(transparent, rgba(15,32,68,0.80));
}
.slide-caption-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.slide-caption-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Slider controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.slider-prev { left: var(--space-lg); }
.slider-next { right: var(--space-lg); }
.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%; transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: var(--space-sm);
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.slider-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: var(--radius-full);
}

/* Placeholder when no slider images */
.slider-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #2d1a00 100%);
    color: var(--white);
    text-align: center;
    padding: var(--space-xl);
}
.slider-placeholder h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slider-placeholder p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 560px;
}
.slider-placeholder .tagline-gold {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: var(--space-xl);
}

/* ── 8. INTRO SECTION ───────────────────────────────────────── */
.intro-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.intro-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
    pointer-events: none;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}
.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gold-pale);
    color: var(--gold);
    border: 1px solid rgba(201,146,26,0.3);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}
.intro-text h2 {
    margin-bottom: var(--space-lg);
}
.intro-text p {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.8;
}
.pm-quote {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    border-left: 4px solid var(--gold);
    background: var(--gold-pale);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--navy-mid);
    font-size: 0.95rem;
    line-height: 1.8;
}
.pm-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-style: normal;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.85rem;
}

/* ── 9. MODI-SAXENA COLLABORATION SECTION ───────────────────── */
.collab-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}
.collab-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201,146,26,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232,119,34,0.10) 0%, transparent 40%);
    pointer-events: none;
}
/* Ashoka-wheel watermark */
.collab-section::after {
    content: '⊙';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32rem;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    line-height: 1;
}

.collab-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.collab-label {
    display: inline-block;
    color: var(--gold-light);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    padding: 0.3rem 1rem;
    border: 1px solid rgba(201,146,26,0.4);
    border-radius: var(--radius-full);
}
.collab-photos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}
.collab-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}
.collab-photo-wrap {
    position: relative;
}
.collab-photo {
    width: 160px; height: 160px;
    border-radius: 8px;
    object-fit: contain;
    object-position: top;
    border: 4px solid var(--gold);
    box-shadow: 0 0 0 8px rgba(201,146,26,0.15), var(--shadow-lg);
    background: var(--navy-light);
}
.collab-photo-placeholder {
    width: 160px; height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    border: 4px solid var(--gold);
    box-shadow: 0 0 0 8px rgba(201,146,26,0.15), var(--shadow-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
}
.collab-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}
.collab-role {
    font-size: 0.82rem;
    color: var(--gold-light);
    text-align: center;
    max-width: 160px;
    line-height: 1.4;
}

/* Connector between the two photos */
.collab-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gold);
    font-size: 1.6rem;
    padding-bottom: 2.5rem;
}
.collab-connector-line {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.collab-desc {
    max-width: 640px;
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ── 10. FOCUS AREAS CARDS ──────────────────────────────────── */
.focus-section {
    padding: var(--space-3xl) 0;
    background: var(--ivory);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.focus-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.focus-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--saffron));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.focus-card:hover::before { transform: scaleX(1); }

.focus-icon {
    font-size: 2.8rem;
    margin-bottom: var(--space-md);
    display: block;
    transition: transform var(--transition);
}
.focus-card:hover .focus-icon { transform: scale(1.15); }

.focus-card h3 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}
.focus-card p {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}
.focus-card .focus-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.focus-card .focus-link:hover { color: var(--saffron); }

/* ── 11. LAUNCH COUNTDOWN ───────────────────────────────────── */
.countdown-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
    position: relative;
    overflow: hidden;
}
.countdown-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px,
        transparent 0, transparent 50%
    );
    background-size: 20px 20px;
}

.countdown-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.countdown-inner h2 {
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.countdown-inner .venue {
    color: rgba(255,255,255,0.88);
    font-size: 1rem;
    margin-bottom: var(--space-xl);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}
.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-xl);
    min-width: 90px;
}
.countdown-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.countdown-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ── 12. VOLUNTEER CTA STRIP ────────────────────────────────── */
.volunteer-cta-section {
    padding: var(--space-3xl) 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.volunteer-cta-section::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,146,26,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.volunteer-cta-inner {
    text-align: center;
    position: relative; z-index: 1;
}
.volunteer-cta-inner h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}
.volunteer-cta-inner p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto var(--space-xl);
}

/* ── 13. PARTNERS STRIP ─────────────────────────────────────── */
.partners-section {
    padding: var(--space-2xl) 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.partners-label {
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}
.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}
.partner-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0.65;
    transition: opacity var(--transition);
    text-align: center;
}
.partner-logo-item:hover { opacity: 1; }
.partner-logo-item img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter var(--transition);
}
.partner-logo-item:hover img { filter: grayscale(0%); }
.partner-logo-item span {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 500;
}
/* Text fallback when no logo image */
.partner-logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-mid);
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.partner-logo-item:hover .partner-logo-text {
    border-color: var(--gold);
    color: var(--navy);
}

/* ── 14. EVENTS PAGE ────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,146,26,0.12) 0%, transparent 70%);
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 560px; margin: var(--space-md) auto 0; position: relative; z-index: 1; }

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
}
.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.event-card-img {
    width: 100%; height: 200px;
    object-fit: contain;
    background: var(--gray-100);
}
.event-card-img-placeholder {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.25);
}
.event-card-body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.event-card-meta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}
.event-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}
.badge-upcoming  { background: #e0f0ff; color: #1565c0; }
.badge-completed { background: var(--green-light); color: var(--green); }
.badge-ongoing   { background: #fff3e0; color: #e65100; }
.badge-cancelled { background: #ffebee; color: #c62828; }

.event-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    flex: 1;
}
.event-card .event-date,
.event-card .event-venue {
    font-size: 0.85rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: var(--space-xs);
}

/* ── 15. GALLERY ────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}
.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    background: var(--gray-200);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,32,68,0.55);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    z-index: 9999;
    background: rgba(10,18,40,0.96);
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    box-shadow: var(--shadow-lg);
}
.lightbox-close {
    position: absolute;
    top: var(--space-lg); right: var(--space-xl);
    background: none; border: none;
    color: var(--white); font-size: 2rem;
    cursor: pointer; line-height: 1;
    transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}
.lightbox-prev { left: var(--space-xl); }
.lightbox-next { right: var(--space-xl); }
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ── 16. VOLUNTEER FORM ─────────────────────────────────────── */
.volunteer-form-section {
    padding: var(--space-3xl) 0;
    background: var(--ivory);
}
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
    box-sizing: border-box;
    overflow: hidden;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}
.form-group { display: flex; flex-direction: column; gap: var(--space-xs); }
.form-group.full { grid-column: 1 / -1; }
.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.02em;
}
.form-label .required { color: var(--saffron); margin-left: 2px; }
.form-control {
    width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-700);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,146,26,0.12);
}
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit { margin-top: var(--space-lg); }

/* Alert messages */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}
.alert-success { background: var(--green-light); color: #1b5e20; border: 1px solid #a5d6a7; }
.alert-error   { background: #ffebee; color: #b71c1c; border: 1px solid #ef9a9a; }
.alert-info    { background: #e3f2fd; color: #0d47a1; border: 1px solid #90caf9; }

/* ── 17. ABOUT PAGE ─────────────────────────────────────────── */
.about-intro {
    padding: var(--space-3xl) 0;
    background: var(--white);
}
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}
.principle-card {
    padding: var(--space-lg);
    background: var(--ivory);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
}
.principle-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}
.principle-card p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* Structure / org chart */
.structure-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}
.structure-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--gray-200);
    position: relative;
}
.structure-card .level-num {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-gold);
}
.structure-card h4 { font-size: 0.88rem; margin-bottom: var(--space-xs); }
.structure-card p  { font-size: 0.78rem; color: var(--gray-400); margin: 0; }

/* ── 18. FOCUS AREAS PAGE ───────────────────────────────────── */
.focus-detail {
    padding: var(--space-3xl) 0;
}
.focus-detail:nth-child(even) { background: var(--white); }
.focus-detail:nth-child(odd)  { background: var(--ivory); }

.focus-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--space-3xl);
    align-items: start;
}
.focus-detail-grid.reverse { direction: rtl; }
.focus-detail-grid.reverse > * { direction: ltr; }

.focus-icon-large {
    font-size: 5rem;
    display: flex; align-items: center; justify-content: center;
    width: 140px; height: 140px;
    background: var(--gold-pale);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(201,146,26,0.2);
    margin-bottom: var(--space-lg);
}
.focus-detail-content h2 { margin-bottom: var(--space-sm); }
.focus-objective {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}
.focus-activities h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}
.focus-activities ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.focus-activities li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--gray-500);
}
.focus-activities li::before {
    content: '→';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── 19. CONTACT PAGE ───────────────────────────────────────── */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--ivory);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-3xl);
    align-items: start;
}
.contact-info h3 {
    margin-bottom: var(--space-lg);
}
.contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    align-items: flex-start;
}
.contact-icon {
    width: 44px; height: 44px;
    background: var(--gold-pale);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(201,146,26,0.2);
}
.contact-item-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}
.contact-item-text p, .contact-item-text a {
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* ── 20. PARTNERS PAGE ──────────────────────────────────────── */
.partners-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1.5px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition);
}
.partner-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.partner-card img {
    height: 64px; width: auto;
    object-fit: contain;
    margin: 0 auto var(--space-md);
}
.partner-card h3 { font-size: 1rem; margin-bottom: var(--space-xs); }
.partner-card .partner-type-badge {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    padding: 0.2rem 0.6rem;
    background: var(--gold-pale);
    border-radius: var(--radius-full);
}

/* Partner full cards — used on partners.php AND homepage */
.partners-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.partner-full-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--gray-200);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.partner-full-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--saffron));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.partner-full-card:hover {
    border-color: rgba(201,146,26,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.partner-full-card:hover::after { transform: scaleX(1); }
.pfc-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    position: relative;
}
.pfc-logo {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.25s ease;
}
.partner-full-card:hover .pfc-logo { filter: grayscale(0%); }
.pfc-logo-placeholder {
    width: 60px; height: 60px;
    background: var(--gold-pale);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    border: 1px solid rgba(201,146,26,0.2);
}
.pfc-featured-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.pfc-info { flex: 1; text-align: center; }
.pfc-name {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}
.pfc-type-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.6rem;
}
.pfc-desc {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0 0 0.4rem;
}
.pfc-since { font-size: 0.72rem; color: var(--gray-300); margin: 0; }
.pfc-visit-btn {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--gold-pale);
    color: var(--gold);
    border: 1px solid rgba(201,146,26,0.3);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    align-self: center;
}
.pfc-visit-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
@media (max-width: 1024px) {
    .partners-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .partners-cards-grid { grid-template-columns: 1fr; }
}

/* ── 21. FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.75);
}
.footer-top { padding: var(--space-3xl) 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
}

/* Footer brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}
.footer-logo {
    width: 56px; height: 56px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    object-fit: contain;
    background: var(--white);
    padding: 2px;
    box-shadow: 0 0 0 3px rgba(201,146,26,0.15);
}
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
}
.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: rgba(255,255,255,0.6);
}
.footer-org {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-lg);
}
.footer-org strong { color: var(--gold-light); }

/* Social icons */
.footer-social {
    display: flex;
    gap: var(--space-sm);
}
.social-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Footer columns */
.footer-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    font-weight: 700;
    font-family: var(--font-body);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-launch-box {
    margin-top: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    background: rgba(201,146,26,0.1);
    border: 1px solid rgba(201,146,26,0.25);
    border-radius: var(--radius-md);
}
.footer-launch-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 4px;
}
.footer-launch-date {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 2px;
}
.footer-launch-venue { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin: 0; }

/* Footer contact */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}
.fc-icon { flex-shrink: 0; margin-top: 1px; }
.footer-contact-list a { color: rgba(255,255,255,0.6); }
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-cta-btn {
    display: inline-block;
    margin-top: var(--space-lg);
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: var(--shadow-gold);
}
.footer-cta-btn:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201,146,26,0.5);
}

/* Footer bottom */
.footer-bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}
.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}
.footer-copy strong { color: rgba(255,255,255,0.65); }
.footer-inspired {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    margin: 0;
}

/* ── 22. RESPONSIVE BREAKPOINTS ─────────────────────────────── */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
    .focus-grid         { grid-template-columns: repeat(3, 1fr); }
    .structure-grid     { grid-template-columns: repeat(3, 1fr); }
    .footer-grid        { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
    .collab-photos      { gap: var(--space-lg); }
    .collab-photo,
    .collab-photo-placeholder { width: 130px; height: 130px; }
}

/* Small tablet: ≤ 768px */
@media (max-width: 768px) {
    :root { --navbar-h: 64px; }

    /* Grids → 1 column */
    .intro-grid         { grid-template-columns: 1fr; gap: var(--space-xl); }
    .focus-grid         { grid-template-columns: repeat(2, 1fr); }
    .events-grid        { grid-template-columns: 1fr; }
    .gallery-grid       { grid-template-columns: repeat(2, 1fr); }
    .structure-grid     { grid-template-columns: repeat(2, 1fr); }
    .principles-grid    { grid-template-columns: 1fr; }
    .contact-grid       { grid-template-columns: 1fr; }
    .partners-full-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid        { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .form-grid          { grid-template-columns: 1fr; }
    .form-group.full    { grid-column: 1; }
    .form-card          { padding: var(--space-lg); border-radius: 12px; }
    .volunteer-form-section .container { padding: 0 var(--space-md); }
    .vol-form-wrap      { min-width: 0; overflow: hidden; }

    /* Focus detail pages */
    .focus-detail-grid        { grid-template-columns: 1fr; }
    .focus-detail-grid.reverse { direction: ltr; }

    /* Collab section */
    .collab-photos {
        flex-direction: column;
        gap: var(--space-lg);
    }
    .collab-connector { flex-direction: row; padding: 0; }
    .collab-connector-line { height: 60px; width: 1px; }

    /* Countdown */
    .countdown-unit { padding: var(--space-md); min-width: 70px; }
    .countdown-num  { font-size: 2rem; }

    /* Hero */
    .hero-slider { height: 70vh; min-height: 400px; }
    .slide-caption { padding: var(--space-lg); }
}

/* Mobile: ≤ 480px */
@media (max-width: 480px) {
    .focus-grid         { grid-template-columns: 1fr; }
    .gallery-grid       { grid-template-columns: repeat(2, 1fr); }
    .partners-full-grid { grid-template-columns: 1fr; }
    .structure-grid     { grid-template-columns: 1fr; }
    .collab-photo,
    .collab-photo-placeholder { width: 110px; height: 110px; }
    .countdown-timer    { gap: var(--space-sm); }
    .countdown-unit     { min-width: 60px; }
    .countdown-num      { font-size: 1.6rem; }
    .hero-slider        { height: auto; min-height: 100vh; }
    .slider-prev,
    .slider-next        { width: 34px; height: 34px; font-size: .9rem; top: auto; bottom: 12px; transform: none; }
    .slider-prev        { left: 12px; }
    .slider-next        { right: 12px; }
    .slider-prev:hover,
    .slider-next:hover  { transform: scale(1.1); }
}
