/* ===================================
   RESET & VARIABLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Green & Yellow */
    --primary-cleft: #4CAF50;
    --primary-eye: #FFC107;
    --accent-gold: #FFEB3B;
    --accent-warm: #66BB6A;
    --accent-teal: #FFB300;
    
    --bg-cream: #FFF8F0;
    --bg-white: #FFFFFF;
    --bg-light: #FFF5E6;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    
    --text-dark: #2C3E50;
    --text-gray: #555555;
    --text-light: #777777;
    --text-white: #FFFFFF;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: all 0.3s ease;
    
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Merriweather', Georgia, serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-cleft);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-cleft), var(--accent-warm));
    color: var(--text-white) !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    overflow: hidden;
    margin-top: 90px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: var(--bg-cream);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.7), rgba(255, 193, 7, 0.7));
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 40px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.95;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--text-white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 8px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cleft), var(--accent-warm));
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-cleft);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--bg-cream);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

/* ===================================
   SECTION STYLES
   =================================== */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--bg-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cleft), var(--primary-eye));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-cleft);
}

.about-card p {
    margin-bottom: 12px;
    color: var(--text-gray);
    line-height: 1.8;
}

.drives-list {
    list-style: none;
}

.drives-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.drives-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-cleft);
    font-weight: bold;
}

.about-impact {
    background: linear-gradient(135deg, var(--primary-cleft), var(--primary-eye));
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    color: var(--text-white);
    text-align: center;
}

.about-impact h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.impact-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.highlight-icon {
    font-size: 2.5rem;
}

.highlight strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* ===================================
   PROGRAMS SECTION
   =================================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.program-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.program-header {
    padding: 40px 30px;
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.cleft-program .program-header {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.85), rgba(102, 187, 106, 0.85));
}

.eye-program .program-header {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.85), rgba(255, 179, 0, 0.85));
}

.cleft-program .program-header::before,
.eye-program .program-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: 1;
}

.program-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.program-header h3 {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.program-content {
    padding: 40px 30px;
}

.program-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.program-intro {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-cream);
}

.program-intro p {
    margin-bottom: 12px;
    color: var(--text-gray);
}

.program-details {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-cream);
}

.program-details ul {
    list-style: disc;
    padding-left: 20px;
}

.program-details li {
    padding-left: 10px;
    margin-bottom: 12px;
    color: var(--text-gray);
    line-height: 1.7;
}

.service-sections {
    display: grid;
    gap: 20px;
}

.service-section strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-eye);
}

.program-reach {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-cream);
}

.states-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.state-tag {
    background: var(--bg-cream);
    color: var(--primary-cleft);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.program-stats {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-cream);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.mini-stat {
    text-align: center;
    padding: 20px 15px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.mini-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-cleft);
    margin-bottom: 8px;
}

.eye-program .mini-stat strong {
    color: var(--primary-eye);
}

.mini-stat span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

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

.program-partner p {
    color: var(--text-gray);
    margin-bottom: 8px;
}

.partner-logo {
    max-width: 150px;
    margin: 15px auto;
}

.partner-detail {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===================================
   HOW WE WORK SECTION
   =================================== */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.methodology {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.methodology h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.methodology-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.methodology-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.cleft-methodology h3 {
    color: var(--primary-cleft);
}

.eye-methodology h3 {
    color: var(--primary-eye);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.cleft-methodology .step-number {
    background: linear-gradient(135deg, var(--primary-cleft), var(--accent-warm));
}

.eye-methodology .step-number {
    background: linear-gradient(135deg, var(--primary-eye), var(--accent-teal));
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   STORIES SECTION
   =================================== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.story-content {
    padding: 30px;
}

.story-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cleft-tag {
    background: rgba(255, 127, 80, 0.15);
    color: var(--primary-cleft);
}

.eye-tag {
    background: rgba(78, 205, 196, 0.15);
    color: var(--primary-eye);
}

.story-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.story-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.story-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.story-highlight {
    background: var(--bg-light);
    padding: 15px;
    border-left: 4px solid var(--primary-cleft);
    border-radius: var(--radius-sm);
    font-style: italic;
    margin-top: 15px;
}

/* ===================================
   GET HELP SECTION
   =================================== */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.help-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.help-header {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    color: var(--text-white);
}

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

.cleft-help .help-header {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.85), rgba(102, 187, 106, 0.85));
}

.eye-help .help-header {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.85), rgba(255, 179, 0, 0.85));
}

.cleft-help .help-header::before,
.eye-help .help-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: 1;
}

.help-header h3 {
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.help-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.help-details {
    padding: 40px;
    text-align: left;
}

.help-details h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--primary-cleft);
}

.help-details ul {
    list-style: disc;
    padding-left: 20px;
}

.help-details li {
    padding-left: 10px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.help-card .btn {
    margin: 0 40px 40px 40px;
    width: calc(100% - 80px);
}

.help-process {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(255, 193, 7, 0.1));
    padding: 50px 40px;
    border-radius: var(--radius-lg);
}

.help-process h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

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

.expect-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, var(--primary-cleft), var(--primary-eye));
    color: var(--text-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.expect-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.expect-item p {
    color: var(--text-gray);
}

/* ===================================
   SUPPORT SECTION
   =================================== */
.donation-impact {
    margin-bottom: 60px;
    text-align: center;
}

.donation-impact h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.impact-card {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.impact-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-cleft);
    margin-bottom: 15px;
}

.impact-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.support-options {
    margin-bottom: 60px;
}

.support-options h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

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

.option-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.option-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.option-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.tax-benefit {
    font-size: 0.85rem;
    color: var(--primary-cleft);
    font-weight: 600;
}

.csr-section {
    background: linear-gradient(135deg, var(--primary-eye), var(--accent-teal));
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    color: var(--text-white);
}

.csr-section h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.csr-benefits ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.csr-benefits li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.7;
}

.csr-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    font-weight: bold;
}

/* ===================================
   PARTNERS SECTION
   =================================== */
.strategic-partners {
    margin-bottom: 50px;
}

.strategic-partners h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

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

.partner-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.placeholder-logo {
    height: 100px;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 20px;
}

.actual-logo {
    max-width: 200px;
    max-height: 100px;
    margin: 0 auto 20px;
}

.partner-box h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.partner-box p {
    color: var(--text-gray);
    line-height: 1.6;
}

.community-partners h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

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

.partner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.partner-bullet {
    font-size: 1.8rem;
}

.partner-item p {
    color: var(--text-gray);
    margin: 0;
}

/* ===================================
   IMPACT MAP SECTION
   =================================== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.location-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.location-card h4 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-cleft);
}

.location-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.location-item span {
    color: var(--text-gray);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-cleft);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 5px;
}

.info-item a {
    color: var(--primary-cleft);
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-eye);
    text-decoration: underline;
}

.whatsapp-cta {
    text-align: center;
    margin-top: 30px;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--bg-cream);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cleft);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-reg {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cleft), var(--accent-warm));
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

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

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .programs-grid,
    .methodology-grid,
    .help-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        margin-top: 70px;
        min-height: 90vh;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

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

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .impact-highlights {
        grid-template-columns: 1fr;
    }

    .partner-logos,
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ANIMATIONS & UTILITIES
   =================================== */
.fade-in {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .scroll-to-top,
    .contact-form,
    .footer {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}
