/* ==========================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================== */
:root {
    --bg-dark: #0b1329;
    --bg-slate: #1c2541;
    --bg-card: rgba(28, 37, 65, 0.7);
    --bg-light: #f8fafc;
    
    --color-primary: #06b6d4;      /* Vibrant Cyan */
    --color-primary-dark: #0891b2;
    --color-secondary: #14b8a6;    /* Teal */
    --color-secondary-dark: #0f766e;
    --color-accent: #f97316;       /* Warm Amber/Orange */
    --color-accent-hover: #ea580c;
    
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --text-dark-muted: #64748b;
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-light: #e2e8f0;
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-premium: 0 10px 30px -10px rgba(6, 182, 212, 0.2);
    --shadow-card: 0 20px 40px -15px rgba(11, 19, 41, 0.5);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select {
    font-family: inherit;
}

/* ==========================================
   GLASSMORPHIC NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 19, 41, 0.7);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.logo-text span {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 30px;
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ea580c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ==========================================
   HERO & DONATION LAYOUT
   ========================================== */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
}

/* Ambient glow bubbles */
.ambient-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    top: 10%;
    left: -100px;
    background: var(--color-primary);
}

.glow-2 {
    bottom: 10%;
    right: -100px;
    background: var(--color-secondary);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Emergency appeal badge */
.emergency-badge {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: badgePulse 1.8s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* News Alert Badge in Hero */
.news-alert-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.88rem;
    color: #f87171;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.alert-icon {
    color: #ef4444;
    animation: alertIconBlink 1.2s infinite;
}

@keyframes alertIconBlink {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.alert-text {
    font-weight: 600;
}

.alert-link {
    color: var(--color-primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 12px;
    transition: var(--transition-smooth);
}

.alert-link:hover {
    color: var(--text-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 580px;
}

/* Metrics Section */
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 18px 24px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(6, 182, 212, 0.25);
    transform: translateY(-2px);
}

.metric-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
}

.metric-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Animated SVG illustration styling */
.hero-visual {
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-glass);
}

.svg-artwork {
    width: 100%;
    height: auto;
    display: block;
}

.wave-anim-1 {
    animation: waves 8s ease-in-out infinite alternate;
}

.wave-anim-2 {
    animation: waves 10s ease-in-out infinite alternate-reverse;
}

.boat-anim {
    animation: bobbing 4s ease-in-out infinite alternate;
    transform-origin: 220px 150px;
}

.sun-glow {
    animation: sunPulse 6s ease-in-out infinite alternate;
}

/* Animations definitions */
@keyframes waves {
    0% { transform: translateY(0) scaleY(1); }
    100% { transform: translateY(4px) scaleY(1.05) translateX(-10px); }
}

@keyframes bobbing {
    0% { transform: translate(180px, 140px) rotate(-1deg); }
    50% { transform: translate(175px, 143px) rotate(1deg); }
    100% { transform: translate(182px, 138px) rotate(-1deg); }
}

@keyframes sunPulse {
    0% { r: 25px; opacity: 0.15; }
    100% { r: 35px; opacity: 0.25; }
}

/* ==========================================
   UPI DONATION WIDGET
   ========================================== */
.donation-container {
    position: sticky;
    top: 100px;
    z-index: 5;
}

.donation-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.donation-header {
    text-align: center;
    margin-bottom: 24px;
}

.donation-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.donation-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.donation-step {
    margin-bottom: 24px;
}

.step-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.amount-presets {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.amount-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 4px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.amount-btn:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.4);
}

.amount-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

/* Custom amount field */
.custom-input-container {
    display: flex;
    align-items: center;
    background: rgba(11, 19, 41, 0.5);
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    margin-top: 12px;
    padding: 10px 16px;
    transition: var(--transition-smooth);
}

.custom-input-container.hidden {
    display: none;
}

.rupee-symbol {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-right: 8px;
}

#custom-amount-field {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
}

/* QR Code step */
.qr-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-wrapper {
    position: relative;
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 192px;
    height: 192px;
}

.qrcode-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
}

.qrcode-box img {
    display: block;
    width: 100%;
    height: auto;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dark-muted);
    font-size: 0.8rem;
}

.qr-logo-overlay {
    position: absolute;
    background: #0f172a;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid white;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.amount-display-label {
    margin-top: 14px;
    font-size: 1.1rem;
    font-weight: 700;
}

.amount-display-label span {
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 800;
}

/* Mobile Pay Button */
.pay-btn-mobile {
    margin-top: 14px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 1rem;
}

.mobile-only-tip {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-align: center;
}

/* UPI Copy Area */
.upi-id-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 19, 41, 0.4);
    border: 1px solid var(--border-glass);
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.upi-details {
    display: flex;
    flex-direction: column;
}

.upi-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.upi-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
}

.copy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 4px;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
}

.copy-btn.copied {
    background: rgba(20, 184, 166, 0.2);
    border-color: var(--color-secondary);
    color: #2dd4bf;
}

/* Payment badges bottom */
.payment-badges {
    border-top: 1px solid var(--border-glass);
    padding-top: 18px;
    text-align: center;
}

.badge-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.badge-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.app-badge {
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255,255,255,0.03);
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.app-badge i {
    font-size: 0.85rem;
}

/* ==========================================
   IMPACT CARDS SECTION
   ========================================== */
.impact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px auto;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.impact-section .section-header h2 {
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-dark-muted);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.impact-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--color-primary);
}

.impact-card.active-card {
    border: 2px solid var(--color-primary);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.12);
}

.impact-icon {
    width: 50px;
    height: 50px;
    background: rgba(6, 182, 212, 0.08);
    color: var(--color-primary-dark);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.impact-card:hover .impact-icon {
    background: var(--color-primary);
    color: white;
}

.impact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.impact-cost {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.impact-card p {
    font-size: 0.9rem;
    color: var(--text-dark-muted);
    flex-grow: 1;
    margin-bottom: 24px;
}

.card-select-btn {
    display: block;
    text-align: center;
    background: #f1f5f9;
    color: var(--text-dark-muted);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.impact-card:hover .card-select-btn {
    background: rgba(6, 182, 212, 0.1);
    color: var(--color-primary-dark);
}

.impact-card.active-card .card-select-btn {
    background: var(--color-primary);
    color: white;
}

/* ==========================================
   TRANSPARENCY & LIVE DONORS
   ========================================== */
.transparency-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-glass);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1527 100%);
}

.transparency-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
}

.transparency-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.transparency-left p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Progress bar UI */
.progress-bar-container {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.progress-percentage {
    color: var(--color-primary);
}

.progress-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 14px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.progress-stats strong {
    color: var(--text-light);
}

/* Dummy Allocation chart */
.allocation-chart-dummy {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    padding: 24px;
    border-radius: 16px;
}

.chart-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: var(--text-light);
}

.bar-chart-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.bar-chart-row:last-child {
    margin-bottom: 0;
}

.bar-lbl {
    width: 110px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.bar-fill-wrapper {
    flex-grow: 1;
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 100px;
}

.fill-food { background-color: #06b6d4; }
.fill-shelter { background-color: #14b8a6; }
.fill-medical { background-color: #a855f7; }
.fill-logistics { background-color: #f97316; }

.bar-val {
    width: 40px;
    text-align: right;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Coordinator info panel */
.coordinator-card-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coord-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 18px;
    margin-bottom: 24px;
}

.coord-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(20, 184, 166, 0.12);
    color: #2dd4bf;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
}

.coord-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.coord-avatar-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    font-weight: 800;
    font-size: 2.2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-premium);
}

.coord-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.coord-details h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
}

.coord-role {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coord-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    padding: 10px 20px;
    border-radius: 12px;
    margin-top: 6px;
}

.coord-icon-box {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.coord-phone-link {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.coord-phone-link:hover {
    color: var(--color-accent);
}

.coord-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 10px;
    max-width: 320px;
}

/* ==========================================
   OFFICIAL HELPLINES SECTION
   ========================================== */
.helpline-section {
    padding: 100px 0;
    background-color: var(--bg-slate);
    border-top: 1px solid var(--border-glass);
}

.helpline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.helpline-card {
    background: rgba(11, 19, 41, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 36px;
}

.main-helpline {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.main-helpline .card-icon {
    font-size: 2.2rem;
    color: var(--color-accent);
}

.main-helpline h3 {
    font-size: 1.4rem;
    font-weight: 800;
}

.contact-numbers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tel-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    background: rgba(255,255,255,0.03);
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.tel-number:hover {
    background: rgba(6, 182, 212, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.tel-number.toll-free {
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.tel-number.toll-free:hover {
    background: rgba(239, 68, 68, 0.06);
    border-color: #ef4444;
    color: #f87171;
}

.main-helpline .note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* District search interface */
.district-search-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.district-search-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.district-select-wrapper {
    position: relative;
    width: 100%;
}

.district-dropdown {
    width: 100%;
    background: rgba(11, 19, 41, 0.8);
    border: 1px solid var(--border-glass);
    color: white;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.district-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.district-dropdown:focus {
    border-color: var(--color-primary);
}

.district-result-box {
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    padding: 20px;
    animation: fadeIn 0.4s ease-out;
}

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

.district-result-box.hidden {
    display: none;
}

.district-result-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.district-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dist-num-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.dist-num-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
}

.dist-num-btn span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==========================================
   FAQ ACCORDION SECTION
   ========================================== */
.faq-section {
    padding: 100px 0;
}

.faq-accordion {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 20px 24px;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-primary);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: rgba(6, 182, 212, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #060c1c;
    border-top: 1px solid var(--border-glass);
    padding: 40px 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.verification-note {
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.2);
    color: #2dd4bf;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto;
    }
    
    .metrics-grid {
        width: 100%;
        max-width: 580px;
    }
    
    .hero-visual {
        width: 100%;
        max-width: 580px;
        margin-top: 10px;
    }

    .donation-container {
        position: static;
        max-width: 580px;
        margin: 0 auto;
        width: 100%;
    }
    
    .transparency-grid {
        grid-template-columns: 1fr;
    }
    
    .donor-feed-container {
        height: 380px;
    }
}

@keyframes payButtonPulse {
    0% {
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(249, 115, 22, 0.85);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: inline-flex;
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    
    .helpline-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-row {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .amount-presets {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .amount-btn {
        grid-column: span 1;
    }
    
    .amount-btn[data-value="custom"] {
        grid-column: span 2;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-card {
        padding: 20px 16px;
    }
    
    .pay-btn-mobile {
        animation: payButtonPulse 2s infinite ease-in-out;
    }
    
    .impact-section, .transparency-section, .helpline-section, .faq-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 36px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================
   DONATION VERIFICATION MODAL & PROMPTS
   ========================================== */
.verify-payment-prompt {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

.verify-payment-prompt p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.btn-secondary-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary-outline:hover {
    background: rgba(6, 182, 212, 0.08);
    color: var(--text-light);
    border-color: var(--text-light);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 19, 41, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

/* Modal Card */
.modal-card {
    background: #1c2541;
    border: 1px solid var(--border-glass);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-card);
    animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: white;
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Modal Form styling */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
}

.form-group input {
    background: rgba(11, 19, 41, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.2);
}

.submit-verify-btn {
    margin-top: 10px;
    padding: 14px;
    font-size: 0.95rem;
    border-radius: 8px;
}

/* Success State Box */
.success-box {
    text-align: center;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: fadeIn 0.4s ease-out;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--color-secondary);
}

.success-box h4 {
    font-size: 1.4rem;
    font-weight: 800;
}

.success-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
}

@media (max-width: 480px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .modal-card {
        padding: 28px 20px;
    }
}

