/* ===========================
   CUSTOMIZATION VARIABLES
   =========================== */
:root {
    --primary-color: #ff6b00;
    --primary-dark: #e55d00;
    --secondary-color: #ff8c2e;
    --accent-color: #ff6b00;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #fff5ed;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-orange: #ff6b00;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    --section-padding: 80px 20px;
    --container-max-width: 1200px;
    --border-radius: 12px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(255, 107, 0, 0.2);
    --shadow-orange: 0 4px 15px rgba(255, 107, 0, 0.3);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    background: var(--bg-dark);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   NAVBAR TOTAL RAISED — HIGH VISIBILITY FIX
   =========================== */
.navbar-total-raised {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    padding: 0.55rem 1.2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s;
    box-shadow: 0 0 16px rgba(255, 107, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.navbar-total-raised:hover {
    background: var(--primary-dark);
    border-color: #ffffff;
    transform: scale(1.07);
    box-shadow: 0 0 24px rgba(255, 107, 0, 0.8), 0 4px 14px rgba(0, 0, 0, 0.5);
}

.navbar-raised-icon {
    font-size: 1.1rem;
}

.navbar-raised-amount {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

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

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

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

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 100%);
    background-image: 
        linear-gradient(135deg, rgba(255, 245, 237, 0.95) 0%, rgba(255, 232, 214, 0.95) 100%),
        url('website-background-1.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: transparent;
    width: 100%;
    padding: var(--section-padding);
    text-align: center;
}

.feeds-logo-top {
    margin-bottom: 30px;
}

.hero-feeds-logo {
    height: 220px;
    width: auto;
    max-width: 800px;
    object-fit: contain;
}

.hero-text-container {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 70px;
    border-radius: 25px;
    display: inline-block;
    max-width: 950px;
    margin: 0 auto 40px auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 107, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5), 
                 0px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===========================
   COLLABORATION LOGOS SECTION
   =========================== */
.collaboration-section {
    margin-top: 60px;
    text-align: center;
}

.collaboration-text {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
    display: block;
}

.collab-subtitle {
    font-size: 0.75rem;
    display: block;
    margin-top: 3px;
    letter-spacing: 2px;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 40px;
    gap: 60px;
}

.logo-item {
    transition: transform 0.3s ease;
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo-item:first-child {
    justify-content: flex-start;
}

.logo-item:last-child {
    justify-content: flex-end;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.partner-logo {
    height: 90px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

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

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

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================
   CLICKABLE STAT CARD STYLES
   =========================== */
.stat-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.clickable-stat-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.clickable-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.clickable-stat-card:hover::before {
    left: 100%;
}

.clickable-stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
    border: 2px solid var(--primary-color);
}

.view-donors-hint {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clickable-stat-card:hover .view-donors-hint {
    opacity: 1;
    transform: translateY(0);
}

.rotating-donor {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.donor-prefix {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.donor-name-rotating {
    color: var(--primary-color);
    font-weight: 700;
    transition: opacity 0.3s ease-in-out;
    font-size: 0.95rem;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.gallery-section .section-title {
    color: var(--text-white);
}

.gallery-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 107, 0, 0.95), transparent);
    color: var(--text-white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.95;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-section .section-title {
    color: var(--text-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

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

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: #000000;
    color: var(--text-white);
    text-align: center;
    padding: 2rem 0;
    border-top: 3px solid var(--primary-color);
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ===========================
   DONATION MODAL
   =========================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

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

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #fff5ed 100%);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.4);
}

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

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--text-white);
    background: var(--primary-color);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-align: center;
    text-transform: uppercase;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.donation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 107, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    min-height: 100px;
}

.payment-logo {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
    filter: brightness(1.1);
}

.payment-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.payment-number {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: 'Courier New', monospace;
}

.payment-instruction {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    line-height: 1.5;
}

.copy-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-orange);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn.copied {
    background: var(--secondary-color);
}

.crypto-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border: 2px solid var(--primary-dark);
}

.crypto-card h3 {
    color: var(--text-white);
}

.crypto-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.crypto-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.crypto-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-white);
}

.crypto-address {
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.crypto-item .copy-btn {
    font-size: 0.8rem;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.crypto-item .copy-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-dark);
}

.bank-details {
    text-align: left;
}

.bank-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.bank-details strong {
    color: var(--primary-color);
}

.modal-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 107, 0, 0.3);
}

.modal-footer p {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.small-text strong {
    color: var(--primary-color);
}

/* ===========================
   DONORS PAGE STYLES
   =========================== */
.donors-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donors-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.donors-hero-title {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.donors-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.total-impact-banner {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.impact-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.top-donors-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 100%);
}

.top-donors-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.podium-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,245,237,0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    min-width: 280px;
}

.podium-card.first {
    order: 2;
    transform: scale(1.1);
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--text-white);
}

.podium-card.first .podium-name,
.podium-card.first .podium-amount,
.podium-card.first .podium-message {
    color: var(--text-white);
}

.podium-card.second { order: 1; border-color: #C0C0C0; }
.podium-card.third  { order: 3; border-color: #CD7F32; }

.podium-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.4);
}

.podium-medal {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.podium-rank {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.podium-card.first .podium-rank { color: rgba(255,255,255,0.9); }

.podium-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.podium-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.podium-card.first .podium-amount {
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.podium-message {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.podium-date {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.podium-card.first .podium-date { color: rgba(255,255,255,0.8); }

.all-donors-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.donor-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 30px;
    font-size: 1rem;
    background: var(--bg-white);
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.sort-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sort-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.sort-btn:hover,
.sort-btn.active {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.donors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.donor-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,245,237,0.8) 100%);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.donor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.25);
    border-color: var(--primary-color);
}

.donor-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.donor-info { flex: 1; }

.donor-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.donor-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.donor-message {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.donor-date {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donors-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.no-donors {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.25rem;
    color: var(--text-light);
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.125rem;
    color: #dc3545;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-brand-section { gap: 0.75rem; }
    .navbar-total-raised { padding: 0.4rem 0.75rem; }
    .navbar-raised-icon { font-size: 1rem; }
    .navbar-raised-amount { font-size: 0.85rem; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 107, 0, 0.3);
        padding: 2rem 0;
        gap: 1rem;
        border-top: 2px solid var(--primary-color);
    }

    .nav-menu.active { left: 0; }
    .nav-menu li { padding: 0.5rem 0; }
    .hero { min-height: 500px; }

    .hero-text-container {
        padding: 35px 40px;
        border-radius: 20px;
        margin: 0 10px 30px 10px;
    }

    .hero-title { font-size: 2rem; padding: 0; }
    .hero-subtitle { font-size: 1rem; padding: 0; }
    .hero-feeds-logo { height: 140px; max-width: 500px; }

    .logo-container {
        flex-direction: row;
        gap: 20px;
        padding: 15px 20px;
        flex-wrap: nowrap;
    }

    .logo-item { justify-content: center !important; flex: 1; }
    .partner-logo { height: 50px; max-width: 100px; }
    .collaboration-text { font-size: 0.9rem; margin-bottom: 20px; }
    .collab-subtitle { font-size: 0.7rem; }
    .collaboration-section { margin-top: 40px; }
    .stats-grid { grid-template-columns: 1fr; }
    .about-content, .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .modal-content { padding: 1.5rem; margin: 1rem; }
    .donation-methods { grid-template-columns: 1fr; }
    .crypto-options { grid-template-columns: 1fr; }
    .donors-hero-title { font-size: 2.5rem; }
    .donors-hero-subtitle { font-size: 1.125rem; }
    .total-impact-banner { gap: 2rem; }
    .impact-number { font-size: 2rem; }
    .top-donors-podium { flex-direction: column; align-items: center; }
    .podium-card { width: 100%; max-width: 350px; }
    .podium-card.first { order: 1; }
    .podium-card.second { order: 2; }
    .podium-card.third { order: 3; }
    .donor-controls { flex-direction: column; align-items: stretch; }
    .search-box { width: 100%; }
    .sort-buttons { justify-content: center; }
    .donors-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .nav-brand { font-size: 1.25rem; }
    .nav-brand-section { gap: 0.5rem; flex-wrap: wrap; }
    .navbar-total-raised { padding: 0.35rem 0.6rem; }
    .navbar-raised-icon { font-size: 0.9rem; }
    .navbar-raised-amount { font-size: 0.75rem; }
    .hero { min-height: 400px; }
    .hero-text-container { padding: 25px 30px; border-radius: 15px; margin: 0 5px 25px 5px; }
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-feeds-logo { height: 100px; max-width: 400px; }
    .logo-container { gap: 15px; flex-wrap: nowrap; }
    .partner-logo { height: 45px; max-width: 80px; }
    .btn { padding: 12px 24px; font-size: 0.95rem; }
    .stat-number { font-size: 2rem; }
    .modal-content h2 { font-size: 1.5rem; }
    .section-title { font-size: 1.75rem; }
    .about-text h2 { font-size: 1.75rem; }
    .donors-hero-title { font-size: 2rem; }
    .donors-hero-subtitle { font-size: 1rem; }
    .impact-number { font-size: 1.75rem; }
    .impact-label { font-size: 0.85rem; }
    .podium-medal { font-size: 3rem; }
    .podium-amount { font-size: 1.5rem; }
    .donor-amount { font-size: 1.5rem; }
    .cta-content h2 { font-size: 2rem; }
    .cta-content p { font-size: 1rem; }
}