/* ========================================
   CRF - Child Rights NGO Website
   Design System & Core Styles
   ======================================== */

/* ========================================
   CSS Variables & Design Tokens
   ======================================== */
:root {
    /* Color Palette */
    --primary-blue: #1F4FD8;
    --primary-blue-dark: #163AA8;
    --primary-blue-light: #4B73E8;
    --secondary-yellow: #F5B700;
    --secondary-yellow-dark: #D19E00;
    --accent-green: #2ECC71;
    --accent-green-dark: #27AE60;

    /* Neutrals */
    --bg-primary: #FAFAFA;
    --bg-white: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #546E7A;
    --text-light: #78909C;
    --border-color: #E0E0E0;
    --shadow-color: rgba(31, 79, 216, 0.1);

    /* Typography Scale */
    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Inter', 'Open Sans', sans-serif;

    --fs-hero: clamp(2.5rem, 5vw, 4rem);
    --fs-h1: clamp(2rem, 4vw, 3rem);
    --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
    --fs-h3: clamp(1.5rem, 2.5vw, 2rem);
    --fs-h4: clamp(1.25rem, 2vw, 1.5rem);
    --fs-body: clamp(1rem, 1.5vw, 1.125rem);
    --fs-small: 0.875rem;

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

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px var(--shadow-color);
    --shadow-md: 0 4px 16px var(--shadow-color);
    --shadow-lg: 0 8px 32px var(--shadow-color);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   CSS Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Layout & Container
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: 1400px;
}

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

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

/* ========================================
   Grid System
   ======================================== */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

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

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

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    max-width: 1400px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.logo span {
    color: var(--secondary-yellow);
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    white-space: nowrap;
}

.nav-links a:not(.btn) {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition-normal);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

/* Nav CTA Buttons */
.nav-cta {
    margin-left: var(--space-sm);
}

.nav-links .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

.nav-links .btn-primary {
    background: var(--primary-blue);
    color: white;
}

.nav-links .btn-outline {
    border-width: 1.5px;
    padding: 0.45rem 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 60px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-xl);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
        gap: var(--space-md);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(31, 79, 216, 0.2);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31, 79, 216, 0.3);
}

.btn-secondary {
    background: var(--secondary-yellow);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(245, 183, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--secondary-yellow-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 183, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 1.5px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
}

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.4rem 0.875rem;
    font-size: 0.8rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: var(--space-2xl);
    overflow-x: auto;
    padding-bottom: var(--space-sm);
    flex-wrap: wrap;
}

/* ========================================
   Cards
   ======================================== */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-white);
    margin-bottom: var(--space-md);
}

.card-title {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-sm);
}

.card-text {
    color: var(--text-secondary);
    font-size: var(--fs-body);
    line-height: 1.7;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: #ffffff;
}

/* ========================================
   Forms
   ======================================== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    transition: var(--transition-normal);
    background: var(--bg-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(31, 79, 216, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    color: #E74C3C;
    font-size: var(--fs-small);
    margin-top: var(--space-xs);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 79, 216, 0.75), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: var(--space-3xl) var(--space-lg);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.25;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.hero-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
}

.hero-cta .btn-secondary {
    background: var(--secondary-yellow);
    color: #1a1a1a;
    border: none;
}

.hero-cta .btn-secondary:hover {
    background: #e5a800;
}

.hero-cta .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-cta .btn-outline:hover {
    background: #ffffff;
    color: var(--primary-blue);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.section-title {
    font-size: var(--fs-h2);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-yellow);
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--fs-body);
    color: var(--text-secondary);
}

/* ========================================
   Stats / Impact Numbers
   ======================================== */
.stats-container {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--bg-white);
    padding: var(--space-3xl) 0;
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
}

.stat-number {
    font-size: var(--fs-hero);
    font-weight: 700;
    color: var(--secondary-yellow);
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: var(--fs-h4);
    color: var(--bg-white);
    opacity: 0.95;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #2C3E50;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

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

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-yellow);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-normal);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.social-link svg path,
.social-link svg rect,
.social-link svg circle,
.social-link svg polygon,
.social-link svg line {
    fill: #ffffff;
}

.social-link:hover {
    background: var(--secondary-yellow);
    transform: translateY(-2px);
    color: #000000;
}

.social-link:hover svg,
.social-link:hover svg * {
    fill: #000000;
}


.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-blue);
}

.text-secondary {
    color: var(--text-secondary);
}

.bg-white {
    background: var(--bg-white);
}

.bg-primary {
    background: var(--bg-primary);
}

.mt-1 {
    margin-top: var(--space-sm);
}

.mt-2 {
    margin-top: var(--space-md);
}

.mt-3 {
    margin-top: var(--space-lg);
}

.mb-1 {
    margin-bottom: var(--space-sm);
}

.mb-2 {
    margin-bottom: var(--space-md);
}

.mb-3 {
    margin-bottom: var(--space-lg);
}

.d-flex {
    display: flex;
}

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

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: var(--space-sm);
}

.gap-2 {
    gap: var(--space-md);
}

.gap-3 {
    gap: var(--space-lg);
}

/* ========================================
   Hero Small Variant
   ======================================== */
.hero-small {
    min-height: 400px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 79, 216, 0.9), rgba(46, 204, 113, 0.8));
    z-index: 1;
}

/* ========================================
   Content Blocks
   ======================================== */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ========================================
   Founder Section
   ======================================== */
.founder-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.founder-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.founder-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.founder-name {
    font-size: var(--fs-h3);
    color: var(--primary-blue);
    margin-bottom: var(--space-xs);
}

.founder-title {
    font-size: var(--fs-body);
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.founder-org {
    font-size: var(--fs-body);
    color: var(--secondary-yellow);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.founder-bio p {
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-image {
        max-width: 200px;
        margin: 0 auto;
    }
}

/* ========================================
   Approach Cards
   ======================================== */
.approach-card {
    position: relative;
    padding-top: var(--space-3xl);
}

.approach-number {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-xl);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.2;
    font-family: var(--font-heading);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--bg-white);
    text-align: center;
}

.cta-title {
    color: var(--bg-white);
    font-size: var(--fs-h2);
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-body);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.cta-buttons .btn-outline:hover {
    background: var(--bg-white);
    color: var(--primary-blue);
}

/* ========================================
   Emergency Helpline Card
   ======================================== */
.emergency-card {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    color: var(--bg-white);
    text-align: center;
}

.emergency-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.emergency-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.emergency-icon svg {
    width: 48px;
    height: 48px;
}

.emergency-title {
    font-size: var(--fs-h3);
    color: var(--bg-white);
    margin-bottom: var(--space-xs);
}

.emergency-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.emergency-desc {
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-card {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-info-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-details h4 {
    margin-bottom: var(--space-xs);
    font-size: var(--fs-body);
}

.contact-info-details p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.social-connect {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-color);
}

/* ========================================
   Testimonial Cards
   ======================================== */
.testimonial-card {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-primary));
    border-left: 4px solid var(--primary-blue);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: var(--fs-small);
}

/* ========================================
   Donation Page Styles
   ======================================== */
.donation-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-2xl);
}

.donation-form-wrapper {
    background: var(--bg-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.donation-type-toggle {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.donation-type-btn {
    flex: 1;
    padding: var(--space-md);
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.donation-type-btn.active {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: var(--bg-white);
}

.amount-selection h4 {
    margin-bottom: var(--space-md);
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.amount-btn {
    padding: var(--space-md);
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.amount-btn:hover {
    border-color: var(--primary-blue);
}

.amount-btn.active {
    border-color: var(--secondary-yellow);
    background: var(--secondary-yellow);
    color: var(--text-primary);
}

.custom-amount {
    margin-bottom: var(--space-xl);
}

.custom-amount-input {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: var(--space-sm);
}

.currency-symbol {
    padding: var(--space-md);
    background: var(--bg-primary);
    font-weight: 600;
}

.custom-amount-input input {
    border: none;
    padding: var(--space-md);
    flex: 1;
    font-size: var(--fs-body);
}

.custom-amount-input input:focus {
    outline: none;
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-top: var(--space-md);
}

.donation-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.trust-badges,
.fund-allocation {
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.badge-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-green);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

@media (max-width: 900px) {
    .donation-container {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Volunteer Page Styles
   ======================================== */
.volunteer-info {
    background: var(--bg-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    height: fit-content;
}

.volunteer-benefits {
    list-style: none;
    margin-top: var(--space-lg);
}

.volunteer-benefits li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    font-size: var(--fs-body);
}