/* ===================================
   COMBINED DONATION PAGE STYLES
   Optimized & Mobile Responsive
   PART 1 OF 3 - UPDATED
   =================================== */

/* ===================================
   ROOT VARIABLES
   =================================== */
:root {
    --primary-navy: #0F2438;
    --primary-teal: #1A5F7A;
    --accent-emerald: #159895;
    --accent-gold: #D4AF37;
    --accent-mint: #57C5B6;
    --light-cream: #F8F6F0;
    --soft-beige: #EDE8DC;
    --warm-gold: #B8860B;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

/* ===================================
   SHARED COMPONENTS
   =================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-text {
    color: var(--accent-emerald);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}

/* ===================================
   HEADER STYLES
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 50%, var(--accent-emerald) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 152, 149, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    pointer-events: none;
}

.header-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(87, 197, 182, 0.2), transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
    z-index: 2;
}

/* ===================================
   LOGO STYLES
   =================================== */
.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 12px rgba(87, 197, 182, 0.4));
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 75px;
    border: 2px solid var(--accent-mint);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-wrapper img {
    transform: scale(1.08);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-mint);
    letter-spacing: 3px;
    line-height: 1;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

/* ===================================
   DESKTOP NAVIGATION
   =================================== */
.desktop-nav {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 22px;
    border-radius: 12px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: var(--transition-fast);
}

.link-hover-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-mint));
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover .link-hover-effect,
.nav-link.active .link-hover-effect {
    width: 70%;
}

.nav-link.cta-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ===================================
   DROPDOWN MENU
   =================================== */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 1000;
    margin-top: 10px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--light-cream);
    color: var(--accent-emerald);
    padding-left: 25px;
}

/* ===================================
   HAMBURGER MENU
   =================================== */
.hamburger {
    display: flex;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1003;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

.hamburger-box {
    width: 32px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 32px;
    height: 3px;
    background: var(--white);
    border-radius: 4px;
    position: absolute;
    transition: var(--transition-fast);
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger.active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::before {
    top: 0;
    transform: rotate(0deg);
    opacity: 0;
}

.hamburger.active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/* ===================================
   SIDEBAR
   =================================== */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary-navy) 0%, var(--primary-teal) 50%, var(--accent-emerald) 100%);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
    -webkit-overflow-scrolling: touch;
}

.sidebar.active {
    right: 0;
}

.sidebar-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    z-index: 1004;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.sidebar-content {
    padding: 90px 35px 35px;
}

.sidebar-header {
    margin-bottom: 40px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.sidebar-logo-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
}

.sidebar-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.sidebar-logo-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 2px;
}

.sidebar-logo-text p {
    font-size: 12px;
    color: var(--accent-mint);
    letter-spacing: 2px;
}

.sidebar-tagline p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.sidebar-menu {
    list-style: none;
    margin-bottom: 40px;
}

.sidebar-link {
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    touch-action: manipulation;
}

.sidebar-link:hover,
.sidebar-link.contact-highlight {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.sidebar-social {
    margin-bottom: 30px;
}

.social-title {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.sidebar-footer {
    padding-top: 20px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.sidebar-footer .copyright,
.sidebar-footer .design-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-align: center;
    margin-bottom: 8px;
}

.sidebar-footer a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* ===================================
   OVERLAY
   =================================== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 36, 56, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    backdrop-filter: blur(2px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* END OF PART 1 - Continue to Part 2 */

/* ===================================
   COMBINED DONATION PAGE STYLES
   PART 2 OF 3 - UPDATED
   =================================== */

/* ===================================
   DONATE HERO SECTION
   =================================== */
.donate-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 40%, var(--accent-emerald) 70%, var(--accent-mint) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.donate-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent-gold);
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 30%; top: 40%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 50%; top: 60%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 70%; top: 30%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(5) { left: 80%; top: 70%; animation-delay: 3s; animation-duration: 16s; }
.particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 40%; top: 90%; animation-delay: 4.5s; animation-duration: 19s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -30px) scale(1.2); opacity: 0.8; }
    50% { transform: translate(-20px, -60px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(40px, -40px) scale(1.1); opacity: 0.7; }
}

.donate-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(87, 197, 182, 0.1), transparent 50%), radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
    pointer-events: none;
}

.donate-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 20px;
    color: var(--accent-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.badge-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.donate-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.donate-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 50px;
    font-weight: 400;
}

.donate-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.donate-btn:hover::before {
    width: 300px;
    height: 300px;
}

.donate-btn span,
.donate-btn i {
    position: relative;
    z-index: 1;
}

.donate-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.donate-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.donate-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.donate-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===================================
   WAYS TO GIVE SECTION
   =================================== */
.ways-to-give-section {
    padding: 120px 0;
    background: var(--light-cream);
    position: relative;
    overflow: hidden;
}

.ways-header {
    text-align: center;
    margin-bottom: 60px;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.way-card {
    background: var(--white);
    border-radius: 25px;
    padding: 45px 35px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.way-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(21, 152, 149, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.way-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.way-card:hover .way-card-glow {
    opacity: 1;
}

.way-card.money-card {
    border-color: var(--accent-emerald);
}

.way-card.money-card:hover {
    border-color: var(--accent-mint);
}

.way-card.stocks-card {
    border-color: var(--primary-teal);
}

.way-card.stocks-card:hover {
    border-color: var(--accent-emerald);
}

.way-card.time-card {
    border-color: var(--accent-gold);
}

.way-card.time-card:hover {
    border-color: var(--warm-gold);
}

.way-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.way-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(21, 152, 149, 0.3);
    transition: transform 0.5s;
}

.way-card:hover .way-icon {
    transform: rotateY(360deg) scale(1.1);
}

.way-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 16px;
    background: var(--accent-emerald);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.4);
}

.way-badge.premium {
    background: var(--primary-teal);
}

.way-badge.volunteer {
    background: var(--accent-gold);
}

.way-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.way-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.way-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.way-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 5px;
}

.way-benefits li i {
    color: var(--accent-emerald);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.way-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.way-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.way-btn:hover::before {
    width: 400px;
    height: 400px;
}

.way-btn span,
.way-btn i {
    position: relative;
    z-index: 1;
}

.way-btn.primary {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border: none;
    box-shadow: 0 8px 25px rgba(21, 152, 149, 0.4);
}

.way-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(21, 152, 149, 0.5);
}

.way-btn.secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.way-btn.secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-3px);
}

.way-btn.tertiary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.way-btn.tertiary:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===================================
   IMPACT SECTION
   =================================== */
.impact-section {
    padding: 120px 0;
    background: var(--white);
}

.impact-header {
    text-align: left;
    margin-bottom: 60px;
}

.impact-description-content {
    text-align: left;
}

.impact-description-content .section-description {
    margin: 20px 0;
    max-width: 100%;
}

.impact-description-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 15px;
    text-align: center;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.impact-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-left: 15px;
    position: relative;
    padding-left: 25px;
}

.impact-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-size: 20px;
    font-weight: bold;
}

/* ===================================
   IMAGE GALLERY SECTION
   =================================== */
.image-gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 36, 56, 0.9), rgba(21, 152, 149, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition-smooth);
    padding: 20px;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   DONATION BENEFITS SECTION
   =================================== */
.donation-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.benefit-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.3);
}

.benefit-icon i {
    font-size: 30px;
    color: white;
}

.benefit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.2), transparent);
    border-radius: 50%;
    z-index: -1;
}

.benefit-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.benefit-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.custom-donation-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 50px 40px;
    /*display: flex;*/
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.custom-donation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(87, 197, 182, 0.2), transparent 60%);
    pointer-events: none;
}

.custom-icon {
    flex-shrink: 0;
}

.custom-icon i {
    font-size: 60px;
    color: #1abc9c;
}

.custom-content {
    flex: 1;
}

.custom-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.custom-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.3);
}

.custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 188, 156, 0.4);
}

/* ===================================
   STOCK INFO SECTION
   =================================== */
.stock-info-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.stock-content {
    text-align: center;
}

.stock-content .section-title,
.stock-content .section-badge span {
    color: white;
}

.stock-description {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin: 0 auto 60px;
    line-height: 1.8;
    max-width: 800px;
}

.stock-benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.stock-benefit-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    border: 1px solid rgba(26, 188, 156, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stock-benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: rgba(26, 188, 156, 0.4);
}

.stock-benefit-item .benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.3);
}

.stock-benefit-item .benefit-icon i {
    font-size: 30px;
    color: white;
}

.stock-benefit-item .benefit-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stock-benefit-item .benefit-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   DONATION WIDGETS CONTAINER - ENHANCED MOBILE
   =================================== */
.donation-widgets-container {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 20px;
}

.widgets-heading {
    text-align: center;
    margin-bottom: 40px;
}

.widgets-heading h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.widgets-heading p {
    font-size: 18px;
    color: #64748b;
}

.widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.widget-card {
    background: white;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    max-width: 100%;
}

.widget-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(21, 184, 166, 0.15);
    border-color: #15B8A6;
}

.widget-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.widget-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.widget-card p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Widget embedded content responsiveness */
.widget-card > div,
.widget-card iframe {
    max-width: 100%;
    overflow: hidden;
}

/* END OF PART 2 - Continue to Part 3 */

/* ===================================
   COMBINED DONATION PAGE STYLES
   PART 3 OF 3 - UPDATED
   =================================== */

/* ===================================
   VOLUNTEER SECTION
   =================================== */
.volunteer-section {
    padding: 120px 0;
    background: var(--light-cream);
}

.volunteer-header {
    text-align: center;
    margin-bottom: 60px;
}

.volunteer-opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.volunteer-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    text-align: center;
}

.volunteer-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.volunteer-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.volunteer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: transform 0.5s;
}

.volunteer-card:hover .volunteer-icon {
    transform: rotateY(360deg) scale(1.1);
}

.volunteer-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.volunteer-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.volunteer-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.volunteer-details li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.volunteer-details li i {
    color: var(--accent-emerald);
    font-size: 16px;
}

.volunteer-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal));
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.volunteer-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.volunteer-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.volunteer-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: var(--transition-fast);
}

.volunteer-apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

/* ===================================
   SUCCESS STORIES SECTION
   =================================== */
.success-stories-section {
    position: relative;
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.stories-header {
    text-align: center;
    margin-bottom: 60px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-cream);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 152, 149, 0.05), rgba(87, 197, 182, 0.05));
    opacity: 0;
    transition: opacity 0.5s;
}

.story-card:hover::before {
    opacity: 1;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-mint);
}

.story-card.featured {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    border-color: var(--accent-gold);
}

.story-card.featured .story-text,
.story-card.featured .author-name,
.story-card.featured .author-role {
    color: var(--white);
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.story-quote-icon {
    width: 50px;
    height: 50px;
    background: var(--light-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.story-card.featured .story-quote-icon {
    background: rgba(255, 255, 255, 0.15);
}

.story-quote-icon i {
    font-size: 20px;
    color: var(--accent-emerald);
}

.story-card.featured .story-quote-icon i {
    color: var(--accent-gold);
}

.story-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.3);
    flex-shrink: 0;
}

.author-avatar.gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.author-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-role {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.story-card.featured .author-role {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    position: relative;
    padding: 120px 0;
    background: var(--light-cream);
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.faq-item {
    padding: 35px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-mint);
    box-shadow: var(--shadow-md);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    transition: transform 0.5s;
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.3);
}

.faq-item:hover .faq-icon {
    transform: rotateY(360deg);
}

.faq-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.faq-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.faq-content a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: 600;
}

.faq-content a:hover {
    text-decoration: underline;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal), var(--accent-emerald));
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.cta-particles .particle:nth-child(1) {
    left: 20%;
    top: 20%;
    animation-delay: 0s;
}

.cta-particles .particle:nth-child(2) {
    left: 80%;
    top: 60%;
    animation-delay: 2s;
}

.cta-particles .particle:nth-child(3) {
    left: 50%;
    top: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--accent-gold);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 2s ease-in-out infinite;
}

.final-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn span,
.cta-btn i {
    position: relative;
    z-index: 1;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.cta-btn.tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--accent-gold);
    backdrop-filter: blur(10px);
}

.cta-btn.tertiary:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.trust-badge i {
    font-size: 20px;
    color: var(--accent-gold);
}

/* ===================================
   FOOTER SECTION
   =================================== */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-logo-text .logo-sub {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent-mint);
}

.footer-tagline {
    font-style: italic;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul,
.footer-services ul,
.footer-contact .contact-list {
    list-style: none;
}

.footer-links ul li,
.footer-services ul li,
.footer-contact .contact-list li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a,
.footer-contact .contact-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover,
.footer-contact .contact-list li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-credits a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.footer-credits a:hover {
    text-decoration: underline;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.4);
    transition: var(--transition-fast);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(21, 152, 149, 0.5);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .donate-hero-title {
        font-size: 4.5rem;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .custom-donation-box {
        flex-direction: row;
    }

    .volunteer-cta h3 {
        font-size: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stock-benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .widgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .donate-hero-title {
        font-size: 5rem;
    }

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 60px;
    }

    .final-cta-section h2 {
        font-size: 3.5rem;
    }

    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stock-benefits-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .widgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   RESPONSIVE - MOBILE (ENHANCED)
   =================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .donate-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .donate-hero-title {
        font-size: 2.5rem;
    }

    .donate-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .donate-hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .donate-btn,
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    .custom-donation-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .custom-content h3 {
        font-size: 24px;
    }

    .ways-grid {
        grid-template-columns: 1fr;
    }

    .story-card,
    .faq-item {
        padding: 30px 20px;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .volunteer-cta {
        padding: 40px 20px;
    }

    .volunteer-cta h3 {
        font-size: 1.8rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .logo-wrapper {
        width: 55px;
        height: 55px;
    }

    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image {
        height: 300px;
    }

    .overlay-content {
        padding: 15px;
    }

    .overlay-content i {
        font-size: 2.5rem;
    }

    .overlay-content h4 {
        font-size: 1.3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stock-benefits-list {
        grid-template-columns: 1fr;
    }

    .stock-info-section {
        padding: 80px 0;
    }

    /* ENHANCED WIDGET RESPONSIVENESS */
    .donation-widgets-container {
        padding: 30px 15px;
        margin: 40px auto 0;
        border-radius: 15px;
    }

    .widgets-heading h3 {
        font-size: 24px;
    }

    .widgets-heading p {
        font-size: 16px;
    }

    .widgets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .widget-card {
        padding: 30px 15px;
        max-width: 100%;
    }

    .widget-card h4 {
        font-size: 20px;
    }

    .widget-card p {
        font-size: 14px;
    }

    .widget-icon {
        width: 60px;
        height: 60px;
    }

    /* Force widget embedded content to respect mobile viewport */
    .widget-card iframe,
    .widget-card > div,
    .widget-card > div > div {
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .impact-header {
        text-align: left;
    }

    .impact-description-content h4 {
        font-size: 1.2rem;
    }

    .impact-list li {
        font-size: 15px;
        padding-left: 20px;
    }

    .stock-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .donate-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .way-card,
    .volunteer-card {
        padding: 25px 20px;
    }

    .volunteer-cta h3 {
        font-size: 1.5rem;
    }

    .sidebar {
        max-width: 100%;
    }

    .gallery-image {
        height: 250px;
    }

    .overlay-content i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .overlay-content h4 {
        font-size: 1.2rem;
    }

    .custom-donation-box {
        padding: 30px 15px;
    }

    .custom-content h3 {
        font-size: 20px;
    }

    .widgets-heading h3 {
        font-size: 20px;
    }

    .widgets-heading p {
        font-size: 14px;
    }

    .widget-card {
        padding: 25px 12px;
    }

    .widget-card h4 {
        font-size: 18px;
    }

    .widget-icon {
        width: 50px;
        height: 50px;
    }

    .donate-btn,
    .cta-btn {
        padding: 14px 25px;
        font-size: 15px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Force all widget content to be mobile-friendly */
@media (max-width: 640px) {
    #easyButtonContainer,
    #easyDafContainer,
    #easyButtonContainer *,
    #easyDafContainer * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .widget-card button,
    .widget-card a {
        font-size: 14px !important;
        padding: 10px 20px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
}

/* END OF PART 3 - CSS COMPLETE */

/* Impact Section - Centered Content */
.impact-section {
    text-align: center;
    padding: 80px 20px;
}

.impact-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.impact-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.impact-header .section-badge i {
    font-size: 14px;
}

.impact-header .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    text-align: center;
}

.impact-header .section-title .highlight-text {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-header .section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0 auto;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .impact-section {
        padding: 60px 15px;
    }
    
    .impact-header .section-title {
        font-size: 32px;
    }
    
    .impact-header .section-description {
        font-size: 16px;
    }
    
    
}

