/* ============================================
   HHF Custom Theme — Main Stylesheet
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #fba311;
    --primary-dark: #e09200;
    --secondary: #1c1c1c;
    --dark: #1b1f21;
    --text: #666;
    --heading: #1c1c1c;
    --bg-light: #fef9ee;
    --white: #fff;
    --radius: 12px;
    --shadow: 0 8px 40px rgba(0,0,0,0.08);
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { color: var(--heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 46px); }
h3 { font-size: 22px; }

/* ---- Layout ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251,163,17,0.4);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--secondary); }
.btn-white { background: var(--white); color: var(--secondary); }
.btn-white:hover { background: var(--secondary); color: var(--white); }
.btn-sm { padding: 10px 24px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Section Utility ---- */
.subtitle {
    display: inline-block;
    color: var(--primary);
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 8px; text-wrap: balance; }
.section-header p { max-width: 700px; margin: 0 auto; color: var(--text); text-wrap: balance; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    transition: var(--transition);
}
.site-header.scrolled { padding: 4px 0; }

.main-header { padding: 12px 0; }
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo { flex-shrink: 0; }
.premium-logo {
    width: 220px;
    height: auto;
    object-fit: contain;
}
.logo-text { display: none; } /* Hide old text logo on desktop */

.menu-container {
    display: flex;
    align-items: center;
    gap: 30px;
}
.primary-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}
.primary-menu li a {
    display: block;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
    border-radius: 50px;
}
.primary-menu li a:hover,
.primary-menu li a.active,
.primary-menu li.current-menu-item a { 
    color: var(--primary); 
    background: rgba(251,163,17,0.05);
}

.header-right { display: flex; align-items: center; gap: 20px; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.mobile-only { display: none !important; }

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    position: relative;
}
.burger-menu span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.burger-menu.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 100px 0 40px;
}
.footer-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-logo { width: 220px; height: auto; margin-bottom: 15px; }
.footer-desc { color: #999; font-size: 15px; max-width: 350px; }
.footer-col h3 { color: #fff; margin-bottom: 30px; font-size: 18px; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a { color: #999; font-size: 15px; }
.footer-links li a:hover { color: var(--primary); padding-left: 5px; }

.newsletter-col p { color: #999; margin-bottom: 25px; }
.newsletter-form { display: flex; flex-direction: column; gap: 15px; }
.newsletter-input {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 14px 20px;
    border-radius: 12px;
    color: #fff;
    width: 100%;
    outline: none;
    transition: var(--transition);
}
.newsletter-input:focus {
    border-color: var(--primary);
    background: #222;
}
.newsletter-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}
.newsletter-btn:hover {
    background: #ffaa00; 
    transform: translateY(-2px);
}
.gdpr-label { display: flex; gap: 10px; font-size: 12px; color: #666; cursor: pointer; }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}
.footer-social { display: flex; gap: 15px; }
.footer-social a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom-links { display: flex; gap: 25px; }

/* ============================================
   HERO
   ============================================ */
/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 10;
    background: #000;
}
.slider-container { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,10,10,0.8) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.hero-slider .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 640px; transform: translateY(30px); opacity: 0; transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s; }
.hero-slide.active .hero-content { transform: translateY(0); opacity: 1; }

.hero-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; font-size: 48px; line-height: 1.1; }
.hero-content p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 36px; line-height: 1.6; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn { min-width: 200px; justify-content: center; }

/* Progress Bar */
.slider-progress-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}
.slider-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: width 0.1s linear;
}

/* Nav Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}
.slider-nav:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 40px; }
.slider-next { right: 40px; }

@media (max-width: 768px) {
    .slider-nav { width: 40px; height: 40px; font-size: 18px; }
    .slider-prev { left: 15px; }
    .slider-next { right: 15px; }
    .hero-content h1 { font-size: 32px; }
}
.video-btn { gap: 12px; }
.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: var(--primary);
    border-radius: 50%;
    font-size: 11px;
    padding-left: 2px;
    flex-shrink: 0;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
    position: relative;
    padding: 0 0 80px;
    margin-top: -80px;
    background: var(--white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 10;
}
.feature-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: background 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}
.feature-box:hover, .feature-box.featured {
    background: var(--secondary);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}
.feature-box h3, .feature-box p, .feature-link {
    transition: color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feature-box:hover h3, .feature-box.featured h3 { color: var(--white); }
.feature-box:hover p, .feature-box.featured p { color: rgba(255,255,255,0.7); }
.feature-box:hover .feature-link, .feature-box.featured .feature-link { color: var(--primary); }
.feature-icon {
    width: 64px; height: 64px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.feature-icon svg { 
    width: 32px; height: 32px; fill: var(--primary); 
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.feature-box:hover .feature-icon svg { transform: scale(1.1); }
.feature-box:hover .feature-icon, .feature-box.featured .feature-icon {
    background: rgba(255,255,255,0.1);
}
.feature-box h3 { margin-bottom: 12px; font-size: 20px; }
.feature-box p { font-size: 14px; margin-bottom: 20px; color: var(--text); }
.feature-link { color: var(--primary); font-weight: 600; font-size: 14px; }

/* ============================================
   ABOUT
   ============================================ */
.about-section { padding: 100px 0; background: var(--bg-light); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}
.about-badge {
    position: absolute;
    bottom: 30px; left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
.badge-number { display: block; font-size: 30px; font-weight: 800; }
.badge-text { font-size: 13px; opacity: 0.9; }

.about-content h2 { margin: 8px 0 20px; }
.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.check-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 3px;
}
.about-cta { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin-top: 30px; }
.contact-box { display: flex; align-items: center; gap: 12px; }
.contact-icon { font-size: 26px; color: var(--primary); }
.contact-box small { display: block; font-size: 12px; color: var(--text); }
.contact-box strong { font-size: 16px; color: var(--heading); }

/* ============================================
   SERVICES
   ============================================ */
.services-section { padding: 80px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.service-card.featured-card { background: var(--secondary); }
.service-card.featured-card .service-body h3 { color: var(--white); }
.service-card.featured-card .service-body p { color: rgba(255,255,255,0.7); }
.service-img { height: 220px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 28px; }
.service-body h3 { margin-bottom: 12px; }
.service-body p { font-size: 14px; margin-bottom: 20px; }

/* ============================================
   IMPACT
   ============================================ */
.impact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.impact-left { position: relative; overflow: hidden; }
.impact-img-wrap { width: 100%; height: 100%; }
.impact-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.play-btn-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
}
.play-circle {
    width: 80px; height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    padding-left: 6px;
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(251,163,17,0.5); }
    70%  { box-shadow: 0 0 0 20px rgba(251,163,17,0); }
    100% { box-shadow: 0 0 0 0 rgba(251,163,17,0); }
}
.play-circle:hover { transform: scale(1.1); }

.impact-right { background: var(--bg-light); display: flex; align-items: center; }
.impact-content { padding: 80px 60px; }
.impact-content h2 { margin: 8px 0 20px; }
.impact-stats { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.stat-item { display: flex; align-items: flex-start; gap: 16px; }
.stat-icon { font-size: 28px; }
.stat-item strong { display: block; color: var(--heading); font-size: 16px; }
.stat-item small { font-size: 13px; }

.progress-bars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.progress-item {}
.progress-label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--heading); }
.progress-track {
    height: 8px; background: #e0e0e0; border-radius: 50px; overflow: hidden;
}
.progress-fill {
    height: 100%; background: var(--primary); border-radius: 50px; width: 0;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================
   CAUSES
   ============================================ */
.causes-section { 
    padding: 100px 0; 
    background: var(--white); 
    position: relative;
    overflow: hidden;
}

.causes-section .container {
    position: relative;
    z-index: 5;
}

.causes-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.deco-top-left {
    top: 0;
    left: 0;
    width: 400px;
    opacity: 0.8;
}

.deco-bottom-right {
    bottom: -2px;
    right: -60px;
    width: 360px;
    opacity: 0.6;
}

.deco-bottom-right > img {
    max-width: 100%;
    width: 200px;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
    .deco-top-left { width: 300px; }
    .deco-bottom-right { width: 400px; }
}

@media (max-width: 991px) {
    .causes-decoration { display: none !important; }
}
.causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}
.cause-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cause-card:hover { transform: translateY(-8px); }
.cause-img { position: relative; height: 240px; overflow: hidden; flex-shrink: 0; }
.cause-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.cause-card:hover .cause-img img { transform: scale(1.05); }
.cause-cat {
    position: absolute; top: 16px; left: 16px;
    background: var(--primary); color: var(--white);
    font-size: 12px; font-weight: 600;
    padding: 4px 14px; border-radius: 50px;
}
.cause-body { 
    padding: 24px; 
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cause-body h3 { font-size: 18px; margin-bottom: 16px; }
.cause-progress { margin-bottom: 10px; }
.cause-track { height: 6px; background: #eee; border-radius: 50px; overflow: hidden; }
.cause-fill { height: 100%; background: var(--primary); border-radius: 50px; width: 0; transition: width 1.2s ease; }
.cause-meta {
    display: flex; justify-content: space-between;
    font-size: 13px; margin-bottom: 20px; color: var(--text);
}
.cause-meta strong { color: var(--heading); }
.cause-body .btn { margin-top: auto; }

/* ============================================
   DONATE CTA
   ============================================ */
.donate-cta-section { padding: 80px 0; background: var(--bg-light); }
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.cta-content h2 { margin-top: 10px; }
.donate-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}
.donate-form-card h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row input, .full-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}
.full-input { display: block; margin-bottom: 20px; }
.form-row input:focus, .full-input:focus { border-color: var(--primary); }
.donate-label { font-weight: 600; font-size: 14px; margin-bottom: 10px; color: var(--heading); }
.donate-amount-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.currency { font-size: 24px; font-weight: 700; color: var(--primary); }
.amount-input {
    font-size: 28px; font-weight: 700; width: 100px;
    border: none; outline: none;
    color: var(--heading); font-family: inherit;
}
.donate-presets { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.preset-btn {
    padding: 8px 18px;
    border: 1.5px solid #e8e8e8;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.preset-btn:hover, .preset-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: 80px 0; background: var(--white); }
.testimonials-slider { display: flex; justify-content: center; }
.testimonial-item {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 800px;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.testimonial-img img {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    flex-shrink: 0;
}
.testimonial-content p { font-size: 16px; font-style: italic; margin-bottom: 16px; color: var(--text); }
.testimonial-content strong { display: block; color: var(--heading); font-size: 16px; }
.testimonial-content small { color: var(--primary); font-size: 13px; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 80px 0; background: var(--bg-light); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.faq-img img {
    width: 100%; height: 500px; object-fit: cover;
    border-radius: 20px;
}
.faq-content h2 { margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-weight: 600;
    font-size: 15px;
    color: var(--heading);
    cursor: pointer;
    gap: 12px;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    font-size: 20px;
    color: var(--primary);
    font-weight: 400;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding-bottom: 18px; font-size: 14px; color: var(--text); }

/* ============================================
   NEWS
   ============================================ */
.news-section { padding: 100px 0; background: var(--white); }
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 20px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.news-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); }
.news-img { height: 220px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 24px; }
.news-meta { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.news-body h3 { font-size: 18px; margin-bottom: 10px; }
.news-body p { font-size: 14px; margin-bottom: 16px; }
.news-link { color: var(--primary); font-weight: 600; font-size: 14px; }
.news-link:hover { gap: 8px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #1a1a1a; color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-widgets {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 0;
}
.footer-col h3 { color: var(--white); margin-bottom: 24px; font-size: 20px; font-weight: 700; }
.footer-col .logo-text { color: var(--white); margin-bottom: 20px; display: block; font-size: 32px; font-weight: 800; }
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 0; }

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links li a { color: inherit; text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-links li a:hover { color: var(--primary); padding-left: 5px; }

.newsletter-box { margin-top: 20px; }
.newsletter-form { display: flex; flex-direction: column; gap: 15px; }
.newsletter-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 20px;
    border-radius: 12px;
    color: var(--white);
    width: 100%;
    outline: none;
}
.footer-bottom {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
}
.footer-social { display: flex; gap: 12px; justify-content: center; }
.footer-social a {
    width: 32px; height: 32px;
    background: var(--primary);
    color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
}

.footer-social a:hover { background: var(--white); color: var(--primary); transform: translateY(-5px); }

.footer-copyright { text-align: left; font-size: 13px; opacity: 0.6; }
.footer-bottom-links { display: flex; gap: 20px; justify-content: flex-end; font-size: 13px; }
.footer-bottom-links a { color: inherit; text-decoration: none; opacity: 0.6; }
.footer-bottom-links a:hover { opacity: 1; color: var(--white); }

/* ============================================
   AOS-LIKE ANIMATIONS
   ============================================ */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos].aos-animate  { opacity: 1; transform: translate(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid, .services-grid, .causes-grid, .news-grid { grid-template-columns: 1fr; }
    .footer-widgets { grid-template-columns: 1fr; }
    .about-grid, .impact-section, .cta-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-slider { min-height: 80vh; }
    .hero-content h1 { font-size: 32px; }

    /* Standardize Section Padding on Mobile */
    .about-section,
    .services-section,
    .impact-section,
    .causes-section,
    .donate-home-section,
    .donate-cta-section,
    .news-section,
    .volunteer-section,
    .contact-section,
    .video-refactor-section,
    .dedication-section {
        padding: 80px 0 !important;
    }
    
    .burger-menu { display: flex; margin-left: auto; }
    
    /* Ensure the menu and its actions are NOT visible in the header flow on mobile */
    .menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        padding: 80px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 10000;
        flex-direction: column;
        align-items: flex-start;
        display: flex;
        opacity: 0;
        visibility: hidden;
    }
    .menu-container.active { 
        right: 0; 
        opacity: 1; 
        visibility: visible; 
    }
    
    .primary-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
    .primary-menu li { width: 100%; }
    .primary-menu li a { font-size: 18px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; width: 100%; }
    
    .header-actions { margin-top: auto; padding-top: 30px; width: 100%; }
    .header-actions .btn { width: 100%; text-align: center; padding: 15px; }

    .footer-widgets { grid-template-columns: 1fr; }
    .testimonial-item { flex-direction: column; text-align: center; padding: 32px; }
    .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    
    /* Navigation Button Visibility */
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
    
    .header-actions.mobile-only { 
        width: 100%; 
        margin-top: 30px; /* Positioned directly below the menu items */
    }
    .header-actions.mobile-only .btn { 
        width: 100%; 
        text-align: center; 
        padding: 16px; 
    }

    .donate-home-grid { grid-template-columns: 1fr; gap: 40px; }
    .impact-mini-grid { grid-template-columns: 1fr; gap: 15px; }
}

/* ============================================
   DONATION SECTION (ON-PAGE)
   ============================================ */
.donate-home-section {
    padding: 100px 0;
    position: relative;
    background: url('/wp-content/uploads/2026/04/hero-bg-3.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.donate-home-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 30;
}
.donate-home-section:after {
    content: '';
    width: 100%;
    height: 100%;
    background: #fef9eedb;
    position: absolute;
    top: 0;
}
.donate-home-content h2 { margin-bottom: 24px; }
.donate-home-content p { font-size: 18px; margin-bottom: 40px; }
.impact-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.impact-mini-box { background: var(--white); padding: 24px; border-radius: 12px; box-shadow: var(--shadow); }
.impact-mini-box strong { display: block; font-size: 20px; color: var(--primary); margin-bottom: 4px; }
.impact-mini-box span { font-size: 14px; }

/* Donation Form Classes */
.donation-method-toggle { margin-bottom: 25px; display: flex; gap: 10px; }
.method-btn { flex: 1; padding: 12px; border-radius: 8px; border: 1px solid #ddd; background: white; color: var(--text); font-weight: 600; cursor: pointer; transition: var(--transition); font-family: inherit; }
.method-btn.active { border-color: var(--primary); background: var(--primary); color: white; }

.donor-input { width: 100%; padding: 12px 15px; border-radius: 8px; border: 1px solid #ddd; font-size: 14px; font-family: inherit; transition: var(--transition); }
.donor-input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(251, 163, 17, 0.1); }
.donor-details-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; }
.donor-email { margin-bottom: 15px; display: block; }

.giftaid-box { margin-bottom: 20px; }
.giftaid-label { display: flex; gap: 10px; cursor: pointer; font-size: 14px; text-align: left; align-items: flex-start; }
.giftaid-label input { margin-top: 3px; }

.donate-submit-btn svg { margin-right: 8px; vertical-align: middle; }

.bank-details-box { text-align: left; background: #f9f9f9; padding: 25px; border-radius: 15px; border: 1px solid #eee; }
.bank-notice { font-size: 14px; margin-bottom: 15px; color: #666; }
.bank-info-grid { display: grid; gap: 12px; font-size: 15px; }
.bank-contact-note { margin-top: 10px; font-size: 13px; color: var(--primary); font-style: italic; }

@media (max-width: 480px) {
    .donor-details-row { grid-template-columns: 1fr; }
    .donation-method-toggle { flex-direction: column; }
}

/* ============================================
   BLOG MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }

.modal-dialog {
    background: var(--white);
    width: 100%;
    max-width: 1300px;
    max-height: 85vh; /* Shortened from 95vh */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
}

.modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.modal-overlay.active .modal-dialog { transform: translateY(0); opacity: 1; }

/* ---- Split layout wrapper ---- */
.modal-body-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* True 50/50 */
    min-height: 0;
    flex: 1;
    overflow: hidden;
}

/* ---- Left column: image + title ---- */
.modal-left {
    position: relative;
    background: #002e5b;             /* HHF navy fallback */
    color: var(--white);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    min-height: 550px;
}

/* Image fills the column */
.modal-left-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

/* Dark gradient overlay so text is always readable */
.modal-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.80) 0%,
        rgba(0,0,0,0.40) 50%,
        rgba(0,0,0,0.15) 100%
    );
    z-index: 2;
}

.modal-left-content {
    position: relative;
    z-index: 3;
}

.modal-left-content .subtitle {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.modal-left h2 {
    color: var(--white);
    font-size: 34px;
    margin-top: 0;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ---- Right column: content / form ---- */
.modal-right {
    padding: 60px 50px;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
    scrollbar-width: auto;
    scrollbar-color: var(--primary) #f8f8f8;
}

.modal-right::-webkit-scrollbar {
    width: 8px;
}

.modal-right::-webkit-scrollbar-track {
    background: #f8f8f8;
}

.modal-right::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 10px;
    border: 2px solid #f8f8f8;
}

.modal-right::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ---- Loading state ---- */
.modal-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    min-height: 400px;
    font-size: 14px;
    font-weight: 600;
    color: #aaa;
    background: var(--white);
    gap: 16px;
}
.modal-loader::before {
    content: "";
    width: 44px;
    height: 44px;
    border: 3px solid rgba(251, 163, 17, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: modalSpin 0.7s linear infinite;
}
@keyframes modalSpin {
    to { transform: rotate(360deg); }
}

/* ---- Close button ---- */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20010;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    color: var(--secondary);
    line-height: 1;
}
.modal-close:hover { background: var(--primary); color: var(--white); transform: rotate(90deg); }

/* ---- Post content styles ---- */
.modal-body h1 { margin-bottom: 24px; }
.modal-body .post-meta {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
}
.modal-body .post-content { font-size: 16px; line-height: 1.8; color: #444; word-break: break-word; }
.modal-body .post-content h2,
.modal-body .post-content h3 { color: #002e5b; margin: 24px 0 12px; }
.modal-body .post-content p { margin-bottom: 16px; }
.modal-body .post-content img { margin-bottom: 20px; width: 100%; border-radius: 8px; }

/* ---- Responsive: single column on mobile ---- */
@media (max-width: 900px) {
    .modal-overlay { padding: 0; align-items: flex-end; }
    .modal-dialog {
        max-width: 100%;
        width: 100%;
        max-height: 95vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(60px);
    }
    .modal-body-wrapper {
        grid-template-columns: 1fr;     /* Stack to single column */
        overflow-y: auto;
        max-height: 95vh;
    }
    .modal-left {
        min-height: 260px;
        padding: 40px 30px 30px;
        justify-content: flex-end;
    }
    .modal-left h2 { font-size: 22px; }
    .modal-right {
        padding: 30px 24px 40px;
        overflow-y: visible;
    }
}

@media (max-width: 480px) {
    .modal-left { min-height: 220px; padding: 30px 20px 24px; }
    .modal-right { padding: 24px 16px 32px; }
    .modal-left h2 { font-size: 20px; }
}

/* Flat Icons Utility */
.icon-flat {
    width: 24px; height: 24px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}
.icon-lg { width: 48px; height: 48px; }

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}
.page-numbers {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid #eee;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}
.page-numbers.current, .page-numbers:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Splash and Hands Decoration */
.splash-bg {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 300px;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}
.hands-deco {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
    animation: floatHands 6s ease-in-out infinite;
}
@keyframes floatHands {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   VOLUNTEER SECTION
   ============================================ */
.volunteer-section { padding: 100px 0; background-color: #002e5b; color: var(--white); position: relative; }
.volunteer-section .subtitle { color: var(--primary); }
.volunteer-section .section-header { margin-bottom: 0; }
.volunteer-section .section-header h2 { color: var(--white); }
.volunteer-section .section-header p { color: rgba(255,255,255,0.7); }
.volunteer-section p { padding: 0 0 20px; }
.volunteer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.volunteer-box {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.volunteer-box:hover { transform: translateY(-10px); background: rgba(255,255,255,0.1); border-color: var(--primary); }
.volunteer-icon { width: 60px; height: 60px; margin: 0 auto 24px; color: var(--primary); }
.volunteer-box h3 { font-size: 20px; margin-bottom: 15px; color: var(--white); }
.volunteer-desc { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; }
.volunteer-footer {
    position: relative;
    padding: 80px 0 20px;
    text-align: center;
    margin-top: 60px;
}
.volunteer-footer-content { position: relative; z-index: 5; }
.volunteer-footer h2 {
    color: var(--white);
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 35px;
    font-weight: 700;
}
.heart-icon {
    position: absolute;
    width: 100px;
    height: auto;
    opacity: 0.8;
    pointer-events: none;
    animation: volunteerHeartFloat 10s ease-in-out infinite;
}
.heart-icon img { width: 100%; height: auto; display: block; }
.heart-left { left: 8%; top: 50%; animation-delay: 0s; }
.heart-right { right: 8%; top: 50%; animation-delay: 2s; }

@keyframes volunteerHeartFloat {
    0%, 100% { transform: translateY(-50%) translate(0, 0) rotate(0deg); }
    33% { transform: translateY(-50%) translate(10px, -15px) rotate(4deg); }
    66% { transform: translateY(-50%) translate(-10px, -10px) rotate(-4deg); }
}

@media (max-width: 991px) {
    .heart-icon { display: none; }
    .volunteer-footer h2 { font-size: 28px; }
}
@media (max-width: 768px) {
    .heart-icon { display: none; }
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section { padding: 100px 0; background: var(--bg-light); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.team-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.team-img { position: relative; height: 350px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.1); }
.team-social {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateX(60px);
    transition: var(--transition);
}
.team-card:hover .team-social { transform: translateX(0); }
.team-social a {
    width: 36px; height: 36px;
    background: var(--primary);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

.team-info { padding: 24px; text-align: center; }
.team-info h3 { font-size: 20px; margin-bottom: 5px; }
.team-info span { color: var(--primary); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section { padding: 100px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.testimonial-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.testimonial-quote { color: var(--primary); width: 40px; height: 40px; margin-bottom: 24px; opacity: 0.3; }
.testimonial-content { font-size: 17px; line-height: 1.8; color: var(--secondary); margin-bottom: 30px; font-style: italic; flex: 1; }
.testimonial-user { display: flex; align-items: center; gap: 15px; }
.user-img { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; }
.user-img img { width: 100%; height: 100%; object-fit: cover; }
.user-info strong { display: block; font-size: 16px; color: var(--secondary); }
.user-info span { font-size: 13px; color: #888; }

/* Pagination */
.section-pagination { margin-top: 50px; text-align: center; }
.section-pagination .page-numbers {
    display: inline-flex;
    gap: 10px;
}
.section-pagination a, .section-pagination span {
    width: 40px; height: 40px;
    border: 1px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
}
.section-pagination span.current { background: var(--primary); color: var(--white); border-color: var(--primary); }
.section-pagination a:hover { background: var(--bg-light); border-color: var(--primary); color: var(--primary); }

/* Contact Methods Fix */
.contact-methods { margin-top: 40px; display: flex; flex-direction: column; gap: 30px; }
.c-method { display: flex; align-items: center; gap: 20px; }
.c-icon { 
    width: 54px; height: 54px; 
    background: var(--white); 
    border-radius: 12px; 
    display: flex; align-items: center; justify-content: center; 
    box-shadow: var(--shadow);
    flex-shrink: 0;
}
.c-icon svg { width: 24px; height: 24px; fill: var(--primary); }
.c-text strong { display: block; font-size: 14px; color: var(--text); opacity: 0.7; margin-bottom: 4px; }
.c-text a { font-size: 18px; font-weight: 700; color: var(--secondary); text-decoration: none; transition: var(--transition); }
.c-text a:hover { color: var(--primary); }

@media (max-width: 991px) {
    .volunteer-grid, .team-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .donate-home-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .volunteer-grid, .team-grid, .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================
   404 PAGE
   ============================================ */
.error-404-page { 
    padding: 120px 0; 
    background: var(--bg-light); 
    min-height: 80vh; 
    display: flex; 
    align-items: center; 
}
.error-content { 
    max-width: 650px; 
    margin: 0 auto; 
    text-align: center; 
}
.error-img { 
    margin-bottom: 40px; 
    border-radius: 24px; 
    overflow: hidden; 
    box-shadow: var(--shadow); 
    border: 8px solid var(--white);
}
.error-img img { 
    width: 100%; 
    height: 400px; 
    object-fit: cover; 
    display: block;
}
.error-content h1 { 
    font-size: 56px; 
    margin-bottom: 20px; 
    color: var(--secondary); 
    font-weight: 800;
}
.error-content p { 
    font-size: 19px; 
    margin-bottom: 45px; 
    color: var(--text); 
    line-height: 1.6;
}
.error-actions { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
}

@media (max-width: 768px) {
    .error-404-page { padding: 80px 0; }
    .error-img img { height: 280px; }
    .error-content h1 { font-size: 36px; }
    .error-actions { flex-direction: column; }
    .error-actions .btn { width: 100%; }
}

/* ---- GDPR Cookie Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255,255,255,0.5);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    font-size: 32px;
    background: rgba(251, 163, 17, 0.1);
    color: var(--primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.cookie-text h4 {
    margin: 0 0 5px;
    color: var(--secondary);
    font-size: 18px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--primary);
    color: white;
    border: none;
}

.cookie-btn-accept:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--secondary);
    border: 1px solid #ddd;
}

.cookie-btn-settings:hover {
    background: #f9f9f9;
}

/* Textarea Resize Fix */
textarea { resize: vertical; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { padding: 100px 0; background: #fff; }
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 80px; 
    align-items: center;
}
.contact-info-col h2 { margin-bottom: 25px; }
.contact-methods { display: grid; gap: 30px; margin-top: 40px; }
.c-method { display: flex; align-items: flex-start; gap: 20px; }
.c-icon { 
    width: 54px; height: 54px; 
    background: var(--bg-light); 
    border-radius: 14px; 
    display: flex; align-items: center; justify-content: center; 
    color: var(--primary);
    flex-shrink: 0;
}
.c-icon svg { width: 26px; height: 26px; fill: currentColor; }
.c-text strong { display: block; font-size: 16px; color: var(--secondary); margin-bottom: 4px; }
.c-text a { color: var(--text); font-size: 15px; }
.c-text a:hover { color: var(--primary); }

.contact-form-col { 
    background: var(--white); 
    padding: 50px; 
    border-radius: 24px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.06); 
    border: 1px solid #f0f0f0;
}
.contact-form .form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label { 
    display: block; 
    font-size: 14px; 
    font-weight: 600; 
    color: var(--secondary); 
    margin-bottom: 8px; 
}
.contact-form input, 
.contact-form textarea { 
    width: 100%; 
    padding: 14px 18px; 
    border: 1px solid #e0e0e0; 
    border-radius: 10px; 
    font-family: inherit; 
    font-size: 15px; 
    transition: var(--transition);
    background: #fcfcfc;
}
.contact-form input:focus, 
.contact-form textarea:focus { 
    border-color: var(--primary); 
    background: #fff; 
    box-shadow: 0 0 0 4px rgba(251, 163, 17, 0.1); 
    outline: none;
}

/* HHF Direct Gateway Styles - Premium Floating Card Aesthetic */
.hhf-gateway-box { 
    background: #ffffff; 
    padding: 45px; 
    border-radius: 24px; 
    border: 1px solid #f1f5f9; 
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
}
.hhf-gateway-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #fba311; /* Brand Accent */
}
.gateway-label { 
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px; 
    font-weight: 900; 
    font-size: 15px; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    color: #002e5b; 
}
.gateway-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gateway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.gateway-input {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    cursor: text !important;
    font-weight: 500 !important;
}
.gateway-input:focus {
    background: #ffffff !important;
    border-color: #fba311 !important;
    box-shadow: 0 0 0 4px rgba(251, 163, 17, 0.1) !important;
}
.gateway-note { 
    font-size: 14px; 
    color: #64748b; 
    margin-top: 30px; 
    margin-bottom: 0; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    line-height: 1.6;
    padding: 15px 20px;
    background: #fff9f0;
    border-radius: 12px;
    border: 1px solid #feebc8;
}

/* Restyling other fields for better adaptation */
.custom-amount-wrap {
    margin-bottom: 20px;
}
.custom-amount-input {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border-color: #fba311;
    background: #fffdf9 !important;
}

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .contact-form-col { padding: 40px; }
}

@media (max-width: 768px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-section { padding: 80px 0; }
}

@media (max-width: 991px) {
    .container { padding: 0 30px; }
    .donate-home-grid { grid-template-columns: 1fr; gap: 40px; width: 100%; }
    .donate-home-content { text-align: center; width: 100%; max-width: 100%; overflow: hidden; }
    .impact-mini-grid { gap: 15px; width: 100%; }
    .footer-bottom { 
        grid-template-columns: 1fr; 
        gap: 30px; 
        text-align: center; 
        justify-items: center;
    }
    .footer-bottom-links { justify-content: center; }
    .footer-social { justify-content: center; }
    
    /* Disable AOS completely on mobile/tablet */
    [data-aos] { 
        opacity: 1 !important; 
        transform: none !important; 
        transition: none !important; 
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 30px;
        gap: 25px;
    }
    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .impact-mini-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .impact-mini-box {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 18px 24px;
        text-align: left;
        background: var(--white);
        border: 1px solid rgba(0,0,0,0.03);
        box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        width: 100%;
        box-sizing: border-box;
        border-radius: 16px;
    }
    .impact-mini-box strong {
        margin-bottom: 0;
        font-size: 24px;
        min-width: 70px;
        flex-shrink: 0;
        border-right: 1px solid #eee;
        padding-right: 15px;
    }
    .impact-mini-box span {
        font-size: 15px;
        font-weight: 500;
        color: var(--secondary);
    }
    .donate-home-section { padding: 60px 0; }
    .donate-home-content p { font-size: 16px; margin-bottom: 30px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .contact-form-col { padding: 30px 20px; }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section { padding: 120px 0; background: var(--bg-light); }
.video-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.8fr; 
    grid-template-areas: "side featured";
    gap: 50px; 
    align-items: start; 
}

.video-item.featured { grid-area: featured; }
.video-side-grid { grid-area: side; display: flex; flex-direction: column; gap: 20px; }

.video-item { 
    position: relative; 
    border-radius: 28px; 
    overflow: hidden; 
    background: var(--white); 
    box-shadow: 0 15px 45px rgba(0,0,0,0.04); 
    cursor: pointer; 
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.video-item:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.12); }

.video-thumbnail { position: relative; width: 100%; overflow: hidden; background: #000; }
.video-thumbnail::after { 
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6)); 
    opacity: 0.8; transition: var(--transition);
    z-index: 2;
}
.video-item:hover .video-thumbnail::after { opacity: 0.5; }

.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: all 0.8s ease; }
.video-item:hover .video-thumbnail img { transform: scale(1.1); }

.play-btn-overlay { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); 
    width: 90px; height: 90px; background: var(--primary); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    color: white; z-index: 5; box-shadow: 0 15px 30px rgba(251, 163, 17, 0.4); 
    transition: all 0.4s ease;
}
.video-item:hover .play-btn-overlay { transform: translate(-50%, -50%) scale(1.15); box-shadow: 0 20px 40px rgba(10, 54, 34, 0.3); }

.play-icon { 
    width: 0; height: 0; border-top: 16px solid transparent; 
    border-bottom: 16px solid transparent; border-left: 24px solid white; 
    margin-left: 8px; 
}

.video-info { padding: 40px; }
.video-info h3 { margin: 0 0 12px; font-size: 26px; color: var(--secondary); letter-spacing: -0.5px; }
.video-info h4 { margin: 0; font-size: 16px; color: var(--secondary); font-weight: 700; line-height: 1.4; }
.video-info p { margin: 0; font-size: 16px; color: #666; line-height: 1.7; }

.video-item.featured .video-thumbnail { height: 480px; }

.video-item.small { display: flex; align-items: center; gap: 0; padding: 0; height: 110px; border-radius: 20px; }
.video-item.small .video-thumbnail { width: 160px; height: 100%; flex-shrink: 0; border-radius: 0 20px 20px 0; order: 2; }
.video-item.small .video-info { padding: 15px 25px; flex: 1; display: flex; align-items: center; order: 1; text-align: right; justify-content: flex-end; }
.video-item.small .play-btn-overlay { width: 44px; height: 44px; box-shadow: none; }
.video-item.small .play-icon { border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 12px solid white; margin-left: 3px; }

/* Video Modal */
.video-dialog.video-dialog { max-width: 1200px; padding: 0; background: #000; overflow: hidden; border-radius: 30px; border: none; }
.video-player-wrap { width: 100%; position: relative; background: #000; line-height: 0; }
.video-player-wrap video { width: 100%; display: block; max-height: 85vh; outline: none; }
.video-caption { padding: 30px 50px; background: #0a0a0a; color: white; border-top: 1px solid #1a1a1a; }
.video-caption h3 { margin: 0; font-size: 24px; font-weight: 600; color: #fff; }
#videoModalClose { color: var(--primary); opacity: 0.8; top: 30px; right: 30px; z-index: 100; font-size: 40px; transition: var(--transition); }
#videoModalClose:hover { opacity: 1; transform: rotate(90deg); color: var(--white); }

@media (max-width: 1200px) {
    .video-grid { gap: 30px; grid-template-columns: 1.2fr 1.8fr; }
    .video-item.small .video-thumbnail { width: 140px; }
    .video-info { padding: 30px; }
}

@media (max-width: 991px) {
    .video-grid { grid-template-columns: 1fr; grid-template-areas: "featured" "side"; gap: 40px; }
    .video-item.featured { margin-bottom: 20px; }
    .video-item.featured .video-thumbnail { height: 400px; }
    .video-side-grid { flex-direction: row; flex-wrap: wrap; }
    .video-item.small { flex: 1; min-width: 320px; }
    .video-item.small .video-thumbnail { order: 1; border-radius: 20px 0 0 20px; }
    .video-item.small .video-info { order: 2; text-align: left; justify-content: flex-start; }
    .video-section { padding: 100px 0; }
}

@media (max-width: 768px) {
    .video-item.small { min-width: 100%; }
    .video-item.featured .video-thumbnail { height: 300px; }
    .video-info { padding: 25px; }
    .video-info h3 { font-size: 22px; }
}

/* Refactored Video Section */
.video-refactor-section {
    padding: 0 0 120px;
    background: var(--white);
    overflow: hidden;
}

.video-refactor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.video-content-col .subtitle {
    display: block;
    font-family: 'Handlee', cursive;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.video-content-col h2 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 800;
}

.video-content-col p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.feature-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-mini-item {
    display: flex;
    gap: 15px;
}

.feature-mini-icon {
    width: 60px;
    height: 60px;
    background: #fba31133;
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-mini-icon svg {
    width: 30px;
    height: 30px;
}

.feature-mini-text h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-mini-text p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.6;
}

.impact-progress-bars {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.impact-progress-item {
    width: 100%;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--secondary);
}

.progress-track {
    width: 100%;
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 6px;
    transition: width 1.5s ease;
}

.video-media-col {
    position: relative;
    padding-left: 40px;
}

.paint-splash {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    z-index: 1;
    pointer-events: none;
}

.paint-splash img {
    width: 100%;
    opacity: 0.9;
}

.video-preview-box {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    cursor: pointer;
    background: #ddd;
    aspect-ratio: 16 / 10;
}

.video-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-preview-box:hover img {
    transform: scale(1.05);
}

.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 10px solid #fba31155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.video-preview-box:hover .play-btn-large {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
    border-color: #fff3;
}

.play-icon-triangle {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid var(--primary);
    margin-left: 8px;
    transition: all 0.4s ease;
}

.video-preview-box:hover .play-icon-triangle {
    border-left-color: var(--white);
}

@media (max-width: 1100px) {
    .video-refactor-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .video-media-col {
        padding-left: 0;
    }
    .paint-splash {
        left: -50px;
        width: 200px;
    }
}

@media (max-width: 768px) {
    .video-content-col h2 {
        font-size: 36px;
    }
    .feature-mini-grid {
        grid-template-columns: 1fr;
    }
    .play-btn-large {
        width: 80px;
        height: 80px;
        border-width: 6px;
    }
}

/* News Pagination */
.news-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.news-pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #eee;
    color: var(--secondary);
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(251, 163, 17, 0.2);
}

.news-pagination .page-numbers.prev,
.news-pagination .page-numbers.next {
    font-size: 20px;
}

/* ---- Clean Dedication Section ---- */
.dedication-section {
    padding: 100px 0;
    background: #0a2540; /* Clean Dark Navy */
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.dedication-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/wp-content/uploads/2026/05/paint-splash-white.webp') no-repeat center;
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.dedication-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.dedication-image {
    position: relative;
    z-index: 2;
}

.dedication-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.dedication-content {
    position: relative;
}

.dedication-content .subtitle {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    font-family: 'Caveat', cursive;
}

.dedication-content h2 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.dedication-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.dedication-footer {
    margin-top: 40px;
}

.signature {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    color: var(--primary);
}

@media (max-width: 991px) {
    .dedication-section { padding: 60px 0; }
    .dedication-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .dedication-image img { max-height: 400px; width: 100%; margin: 0 auto; }
}

