/* ==========================================================================
   CHIZZY PEARL FOUNDATION — Best Color Design Template
   Roles: Green = brand/trust · Orange = action · Gold = hope · Gray = structure
   ========================================================================== */

:root {
    /* —— Brand green (trust, header, headings) —— */
    --clr-green: #006b3a;
    --clr-green-deep: #003d24;
    --clr-green-bright: #0d9a52;
    --clr-green-soft: #e8f5ee;
    --clr-green-mist: #f5faf7;

    /* —— Action orange (CTAs, active states) —— */
    --clr-orange: #e8720c;
    --clr-orange-bright: #f58a28;
    --clr-orange-deep: #b85a08;
    --clr-orange-soft: #fff4eb;
    --clr-orange-glow: rgba(232, 114, 12, 0.3);

    /* —— Structure gray (text, surfaces, rhythm) —— */
    --clr-gray: #6b7280;
    --clr-gray-light: #e5e7eb;
    --clr-gray-soft: #f4f5f7;
    --clr-gray-mid: #9ca3af;
    --clr-gray-dark: #374151;
    --clr-gray-deep: #1a2332;

    /* —— Hope gold (hero accents, warmth) —— */
    --clr-gold: #f0b429;
    --clr-gold-bright: #ffc94a;
    --clr-gold-glow: rgba(240, 180, 41, 0.38);
    --clr-gold-dark: #c99212;
    --clr-gold-wash: #fff9e8;

    --clr-bg: #ffffff;
    --clr-bg-deep: #f4f5f7;
    --clr-surface: #ffffff;
    --clr-surface-solid: #ffffff;
    --clr-surface-soft: #f4f5f7;
    --clr-border: rgba(26, 35, 50, 0.12);
    --clr-border-focus: rgba(0, 107, 58, 0.4);

    --clr-text-pri: #1a2332;
    --clr-text-sec: #4b5563;
    --clr-text-muted: #6b7280;
    --clr-text-on-green: #ffffff;
    --clr-text-on-gold: #1a2332;
    --clr-text-on-orange: #ffffff;

    --clr-leaf: var(--clr-green);
    --clr-leaf-bright: var(--clr-green-bright);
    --clr-leaf-glow: rgba(0, 107, 58, 0.22);

    --clr-whatsapp: #25d366;
    --clr-whatsapp-hover: #128c7e;
    --clr-danger: #d64545;
    --clr-success: #006b3a;

    /* Gradients — intentional, not decorative noise */
    --gradient-primary: linear-gradient(135deg, var(--clr-orange) 0%, var(--clr-orange-deep) 55%, var(--clr-green) 100%);
    --gradient-brand: linear-gradient(135deg, var(--clr-green) 0%, var(--clr-green-deep) 100%);
    --gradient-warm: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-orange) 100%);
    --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
    --gradient-hero: linear-gradient(105deg, rgba(0, 61, 36, 0.9) 0%, rgba(26, 35, 50, 0.4) 48%, rgba(0, 61, 36, 0.78) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(240, 180, 41, 0.14) 0%, transparent 68%);
    --texture-grain: none;

    --font-display: 'Montserrat', system-ui, sans-serif;
    --font-heading: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Nunito', system-ui, sans-serif;
    --font-script: 'Caveat', cursive;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.55s cubic-bezier(0.22, 1, 0.36, 1);

    --br-sm: 6px;
    --br-md: 14px;
    --br-lg: 22px;
    --br-round: 50%;
    --shadow-sm: 0 4px 14px rgba(13, 107, 58, 0.08);
    --shadow-md: 0 12px 32px rgba(13, 107, 58, 0.1);
    --shadow-lg: 0 20px 48px rgba(13, 107, 58, 0.14);

    --header-offset: 108px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-bg);
    background-image: var(--gradient-dark), var(--texture-grain);
    background-attachment: fixed;
    color: var(--clr-text-pri);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-offset);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img, svg {
    max-width: 100%;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

section {
    padding: 96px 0;
    position: relative;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--transition-slow), transform 0.7s var(--transition-slow);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glass / surface */
.glass-card {
    background: var(--clr-surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--clr-border);
    border-radius: var(--br-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.program-card.glass-card,
.pillar.glass-card {
    padding: 0;
}

.glass-card:hover {
    border-color: rgba(13, 107, 58, 0.25);
    box-shadow: var(--shadow-lg);
}

.page-title,
.section-header h2,
.gallery-header-section h1,
.legal-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--clr-green-deep);
    line-height: 1.15;
}

.section-header h2 {
    margin-bottom: 16px;
}

.gallery-header-section h1 {
    margin-bottom: 16px;
}

.legal-title {
    margin-bottom: 8px;
    border-bottom: 2px solid var(--clr-gold);
    padding-bottom: 15px;
}

[data-theme="dark"] .gallery-header-section h1,
[data-theme="dark"] .legal-title {
    color: var(--clr-green-bright);
}

.page-eyebrow,
.legal-meta {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--clr-orange);
}

.legal-meta {
    margin-bottom: 24px;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--clr-text-pri);
    letter-spacing: -0.02em;
}

.highlight-text {
    color: var(--clr-orange);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    display: inline;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--clr-orange);
    margin-bottom: 14px;
}

.font-gold {
    color: var(--clr-gold-dark) !important;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
    color: var(--clr-green-deep);
}

.section-header p {
    color: var(--clr-text-sec);
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    border-radius: var(--br-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-lg {
    padding: 16px 34px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--clr-orange);
    color: var(--clr-text-on-orange);
}

.btn-primary:hover {
    background: var(--clr-orange-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--clr-orange-glow);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 6px 22px var(--clr-orange-glow);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 107, 58, 0.28);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--clr-gold-bright);
    background: rgba(240, 180, 41, 0.18);
    color: #ffffff;
}

.btn-secondary {
    background: var(--clr-green-soft);
    color: var(--clr-green-deep);
}

.btn-secondary:hover {
    background: #d4ecdd;
}

/* Top bar — flyer green banner */
.top-bar {
    background: var(--clr-green-deep);
    border-bottom: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    padding: 7px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 22px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-bar-item i {
    color: var(--clr-gold-bright);
}

/* Header — solid flyer green like brochure nav */
.main-header {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--clr-green);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 3px solid var(--clr-gold);
    transition: var(--transition-normal);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo img {
    height: 46px;
    width: auto;
    border-radius: 4px;
    object-fit: cover;
    background: #fff;
}

.logo-text {
    color: #ffffff;
}

.logo-text span {
    color: var(--clr-gold-bright);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    padding: 6px 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-gold);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.45rem;
    color: #ffffff;
    cursor: pointer;
}

/* Floating social */
.sharing-social-bar {
    position: fixed;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}

.sharing-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid var(--clr-border);
    border-radius: var(--br-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-green);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.sharing-icon:hover {
    color: var(--clr-text-on-gold);
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    transform: translateX(4px);
}

/* ==========================================================================
   HERO — full-bleed composition
   ========================================================================== */
.hero {
    position: relative;
    height: calc(100vh - var(--header-offset));
    min-height: 620px;
    max-height: 920px;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: flex-end;
    margin-top: 0;
}

.slider-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease, visibility 1.1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
    animation: heroKenBurns 14s ease-out forwards;
}

@keyframes heroKenBurns {
    from { transform: scale(1.04); }
    to { transform: scale(1); }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 2;
}

.slide-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
}

.hero-content {
    max-width: 720px;
}

.hero-brand-block {
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s 0.15s ease forwards;
}

.hero-brand {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4.2vw, 2.85rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-bottom: 6px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 500;
    color: var(--clr-gold-bright);
    letter-spacing: 0.06em;
    text-transform: none;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 14px;
    color: #ffffff;
    text-transform: none;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 0.85s 0.28s ease forwards;
}

.hero-script {
    font-family: var(--font-script);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--clr-gold-bright);
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0;
    animation: fadeUp 0.85s 0.35s ease forwards;
}

.hero-lead {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.85s 0.4s ease forwards;
}

.highlight-text {
    color: var(--clr-gold-bright);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    display: inline;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.85s 0.52s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(13, 107, 58, 0.25);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    background: var(--clr-gold);
    transform: scale(1.25);
    box-shadow: 0 0 12px var(--clr-gold-glow);
}

/* ==========================================================================
   ABOUT — editorial split
   ========================================================================== */
.about-section {
    background:
        radial-gradient(ellipse 80% 50% at 10% 20%, rgba(13, 107, 58, 0.06) 0%, transparent 55%),
        #ffffff;
}

.about-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 72px;
}

.about-intro-copy .section-tag {
    text-align: left;
}

.about-intro-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 3.5vw, 2.9rem);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.about-intro-copy > p {
    color: var(--clr-text-sec);
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.about-credentials span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-credentials i {
    color: var(--clr-gold);
}

.about-intro-visual {
    position: relative;
    border-radius: var(--br-md);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-height: 520px;
}

.about-intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 82, 44, 0.55) 0%, transparent 45%);
    pointer-events: none;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pillar {
    padding: 0;
    overflow: hidden;
}

.pillar-media {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--clr-gold);
}

.pillar-body {
    padding: 28px 26px 30px;
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background: var(--clr-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 18px;
    margin-top: -48px;
    position: relative;
    box-shadow: 0 6px 16px rgba(0, 77, 44, 0.25);
    border: 3px solid var(--clr-gold);
}

.pillar h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--clr-green-deep);
}

.pillar p {
    color: var(--clr-text-sec);
    font-size: 0.94rem;
}

.pillar:hover {
    transform: translateY(-6px);
}

/* Legacy aliases used in older markup */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--br-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.15rem;
    color: var(--clr-text-on-gold);
}

.feature-card h3 {
    font-size: 1.28rem;
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.feature-card p {
    color: var(--clr-text-sec);
    font-size: 0.94rem;
}

/* Stats — after about */
.stats-banner-container {
    background: linear-gradient(135deg, var(--clr-green-deep) 0%, var(--clr-gray-deep) 100%);
    border-top: none;
    border-bottom: 4px solid var(--clr-orange);
    padding: 52px 0;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-banner-item {
    position: relative;
}

.stat-banner-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 600;
    color: var(--clr-gold-bright);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    line-height: 1.2;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Dividers */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 36px;
}

.section-divider .shape-fill {
    fill: var(--clr-bg);
}

.watermark-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    background-image: url('logo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   PROGRAMS — featured + grid
   ========================================================================== */
.programs-section {
    background-color: var(--clr-green-mist);
}

.programs-featured {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    margin-bottom: 28px;
}

.program-feature {
    position: relative;
    min-height: 340px;
    border-radius: var(--br-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.program-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.program-feature:hover img {
    transform: scale(1.05);
}

.program-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 82, 44, 0.9) 0%, rgba(8, 82, 44, 0.15) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
}

.program-feature-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.program-feature-overlay p {
    color: var(--clr-text-sec);
    font-size: 0.95rem;
    max-width: 420px;
}

.program-feature-side {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.program-feature-side .program-feature {
    min-height: 156px;
    flex: 1;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin-top: 8px;
}

.program-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 107, 58, 0.12);
    background: #ffffff;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    padding: 0;
}

.program-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.program-card-body {
    padding: 22px 22px 26px;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 196, 26, 0.45);
    box-shadow: 0 12px 32px rgba(13, 107, 58, 0.1);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    font-size: 1.45rem;
    color: var(--clr-gold);
    margin-bottom: 12px;
}

.program-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-weight: 600;
}

.program-card p {
    font-size: 0.88rem;
    color: var(--clr-text-sec);
    line-height: 1.55;
}

/* Stories */
.stories-section {
    background: #ffffff;
    padding: 96px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.blog-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: 0.35s;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--br-sm);
    margin-bottom: 18px;
}

.blog-body {
    padding: 0;
}

.blog-date {
    font-size: 0.72rem;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
}

.blog-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-weight: 600;
}

.blog-body p {
    font-size: 0.92rem;
    color: var(--clr-text-sec);
    line-height: 1.55;
    margin-bottom: 14px;
}

.blog-link {
    font-size: 0.85rem;
    color: var(--clr-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.blog-link:hover {
    color: var(--clr-gold-bright);
    gap: 12px;
}

/* Testimonials */
.testimonials-section {
    background: var(--clr-green-mist);
    padding: 96px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: transparent;
    border: none;
    border-left: 2px solid var(--clr-gold);
    border-radius: 0;
    padding: 8px 0 8px 28px;
    box-shadow: none;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--clr-gold-bright);
    box-shadow: none;
    transform: none;
}

.testimonial-card i.quote-icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.6rem;
    color: rgba(13, 107, 58, 0.15);
}

.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--clr-text-sec);
    margin-bottom: 24px;
    font-weight: 450;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-on-gold);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--clr-gold);
}

/* Team */
.team-section {
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.team-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    min-height: 100%;
}

.team-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: var(--br-sm);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(13, 107, 58, 0.15);
}

.team-img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.55s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.04);
}

.team-card h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    min-height: 2.6em;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.team-position {
    font-size: 0.78rem;
    color: var(--clr-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    min-height: 1.25rem;
    margin-bottom: 14px;
    font-family: var(--font-heading);
}

.team-bio {
    font-size: 0.88rem;
    color: var(--clr-text-sec);
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
}

.team-bio em {
    font-size: inherit;
    font-style: italic;
}

.team-contact {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    margin-bottom: 12px;
    margin-top: auto;
    min-height: 3.25rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.team-contact a:hover {
    color: var(--clr-gold);
}

.team-social {
    display: flex;
    gap: 10px;
    min-height: 32px;
}

.office-card .team-contact {
    margin-bottom: 0;
    padding-bottom: 44px;
}

.team-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.team-social a:hover {
    background: var(--clr-gold);
    color: var(--clr-text-on-gold);
}

/* Anthem */
.anthem-section {
    background: #ffffff;
}

.anthem-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.anthem-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 8px;
}

.anthem-subtitle {
    font-size: 1.05rem;
    color: var(--clr-gold);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
}

.anthem-description {
    color: var(--clr-text-sec);
    margin-bottom: 24px;
}

.lyrics-container {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: var(--br-md);
    background: #f3faf6;
    border: 1px solid var(--clr-border);
    padding: 20px;
}

.lyrics-fader {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to bottom,
        var(--clr-bg) 0%,
        transparent 22%,
        transparent 78%,
        var(--clr-bg) 100%
    );
}

.lyrics-track {
    transition: transform 0.5s ease-out;
    transform: translateY(60px);
}

.lyric-line {
    font-size: 0.95rem;
    padding: 10px 0;
    color: var(--clr-text-muted);
    text-align: center;
    transition: var(--transition-normal);
}

.lyric-line.active {
    color: var(--clr-text-pri);
    font-weight: 600;
    transform: scale(1.04);
}

.lyric-line.highlight-chorus {
    color: rgba(240, 196, 26, 0.45);
}

.lyric-line.highlight-chorus.active {
    color: var(--clr-gold);
    text-shadow: 0 0 12px var(--clr-gold-glow);
}

.verse-break {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--clr-leaf-bright) !important;
    opacity: 0.7;
    padding-top: 15px;
    padding-bottom: 5px;
}

.synth-player {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.player-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.synth-branding {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--clr-text-muted);
    border-radius: var(--br-round);
    display: inline-block;
}

.pulse-dot.active {
    background-color: var(--clr-gold);
    box-shadow: 0 0 10px var(--clr-gold);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 1; }
}

.synth-status {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-sec);
    font-family: var(--font-heading);
}

.visualizer-container {
    position: relative;
    height: 180px;
    background: #f3faf6;
    border-radius: var(--br-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

#visualizerCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 82, 44, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 5;
    transition: opacity var(--transition-normal);
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-overlay-btn {
    width: 56px;
    height: 56px;
    border-radius: var(--br-round);
    background: var(--clr-gold);
    color: var(--clr-text-on-gold);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 22px var(--clr-gold-glow);
    transition: transform var(--transition-normal), background var(--transition-normal);
}

.play-overlay-btn:hover {
    transform: scale(1.08);
    background: var(--clr-gold-bright);
}

.play-overlay span {
    font-size: 0.78rem;
    color: var(--clr-text-sec);
}

.player-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-display {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
    min-width: 32px;
}

.player-progress,
.volume-slider {
    flex-grow: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    accent-color: var(--clr-gold);
}

.controls-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-icon {
    font-size: 1.15rem;
    color: var(--clr-text-sec);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-icon:hover {
    color: var(--clr-text-pri);
}

.btn-play {
    width: 48px;
    height: 48px;
    border-radius: var(--br-round);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-pri);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-play:hover {
    background: var(--clr-gold);
    color: var(--clr-text-on-gold);
    box-shadow: 0 0 16px var(--clr-gold-glow);
}

.volume-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 140px;
    margin: 0 auto;
}

.volume-row i {
    font-size: 0.9rem;
    color: var(--clr-text-sec);
    width: 16px;
}

/* Sponsors */
.sponsors-section {
    background: var(--clr-green-mist);
    padding: 72px 0;
    border-top: 1px solid rgba(13, 107, 58, 0.1);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: center;
    justify-items: center;
    margin-top: 28px;
}

.sponsor-card {
    background: transparent;
    border: 1px solid rgba(13, 107, 58, 0.12);
    border-radius: var(--br-sm);
    padding: 18px 14px;
    text-align: center;
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--clr-text-sec);
    font-size: 0.82rem;
    transition: 0.3s;
    user-select: none;
    gap: 10px;
}

.sponsor-logo-img {
    height: 36px;
    width: auto;
    max-width: 52px;
    object-fit: contain;
    border-radius: 4px;
    transition: transform var(--transition-normal);
}

.sponsor-card:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold);
    transform: translateY(-3px);
}

.sponsor-card:hover .sponsor-logo-img {
    transform: scale(1.08);
}

/* FAQ */
.faq-section {
    background: var(--clr-green-mist);
    padding: 96px 0;
}

.faq-container {
    max-width: 760px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(13, 107, 58, 0.15);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-trigger {
    width: 100%;
    padding: 22px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-display);
}

.faq-trigger i {
    color: var(--clr-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-panel-content {
    padding: 0 4px 22px;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--clr-text-sec);
}

/* Volunteer & forms */
.volunteer-section {
    background: #ffffff;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group.spacer-top {
    margin-top: 24px;
}

.form-card label,
.form-group label {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--clr-green-deep);
}

[data-theme="dark"] .form-card label,
[data-theme="dark"] .form-group label {
    color: var(--clr-green-bright);
}

.form-card input,
.form-card select,
.form-card textarea,
.newsletter-form input,
.modal-body input,
.modal-body select {
    background: #f3faf6;
    border: 1px solid var(--clr-border);
    border-radius: var(--br-sm);
    padding: 12px 16px;
    font-size: 0.94rem;
    color: var(--clr-text-pri);
    transition: var(--transition-normal);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.newsletter-form input:focus,
.modal-body input:focus,
.modal-body select:focus {
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 3px var(--clr-border-focus);
}

.form-card textarea {
    resize: vertical;
    width: 100%;
    font-family: inherit;
}

.volunteer-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.volunteer-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-text-sec);
}

.volunteer-benefits li i {
    color: var(--clr-gold);
}

.section-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-info > p {
    color: var(--clr-text-sec);
}

/* Contact & footer */
.contact-section {
    background: var(--clr-green);
    padding-top: 96px;
    padding-bottom: 0;
    color: #ffffff;
}

.newsletter-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 72px;
    background: #ffffff;
}

.newsletter-text h3 {
    font-size: 1.45rem;
    margin-bottom: 6px;
    font-family: var(--font-display);
}

.newsletter-text p {
    color: var(--clr-text-sec);
    font-size: 0.94rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-grow: 1;
    max-width: 480px;
}

.newsletter-form input {
    flex-grow: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--clr-border);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-heading);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-desc {
    color: var(--clr-text-sec);
    font-size: 0.9rem;
    margin-top: 16px;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: var(--br-round);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(13, 107, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    color: var(--clr-text-sec) !important;
    transition: var(--transition-normal);
}

.social-icons a:hover {
    background: var(--clr-gold);
    color: var(--clr-text-on-gold) !important;
    border-color: var(--clr-gold);
    transform: translateY(-2px);
}

.links-col ul,
.contact-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.links-col a {
    color: var(--clr-text-sec);
    font-size: 0.92rem;
}

.links-col a:hover {
    color: var(--clr-gold);
    padding-left: 4px;
}

.contact-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--clr-text-sec);
    font-size: 0.9rem;
}

.contact-col li i {
    color: var(--clr-gold);
    width: 16px;
    margin-top: 3px;
}

.footer-bottom {
    padding: 28px 0 40px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.footer-bottom p:first-child {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clr-gold);
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Donation tracker leftovers */
.donation-tracker {
    margin: 40px 0;
    background: rgba(4, 14, 8, 0.4);
    border: 1px solid rgba(13, 107, 58, 0.1);
    padding: 24px;
    border-radius: var(--br-md);
}

.tracker-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-val {
    font-size: 1.35rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--clr-gold);
}

.metric-lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    letter-spacing: 0.08em;
}

.progress-bar-bg {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 71%;
    background: linear-gradient(90deg, var(--clr-leaf) 0%, var(--clr-gold) 100%);
    border-radius: 6px;
    animation: slideInBar 1.5s ease-out forwards;
}

@keyframes slideInBar {
    0% { width: 0%; }
    100% { width: 71.25%; }
}

.tracker-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--clr-text-muted);
}

.monthly-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.support-card {
    text-align: center;
    border: 1px solid rgba(13, 107, 58, 0.12);
    background: #ffffff;
    padding: 24px;
    border-radius: var(--br-md);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-gold);
}

.support-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin: 12px 0 6px;
    font-family: var(--font-display);
}

.support-desc {
    font-size: 0.85rem;
    color: var(--clr-text-sec);
    margin-bottom: 20px;
}

/* WhatsApp widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 58px;
    height: 58px;
    border-radius: var(--br-round);
    background: var(--clr-whatsapp);
    color: white;
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition-normal), background var(--transition-normal);
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.06);
    background: var(--clr-whatsapp-hover);
}

.whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--clr-danger);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: var(--br-round);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--clr-bg);
}

.whatsapp-chat {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    max-height: 450px;
    display: flex;
    flex-direction: column;
    border-radius: var(--br-md);
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.whatsapp-chat.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.whatsapp-chat-header {
    background: #075e54;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.agent-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: var(--br-round);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--clr-success);
    border-radius: var(--br-round);
    border: 2px solid #075e54;
}

.agent-info h5 {
    font-size: 0.95rem;
    color: white;
}

.agent-info span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
}

.chat-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 1.1rem;
}

.chat-close:hover {
    color: white;
}

.whatsapp-chat-body {
    flex-grow: 1;
    padding: 16px;
    background: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    height: 250px;
}

.chat-message {
    padding: 10px 12px;
    border-radius: var(--br-sm);
    font-size: 0.85rem;
    max-width: 85%;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chat-message.received {
    background: white;
    color: #303030;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.chat-message.sent {
    background: #dcf8c6;
    color: #303030;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.chat-time {
    display: block;
    font-size: 0.65rem;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

.typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
}

.typing .dot {
    width: 6px;
    height: 6px;
    background: #909090;
    border-radius: var(--br-round);
    animation: typingPulse 1.2s infinite ease-in-out;
}

.typing .dot:nth-child(2) { animation-delay: 0.2s; }
.typing .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.whatsapp-chat-footer {
    padding: 12px;
    background: #f0f0f0;
    display: flex;
    gap: 8px;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-chat-footer input {
    flex-grow: 1;
    background: white;
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #303030;
}

.chat-send-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--br-round);
    background: #075e54;
    color: white;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chat-send-btn:hover {
    background: #128c7e;
}

/* AI widget */
.ai-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.ai-btn {
    width: 58px;
    height: 58px;
    border-radius: var(--br-round);
    background: var(--clr-gold);
    color: var(--clr-text-on-gold);
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(240, 196, 26, 0.45);
    transition: transform var(--transition-normal), background var(--transition-normal);
    position: relative;
    border: none;
}

.ai-btn:hover {
    transform: scale(1.06);
    background: var(--clr-gold-bright);
}

.ai-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--clr-danger);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: var(--br-round);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--clr-bg);
}

.ai-chat {
    position: absolute;
    bottom: 75px;
    left: 0;
    width: 320px;
    max-height: 450px;
    display: flex;
    flex-direction: column;
    border-radius: var(--br-md);
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: transform var(--transition-normal), opacity var(--transition-normal);
    background: #ffffff;
    border: 1px solid rgba(240, 196, 26, 0.3);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.ai-chat.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.ai-chat-header {
    background: var(--clr-green);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    border-bottom: 1px solid rgba(13, 107, 58, 0.15);
}

.ai-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: var(--br-round);
    background: rgba(13, 107, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--clr-gold);
}

.ai-online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--clr-success);
    border-radius: var(--br-round);
    border: 2px solid var(--clr-green);
}

.ai-info h5 {
    font-size: 0.95rem;
    color: white;
    margin: 0;
}

.ai-info span {
    font-size: 0.72rem;
    color: var(--clr-gold);
}

.ai-chat-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.ai-chat-close:hover {
    color: white;
}

.ai-chat-body {
    flex-grow: 1;
    padding: 16px;
    background: #f3faf6;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    height: 250px;
}

.ai-chat-message {
    padding: 10px 12px;
    border-radius: var(--br-sm);
    font-size: 0.85rem;
    max-width: 85%;
    line-height: 1.4;
}

.ai-chat-message.received {
    background: rgba(255, 255, 255, 0.05);
    color: #cfd8d3;
    align-self: flex-start;
    border-top-left-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-chat-message.sent {
    background: var(--clr-green-soft);
    color: #ffffff;
    align-self: flex-end;
    border-top-right-radius: 0;
    border: 1px solid rgba(13, 107, 58, 0.15);
}

.ai-chat-time {
    display: block;
    font-size: 0.65rem;
    color: #888;
    text-align: right;
    margin-top: 4px;
}

.ai-chat-footer {
    display: flex;
    background: var(--clr-green);
    padding: 12px;
    gap: 8px;
    align-items: center;
    border-top: 1px solid rgba(13, 107, 58, 0.15);
}

.ai-chat-footer input {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(13, 107, 58, 0.2);
    border-radius: 20px;
    padding: 8px 12px;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
}

.ai-chat-footer input::placeholder {
    color: #888;
}

.ai-send-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--br-round);
    background: var(--clr-gold);
    color: var(--clr-text-on-gold);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.ai-send-btn:hover {
    background: var(--clr-gold-bright);
}

/* Modal / donation wizard */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 82, 44, 0.55);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity var(--transition-normal);
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-container {
    width: 100%;
    max-width: 550px;
    background: var(--clr-surface-solid);
    border-radius: var(--br-lg);
    overflow: hidden;
    transform: scale(1);
    transition: transform var(--transition-normal);
    max-height: 92vh;
    overflow-y: auto;
}

.modal-overlay.hidden .modal-container {
    transform: scale(0.94);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid var(--clr-border);
}

.modal-title {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
}

.modal-close {
    font-size: 1.25rem;
    color: var(--clr-text-sec);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--clr-text-pri);
}

.modal-body {
    padding: 24px;
}

.wizard-progress {
    display: flex;
    background: rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid var(--clr-border);
}

.wizard-step {
    flex-grow: 1;
    text-align: center;
    padding: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    border-bottom: 2px solid transparent;
    font-family: var(--font-heading);
}

.wizard-step.active {
    color: var(--clr-gold);
    border-bottom-color: var(--clr-gold);
}

.wizard-content-panel {
    display: none;
}

.wizard-content-panel.active {
    display: block;
}

.panel-subtitle {
    font-size: 0.9rem;
    color: var(--clr-text-sec);
    margin-bottom: 20px;
    line-height: 1.55;
}

.panel-subtitle strong {
    color: var(--clr-orange);
    font-weight: 700;
}

.modal-body .form-group label,
.modal-body label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--clr-green-deep);
    margin-bottom: 8px;
}

.input-info {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--clr-orange);
    font-weight: 600;
}

.agreement-checkbox label {
    color: var(--clr-gray-dark) !important;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 0.9rem !important;
}

.wizard-content-panel h4 {
    color: var(--clr-green-deep);
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 8px;
}

.bank-transfer-panel h4 {
    color: var(--clr-orange-deep);
}

.bank-detail-row span {
    color: var(--clr-gray);
    font-weight: 600;
}

.bank-detail-row strong {
    color: var(--clr-green-deep);
}

.bank-transfer-hint {
    color: var(--clr-text-sec);
    font-size: 0.85rem;
}

.security-instructions-box h4 {
    color: var(--clr-green-deep) !important;
    margin-bottom: 4px;
}

.security-instructions-box p {
    color: var(--clr-text-sec);
    font-size: 0.88rem;
}

.paystack-loading h4 {
    color: var(--clr-green-deep);
}

.paystack-success-mockup h3 {
    color: var(--clr-green-deep);
}

.paystack-success-mockup #successMessage {
    color: var(--clr-text-sec);
}

.donation-receipt .bank-detail-row span {
    color: var(--clr-gray);
}

.donation-receipt .bank-detail-row strong {
    color: var(--clr-green-deep);
}

#payloadAmount {
    color: var(--clr-orange) !important;
}

#payloadRef {
    color: var(--clr-orange-deep) !important;
}

.payment-method-card .pm-title {
    color: var(--clr-green-deep);
    font-weight: 800;
}

.payment-method-card .pm-desc {
    color: var(--clr-text-muted);
}

.payment-method-card.active .pm-title {
    color: var(--clr-orange-deep);
}

.payment-method-card.active .pm-desc {
    color: var(--clr-orange);
}

[data-theme="dark"] .modal-body .form-group label,
[data-theme="dark"] .modal-body label {
    color: var(--clr-green-bright);
}

[data-theme="dark"] .panel-subtitle {
    color: var(--clr-text-sec);
}

[data-theme="dark"] .panel-subtitle strong {
    color: var(--clr-orange-bright);
}

[data-theme="dark"] .input-info {
    color: var(--clr-orange-bright);
}

[data-theme="dark"] .agreement-checkbox label {
    color: var(--clr-text-sec) !important;
}

[data-theme="dark"] .bank-detail-row strong,
[data-theme="dark"] .donation-receipt .bank-detail-row strong,
[data-theme="dark"] .payment-method-card .pm-title,
[data-theme="dark"] .security-instructions-box h4,
[data-theme="dark"] .paystack-loading h4 {
    color: var(--clr-green-bright);
}

[data-theme="dark"] .payment-method-card.active .pm-title {
    color: var(--clr-orange-bright);
}

.donation-frequency {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.freq-btn {
    flex-grow: 1;
    padding: 10px;
    border-radius: var(--br-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-border);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.freq-btn.active,
.freq-btn:hover {
    background: rgba(13, 107, 58, 0.1);
    border-color: var(--clr-gold);
    color: var(--clr-gold);
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.amount-btn {
    padding: 12px;
    border-radius: var(--br-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-border);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.amount-btn.active,
.amount-btn:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-text-on-gold);
}

/* Payment method cards */
.payment-method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-method-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    align-items: center;
    text-align: left;
    padding: 16px 18px;
    border-radius: var(--br-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--clr-border);
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--clr-text-pri);
}

.payment-method-card i {
    grid-row: 1 / 3;
    font-size: 1.6rem;
    color: var(--clr-gold);
}

.payment-method-card .pm-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.payment-method-card .pm-desc {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.payment-method-card:hover {
    border-color: rgba(240, 196, 26, 0.5);
    background: rgba(13, 107, 58, 0.06);
}

.payment-method-card.active {
    border-color: var(--clr-gold);
    background: rgba(13, 107, 58, 0.12);
    box-shadow: 0 0 0 1px rgba(240, 196, 26, 0.3);
}

.bank-transfer-panel {
    margin-bottom: 20px;
    padding: 18px;
    background: rgba(13, 107, 58, 0.05);
    border: 1px dashed rgba(240, 196, 26, 0.45);
    border-radius: var(--br-md);
}

.bank-transfer-panel h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.bank-account-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.bank-acct-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: var(--br-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-border);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--clr-text-sec);
}

.bank-acct-btn.active,
.bank-acct-btn:hover {
    background: rgba(13, 107, 58, 0.12);
    border-color: var(--clr-gold);
    color: var(--clr-gold);
}

.bank-account-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f3faf6;
    border-radius: var(--br-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.88rem;
}

.bank-detail-row span {
    color: var(--clr-text-muted);
    flex-shrink: 0;
}

.bank-detail-row strong {
    color: var(--clr-text-pri);
    text-align: right;
    word-break: break-word;
}

.bank-acct-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: var(--clr-gold) !important;
}

.btn-copy-acct {
    background: rgba(13, 107, 58, 0.15);
    border: 1px solid rgba(240, 196, 26, 0.35);
    color: var(--clr-gold);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-copy-acct:hover {
    background: var(--clr-gold);
    color: var(--clr-text-on-gold);
}

.bank-dollar-note {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--clr-text-sec);
    margin-top: 4px;
    padding: 12px;
    background: #f3faf6;
    border-radius: var(--br-sm);
}

.bank-dollar-note a {
    color: var(--clr-gold);
    text-decoration: underline;
}

.bank-transfer-hint {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-top: 14px;
}

.donation-receipt {
    text-align: left;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#donationAmount {
    width: 100%;
    padding-left: 36px !important;
    font-size: 1.15rem;
    font-weight: 600;
}

.custom-amount-group {
    margin-top: 15px;
}

.custom-amount-group.hidden {
    display: none;
}

.input-prefix-container {
    display: flex;
    position: relative;
}

.input-prefix-container .prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-sec);
    font-weight: 600;
}

.input-prefix-container input {
    padding-left: 36px !important;
    width: 100%;
}

.input-info {
    display: block;
    font-size: 0.8rem;
    color: var(--clr-orange);
    font-weight: 600;
    margin-top: 6px;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    border-top: 1px solid var(--clr-border);
    padding-top: 20px;
}

.security-instructions-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(13, 107, 58, 0.08);
    border: 1px solid rgba(13, 107, 58, 0.2);
    border-radius: var(--br-sm);
}

.security-icon {
    color: var(--clr-gold);
}

.security-banner h4 {
    font-size: 0.95rem;
    color: var(--clr-gold);
    margin-bottom: 4px;
}

.security-banner p {
    font-size: 0.8rem;
    color: var(--clr-text-sec);
}

.agreement-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding-top: 10px;
}

.agreement-checkbox input {
    margin-top: 4px;
    accent-color: var(--clr-gold);
}

.agreement-checkbox label {
    font-size: 0.85rem;
    color: var(--clr-text-pri);
    cursor: pointer;
    user-select: none;
}

.paystack-loading {
    padding: 40px 0;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--clr-gold);
    border-radius: var(--br-round);
    margin: 0 auto 20px;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.paystack-loading h4 {
    margin-bottom: 8px;
}

.paystack-loading p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.paystack-success-mockup {
    padding: 20px 0;
}

.success-icon {
    font-size: 3.4rem;
    color: var(--clr-success);
    margin-bottom: 16px;
    animation: scaleUp 0.4s ease-out;
}

@keyframes scaleUp {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.paystack-success-mockup h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.paystack-success-mockup p {
    font-size: 0.85rem;
    color: var(--clr-text-sec);
    margin-bottom: 20px;
}

.code-payload-mock {
    background: #0d1117;
    border-radius: var(--br-sm);
    padding: 16px;
    text-align: left;
    margin-bottom: 20px;
    border: 1px solid var(--clr-border);
}

.code-payload-mock code {
    font-family: ui-monospace, monospace;
    font-size: 0.78rem;
    color: #e6edf3;
    line-height: 1.5;
}

#payloadEmail,
#payloadAmount {
    color: #ff7b72;
    font-weight: 600;
}

.success-footer-note {
    font-style: italic;
    color: var(--clr-orange) !important;
}

.donation-receipt {
    background: var(--clr-gray-soft);
    border: 1px solid var(--clr-border);
    border-radius: var(--br-md);
    padding: 16px 18px;
    margin: 18px 0 12px;
    text-align: left;
}

.donation-receipt .bank-detail-row {
    border-bottom: 1px solid var(--clr-border);
}

.donation-receipt .bank-detail-row:last-child {
    border-bottom: none;
}

.success-email-note {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-top: 8px;
}

.success-email-note i {
    color: var(--clr-green);
    margin-right: 6px;
}

/* Donate modal — brand theme (light + dark) */
.modal-container {
    background: var(--clr-surface-solid);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: linear-gradient(135deg, var(--clr-green) 0%, var(--clr-green-deep) 100%);
    border-bottom: 3px solid var(--clr-orange);
    color: #ffffff;
}

.modal-title {
    color: #ffffff;
}

.modal-title .font-gold,
.modal-title i {
    color: var(--clr-gold-bright) !important;
}

.modal-close {
    color: rgba(255, 255, 255, 0.85);
}

.modal-close:hover {
    color: var(--clr-gold-bright);
}

.wizard-progress {
    background: var(--clr-green-soft);
}

.wizard-step.active {
    color: var(--clr-orange);
    border-bottom-color: var(--clr-orange);
}

.wizard-content-panel h4 {
    color: var(--clr-green-deep);
    font-family: var(--font-heading);
    font-weight: 800;
}

.paystack-success-mockup h3 {
    color: var(--clr-green-deep);
    font-family: var(--font-heading);
    font-weight: 800;
}

.success-icon {
    color: var(--clr-green);
}

.security-instructions-box {
    background: var(--clr-green-soft);
    border: 1px solid rgba(0, 107, 58, 0.18);
    border-radius: var(--br-md);
    padding: 14px 16px;
}

.security-icon {
    color: var(--clr-green);
}

[data-theme="dark"] .modal-overlay {
    background: rgba(6, 10, 16, 0.78);
}

[data-theme="dark"] .modal-container {
    background: var(--clr-surface) !important;
    border-color: var(--clr-border);
}

[data-theme="dark"] .modal-header {
    background: linear-gradient(135deg, #0d6b3a 0%, #062818 100%);
}

[data-theme="dark"] .wizard-progress {
    background: var(--clr-green-soft);
}

[data-theme="dark"] .wizard-content-panel h4,
[data-theme="dark"] .paystack-success-mockup h3 {
    color: var(--clr-green-bright);
}

[data-theme="dark"] .donation-receipt {
    background: var(--clr-surface-soft);
    border-color: var(--clr-border);
}

[data-theme="dark"] .security-instructions-box {
    background: var(--clr-green-soft);
    border-color: var(--clr-border);
}

[data-theme="dark"] .success-icon {
    color: var(--clr-green-bright);
}

[data-theme="dark"] .success-footer-note {
    color: var(--clr-gold-bright) !important;
}

[data-theme="dark"] .success-email-note i {
    color: var(--clr-green-bright);
}

.offline-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-danger);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.offline-toast.hidden {
    opacity: 0;
    transform: translate(-50%, -20px);
    pointer-events: none;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 992px) {
    html { font-size: 15px; }

    .grid-2-col,
    .about-intro,
    .programs-featured,
    .anthem-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-pillars,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .program-feature {
        min-height: 280px;
    }

    .newsletter-banner {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-banner-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-offset);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-offset));
        background: var(--clr-surface-solid);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: left var(--transition-normal);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        min-height: 560px;
        align-items: center;
    }

    .slide-content-container {
        align-items: center;
        padding-bottom: 80px;
        padding-top: 40px;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sharing-social-bar {
        display: none;
    }

    .whatsapp-widget,
    .ai-widget {
        bottom: 18px;
    }

    .whatsapp-widget { right: 18px; }
    .ai-widget { left: 18px; }

    .whatsapp-chat,
    .ai-chat {
        width: 290px;
    }

    .top-bar-left .top-bar-item:last-child {
        display: none;
    }
}

@media (max-width: 576px) {
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-lg {
        width: 100%;
    }
}
/* ==========================================================================
   FLYER THEME OVERRIDES — forest green · bright gold · white
   ========================================================================== */

.contact-section {
    background: var(--clr-green-deep) !important;
    color: #ffffff;
}

.contact-section .section-tag { color: var(--clr-gold-bright); }
.contact-section .section-info h2,
.contact-section .section-info > p,
.contact-section .team-contact,
.contact-section .team-contact p { color: rgba(255, 255, 255, 0.92); }
.contact-section .font-gold { color: var(--clr-gold-bright) !important; }
.contact-section .form-card { background: #ffffff; color: var(--clr-text-pri); }
.contact-section .form-card {
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
}
.contact-section #contactForm label {
    color: var(--clr-green-deep);
}
.contact-section #contactForm input,
.contact-section #contactForm textarea {
    background: var(--clr-gray-soft);
    border: 1px solid var(--clr-gray-light);
    color: var(--clr-text-pri);
    border-radius: var(--br-sm);
}
.contact-section #contactForm input::placeholder,
.contact-section #contactForm textarea::placeholder {
    color: var(--clr-gray);
}
.contact-section #contactForm input:focus,
.contact-section #contactForm textarea:focus {
    border-color: var(--clr-orange);
    box-shadow: 0 0 0 3px rgba(232, 114, 12, 0.14);
}
.contact-section #contactForm button {
    margin-top: 4px;
}
.contact-section .logo-text { color: #ffffff; }
.contact-section .logo-text span { color: var(--clr-gold-bright); }

.newsletter-banner { background: #ffffff; color: var(--clr-text-pri); }
.newsletter-text h3 { color: var(--clr-green-deep); }

.footer-grid { border-bottom-color: rgba(255, 255, 255, 0.15); }
.footer-col h4 { color: #ffffff; }
.footer-col h4::after { background: var(--clr-gold); }
.footer-desc { color: rgba(255, 255, 255, 0.8); }
.links-col a { color: rgba(255, 255, 255, 0.8); }
.links-col a:hover { color: var(--clr-gold-bright); }
.contact-col li { color: rgba(255, 255, 255, 0.8); }
.contact-col li i { color: var(--clr-gold-bright); }
.social-icons a {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}
.social-icons a:hover {
    background: var(--clr-gold);
    color: var(--clr-text-on-gold) !important;
    border-color: var(--clr-gold);
}
.footer-bottom { color: rgba(255, 255, 255, 0.65); }
.footer-bottom p:first-child { color: var(--clr-gold-bright); }

.modal-container {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-lg);
}
.modal-overlay { background: rgba(8, 82, 44, 0.55); }
.wizard-progress { background: var(--clr-green-mist); }
.wizard-step.active { color: var(--clr-green); border-bottom-color: var(--clr-green); }
.payment-method-card {
    background: #ffffff;
    border-color: var(--clr-border);
    color: var(--clr-text-pri);
}
.payment-method-card.active {
    border-color: var(--clr-green);
    background: var(--clr-green-soft);
}
.payment-method-card i { color: var(--clr-green); }
.bank-transfer-panel {
    background: var(--clr-green-mist);
    border-color: rgba(13, 107, 58, 0.3);
}
.bank-detail-row {
    background: #ffffff;
    border-color: var(--clr-border);
}
.bank-acct-number { color: var(--clr-green) !important; }
.freq-btn.active, .freq-btn:hover {
    background: var(--clr-green-soft);
    border-color: var(--clr-green);
    color: var(--clr-green);
}
.amount-btn.active, .amount-btn:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-text-on-gold);
}
.security-banner {
    background: var(--clr-green-soft);
    border-color: rgba(13, 107, 58, 0.2);
}
.security-banner h4 { color: var(--clr-green); }
.security-icon { color: var(--clr-green); }

.faq-trigger { color: var(--clr-green-deep); }
.faq-item { border-bottom-color: rgba(13, 107, 58, 0.15); }
.testimonial-card { border-left-color: var(--clr-green); }
.blog-date { color: var(--clr-green); }
.blog-link { color: var(--clr-green); }
.team-position { color: var(--clr-green); }
.program-icon { color: var(--clr-green); }
.anthem-subtitle { color: var(--clr-green); }
.section-divider .shape-fill { fill: #ffffff; }

.ai-chat {
    background: #ffffff;
    border-color: var(--clr-border);
}
.ai-chat-header {
    background: var(--clr-green);
    border-bottom: none;
}
.ai-info h5 { color: #ffffff; }
.ai-info span { color: var(--clr-gold-bright); }
.ai-chat-body { background: var(--clr-green-mist); }
.ai-chat-message.received {
    background: #ffffff;
    color: var(--clr-text-pri);
    border-color: var(--clr-border);
}
.ai-chat-message.sent {
    background: var(--clr-green);
    color: #ffffff;
    border-color: var(--clr-green);
}
.ai-chat-footer {
    background: #ffffff;
    border-top-color: var(--clr-border);
}
.ai-chat-footer input {
    background: var(--clr-green-mist);
    border-color: var(--clr-border);
    color: var(--clr-text-pri);
}
.ai-avatar {
    background: rgba(255, 255, 255, 0.15);
    color: var(--clr-gold-bright);
}

.lyrics-container {
    background: var(--clr-green-mist);
    border-color: var(--clr-border);
}
.lyrics-fader {
    background: linear-gradient(to bottom, #ffffff 0%, transparent 22%, transparent 78%, #ffffff 100%);
}
.visualizer-container {
    background: var(--clr-green-deep);
    border-color: var(--clr-border);
}
.play-overlay { background: rgba(8, 82, 44, 0.85); }
.sponsor-card {
    background: #ffffff;
    border-color: var(--clr-border);
    color: var(--clr-text-sec);
}
.sponsor-card:hover {
    border-color: var(--clr-green);
    color: var(--clr-green);
}

/* Flyer script accents + green header lock */
.flyer-script,
.hero-script {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--clr-orange);
    font-weight: 600;
    margin: 8px 0 16px;
    line-height: 1.25;
}
.hero-script {
    color: var(--clr-gold-bright);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.main-header {
    background: var(--clr-green) !important;
    border-bottom: 3px solid var(--clr-orange) !important;
    box-shadow: 0 4px 20px rgba(0, 61, 36, 0.18);
}
.main-header .logo-text { color: #ffffff !important; }
.main-header .logo-text span { color: var(--clr-gold-bright) !important; }
.main-header .nav-link { color: rgba(255,255,255,0.92) !important; }
.main-header .nav-link:hover,
.main-header .nav-link.active { color: #ffffff !important; }
.main-header .nav-link::after { background: var(--clr-gold-bright) !important; }
.main-header .mobile-toggle { color: #ffffff !important; }
.main-header .btn-primary {
    background: var(--clr-orange) !important;
    color: #ffffff !important;
    border: none !important;
}
.main-header .btn-primary:hover {
    background: var(--clr-orange-bright) !important;
}

.about-intro-copy h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--clr-green-deep);
    letter-spacing: 0.02em;
}

.program-feature-overlay h3,
.blog-body h3,
.team-card h3,
.anthem-info h2,
.section-info h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--clr-green-deep);
}

.hero .highlight-text {
    color: var(--clr-orange-bright) !important;
    -webkit-text-fill-color: var(--clr-orange-bright) !important;
}

.nav-menu.active {
    background: var(--clr-green) !important;
}

.card-icon,
.pillar-icon {
    background: var(--clr-green) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    border: 3px solid var(--clr-gold) !important;
}

.top-bar-item i { color: var(--clr-gold-bright); }

/* —— Section rhythm: white · soft gray · soft green · soft orange —— */
.programs-section { background: var(--clr-gray-soft); }
.stories-section { background: #ffffff; }
.testimonials-section { background: var(--clr-orange-soft); }
.team-section { background: var(--clr-gray-soft); }
.sponsors-section { background: #ffffff; }
.faq-section { background: var(--clr-gray-soft); }
.anthem-section { background: #ffffff; }
.volunteer-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--clr-green-soft) 100%);
}

.stat-number { color: var(--clr-gold-bright); }
.stat-label { color: rgba(255, 255, 255, 0.82); }

.testimonial-card { border-left: 4px solid var(--clr-orange); }
.blog-date { color: var(--clr-orange); }
.blog-link { color: var(--clr-green); }
.blog-link:hover { color: var(--clr-orange); }
.team-position { color: var(--clr-orange); }
.program-icon { color: var(--clr-orange); }

.sharing-icon {
    background: var(--clr-gray-soft);
    border-color: var(--clr-gray-light);
    color: var(--clr-gray-dark);
}
.sharing-icon:hover {
    background: var(--clr-orange);
    border-color: var(--clr-orange);
    color: #ffffff;
}

.contact-section {
    background: linear-gradient(160deg, var(--clr-green-deep) 0%, var(--clr-gray-deep) 100%);
}
.contact-section .section-tag { color: var(--clr-gold-bright); }
.footer-col h4::after { background: var(--clr-orange); }
.footer-bottom p:first-child { color: var(--clr-gold-bright); }
.contact-col li i { color: var(--clr-gold-bright); }
.social-icons a:hover {
    background: var(--clr-orange);
    border-color: var(--clr-orange);
}

.amount-btn.active,
.amount-btn:hover {
    background: var(--clr-orange);
    border-color: var(--clr-orange);
    color: #ffffff;
}
.freq-btn.active,
.freq-btn:hover {
    border-color: var(--clr-orange);
    color: var(--clr-orange);
    background: var(--clr-orange-soft);
}
.payment-method-card.active {
    border-color: var(--clr-orange);
    background: var(--clr-orange-soft);
}
.payment-method-card i { color: var(--clr-orange); }
.wizard-step.active {
    color: var(--clr-orange);
    border-bottom-color: var(--clr-orange);
}
.bank-acct-number { color: var(--clr-orange-deep); }
.btn-copy-acct {
    background: var(--clr-orange-soft);
    border-color: var(--clr-orange);
    color: var(--clr-orange);
}

.ai-btn { background: var(--clr-orange); color: #ffffff; }
.ai-btn:hover { background: var(--clr-orange-bright); }
.ai-send-btn { background: var(--clr-green); color: #ffffff; }

.slider-dot.active {
    background: var(--clr-orange);
    box-shadow: 0 0 12px var(--clr-orange-glow);
}

.sponsor-card:hover {
    border-color: var(--clr-orange);
    color: var(--clr-orange);
}

.faq-trigger i { color: var(--clr-orange); }
.author-avatar {
    background: var(--gradient-primary);
    color: #ffffff;
}

/* ==========================================================================
   FOUNDER INTERVIEW — VIC
   ========================================================================== */
.interview-section {
    padding: 88px 0;
    background: var(--clr-gray-soft);
    position: relative;
    overflow: hidden;
}

.interview-layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 48px;
    align-items: center;
}

.interview-video-frame {
    position: relative;
    border-radius: var(--br-lg);
    overflow: hidden;
    background: var(--clr-gray-deep);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
    height: 169mm;
    width: 100%;
}

.interview-video {
    width: 100%;
    height: 169mm;
    display: block;
    object-fit: cover;
    background: #000;
}

.interview-copy h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: var(--clr-green-deep);
    margin: 4px 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.interview-copy > p {
    color: var(--clr-text-sec);
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.interview-points {
    list-style: none;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.interview-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-text-pri);
    font-weight: 600;
    font-size: 0.98rem;
}

.interview-points i {
    color: var(--clr-orange);
    width: 1.25rem;
    text-align: center;
}

[data-theme="dark"] .interview-section {
    background: var(--clr-gray-soft) !important;
}

[data-theme="dark"] .interview-copy h3 {
    color: var(--clr-green-bright);
}

[data-theme="dark"] .interview-video-frame {
    border-color: var(--clr-border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

@media (max-width: 900px) {
    .interview-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ==========================================================================
   THEME TOGGLE
   ========================================================================== */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: var(--br-sm);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--clr-gold-bright);
    color: var(--clr-gold-bright);
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: inline-block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: inline-block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

/* ==========================================================================
   DARK THEME — deep charcoal · green · orange · gold
   ========================================================================== */
[data-theme="dark"] {
    color-scheme: dark;

    --clr-green: #1a9a55;
    --clr-green-deep: #0d6b3a;
    --clr-green-bright: #2ecf72;
    --clr-green-soft: #12261c;
    --clr-green-mist: #0e1a14;

    --clr-orange: #f5922e;
    --clr-orange-bright: #ffaa4d;
    --clr-orange-deep: #e8720c;
    --clr-orange-soft: #2a1c10;
    --clr-orange-glow: rgba(245, 146, 46, 0.35);

    --clr-gray: #9ca3af;
    --clr-gray-light: #2d3748;
    --clr-gray-soft: #151c27;
    --clr-gray-mid: #6b7280;
    --clr-gray-dark: #d1d5db;
    --clr-gray-deep: #0b1018;

    --clr-gold: #f0b429;
    --clr-gold-bright: #ffd166;
    --clr-gold-glow: rgba(240, 180, 41, 0.32);
    --clr-gold-dark: #e0a820;
    --clr-gold-wash: #1f1a0c;

    --clr-bg: #0b1018;
    --clr-bg-deep: #060a10;
    --clr-surface: #151c27;
    --clr-surface-solid: #151c27;
    --clr-surface-soft: #1a2332;
    --clr-border: rgba(255, 255, 255, 0.1);
    --clr-border-focus: rgba(46, 207, 114, 0.45);

    --clr-text-pri: #f3f4f6;
    --clr-text-sec: #c4cad4;
    --clr-text-muted: #9ca3af;
    --clr-text-on-green: #ffffff;
    --clr-text-on-gold: #0b1018;
    --clr-text-on-orange: #ffffff;

    --clr-leaf-glow: rgba(26, 154, 85, 0.28);

    --gradient-primary: linear-gradient(135deg, var(--clr-orange) 0%, var(--clr-orange-deep) 50%, var(--clr-green) 100%);
    --gradient-brand: linear-gradient(135deg, #0d6b3a 0%, #062818 100%);
    --gradient-warm: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-orange) 100%);
    --gradient-dark: linear-gradient(180deg, #0b1018 0%, #060a10 100%);
    --gradient-hero: linear-gradient(105deg, rgba(6, 16, 12, 0.94) 0%, rgba(11, 16, 24, 0.55) 48%, rgba(6, 16, 12, 0.88) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(240, 180, 41, 0.1) 0%, transparent 68%);

    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] body {
    background-color: var(--clr-bg);
    color: var(--clr-text-pri);
}

[data-theme="dark"] .top-bar {
    background: #060a10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .main-header {
    background: #0d6b3a !important;
    border-bottom-color: var(--clr-orange) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .programs-section,
[data-theme="dark"] .team-section,
[data-theme="dark"] .faq-section {
    background: var(--clr-gray-soft) !important;
}

[data-theme="dark"] .stories-section,
[data-theme="dark"] .sponsors-section,
[data-theme="dark"] .anthem-section {
    background: var(--clr-bg) !important;
}

[data-theme="dark"] .testimonials-section {
    background: var(--clr-orange-soft) !important;
}

[data-theme="dark"] .volunteer-section {
    background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-green-soft) 100%) !important;
}

[data-theme="dark"] .about-section,
[data-theme="dark"] .section-white,
[data-theme="dark"] #about {
    background: var(--clr-bg);
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .sponsor-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .program-card,
[data-theme="dark"] .anthem-player,
[data-theme="dark"] .volunteer-form-card,
[data-theme="dark"] .newsletter-box,
[data-theme="dark"] .contact-form-card,
[data-theme="dark"] .modal-content,
[data-theme="dark"] .chat-window,
[data-theme="dark"] .ai-window {
    background: var(--clr-surface) !important;
    border-color: var(--clr-border) !important;
    color: var(--clr-text-pri);
}

[data-theme="dark"] .section-header h2,
[data-theme="dark"] .about-intro-copy h2,
[data-theme="dark"] .program-feature-overlay h3,
[data-theme="dark"] .blog-body h3,
[data-theme="dark"] .team-card h3,
[data-theme="dark"] .anthem-info h2,
[data-theme="dark"] .section-info h2,
[data-theme="dark"] h1, [data-theme="dark"] h2,
[data-theme="dark"] h3, [data-theme="dark"] h4 {
    color: var(--clr-text-pri);
}

[data-theme="dark"] .section-header h2,
[data-theme="dark"] .about-intro-copy h2 {
    color: var(--clr-green-bright);
}

[data-theme="dark"] .flyer-script {
    color: var(--clr-orange-bright);
}

[data-theme="dark"] .section-header p,
[data-theme="dark"] .feature-card p,
[data-theme="dark"] .blog-body p,
[data-theme="dark"] .team-bio,
[data-theme="dark"] p {
    color: var(--clr-text-sec);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea,
[data-theme="dark"] .modal-body input,
[data-theme="dark"] .modal-body select,
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: var(--clr-gray-deep) !important;
    border-color: var(--clr-border) !important;
    color: var(--clr-text-pri) !important;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: var(--clr-gray-mid);
}

[data-theme="dark"] .sharing-icon {
    background: var(--clr-surface) !important;
    border-color: var(--clr-border) !important;
    color: var(--clr-text-sec) !important;
}

[data-theme="dark"] .sharing-icon:hover {
    background: var(--clr-orange) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .stats-banner-container {
    background: linear-gradient(135deg, #062818 0%, #0b1018 100%) !important;
    border-bottom-color: var(--clr-orange) !important;
}

[data-theme="dark"] .contact-section,
[data-theme="dark"] .site-footer,
[data-theme="dark"] footer {
    background: linear-gradient(160deg, #062818 0%, #060a10 100%) !important;
}
[data-theme="dark"] .contact-section .form-card {
    background: var(--clr-surface) !important;
    border-color: var(--clr-border) !important;
}
[data-theme="dark"] .contact-section #contactForm label {
    color: var(--clr-green-bright);
}
[data-theme="dark"] .contact-section #contactForm input,
[data-theme="dark"] .contact-section #contactForm textarea {
    background: var(--clr-gray-deep) !important;
    border-color: var(--clr-border) !important;
    color: var(--clr-text-pri) !important;
}
[data-theme="dark"] .contact-section #contactForm input::placeholder,
[data-theme="dark"] .contact-section #contactForm textarea::placeholder {
    color: var(--clr-gray-mid);
}
[data-theme="dark"] .contact-section #contactForm input:focus,
[data-theme="dark"] .contact-section #contactForm textarea:focus {
    border-color: var(--clr-orange-bright) !important;
    box-shadow: 0 0 0 3px rgba(245, 146, 46, 0.18);
}

[data-theme="dark"] .btn-secondary {
    background: var(--clr-green-soft);
    color: var(--clr-green-bright);
}

[data-theme="dark"] .amount-btn,
[data-theme="dark"] .freq-btn,
[data-theme="dark"] .payment-method-card,
[data-theme="dark"] .bank-account-card {
    background: var(--clr-surface-soft) !important;
    border-color: var(--clr-border) !important;
    color: var(--clr-text-pri) !important;
}

[data-theme="dark"] .gallery-header-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(240, 180, 41, 0.1) 0%, transparent 55%),
        linear-gradient(180deg, #12261c 0%, #0b1018 100%) !important;
}

[data-theme="dark"] .gallery-header-section h1 {
    color: var(--clr-green-bright) !important;
}

[data-theme="dark"] .gallery-card {
    background: var(--clr-surface) !important;
    border-color: var(--clr-border) !important;
}

[data-theme="dark"] .offline-toast {
    background: var(--clr-surface);
    color: var(--clr-text-pri);
    border: 1px solid var(--clr-border);
}

/* AI chatbot — dark theme */
[data-theme="dark"] .ai-chat {
    background: var(--clr-surface);
    border-color: rgba(240, 180, 41, 0.35);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .ai-chat-header {
    background: linear-gradient(135deg, #0d6b3a 0%, #062818 100%);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .ai-avatar {
    background: rgba(255, 255, 255, 0.12);
    color: var(--clr-gold-bright);
}

[data-theme="dark"] .ai-online-indicator {
    border-color: #0d6b3a;
}

[data-theme="dark"] .ai-info h5 {
    color: #ffffff;
}

[data-theme="dark"] .ai-info span {
    color: var(--clr-gold-bright);
}

[data-theme="dark"] .ai-chat-body {
    background: var(--clr-bg-deep);
}

[data-theme="dark"] .ai-chat-message.received {
    background: var(--clr-surface-soft);
    color: var(--clr-text-pri);
    border-color: var(--clr-border);
}

[data-theme="dark"] .ai-chat-message.sent {
    background: var(--clr-green-deep);
    color: #ffffff;
    border-color: rgba(46, 207, 114, 0.25);
}

[data-theme="dark"] .ai-chat-time {
    color: var(--clr-text-muted);
}

[data-theme="dark"] .ai-chat-footer {
    background: var(--clr-surface);
    border-top-color: var(--clr-border);
}

[data-theme="dark"] .ai-chat-footer input {
    background: var(--clr-bg-deep);
    border-color: var(--clr-border);
    color: var(--clr-text-pri);
}

[data-theme="dark"] .ai-chat-footer input::placeholder {
    color: var(--clr-text-muted);
}

[data-theme="dark"] .ai-chat-footer input:focus {
    border-color: var(--clr-border-focus);
    outline: none;
}

[data-theme="dark"] .ai-send-btn {
    background: var(--clr-orange);
    color: #ffffff;
}

[data-theme="dark"] .ai-send-btn:hover {
    background: var(--clr-orange-bright);
}

[data-theme="dark"] .ai-btn {
    box-shadow: 0 4px 20px rgba(245, 146, 46, 0.4);
}

[data-theme="dark"] .ai-badge {
    border-color: var(--clr-bg);
}

/* WhatsApp widget — dark theme */
[data-theme="dark"] .whatsapp-chat {
    background: #0b141a;
    border: 1px solid rgba(37, 211, 102, 0.2);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .whatsapp-chat-header {
    background: #054640;
}

[data-theme="dark"] .online-indicator {
    border-color: #054640;
}

[data-theme="dark"] .whatsapp-chat-body {
    background-color: #0b141a;
    background-image: none;
}

[data-theme="dark"] .chat-message.received {
    background: #202c33;
    color: #e9edef;
}

[data-theme="dark"] .chat-message.sent {
    background: #005c4b;
    color: #e9edef;
}

[data-theme="dark"] .chat-time {
    color: rgba(233, 237, 239, 0.55);
}

[data-theme="dark"] .whatsapp-chat-footer {
    background: #1f2c34;
    border-top-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .whatsapp-chat-footer input {
    background: #2a3942;
    border-color: rgba(255, 255, 255, 0.08);
    color: #e9edef;
}

[data-theme="dark"] .whatsapp-chat-footer input::placeholder {
    color: rgba(233, 237, 239, 0.45);
}

[data-theme="dark"] .whatsapp-chat-footer input:focus {
    border-color: rgba(37, 211, 102, 0.45);
    outline: none;
}

[data-theme="dark"] .chat-send-btn {
    background: #00a884;
}

[data-theme="dark"] .chat-send-btn:hover {
    background: #06cf9c;
}

[data-theme="dark"] .typing .dot {
    background: rgba(233, 237, 239, 0.55);
}

[data-theme="dark"] .whatsapp-badge {
    border-color: var(--clr-bg);
}

.theme-toggle-mobile { display: none; }

@media (max-width: 900px) {
    .theme-toggle {
        margin-right: 6px;
        width: 38px;
        height: 38px;
    }
    .theme-toggle-mobile {
        display: inline-flex;
        order: 2;
    }
    .mobile-toggle { order: 3; }
    .nav-menu .theme-toggle { display: none; }
}

