/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary-color: #DA291C;
    --hover-color: #B51D12;
    --secondary-color: #222222;
    --text-main: #4a4a4a;
    --text-light: #777777;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #eeeeee;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--hover-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-banner img,
.report-image img,
.impact-image img,
.story-image img,
.campaign-image img,
.blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-dark {
    color: var(--text-main) !important;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c01d12 100%);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c01d12 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000 100%);
    color: var(--white);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #000 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-donate {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c01d12 100%);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 30px;
    animation: pulse 2s infinite;
    font-weight: 600;
}

.btn-donate:hover {
    background: linear-gradient(135deg, #c01d12 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    animation: none;
}

@keyframes pulse {
    0% { }
    70% { }
    100% { }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
    background-color: var(--secondary-color);
    color: #aaa;
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(218, 41, 28, 0.2);
}

.top-bar a {
    color: #aaa;
    margin-right: 25px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    border-radius: 50%;
    background-color: rgba(218, 41, 28, 0.1);
    transition: var(--transition);
    margin: 0;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.main-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--primary-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.8;
}

.site-logo {
    max-height: 70px;
    width: auto;
    display: block;
}

.logo-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1.5px;
}

.logo-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav > ul > li {
    position: relative;
    margin: 0;
}

.main-nav > ul > li > a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.main-nav > ul > li > a i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.main-nav > ul > li > a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.main-nav > ul > li > a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.main-nav > ul > li > a:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 250px;
    background-color: var(--white);
    border-top: 4px solid var(--primary-color);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: var(--transition);
    padding: 15px 0;
    z-index: 999;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    text-align: left;
    border-radius: 4px;
}



.dropdown-menu li a:hover {
    background-color: rgba(218, 41, 28, 0.1);
    color: var(--primary-color);
}

.header-actions {
    margin-left: 45px;
}

.btn-donate {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c01d12 100%);
    color: var(--white);
    border-radius: 50px;
    padding: 11px 35px;
    animation: pulse 2.5s infinite;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-donate:hover::before {
    left: 100%;
}

.btn-donate:hover {
    background: linear-gradient(135deg, #c01d12 0%, var(--primary-color) 100%);
    transform: translateY(-4px);
    animation: none;
}

@keyframes pulse {
    0% { 
    }
    70% { 
    }
    100% { 
    }
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ==========================================================================
   Hero Banner
   ========================================================================== */
.hero-banner {
    position: relative;
    height: 70vh;
    min-height: 600px;
    background-color: var(--primary-color);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.05) 100%);
}

.main-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

main {
    padding-top: 25px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* ==========================================================================
   Annual Report Section
   ========================================================================== */
.annual-report {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.report-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.report-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.report-image img {
    border-radius: 12px;
}

/* ==========================================================================
   Fields of Work Section
   ========================================================================== */
.fields-of-work {
    padding: 100px 0;
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.field-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.field-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-color);
}

.field-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.field-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.field-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   Impact Banner
   ========================================================================== */
.impact-banner {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.impact-stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.impact-stat p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Success Stories
   ========================================================================== */
.success-stories {
    padding: 100px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.story-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.story-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.story-quote {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.story-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.read-more:hover {
    border-bottom-color: var(--primary-color);
}

/* ==========================================================================
   Campaigns Section
   ========================================================================== */
.campaigns {
    padding: 100px 0;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.campaign-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.campaign-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.campaign-image {
    height: 300px;
    overflow: hidden;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.campaign-card:hover .campaign-image img {
    transform: scale(1.05);
}

.campaign-content {
    padding: 30px;
}

.campaign-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.campaign-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ==========================================================================
   Awards Section
   ========================================================================== */
.awards-recognition {
    padding: 100px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.award-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.award-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.award-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.award-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.award-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   Blogs Section
   ========================================================================== */
.blogs {
    padding: 100px 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.leader-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.donor-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.donor-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.rating {
    color: #ffc107;
    font-size: 1.1rem;
}

/* ==========================================================================
   Take Action Section
   ========================================================================== */
.take-action {
    background: var(--white);
    color: var(--text-dark);
    padding: 100px 0;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.action-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.action-card:hover {
    background-color: var(--light-bg);
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.action-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.action-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.action-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 5px;
}

.text-center .section-subtitle::after {
    margin: 5px auto 0;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-divider {
    height: 3px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-widget h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-widget p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-widget a {
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-widget a:hover {
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-socials {
    gap: 15px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(218, 41, 28, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    margin-bottom: 0;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: var(--primary-color);
}

.footer-note {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.footer-sitemap ul li a {
    display: block;
    padding: 6px 0;
    transition: var(--transition);
    position: relative;
}

.footer-sitemap ul li a:hover {
    color: var(--primary-color) !important;
    padding-left: 8px;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-flex p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.8);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .fields-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stories-grid,
    .campaigns-grid,
    .blogs-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .fields-grid,
    .awards-grid,
    .stories-grid,
    .campaigns-grid,
    .blogs-grid,
    .testimonials-grid,
    .action-cards {
        grid-template-columns: 1fr;
    }

    .header-container {
        height: auto;
        padding: 15px 0;
    }

    .main-nav {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 0;
        box-shadow: 0 10px 40px rgba(218, 41, 28, 0.1);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .main-nav > ul > li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(218, 41, 28, 0.03);
    }

    .main-nav > ul > li > a {
        padding: 18px 25px !important;
        border-bottom: none;
        border-left: 4px solid transparent;
        width: 100%;
        font-size: 1rem;
    }

    .main-nav > ul > li > a:hover,
    .main-nav > ul > li > a.active {
        background-color: var(--bg-light);
        border-left-color: var(--primary-color);
        border-bottom: none;
    }

    .main-nav > ul > li > a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        background-color: var(--bg-light);
        box-shadow: none;
        border: none;
        padding: 0;
        transform: none;
        transition: all 0.3s ease;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding: 15px 0;
    }

    .dropdown-menu li a {
        padding: 12px 30px !important;
        border-left: none;
        font-size: 0.95rem;
        background-color: transparent;
        text-align: left;
        display: block;
        border-radius: 0;
    }

    .dropdown-menu li a:hover {
        background-color: rgba(218, 41, 28, 0.15);
        padding-left: 35px !important;
    }

    .dropdown-menu li a::before {
        display: none;
    }

    .header-actions {
        margin-left: 0;
        padding: 20px 25px;
        border-top: 1px solid rgba(218, 41, 28, 0.03);
        width: calc(100% - 50px);
        position: static;
    }

    .btn-donate {
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-flex {
        flex-direction: column;
        gap: 20px;
    }

    .report-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .impact-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .impact-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 50vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats-grid {
        grid-template-columns: 1fr;
    }

    .header-container {
        padding: 12px 0;
    }

    .logo-title {
        font-size: 1.6rem;
    }

    .logo-icon {
        font-size: 2.3rem;
    }

    .btn-donate {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .main-nav {
        top: 75px;
        height: calc(100vh - 75px);
    }

    .main-nav > ul > li > a {
        padding: 16px 20px !important;
        font-size: 0.95rem;
    }

    .dropdown-menu li a {
        padding: 12px 40px !important;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.rounded {
    border-radius: 12px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}
