/* ============================================
   LIFEGATE PROSTATE CARE FOUNDATION
   Professional NGO Website Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Primary Colors - Extracted from Logo */
    --primary: #003865;
    --primary-light: #0068a8;
    --primary-dark: #002040;
    --primary-50: rgba(0, 56, 101, 0.05);
    --primary-100: rgba(0, 56, 101, 0.1);

    /* Accent Colors - Extracted from Logo */
    --accent: #004840;
    --accent-light: #006858;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --section-padding: 100px 0;
    --container-max: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--gray-900) 0%, #001020 100%);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* --- Preloader --- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--white); display: flex; align-items: center; justify-content: center;
    z-index: 99999; transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.loader { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.loader-ring {
    width: 50px; height: 50px; border: 3px solid var(--gray-200);
    border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite;
}
.loader span { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Gradient Text --- */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-light {
    background: linear-gradient(135deg, #3399dd, #66bbee);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* --- Section Shared --- */
.section { padding: var(--section-padding); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block; padding: 6px 16px; background: var(--primary-50);
    color: var(--primary); font-size: 0.85rem; font-weight: 600; border-radius: 50px;
    margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase;
}
.section-tag--light { background: rgba(255,255,255,0.15); color: var(--white); }
.section-title {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
    color: var(--gray-900); line-height: 1.2; margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-desc { font-size: 1.1rem; color: var(--gray-600); line-height: 1.8; }
.section-desc--light { color: rgba(255,255,255,0.75); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
    border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: var(--transition);
    cursor: pointer; border: 2px solid transparent; white-space: nowrap;
}
.btn-primary {
    background: var(--gradient-primary); color: var(--white); border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 56, 101, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0, 56, 101, 0.4); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 16px 0; transition: var(--transition);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
#navbar .container { max-width: 100%; margin: 0; padding: 0 40px; }
#navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; z-index: 1001; }
.logo-icon {
    width: 44px; height: 44px; background: var(--gradient-primary); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem;
    overflow: hidden; flex-shrink: 0;
}
.logo-icon img {
    width: 100%; height: 100%; object-fit: cover;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--white); line-height: 1.1; transition: color 0.3s ease; }
.logo-tagline { font-size: 0.7rem; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s ease; }
#navbar.scrolled .logo-name { color: var(--gray-900); }
#navbar.scrolled .logo-tagline { color: var(--gray-500); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link { padding: 8px 16px; font-size: 0.9rem; font-weight: 500; color: var(--gray-700); border-radius: 50px; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-50); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; z-index: 1001; }
.hamburger { width: 24px; height: 2px; background: var(--gray-800); position: relative; transition: var(--transition); }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 24px; height: 2px; background: var(--gray-800); transition: var(--transition); }
.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { bottom: 0; transform: rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; background: var(--gray-900);
}
.hero-slideshow {
    position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    filter: brightness(0.35) saturate(0.8);
}
.hero-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 56, 101, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(16, 163, 127, 0.12) 0%, transparent 40%),
        linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: 2; }
.hero-slideshow-dots {
    position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 3;
}
.hero-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255,255,255,0.3); border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer; transition: var(--transition);
}
.hero-dot.active {
    background: var(--white); border-color: var(--white);
    transform: scale(1.2);
}
.hero-dot:hover { background: rgba(255,255,255,0.6); }
.hero-content { position: relative; z-index: 3; padding: 100px 0 0 0; max-width: 700px; text-align: left; margin: 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 50px;
    color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 500;
    margin-bottom: 32px; animation: fadeInUp 0.6s ease;
}
.hero-badge i { color: var(--primary-light); }
.hero-title {
    font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800; color: var(--white); line-height: 1.1;
    margin-bottom: 24px; animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-light), #3399dd, #66bbee);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
    font-size: 1.2rem; color: rgba(255,255,255,0.75); max-width: 550px;
    line-height: 1.8; margin-bottom: 40px; animation: fadeInUp 0.6s ease 0.2s both; text-align: left;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; animation: fadeInUp 0.6s ease 0.3s both; }
.hero-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.3); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero-stats {
    display: flex; align-items: center; gap: 40px; padding: 30px 40px;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--border-radius-lg);
    animation: fadeInUp 0.6s ease 0.4s both; max-width: fit-content;
}
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-suffix { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--primary-light); }
.stat-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.15); }
.hero-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; animation: bounce 2s infinite; }
.hero-scroll-indicator a { display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll-indicator i { font-size: 1rem; }

@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about { background: var(--white); }
.about-content-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; margin-bottom: 50px; }

/* About Images */
.about-image-col { position: relative; }
.about-main-image {
    position: relative; border-radius: var(--border-radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-main-image img { width: 100%; height: 350px; object-fit: cover; }
.about-main-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(12,110,92,0.7) 100%);
}
.about-image-overlay {
    position: absolute; bottom: 20px; left: 20px; z-index: 2;
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    padding: 12px 20px; border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255,255,255,0.2);
}
.about-overlay-stat { text-align: center; }
.overlay-number { display: block; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.overlay-label { font-size: 0.75rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.5px; }
.about-secondary-image {
    position: absolute; bottom: -30px; right: -20px; width: 180px; height: 140px;
    border-radius: var(--border-radius); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
.about-secondary-image img { width: 100%; height: 100%; object-fit: cover; }

/* About Cards */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-card {
    padding: 28px; background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--border-radius); transition: var(--transition); position: relative; overflow: hidden;
}
.about-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
    background: var(--gradient-primary); transition: var(--transition-slow);
}
.about-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.about-card:hover::before { height: 100%; }
.about-card-main { background: var(--gradient-primary); border-color: transparent; color: var(--white); }
.about-card-main h3, .about-card-main p { color: var(--white); }
.about-card-main .about-card-icon { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15); }
.about-card-icon {
    width: 50px; height: 50px; background: var(--primary-50); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--primary); margin-bottom: 16px; transition: var(--transition);
}
.about-card:hover .about-card-icon { transform: scale(1.1); }
.about-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.about-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }

/* Leadership */
.about-leadership { display: flex; justify-content: center; }
.leadership-card {
    display: flex; align-items: center; gap: 20px; padding: 20px 32px;
    background: var(--gray-50); border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200); max-width: 600px; width: 100%;
}
.leadership-avatar-img {
    width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
    flex-shrink: 0; border: 3px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 56, 101, 0.2);
}
.leadership-avatar-img img { width: 100%; height: 100%; object-fit: cover; }
.leadership-info h4 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.leadership-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; }
.leadership-bio { font-size: 0.85rem; color: var(--gray-600); margin-top: 6px; line-height: 1.5; }

/* ============================================
   CAMPAIGN SPEECH SECTION
   ============================================ */
.campaign {
    background: var(--gray-900); position: relative; overflow: hidden;
}
.campaign-bg-image {
    position: absolute; inset: 0; z-index: 0;
}
.campaign-bg-image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.15) saturate(0.5);
}
.campaign-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(33,37,41,0.85) 0%, rgba(33,37,41,0.95) 100%);
}
.campaign-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; position: relative; z-index: 2; }
.campaign-illustration { position: sticky; top: 120px; }
.campaign-image-stack { position: relative; }
.campaign-img-main {
    border-radius: var(--border-radius-lg); overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.campaign-img-main img { width: 100%; height: 320px; object-fit: cover; }
.campaign-img-accent {
    position: absolute; bottom: -25px; right: -20px; width: 160px; height: 120px;
    border-radius: var(--border-radius); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 3px solid rgba(255,255,255,0.1);
}
.campaign-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.campaign-floating-badge {
    position: absolute; top: -15px; left: -15px;
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px; background: var(--gradient-primary);
    border-radius: 50px; color: var(--white); font-size: 0.8rem; font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 56, 101, 0.4);
}
.campaign-floating-badge i { font-size: 1rem; }

.speech-container {
    background: var(--white); border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl); overflow: hidden;
}
.speech-meta {
    display: flex; flex-wrap: wrap; gap: 20px; padding: 20px 28px;
    background: var(--gradient-primary); color: var(--white);
}
.speech-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; }
.speech-body { padding: 36px 28px; }
.speech-body p { margin-bottom: 18px; font-size: 1rem; line-height: 1.9; color: var(--gray-700); }
.speech-subtitle {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
    color: var(--gray-900); margin: 28px 0 14px; padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-100);
}
.speech-quote {
    display: flex; gap: 14px; padding: 20px; margin: 20px 0;
    background: var(--primary-50); border-left: 4px solid var(--primary);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}
.speech-quote--secondary { background: linear-gradient(135deg, rgba(0,72,64,0.05), rgba(0,104,88,0.05)); border-left-color: var(--accent); }
.speech-quote i { color: var(--primary); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.speech-quote--secondary i { color: var(--accent); }
.speech-quote p { margin-bottom: 0; font-size: 1rem; font-weight: 500; color: var(--gray-800); font-style: italic; }
.speech-highlight {
    display: flex; gap: 18px; padding: 20px; margin: 20px 0;
    background: linear-gradient(135deg, rgba(12,110,92,0.03), rgba(16,163,127,0.06));
    border: 1px solid rgba(0,56,101,0.1); border-radius: var(--border-radius);
}
.highlight-icon {
    width: 44px; height: 44px; background: var(--gradient-primary); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.highlight-content h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.highlight-content p { margin-bottom: 0; font-size: 0.92rem; }
.speech-footer { padding: 20px 28px; border-top: 1px solid var(--gray-200); }
.speech-thankyou { display: flex; align-items: center; gap: 12px; font-size: 1.2rem; font-weight: 700; color: var(--primary); }

/* ============================================
   WARNING SIGNS SECTION
   ============================================ */
.warning-signs { background: var(--white); }
.warnings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.warning-card {
    padding: 32px; background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--border-radius); transition: var(--transition);
    position: relative; overflow: hidden;
}
.warning-card-bg {
    position: absolute; inset: 0; z-index: 0; opacity: 0;
    transition: opacity 0.5s ease;
}
.warning-card-bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(2px); }
.warning-card:hover .warning-card-bg { opacity: 0.08; }
.warning-card:hover { border-color: var(--primary-100); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.warning-card > *:not(.warning-card-bg) { position: relative; z-index: 1; }
.warning-card-number {
    position: absolute; top: 16px; right: 16px; font-family: var(--font-heading);
    font-size: 2.5rem; font-weight: 800; color: var(--gray-100); line-height: 1; transition: var(--transition); z-index: 1;
}
.warning-card:hover .warning-card-number { color: var(--primary-100); }
.warning-card-icon {
    width: 56px; height: 56px; background: var(--primary-50); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary); margin-bottom: 20px; transition: var(--transition);
}
.warning-icon-danger { background: rgba(0,72,64,0.08); color: var(--accent); }
.warning-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.warning-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }
.warning-card-cta { background: var(--gradient-primary); border-color: transparent; color: var(--white); text-align: center; }
.warning-card-cta h3, .warning-card-cta p { color: var(--white); }
.warning-card-cta .warning-card-icon { background: rgba(255,255,255,0.15); color: var(--white); margin: 0 auto 20px; }

/* ============================================
   SCREENING SECTION
   ============================================ */
.screening { background: var(--gray-50); }
.screening-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.screening-content .section-tag { display: inline-block; margin-bottom: 16px; }
.screening-content .section-title { text-align: left; margin-bottom: 20px; }
.screening-content > p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; }
.screening-message {
    display: flex; gap: 14px; padding: 18px 22px; background: var(--white);
    border: 1px solid var(--gray-200); border-radius: var(--border-radius); margin-bottom: 28px;
}
.screening-message-icon {
    width: 40px; height: 40px; background: rgba(0,72,64,0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0;
}
.screening-message blockquote { font-size: 0.92rem; font-style: italic; color: var(--gray-700); line-height: 1.7; font-weight: 500; }
.screening-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.screening-detail { display: flex; gap: 14px; align-items: flex-start; }
.screening-detail-icon {
    width: 40px; height: 40px; background: var(--primary-50); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0;
}
.screening-detail h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.screening-detail p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* Screening Visual */
.screening-visual { display: flex; flex-direction: column; gap: 20px; }
.screening-image-wrapper {
    position: relative; border-radius: var(--border-radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.screening-photo { width: 100%; height: 260px; object-fit: cover; }
.screening-image-badge {
    position: absolute; bottom: 16px; left: 16px;
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px; background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px); border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.screening-image-badge i { color: var(--accent); }

.screening-age-card {
    background: var(--gradient-primary); border-radius: var(--border-radius);
    padding: 32px; text-align: center; color: var(--white);
    position: relative; overflow: hidden;
}
.screening-age-card::before {
    content: ''; position: absolute; top: -30%; right: -20%;
    width: 180px; height: 180px; background: rgba(255,255,255,0.08); border-radius: 50%;
}
.screening-age-card::after {
    content: ''; position: absolute; bottom: -20%; left: -10%;
    width: 130px; height: 130px; background: rgba(255,255,255,0.05); border-radius: 50%;
}
.age-range { position: relative; z-index: 1; }
.age-label { display: block; font-size: 0.85rem; opacity: 0.8; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.age-number { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; line-height: 1; }
.age-unit { display: block; font-size: 1rem; opacity: 0.8; margin-top: 4px; }
.age-note {
    display: flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.2); font-size: 0.82rem; opacity: 0.9;
    position: relative; z-index: 1;
}

.screening-checklist {
    background: var(--white); border-radius: var(--border-radius);
    padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.screening-checklist h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 14px; }
.check-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); }
.check-item:last-child { border-bottom: none; }
.check-item i { color: var(--primary); font-size: 0.95rem; }
.check-item span { font-size: 0.88rem; color: var(--gray-700); }

/* ============================================
   LIFESTYLE SECTION
   ============================================ */
.lifestyle { background: var(--white); }

/* Lifestyle Hero Banner */
.lifestyle-hero-banner {
    position: relative; border-radius: var(--border-radius-lg);
    overflow: hidden; margin-bottom: 50px; box-shadow: var(--shadow-lg);
}
.lifestyle-hero-img { width: 100%; height: 280px; object-fit: cover; }
.lifestyle-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(12,110,92,0.8) 0%, rgba(16,163,127,0.6) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 20px;
}
.lifestyle-hero-overlay h3 {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
    color: var(--white); margin-bottom: 8px;
}
.lifestyle-hero-overlay p { font-size: 1.05rem; color: rgba(255,255,255,0.85); }

/* Lifestyle Cards with Images */
.lifestyle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.lifestyle-card {
    background: var(--white); border-radius: var(--border-radius);
    border: 1px solid var(--gray-200); overflow: hidden; transition: var(--transition);
}
.lifestyle-card:hover { border-color: var(--primary-100); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.lifestyle-card-img {
    position: relative; height: 180px; overflow: hidden;
}
.lifestyle-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.lifestyle-card:hover .lifestyle-card-img img { transform: scale(1.08); }
.lifestyle-card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
}
.lifestyle-card-body { padding: 24px; }
.lifestyle-card-icon {
    width: 50px; height: 50px; background: var(--primary-50); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--primary); margin-bottom: 14px; transition: var(--transition);
    margin-top: -40px; position: relative; z-index: 1;
    border: 3px solid var(--white); box-shadow: var(--shadow-sm);
}
.lifestyle-card:hover .lifestyle-card-icon { background: var(--gradient-primary); color: var(--white); transform: scale(1.1); }
.lifestyle-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.lifestyle-card-body p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { padding: 80px 0; position: relative; overflow: hidden; }
.cta-bg-image { position: absolute; inset: 0; z-index: 0; }
.cta-bg-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.2); }
.cta-bg-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(33,37,41,0.9) 0%, rgba(12,110,92,0.7) 100%); }
.cta-card {
    display: flex; align-items: center; gap: 50px; background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--border-radius-lg); padding: 50px; position: relative; z-index: 2;
}
.cta-content { flex: 1; }
.cta-content h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-actions .btn-primary { background: var(--white); color: var(--primary-dark); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.cta-actions .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(0,0,0,0.3); }
.cta-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.3); }
.cta-actions .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: var(--white); }
.cta-image-area {
    flex: 0 0 300px; border-radius: var(--border-radius); overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.cta-image-area img { width: 100%; height: 250px; object-fit: cover; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
    display: flex; gap: 14px; align-items: flex-start; padding: 18px;
    background: var(--white); border-radius: var(--border-radius);
    border: 1px solid var(--gray-200); transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--primary-100); box-shadow: var(--shadow-sm); }
.contact-icon {
    width: 40px; height: 40px; background: var(--primary-50); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.contact-info-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* Contact Map */
.contact-map-area {
    position: relative; border-radius: var(--border-radius); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.contact-map-img { width: 100%; height: 140px; object-fit: cover; filter: saturate(0.7) brightness(0.9); }
.contact-map-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; align-items: center; gap: 8px; padding: 10px 16px;
    background: linear-gradient(180deg, transparent, rgba(12,110,92,0.9));
    color: var(--white); font-size: 0.82rem; font-weight: 600;
}
.contact-map-overlay i { color: var(--accent); font-size: 1rem; }

.contact-socials { padding: 16px 0 0; }
.contact-socials h4 { font-size: 0.9rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 40px; height: 40px; background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--gray-600); transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }

/* Contact Form */
.contact-form-wrapper {
    background: var(--white); border-radius: var(--border-radius-lg);
    padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.contact-form h3 { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 11px 14px; border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm); font-size: 0.92rem; color: var(--gray-800);
    background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-100);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--gray-900); padding: 60px 0 0; color: var(--gray-400); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-tagline { color: var(--gray-500); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 36px; height: 36px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-500); transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-links h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.88rem; color: var(--gray-400); transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-newsletter h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer-newsletter p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
.newsletter-input-group { display: flex; gap: 8px; }
.newsletter-input-group input {
    flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--border-radius-sm);
    color: var(--white); font-size: 0.88rem; outline: none; transition: var(--transition);
}
.newsletter-input-group input::placeholder { color: var(--gray-500); }
.newsletter-input-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,56,101,0.2); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 0; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray-500); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px;
    background: var(--gradient-primary); color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,56,101,0.3); z-index: 999;
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(12,110,92,0.4); }

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root { --section-padding: 80px 0; }
    .hero-title { font-size: clamp(2.5rem, 5vw, 4rem); }
    .about-content-row { grid-template-columns: 1fr; }
    .about-secondary-image { display: none; }
    .campaign-layout { grid-template-columns: 1fr; }
    .campaign-illustration { position: static; }
    .screening-grid { grid-template-columns: 1fr; }
    .screening-content .section-title { text-align: center; }
    .cta-card { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .cta-image-area { flex: none; width: 100%; }
    .cta-image-area img { height: 200px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px 0; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--white); flex-direction: column; padding: 100px 28px 28px;
        gap: 4px; box-shadow: var(--shadow-xl); transition: right 0.3s ease;
    }
    .nav-links.active { right: 0; }
    .nav-link { width: 100%; padding: 12px 16px; border-radius: var(--border-radius-sm); }
    .nav-toggle { display: flex; }
    .section-title { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
    .stat-divider { width: 50px; height: 1px; }
    .stat-number, .stat-suffix { font-size: 2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-main-image img { height: 250px; }
    .speech-meta { gap: 10px; }
    .campaign-img-main img { height: 220px; }
    .campaign-img-accent { display: none; }
    .lifestyle-grid { grid-template-columns: 1fr; }
    .warnings-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-card { padding: 30px 20px; }
    .cta-content h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .gallery-thumbnails { grid-template-columns: repeat(5, 1fr); gap: 4px; }
    .gallery-slides-wrapper { height: 350px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .speech-body { padding: 20px 16px; }
    .speech-meta { padding: 14px 16px; flex-direction: column; gap: 8px; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
    .lifestyle-hero-img { height: 200px; }
    .lifestyle-hero-overlay h3 { font-size: 1.5rem; }
    .leadership-card { flex-direction: column; text-align: center; }
    .contact-map-area { display: none; }
    .gallery-thumbnails { grid-template-columns: repeat(5, 1fr); gap: 4px; }
    .gallery-slide img { height: 250px; }
    .gallery-slides-wrapper { height: 300px; }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section { background: var(--white); position: relative; overflow: hidden; }
.video-wrapper { max-width: 1000px; margin: 0 auto; }
.video-container {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    border-radius: var(--border-radius-lg); box-shadow: var(--shadow-xl);
    background: var(--gray-900); margin-bottom: 30px;
}
.video-container iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: var(--border-radius-lg);
}
.video-info { text-align: center; padding: 0 20px; }
.video-info h3 {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
    color: var(--gray-900); margin-bottom: 10px;
}
.video-info p { font-size: 1rem; color: var(--gray-600); margin-bottom: 20px; line-height: 1.7; }
.video-share {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    flex-wrap: wrap;
}
.video-share-label { font-size: 0.9rem; font-weight: 600; color: var(--gray-700); }
.video-share-buttons { display: flex; gap: 10px; }
.video-share-btn {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1rem; transition: var(--transition);
    text-decoration: none;
}
.video-share-btn:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.video-share-btn.whatsapp { background: #25d366; }
.video-share-btn.facebook { background: #1877f2; }
.video-share-btn.twitter { background: #1da1f2; }
@media (max-width: 768px) {
    .video-container { border-radius: var(--border-radius); }
    .video-info h3 { font-size: 1.1rem; }
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery-section { background: var(--gray-50); }

/* Main Slideshow - Shifted Left */
.gallery-slideshow {
    position: relative; border-radius: 0;
    overflow: hidden; box-shadow: var(--shadow-xl); margin-bottom: 24px;
    background: var(--gray-900);
    width: 100vw; margin-left: calc(-50vw + 50%);
}
.gallery-slides-wrapper { position: relative; height: 500px; }
.gallery-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.gallery-slide.active { opacity: 1; }
.gallery-slide img {
    width: 100%; height: 100%; object-fit: cover;
}
.gallery-slide-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 30px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
}
.gallery-slide-caption span {
    color: var(--white); font-size: 1rem; font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.gallery-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
    border: none; color: var(--gray-800); font-size: 1.1rem;
    cursor: pointer; z-index: 5; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.gallery-arrow:hover {
    background: var(--white); transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.gallery-prev { left: 24px; }
.gallery-next { right: 24px; }
.gallery-counter {
    position: absolute; top: 16px; right: 16px;
    padding: 6px 14px; background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px); border-radius: 50px;
    color: var(--white); font-size: 0.8rem; font-weight: 600; z-index: 5;
}

/* Thumbnails - Full width matching hero */
.gallery-thumbnails {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 6px; margin-bottom: 20px;
    width: 100vw; margin-left: calc(-50vw + 50%);
    padding: 0;
}
.gallery-thumb {
    border-radius: 0; overflow: hidden;
    cursor: pointer; border: 3px solid transparent;
    transition: var(--transition); aspect-ratio: 16/10;
}
.gallery-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.75);
}
.gallery-thumb:hover { border-color: var(--primary-light); }
.gallery-thumb:hover img { transform: scale(1.08); filter: brightness(1); }
.gallery-thumb.active { border-color: var(--primary); box-shadow: 0 0 20px rgba(12,110,92,0.4); }
.gallery-thumb.active img { filter: brightness(1); }

/* Gallery Controls */
.gallery-controls { text-align: center; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.95); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: none;
    color: var(--white); font-size: 1.2rem; cursor: pointer;
    transition: var(--transition); z-index: 10;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lightbox-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
    color: var(--white); font-size: 1.2rem; cursor: pointer;
    transition: var(--transition); z-index: 10;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-content {
    max-width: 85vw; max-height: 85vh; text-align: center;
}
.lightbox-content img {
    max-width: 100%; max-height: 80vh; object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
    margin-top: 16px; color: rgba(255,255,255,0.8);
    font-size: 1rem; font-weight: 500;
}
.lightbox-counter {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    padding: 6px 16px; background: rgba(255,255,255,0.1);
    border-radius: 50px; color: rgba(255,255,255,0.7);
    font-size: 0.85rem; font-weight: 500;
}

/* ============================================
   DONATION SECTION
   ============================================ */
.donation-section {
    background: var(--white); position: relative; overflow: hidden;
}
.donation-bg-pattern {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(0,56,101,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(0,72,64,0.03) 0%, transparent 50%);
}
.donation-section .container { position: relative; z-index: 1; }
.donation-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }

/* Impact Cards */
.donation-impact h3, .donation-methods h3 {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
    color: var(--gray-900); margin-bottom: 20px;
}
.impact-cards { display: flex; flex-direction: column; gap: 14px; }
.impact-card {
    display: flex; align-items: center; gap: 16px; padding: 18px;
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--border-radius); transition: var(--transition);
}
.impact-card:hover { border-color: var(--primary-100); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.impact-icon {
    width: 48px; height: 48px; background: var(--primary-50); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem; flex-shrink: 0;
}
.impact-amount {
    display: block; font-family: var(--font-heading); font-size: 1.1rem;
    font-weight: 700; color: var(--primary); margin-bottom: 2px;
}
.impact-info p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.4; margin: 0; }

/* Donation Methods */
.donation-methods { display: flex; flex-direction: column; gap: 12px; }
.donation-method {
    border: 1px solid var(--gray-200); border-radius: var(--border-radius);
    overflow: hidden; transition: var(--transition);
}
.donation-method:hover { border-color: var(--primary-100); }
.donation-method.active { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.donation-method-header {
    display: flex; align-items: center; gap: 14px; padding: 18px 20px;
    cursor: pointer; transition: var(--transition); background: var(--white);
}
.donation-method-header:hover { background: var(--gray-50); }
.donation-method-icon {
    width: 44px; height: 44px; background: var(--primary-50); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem; flex-shrink: 0;
}
.whatsapp-icon { background: rgba(37,211,102,0.1); color: #25d366; }
.donation-method-title { flex: 1; }
.donation-method-title h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.donation-method-title p { font-size: 0.82rem; color: var(--gray-500); margin: 0; }
.donation-toggle-icon { color: var(--gray-400); transition: transform 0.3s ease; font-size: 0.85rem; }
.donation-method.active .donation-toggle-icon { transform: rotate(180deg); }
.donation-method-body {
    display: none; padding: 0 20px 20px; border-top: 1px solid var(--gray-100);
}
.donation-method.active .donation-method-body { display: block; padding-top: 20px; }

/* Bank Details */
.bank-details-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    background: var(--gray-50); border-radius: var(--border-radius);
    padding: 20px; margin-bottom: 14px; border: 1px solid var(--gray-200);
}
.bank-details-image { border-radius: var(--border-radius-sm); overflow: hidden; }
.bank-details-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--border-radius-sm); }
.bank-details-text { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.bank-info-row { display: flex; flex-direction: column; gap: 2px; }
.bank-label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.bank-value { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.bank-number { font-family: 'Courier New', monospace; font-size: 1.15rem; letter-spacing: 1px; color: var(--primary); display: inline; }
.copy-btn {
    display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px;
    background: var(--primary-50); border: 1px solid var(--primary-100);
    border-radius: 6px; color: var(--primary); font-size: 0.8rem;
    cursor: pointer; transition: var(--transition); margin-top: 4px; width: fit-content;
}
.copy-btn:hover { background: var(--primary); color: var(--white); }
.donation-note {
    display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem;
    color: var(--gray-600); background: rgba(0,56,101,0.03);
    padding: 12px 16px; border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--primary);
}
.donation-note i { color: var(--primary); margin-top: 2px; }

/* Online Donation Form */
.online-donation-form { display: flex; flex-direction: column; gap: 20px; }
.donation-amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.amount-btn {
    padding: 14px 12px; background: var(--white); border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-sm); font-size: 0.9rem; font-weight: 700;
    color: var(--gray-700); cursor: pointer; transition: var(--transition);
    text-align: center;
}
.amount-btn:hover { border-color: var(--primary-light); color: var(--primary); }
.amount-btn.active {
    background: var(--primary); border-color: var(--primary);
    color: var(--white); box-shadow: 0 4px 12px rgba(0,56,101,0.2);
}
.amount-btn.custom-amount { font-size: 0.85rem; }
.custom-amount-input label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 5px; }
.custom-amount-input input {
    width: 100%; padding: 12px 16px; border: 2px solid var(--primary);
    border-radius: var(--border-radius-sm); font-size: 1.1rem; font-weight: 700;
    color: var(--primary); outline: none; transition: var(--transition);
}
.custom-amount-input input:focus { box-shadow: 0 0 0 3px var(--primary-100); }
.donor-info { display: flex; flex-direction: column; gap: 0; }
.secure-payment-note {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 0.8rem; color: var(--gray-500); text-align: center;
}
.secure-payment-note i { color: var(--primary); }

/* WhatsApp Donation */
.whatsapp-donate { text-align: center; }
.whatsapp-donate p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }
.whatsapp-btn { background: #25d366; border-color: #25d366; }
.whatsapp-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(37,211,102,0.3); }

/* Donation Responsive */
@media (max-width: 1024px) {
    .donation-grid { grid-template-columns: 1fr; }
    .bank-details-card { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .donation-amount-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .donation-amount-grid { grid-template-columns: 1fr 1fr; }
    .amount-btn { padding: 12px 8px; font-size: 0.85rem; }
}