:root {
    --primary: #f28d32; /* Vibrant Orange */
    --primary-hover: #e07b20;
    --secondary: #0b1c36; /* Sporty Blue */
    --bg-dark: #ffffff;
    --bg-card: rgba(248, 250, 252, 0.7);
    --text-main: #0f172a;
    --text-muted: #475569;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 138px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout Utilities */
.container {
    width: 85%;
    max-width: 85%;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    color: var(--text-main);
    border-color: rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.text-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--primary-hover);
    gap: 0.75rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: rgba(245, 248, 252, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(11, 28, 54, 0.08);
}

.header.scrolled {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.footer-logo {
    color: #ffffff;
}

.logo-text {
    line-height: 1.1;
    text-align: left;
    display: inline-block;
}

.logo-accent {
    color: var(--primary);
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Hero Section */
.hero {
    height: calc(100vh - 138px);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

/* Video Preloader */
.video-preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.video-preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(184, 177, 177, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    text-align: left;
    color: #ffffff;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.hero-stat h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.hero-stat p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

/* About Masonry Grid */
.about-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.masonry-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

@media (max-width: 768px) {
    .about-masonry {
        grid-template-columns: 1fr;
    }
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header .card-icon {
    margin-bottom: 0;
}

.card-header h3.card-title {
    margin-bottom: 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-muted);
}

.events-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.events-list li a.event-item {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    text-decoration: none;
    background: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.events-list li a.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
}

.event-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    min-width: 70px;
}

.event-day {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
    border-bottom: 2px solid rgba(249, 115, 22, 0.3);
    padding-bottom: 0.25rem;
}

.event-month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.event-meta span i {
    color: var(--text-muted);
    margin-right: 0.25rem;
}

.event-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Overview Box Section */
.overview-box-section {
    background-color: var(--secondary);
    border-radius: 12px;
    padding: 3rem 4rem;
    margin-bottom: 4rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-box-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.overview-box-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.overview-inner-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.overview-col-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.overview-col-title::before {
    content: '';
    display: block;
    width: 6px;
    height: 24px;
    background-color: var(--primary);
    margin-right: 12px;
    border-radius: 2px;
}

.overview-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.overview-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .overview-inner-box {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    .overview-box-section {
        padding: 2rem;
    }
}

/* Action Grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: -2rem; /* Pull up slightly closer to the about section */
}

.action-card {
    background: linear-gradient(145deg, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2);
}

.action-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.action-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Programs Grid */
.alt-bg {
    background-color: #f1f5f9;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

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

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

.resources-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

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

.program-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-content {
    padding: 2.5rem 2rem;
}

.program-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
    position: relative;
}

.program-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.program-card:hover .program-overlay {
    opacity: 1;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.program-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Impact Section */
.impact-section {
    background: url('assets/hero_bg.png') no-repeat center center/cover;
    position: relative;
    color: var(--text-main);
    background-attachment: fixed;
}

.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85); /* Dark overlay */
}

.impact-section .container {
    position: relative;
    z-index: 2;
}

.impact-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.impact-stat {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.impact-stat:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.stat-number {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Initiatives */
.initiatives-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.initiative-item {
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: 0 20px 20px 0;
    transition: var(--transition);
}

.initiative-item:hover {
    background: linear-gradient(90deg, rgba(248, 250, 252, 1) 0%, rgba(255, 255, 255, 0) 100%);
    padding-left: 2.5rem;
}

.initiative-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.initiative-item p {
    color: var(--text-muted);
}

/* Volunteer Section */
.volunteer-content {
    max-width: 800px;
    margin: 0 auto;
}

.volunteer-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* CTA Section */
.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: #fff;
}

.cta-box p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-box .btn-primary {
    background: #fff;
    color: var(--secondary);
}

.cta-box .btn-outline {
    border-color: #fff;
    color: #fff;
}

.cta-box .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Contact Page Styles */
.page-banner {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('assets/hero_bg.png') no-repeat center center/cover;
    background-attachment: fixed;
    margin-bottom: 2rem;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
}

.page-title {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-details p {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.info-details a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.info-details a:hover {
    color: var(--primary);
}

.contact-form-wrap {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.contact-form h2 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Footer */
.footer {
    background: url('assets/footerbg.jpg') no-repeat center center/cover;
    padding: 5rem 0 2rem;
    position: relative;
    border-top: none;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 54, 0.85);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.brand-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.contact-info a:hover {
    color: var(--primary);
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--primary);
}

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1010;
        color: var(--secondary);
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(245, 248, 252, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(11, 28, 54, 0.15);
        z-index: 1005;
    }
    
    .nav.open { right: 0; }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    
    .cta-buttons { flex-direction: column; }
    
    .footer-grid { grid-template-columns: 1fr; }
}

/* Report Card Section */
.report-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.report-subtitle {
    display: block;
    color: #a3e635;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.report-title {
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.report-divider {
    border: none;
    height: 1px;
    background-color: #e2e8f0;
    margin: 2.5rem 0;
}

.report-description {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.report-chart {
    position: relative;
    width: 100%;
    margin: 2rem 0;
}

.report-chart svg {
    width: 100%;
    height: auto;
    font-family: var(--font-body);
}

.chart-grid line {
    stroke: #f1f5f9;
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
}

.chart-axis text {
    fill: #64748b;
    font-size: 12px;
}

.chart-area {
    fill: rgba(163, 230, 53, 0.1);
}

.chart-line {
    fill: none;
    stroke: #a3e635;
    stroke-width: 3;
}

.chart-point {
    fill: #ffffff;
    stroke: #a3e635;
    stroke-width: 3;
}
.chart-point-inner {
    fill: #a3e635;
}

@media (max-width: 768px) {
    .report-card {
        padding: 2rem;
    }
}

/* Donation Category Grid */
.donation-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.donation-category-card {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    padding: 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    user-select: none;
}

.donation-category-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.donation-category-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.donation-category-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-2px);
    border-color: #e2e8f0;
}

.donation-category-card.selected {
    background: #c5e1a5;
    border-color: #aed581;
}

.donation-category-card.selected h3,
.donation-category-card.selected p {
    color: #1f2937;
}
