:root {
    --green-primary: #094131;
    --green-secondary: #346f35;
    --green-light: #0d5a43;
    --gold-main: #d2af5e;
    --gold-dark: #b8860e;
    --gold-medium: #caa347;
    --gold-light: #dcc080;
    --gold-lightest: #edddb8;
    --gold-underline: #9e832f;
    --navy: #262262;
    --white: #ffffff;
    --off-white: #f9f7f2;
    --cream: #faf8f3;
    --text-dark: #1a1a1a;
    --text-body: #3a3a3a;
    --text-muted: #6b6b6b;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --max-width: 1200px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.2;
    color: var(--green-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.gold-line {
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-secondary), var(--gold-main));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.text-gold {
    color: var(--gold-main);
}

.text-green {
    color: var(--green-primary);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-main));
    color: var(--green-primary);
    border-color: var(--gold-main);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-main), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 175, 94, 0.4);
}

.btn-green {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
}

.btn-green:hover {
    background: var(--green-secondary);
    border-color: var(--green-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(9, 65, 49, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--green-primary);
    border-color: var(--green-primary);
}

.btn-outline:hover {
    background: var(--green-primary);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--green-primary);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(9, 65, 49, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.header-logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 14px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green-primary);
    background: rgba(9, 65, 49, 0.06);
}

.nav-donate {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-main)) !important;
    color: var(--green-primary) !important;
    font-weight: 700 !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 20px !important;
}

.nav-donate:hover {
    background: linear-gradient(135deg, var(--gold-main), var(--gold-light)) !important;
    box-shadow: 0 3px 12px rgba(210, 175, 94, 0.4);
    transform: translateY(-1px);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.script-toggle {
    padding: 6px 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    background: var(--off-white);
    border: 1px solid rgba(9, 65, 49, 0.15);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--green-primary);
    transition: all var(--transition);
    white-space: nowrap;
}

.script-toggle:hover {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-primary);
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-primary) 0%, #0a4e3b 40%, #0d5a43 70%, var(--green-secondary) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(210, 175, 94, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(9, 65, 49, 0.3), transparent);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-logo {
    max-width: min(90%, 600px);
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 .gold-text {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-medium), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-secondary), var(--gold-main), var(--gold-light));
    margin: 1.5rem auto;
    border-radius: 2px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold-main);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* ========================================
   PAGE BANNER (for inner pages)
   ======================================== */

.page-banner {
    background: linear-gradient(135deg, var(--green-primary) 0%, #0a4e3b 50%, var(--green-secondary) 100%);
    padding: 140px 24px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(210, 175, 94, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner h1 {
    color: var(--white);
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-banner .gold-line {
    margin: 1rem auto 0;
    position: relative;
    z-index: 2;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--off-white);
}

.section-dark {
    background: var(--green-primary);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.section-dark .gold-line {
    background: linear-gradient(90deg, var(--gold-main), var(--gold-light));
}

/* ========================================
   PILLARS / CARDS
   ======================================== */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(9, 65, 49, 0.06);
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary), var(--gold-main));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pillar-card:hover::after {
    transform: scaleX(1);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(9, 65, 49, 0.08), rgba(52, 111, 53, 0.08));
    border-radius: 50%;
    font-size: 1.8rem;
}

.pillar-card h3 {
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   SOUND BITES / QUOTES
   ======================================== */

.quotes-section {
    background: var(--green-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quotes-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    min-height: 180px;
}

.quote-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    padding: 0 20px;
}

.quote-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.quote-text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.quote-text::before {
    content: '\201E';
    position: absolute;
    left: -10px;
    top: -20px;
    font-size: 4rem;
    color: var(--gold-main);
    opacity: 0.4;
    font-style: normal;
}

.quote-line {
    width: 60px;
    height: 2px;
    background: var(--gold-main);
    margin: 1.5rem auto 0;
}

.quotes-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2.5rem;
}

.quotes-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.quotes-dots button.active {
    background: var(--gold-main);
    transform: scale(1.2);
}

/* ========================================
   NEWS CARDS
   ======================================== */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.news-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
    position: relative;
    overflow: hidden;
}

.news-card-image .placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
    color: var(--white);
}

.news-card-body {
    padding: 24px;
}

.news-card-date {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.news-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-card-link {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--green-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card-link:hover {
    color: var(--gold-dark);
}

.news-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.news-card-link:hover svg {
    transform: translateX(4px);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(210, 175, 94, 0.06), transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ========================================
   ABOUT PAGE - MI VS ONI
   ======================================== */

.contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 2rem;
}

.contrast-card {
    padding: 40px;
    border-radius: var(--radius-md);
}

.contrast-card.card-mi {
    background: linear-gradient(135deg, rgba(9, 65, 49, 0.05), rgba(52, 111, 53, 0.05));
    border: 2px solid rgba(9, 65, 49, 0.15);
}

.contrast-card.card-oni {
    background: rgba(0, 0, 0, 0.02);
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.contrast-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.contrast-card.card-oni h3 {
    color: var(--text-muted);
}

.contrast-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contrast-card li {
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contrast-card.card-mi li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-secondary);
    font-weight: 700;
}

.contrast-card.card-oni li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
}

/* ========================================
   INLINE QUOTE BLOCK
   ======================================== */

.quote-block {
    background: linear-gradient(135deg, rgba(9, 65, 49, 0.04), rgba(210, 175, 94, 0.06));
    border-left: 4px solid var(--gold-main);
    padding: 30px 35px;
    margin: 2rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--green-primary);
    line-height: 1.7;
}

/* ========================================
   CANDIDATE LIST
   ======================================== */

.candidate-featured {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    margin-bottom: 3rem;
    border: 2px solid rgba(210, 175, 94, 0.2);
}

.candidate-featured-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
    border: 4px solid var(--gold-main);
}

.candidate-featured-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.candidate-featured-info .candidate-role {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.candidates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.candidate-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.candidate-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.candidate-card-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.candidate-card-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(9,65,49,0.08), rgba(52,111,53,0.08));
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--green-primary);
    opacity: 0.3;
}

.candidate-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--green-primary);
}

.candidate-card .candidate-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   PROGRAM PAGE
   ======================================== */

.program-section {
    padding: 60px 0;
}

.program-section:nth-child(even) {
    background: var(--off-white);
}

.program-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 2rem;
}

.program-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.program-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 1.5rem;
}

.program-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.program-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(9,65,49,0.08), rgba(52,111,53,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.program-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.program-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--green-primary);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    border: 2px solid rgba(9, 65, 49, 0.15);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(9, 65, 49, 0.08);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 30px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.1rem;
}

.contact-info-item h4 {
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ========================================
   DONATE PAGE
   ======================================== */

.donate-main {
    max-width: 700px;
    margin: 0 auto;
}

.donate-info-box {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 36px;
    margin-bottom: 2rem;
    border: 1px solid rgba(210, 175, 94, 0.2);
}

.donate-info-box h3 {
    margin-bottom: 1.5rem;
}

.donate-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.donate-detail:last-child {
    border-bottom: none;
}

.donate-detail-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.donate-detail-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--green-primary);
    font-family: 'Montserrat', sans-serif;
}

.donate-qr-section {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.donate-qr-section h3 {
    margin-bottom: 0.5rem;
}

.donate-qr-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

#qrcode {
    display: inline-block;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 2px solid var(--off-white);
    margin-bottom: 1.5rem;
}

#qrcode canvas,
#qrcode img {
    display: block;
}

.donate-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.donate-amount-input {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.donate-amount-input label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--green-primary);
    margin-bottom: 8px;
    text-align: center;
}

.donate-amount-input input {
    width: 100%;
    padding: 16px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid rgba(9, 65, 49, 0.15);
    border-radius: var(--radius-sm);
    color: var(--green-primary);
}

.donate-amount-input input:focus {
    outline: none;
    border-color: var(--gold-main);
    box-shadow: 0 0 0 3px rgba(210, 175, 94, 0.15);
}

.donate-amount-presets {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.donate-amount-presets button {
    padding: 8px 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid rgba(9, 65, 49, 0.15);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--green-primary);
    cursor: pointer;
    transition: all var(--transition);
}

.donate-amount-presets button:hover {
    border-color: var(--gold-main);
    background: rgba(210, 175, 94, 0.08);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--green-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer h4 {
    color: var(--gold-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.footer-links a {
    display: block;
    padding: 5px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold-main);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--gold-main);
    color: var(--green-primary);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-slogan {
    font-style: italic;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-align: center;
    padding: 20px 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   VOLUNTEER PAGE
   ======================================== */

.volunteer-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 2rem 0 3rem;
}

.volunteer-highlight {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.volunteer-highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.volunteer-highlight h4 {
    margin-bottom: 0.5rem;
}

.volunteer-highlight p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .candidates-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .program-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        gap: 4px;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 14px;
        font-size: 1rem;
    }

    .nav-donate {
        margin-top: 8px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 24px 60px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .contrast-grid {
        grid-template-columns: 1fr;
    }

    .candidate-featured {
        flex-direction: column;
        text-align: center;
    }

    .candidate-featured-img {
        width: 160px;
        height: 160px;
    }

    .candidates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .volunteer-highlights {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .donate-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 0.95rem;
        width: 100%;
    }

    .candidates-grid {
        grid-template-columns: 1fr;
    }

    .header-logo img {
        height: 36px;
    }

    .donate-amount-presets {
        flex-wrap: wrap;
    }
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}

.nav-overlay.open {
    display: block;
}

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
