/* ===============================
   COLOR PALETTE
   =============================== */
:root {
    --primary-green: #2d4a7c;
    --secondary-green: #4a6fa5;
    --light-green: #6b92c1;
    --accent-green: #7aa3d1;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --light-gray: #e8ecf1;
    --gray: #999999;
    --dark-gray: #333333;
    --black: #1a1a1a;
}

/* ===============================
   GLOBAL STYLES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* ===============================
   TYPOGRAPHY
   =============================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-green);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===============================
   NAVIGATION BAR
   =============================== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.logo-image {
    height: 100px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.35rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===============================
   RESPONSIVE NAVIGATION
   =============================== */
@media (max-width: 768px) {
    .logo-image {
        height: 50px;
    }

    .logo-text {
        display: inline;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        padding: 1rem 20px;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ===============================
   HERO SECTION
   =============================== */
.hero {
    color: var(--white);
    padding: 120px 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 74, 124, 0.5);
    z-index: 1;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--off-white);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* ===============================
   BUTTONS
   =============================== */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-green);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-green);
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 95, 63, 0.3);
}

.cta-button.white {
    background-color: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.cta-button.white:hover {
    background-color: var(--off-white);
}

/* ===============================
   CONTENT SECTIONS
   =============================== */
.content-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.page-header {
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--off-white);
    font-size: 1.2rem;
}

/* ===============================
   MISSION SECTION
   =============================== */
.mission-section {
    background-color: var(--off-white);
    padding: 80px 20px;
}

.mission-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-green);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--secondary-green);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.mission-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===============================
   PARTNERS SECTION
   =============================== */
.partners-section {
    background-color: var(--white);
    padding: 80px 20px;
    overflow: hidden;
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.partners-scroll {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scroll-partners 30s linear infinite;
    width: fit-content;
}

.partner-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===============================
   STATISTICS SECTION
   =============================== */
.stats-section {
    background-color: var(--white);
    padding: 80px 20px;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(45, 95, 63, 0.2);
}

.stat-card h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--off-white);
    margin: 0;
}

/* ===============================
   GALLERY SECTION
   =============================== */
.gallery-preview {
    padding: 80px 20px;
    background-color: var(--off-white);
}

.gallery-preview h2 {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: var(--light-gray);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-link {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* ===============================
   FULL GALLERY PAGE
   =============================== */
.gallery-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    padding: 8px 20px;
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--secondary-green);
    color: var(--white);
    border-color: var(--secondary-green);
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
}

.gallery-image.hidden {
    display: none;
    opacity: 0;
}

.gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    background-color: var(--light-gray);
    loading: lazy;
}

.gallery-image:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 74, 124, 0.85);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.image-overlay p {
    color: var(--off-white);
    margin: 0;
    font-size: 0.9rem;
}

/* ===============================
   ABOUT PAGE STYLES
   =============================== */
.about-intro {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-green);
    margin-bottom: 3rem;
}

.about-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-item {
    padding: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.focus-list,
.values-list {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.focus-list li,
.values-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--dark-gray);
}

.focus-list li::before,
.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===============================
   LEADERSHIP SECTION
   =============================== */
.leadership-section {
    margin-top: 3rem;
}

.leadership-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.leader-card {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.leader-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-green);
}

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

.leader-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.leader-card p {
    color: var(--gray);
    margin: 0.5rem 0;
}

.leader-bio {
    font-style: italic;
    margin-top: 1rem;
}

/* ===============================
   TIMELINE SECTION
   =============================== */
.timeline-section {
    background-color: var(--off-white);
    padding: 80px 20px;
    margin-top: 3rem;
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary-green);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 52%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 52%;
    margin-right: 0;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background-color: var(--secondary-green);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--secondary-green);
}

.timeline-content {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 90px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 30px;
    }
}

/* ===============================
   OUR WORK STYLES
   =============================== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-card {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--secondary-green);
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.work-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.work-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.work-category {
    color: var(--secondary-green);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.work-activities {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.work-activities li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    color: var(--gray);
    font-size: 0.95rem;
}

.work-activities li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
}

.work-impact {
    color: var(--dark-gray);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
    font-style: italic;
}

/* ===============================
   SUCCESS STORIES SECTION
   =============================== */
.success-stories-section {
    background-color: var(--white);
    padding: 80px 20px;
}

.success-stories-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(45, 95, 63, 0.2);
}

.story-image {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.story-card p {
    color: var(--off-white);
    margin: 0.5rem 0;
    line-height: 1.8;
}

.story-author {
    font-weight: 600;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-style: italic;
}

/* ===============================
   CONTACT PAGE STYLES
   =============================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.info-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-green);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.info-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.info-card p {
    margin: 0.3rem 0;
    color: var(--dark-gray);
}

.info-card a {
    font-weight: 600;
}

.info-subtext {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.social-section h4 {
    margin-bottom: 1rem;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background-color: var(--off-white);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--light-green);
    color: var(--white);
}

.social-icon-large {
    font-size: 1.5rem;
    font-weight: bold;
}

/* ===============================
   CONTACT FORM
   =============================== */
.contact-form-container h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--dark-gray);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(74, 143, 94, 0.1);
}

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

.contact-form button {
    align-self: flex-start;
    margin-top: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background-color: #e6f7ed;
    color: #1a5436;
    border: 1px solid #5cc382;
    display: block;
}

.form-message.error {
    background-color: #fef5f5;
    color: #b33;
    border: 1px solid #f5a9a9;
    display: block;
}

/* ===============================
   HELP SECTION
   =============================== */
.help-section {
    background-color: var(--off-white);
    padding: 80px 20px;
}

.help-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.help-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-card h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.help-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.help-link {
    color: var(--secondary-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

/* ===============================
   CTA SECTION
   =============================== */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--off-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===============================
   FOOTER
   =============================== */
.footer {
    background-color: var(--black);
    color: var(--off-white);
    padding: 3rem 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--off-white);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--off-white);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--secondary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #0d0d0d;
    padding: 2rem 0;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .mission-cards,
    .stats-grid,
    .gallery-grid,
    .work-grid,
    .stories-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-full-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .content-section,
    .mission-section,
    .gallery-preview,
    .success-stories-section,
    .timeline-section,
    .help-section,
    .cta-section {
        padding: 40px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .hero {
        padding: 40px 20px;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .stat-card h3 {
        font-size: 1.8rem;
    }

    .gallery-full-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===============================
   ANIMATIONS
   =============================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-card,
.stat-card,
.gallery-item,
.work-card,
.story-card,
.help-card {
    animation: fadeIn 0.6s ease-out;
}
