/* --- CSS VARIABLES & RESET --- */
:root {
    --primary: #FFD700; /* Gold/Yellow */
    --primary-dark: #D4AF37;
    --primary-light: #FFF8DC;
    --secondary: #0F172A; /* Deep Navy/Black */
    --accent: #334155; /* Slate Grey */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #1e293b;
    --text-light: #f1f5f9;
    --shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --nav-height: 80px;
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* --- UTILITIES --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 5rem 0;
    padding-top: calc(5rem + var(--nav-height)); 
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-dark); }

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 15px auto 0;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000; 
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    position: relative; 
    z-index: 10001;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 1.8rem;
    background: none;
    border: none;
    position: relative;
    z-index: 10001;
}

/* --- HERO SECTION --- */
#home {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.1) 100%), 
                url('pics/hero.jpeg'); 
    background-size: cover;
    background-position: center left 20%;
    background-attachment: fixed;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    filter: contrast(1.1) brightness(1.05) saturate(1.1); 
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 0; 
    padding-bottom: 5rem;
    z-index: 1; 
    position: relative;
}

.hero-layout {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--primary);
    padding: 4rem;
    border-radius: 0px 20px 20px 0px;
    box-shadow: 10px 0 50px -10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    margin-left: 0;
    text-align: left;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary);
    opacity: 0;
    animation: fadeInLeft 1s forwards 0.5s;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInLeft 1s forwards 0.8s;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content h3 {
    color: var(--primary);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInLeft 1s forwards 1.1s;
}

.hero-content p {
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    opacity: 0;
    animation: fadeInLeft 1s forwards 1.4s;
    color: #cbd5e1;
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 15px;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInLeft 1s forwards 1.7s;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    animation: fadeInLeft 1s forwards 2.0s;
}

.highlight-item {
    text-align: left;
}

.highlight-item h4 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
}

.highlight-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

/* --- ANIMATIONS --- */
@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
}

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

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.timeline-item {
    border-left: 2px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
}

.timeline-date {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* --- PROJECTS --- */
.projects-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: var(--transition);
}

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

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover { transform: translateY(-10px); }

.project-img { height: 200px; overflow: hidden; }

.project-img img { width: 100%; height: 100%; transition: transform 0.5s ease; }

.project-card:hover .project-img img { transform: scale(1.1); }

.project-info { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
}

.status-completed { background: #dcfce7; color: #166534; }
.status-ongoing { background: #fef9c3; color: #854d0e; }

.project-meta {
    margin-top: auto;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #eee;
}

/* --- IMPACT --- */
#impact {
    background-color: var(--secondary);
    color: var(--white);
    position: relative;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 4rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label { font-size: 1.1rem; opacity: 0.9; }

.testimonials-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 300px;
    max-width: 300px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    scroll-snap-align: start;
}

.testimonial-text { font-style: italic; margin-bottom: 20px; }

/* --- FOUNDATION --- */
.foundation-banner {
    background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 3rem;
    border: 1px solid var(--primary);
}

.program-card {
    border-top: 4px solid var(--primary);
    padding: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover { transform: translateY(-5px); }

/* --- GRANTS --- */
.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    font-weight: 700;
    color: var(--secondary);
    user-select: none; 
}

.accordion-header::after { content: '+'; font-size: 1.5rem; color: var(--primary); }
.accordion-item.active .accordion-header::after { content: '-'; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background: #fafafa;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 300px; 
}

/* --- GALLERY --- */
.gallery-wrapper {
    position: relative;
    width: 100%;
}

.horizontal-gallery-container {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.horizontal-gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    pointer-events: auto;
}

.gallery-nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.gallery-nav-left {
    left: 10px;
}

.gallery-nav-right {
    right: 10px;
}

.horizontal-gallery {
    display: flex;
    gap: 20px;
    animation: scroll-horizontal 60s linear infinite;
    width: max-content;
}

.horizontal-gallery:hover {
    animation-play-state: paused;
}

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

.gallery-item {
    height: 300px;
    width: 250px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.4s ease; 
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
}

.gallery-overlay span {
    background: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 20000; 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border: 2px solid var(--primary);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

/* --- NEWS --- */
.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.news-body { padding: 25px; }

.news-date {
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

/* --- CONTACT & FOOTER --- */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary);
    font-size: 1.2rem;
}

input, textarea, select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus, textarea:focus { outline: none; border-color: var(--primary); }

footer {
    background-color: var(--secondary);
    color: white;
    padding: 4rem 0 1rem;
    margin-top: 2rem;
}

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

.footer-grid h4 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--primary); 
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.5);
}

.footer-grid a {
    transition: var(--transition);
}

.footer-grid a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.foundation-link-highlight {
    color: var(--primary) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5) !important;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- DONATE --- */
.donate-section {
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
    border: 2px dashed var(--primary);
    text-align: center;
}

.progress-bar-container {
    width: 100%;
    height: 30px;
    background: #e2e8f0;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 600px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    width: 0%; 
    transition: width 1.5s ease-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--secondary);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background: var(--secondary);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 9999;
    }

    .nav-links.nav-active { transform: translateY(0); }

    .hamburger { display: block; }
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
    
    /* Hero Section Mobile Improvements */
    #home {
        background-position: center center;
        background-attachment: scroll;
        padding: 100px 0 3rem;
        min-height: 90vh;
    }
    
    .hero-layout {
        justify-content: center;
        align-items: center;
        min-height: 70vh;
    }

    .hero-card {
        width: 95%;
        margin: 0 auto;
        border-radius: 15px;
        border-left: none;
        border-top: 4px solid var(--primary);
        text-align: center;
        padding: 2.5rem 1.5rem;
        backdrop-filter: blur(15px);
        background: rgba(255, 255, 255, 0.12);
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content p {
        border-left: none;
        padding-left: 0;
        margin: 0 auto 2rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 !important;
    }
    
    .hero-highlights { 
        justify-content: center; 
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .highlight-item {
        min-width: 120px;
        text-align: center;
    }

    /* Gallery Mobile Improvements */
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .gallery-nav-left {
        left: 5px;
    }

    .gallery-nav-right {
        right: 5px;
    }

    .gallery-item {
        height: 250px;
        width: 200px;
    }

    /* Accordion Mobile Improvements */
    .accordion-content {
        padding: 15px !important;
    }

    .accordion-item.active .accordion-content {
        max-height: 400px !important;
        padding: 20px !important;
    }

    .accordion-content .btn {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 0.9rem;
        margin-top: 20px;
        word-wrap: break-word;
        white-space: normal;
        display: block;
        border-radius: 8px;
        font-weight: 600;
    }

    .accordion-content p {
        margin-bottom: 12px;
        line-height: 1.5;
    }

    /* Projects Grid Mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Section Padding Mobile */
    .section-padding {
        padding: 60px 0;
    }

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

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-card {
        width: 80%;
        padding: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .gallery-item {
        height: 280px;
        width: 220px;
    }

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

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-card {
        padding: 2rem 1rem;
        width: 98%;
    }

    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .gallery-item {
        height: 220px;
        width: 180px;
    }

    .accordion-item.active .accordion-content {
        max-height: 450px !important;
        padding: 15px !important;
    }

    .accordion-content .btn {
        font-size: 0.85rem;
        padding: 12px 18px;
        margin-top: 15px;
        width: 100%;
        display: block;
        border-radius: 6px;
        font-weight: 600;
        line-height: 1.4;
    }

    .accordion-content p {
        font-size: 0.9rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* --- SOCIAL MEDIA ICONS --- */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon.facebook {
    background: #1877f2;
    color: white;
}

.social-icon.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.social-icon.tiktok {
    background: #000000;
    color: white;
}

.social-icon.tiktok:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* --- FOUNDATION MODAL --- */
.foundation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.foundation-modal.active {
    opacity: 1;
    visibility: visible;
}

.foundation-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.foundation-modal.active .foundation-modal-content {
    transform: scale(1);
}

.close-foundation-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-foundation-modal:hover {
    color: #333;
}

.foundation-modal h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.foundation-modal p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.foundation-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.foundation-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 100px;
}

.foundation-social-icon svg {
    width: 30px;
    height: 30px;
}

.foundation-social-icon span {
    font-weight: 600;
    font-size: 0.9rem;
}

.foundation-social-icon.facebook {
    background: #1877f2;
    color: white;
}

.foundation-social-icon.facebook:hover {
    background: #166fe5;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.foundation-social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.foundation-social-icon.instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(188, 24, 136, 0.3);
}

.foundation-social-icon.tiktok {
    background: #000000;
    color: white;
}

.foundation-social-icon.tiktok:hover {
    background: #333333;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
