:root {
    --primary-navy: #0D2B4D;
    --primary-red: #E30613;
    --bg-light: #F2F4F7;
    --text-gray: #6B7280;
    --white: #FFFFFF;
    --border-color: #E5E7EB;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-gray);
    background: radial-gradient(circle at top left, #ffffff 0%, #eef2f6 50%, #e0e8f0 100%);
    background-attachment: fixed;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-navy);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.nav a {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav a:hover:not(.btn) {
    color: var(--primary-red);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c00510 100%);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-navy) !important;
    border-color: var(--primary-navy);
}

.btn-secondary:hover {
    background-color: var(--primary-navy);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 43, 77, 0.2);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.header-action .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

/* Logo updates */
.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}
.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
}
.logo-subtext {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

/* Nav update */
.nav a.active {
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 4px;
}

/* Button icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline {
    background-color: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}
.btn-outline:hover {
    background-color: var(--primary-navy);
    color: var(--white) !important;
}

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

/* Hero New */
.hero-new {
    background: url('static/herobg.png') no-repeat right center;
    background-size: cover;
    background-color: transparent;
    padding: 60px 0 0 0;
    position: relative;
    overflow: hidden;
}
.hero-new-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}
.hero-new-content {
    flex: 1;
    width: 60%;
    padding-bottom: 60px;
}

.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.badge-chapter {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}
.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: 0.5px;
}

.hero-new h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-desc-main {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.5;
}
.hero-date {
    color: var(--primary-red);
    font-weight: 600;
}

.hero-desc-sub {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    flex-wrap: wrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-features:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-navy);
    flex: 1;
    min-width: 80px;
}
.feature-item .icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-red);
}

/* ── Info Bar ── */
.info-bar {
    padding: 48px 0 52px;
    background: linear-gradient(160deg, #f0f4fa 0%, #fafbff 50%, #f5f0f8 100%);
    position: relative;
    overflow: hidden;
}
.info-bar::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227,6,19,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.info-bar::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,43,77,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.info-bar-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* ── Info Card Base ── */
.info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0 0 22px 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid rgba(255,255,255,0.9);
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275),
                box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: default;
    position: relative;
}
.info-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Accent strip at top */
.info-card-accent {
    width: 100%;
    height: 5px;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
    margin-bottom: 20px;
}

/* Icon bubble */
.info-card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 0 14px 20px;
    flex-shrink: 0;
}
.info-card-icon {
    line-height: 1;
}

/* Card body text */
.info-card-body {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
}
.info-card-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.65;
}
.info-card-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.3;
}
.info-card-sub {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.6;
    margin-top: 1px;
}

/* ── Color Themes ── */

/* Red – Event Date */
.info-card-red { background: linear-gradient(145deg, #fff8f8 0%, #ffffff 100%); }
.info-card-red .info-card-accent { background: linear-gradient(90deg, #E30613, #ff6b6b); }
.info-card-red .info-card-icon-wrap { background: linear-gradient(135deg, #fff0f0, #ffe0e0); }
.info-card-red .info-card-label { color: #E30613; }

/* Crimson – Campaign Type */
.info-card-crimson { background: linear-gradient(145deg, #fff5f5 0%, #ffffff 100%); }
.info-card-crimson .info-card-accent { background: linear-gradient(90deg, #c0000e, #E30613); }
.info-card-crimson .info-card-icon-wrap { background: linear-gradient(135deg, #ffe0e5, #ffc8d0); }
.info-card-crimson .info-card-label { color: #c0000e; }

/* Purple – Diseases */
.info-card-purple { background: linear-gradient(145deg, #fdf5ff 0%, #ffffff 100%); }
.info-card-purple .info-card-accent { background: linear-gradient(90deg, #7B1FA2, #AB47BC); }
.info-card-purple .info-card-icon-wrap { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.info-card-purple .info-card-label { color: #7B1FA2; }

/* Navy – Mission */
.info-card-navy { background: linear-gradient(145deg, #f5f8ff 0%, #ffffff 100%); }
.info-card-navy .info-card-accent { background: linear-gradient(90deg, #0D2B4D, #1a4a82); }
.info-card-navy .info-card-icon-wrap { background: linear-gradient(135deg, #e8eef8, #d0ddf0); }
.info-card-navy .info-card-label { color: #0D2B4D; }

/* Countdown Bar */
.countdown-bar {
    background-color: var(--primary-navy);
    padding: 24px 0;
    color: var(--white);
}
.countdown-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.countdown-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.heart-icon {
    font-size: 2rem;
    color: var(--primary-red);
}
.countdown-left h2 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}
.countdown-center {
    display: flex;
    align-items: center;
    gap: 24px;
}
.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}
.timer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.time-box span {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}
.time-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 4px;
}
.timer .colon {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: -16px;
}
.countdown-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.calendar-icon {
    font-size: 1.8rem;
}
.calendar-text {
    display: flex;
    flex-direction: column;
}
.cal-title {
    font-size: 0.8rem;
    opacity: 0.9;
}
.cal-date {
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: 700;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: transparent;
}
.mission-header {
    text-align: center;
    margin-bottom: 40px;
}
.mission-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.mission-subtitle .line {
    width: 40px;
    height: 1px;
    background-color: var(--primary-red);
}
.mission-subtitle .text {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1px;
}
.mission-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-navy);
}
.mission-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 24px 32px;
    margin-bottom: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    gap: 20px;
    flex-wrap: wrap;
    transition: transform 0.3s ease;
}
.stats-bar:hover {
    transform: translateY(-5px);
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.red-light-bg { background-color: #FFF0F1; }
.blue-light-bg { background-color: #F0F4FA; }
.text-navy { color: var(--primary-navy); }

.stat-text {
    display: flex;
    flex-direction: column;
}
.stat-text strong {
    font-size: 1.2rem;
    color: var(--primary-navy);
    font-weight: 800;
    line-height: 1.2;
}
.stat-text .title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-top: 4px;
}
.stat-text .desc {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* Campaign Section */
.campaign-section {
    padding: 80px 0;
    background-color: transparent;
    overflow: hidden;
}

.campaign-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.campaign-content {
    flex: 1;
}

.campaign-lead {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 16px;
    line-height: 1.6;
}

.campaign-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.campaign-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.campaign-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.campaign-highlights li:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: rgba(227, 6, 19, 0.4);
    background: rgba(255, 255, 255, 0.85);
}

.highlight-icon {
    font-size: 1.8rem;
    background: #fff0f0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-red);
    flex-shrink: 0;
}

.campaign-highlights strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.campaign-highlights span {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.campaign-visual {
    flex: 1;
    position: relative;
    padding: 20px;
}

.visual-blob {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a4a82 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    opacity: 0.1;
    animation: blob-float 8s ease-in-out infinite;
}

@keyframes blob-float {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.floating-image {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.visual-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.pulse-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.vc-text {
    display: flex;
    flex-direction: column;
}

.vc-text strong {
    font-size: 1.1rem;
    color: var(--primary-navy);
}

.vc-text span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

@media (max-width: 992px) {
    .campaign-wrapper {
        flex-direction: column;
    }
    .visual-card {
        left: 20px;
        bottom: 20px;
    }
}

/* Disease Cards */
.disease-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.disease-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.disease-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.85);
}
.card-red { border-top: 4px solid var(--primary-red); }
.card-purple { border-top: 4px solid #6A1B9A; }
.card-blue { border-top: 4px solid #0D47A1; }

.card-top-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.card-red .card-top-icon { color: var(--primary-red); }
.card-purple .card-top-icon { color: #6A1B9A; }
.card-blue .card-top-icon { color: #0D47A1; }

.card-main-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}
.disease-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.text-purple { color: #6A1B9A; }
.text-blue { color: #0D47A1; }

.card-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    min-height: 60px;
}

/* Progress Section */
.progress-section {
    text-align: left;
    margin-bottom: 24px;
}
.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-navy);
}
.progress-bar {
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}
.bg-red-light { background-color: #FFF0F1; }
.bg-purple-light { background-color: #F3E5F5; }
.bg-blue-light { background-color: #E3F2FD; }

.progress-fill {
    height: 100%;
    border-radius: 10px;
}
.bg-red { background-color: var(--primary-red); }
.bg-purple { background-color: #6A1B9A; }
.bg-blue { background-color: #0D47A1; }

.card-footer {
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

/* CTA Banner */
.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 24px 32px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cta-icon {
    font-size: 3rem;
    background: var(--white);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.cta-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--primary-navy);
}
.cta-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
}
.cta-right {
    display: flex;
    gap: 16px;
}
.btn-outline-blue {
    background-color: transparent;
    border: 2px solid #0D47A1;
    color: #0D47A1;
}
.btn-outline-blue:hover {
    background-color: #0D47A1;
    color: var(--white) !important;
}

/* Mission Footer */
.mission-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.mission-footer .line {
    width: 60px;
    height: 1px;
    background-color: var(--primary-red);
}
.mission-footer .text {
    font-size: 0.95rem;
    color: var(--text-gray);
}
.mission-footer strong {
    color: var(--primary-navy);
}

@media (max-width: 992px) {
    .disease-cards { grid-template-columns: 1fr; }
    .cta-banner { flex-direction: column; text-align: center; gap: 24px; }
    .cta-left { flex-direction: column; }
    .stats-bar { justify-content: center; }
}

/* Custom Forms Section */
.forms-container-section {
    padding: 80px 0;
    background-color: transparent;
}
.forms-header {
    text-align: center;
    margin-bottom: 50px;
}
.forms-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 12px;
}
.forms-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}
/* Form Toggle */
.form-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.form-toggle {
    display: inline-flex;
    background: var(--white);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.toggle-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}
.toggle-btn.active {
    background: var(--primary-navy);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(13, 43, 77, 0.2);
}
#btn-donor.active {
    background: var(--primary-red);
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.2);
}

.forms-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-areas: "form-stack";
}
.custom-form-card {
    grid-area: form-stack;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}
.hidden-form {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
}
.active-form {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.form-card-header {
    padding: 30px;
    text-align: center;
}
.bg-navy { background-color: var(--primary-navy); }
.bg-red { background-color: var(--primary-red); }
.text-white { color: var(--white); }
.text-white h3, .text-white p { color: var(--white); }
.form-card-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.form-card-header h3 .icon {
    font-size: 1.8rem;
}
.form-card-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}
.form-card-body {
    padding: 30px;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}
.form-row {
    display: flex;
    gap: 20px;
}
.form-row .form-group {
    flex: 1;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-navy);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 43, 77, 0.1);
}
.donor-card .form-group input:focus, .donor-card .form-group select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}
.w-100 {
    width: 100%;
}
.mt-3 {
    margin-top: 24px;
}
.donor-submit-btn:hover {
    background-color: #c0000e !important;
}
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Toast Message */
.toast-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--white);
    border-left: 5px solid #22c55e;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 20px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}
.toast-message.show {
    transform: translateX(0);
}
.toast-icon {
    font-size: 1.8rem;
}
.toast-text h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 4px;
}
.toast-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Organizers Section */
.supporters-section {
    padding: 80px 0;
    background-color: transparent;
    text-align: center;
}

.organizers-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.org-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-red);
}

.org-subtitle .line {
    width: 40px;
    height: 1px;
    background-color: var(--primary-red);
    opacity: 0.5;
}

.org-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.org-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.org-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: transparent;
}

.org-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.org-icon-circle {
    width: 50px;
    height: 50px;
    background-color: #fff0f0;
    color: var(--primary-red);
    border: 2px solid #ffeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.05);
}

.org-badge-text {
    display: flex;
    flex-direction: column;
}

.org-badge-text strong {
    font-size: 0.95rem;
    color: var(--primary-navy);
}

.org-badge-text span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.org-separator {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

@media (max-width: 768px) {
    .org-badges {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 0 20px;
    }
    .org-separator {
        width: 100%;
        height: 1px;
    }
}

.supporters-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.supporter-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    width: calc(25% - 18px);
    min-width: 200px;
    text-decoration: none;
    color: var(--primary-navy);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.supporter-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: rgba(227, 6, 19, 0.4);
    background: rgba(255, 255, 255, 0.85);
}

.supporter-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.supporter-card:hover img {
    border-color: var(--primary-red);
}

.supporter-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.supporter-card span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}

.supporter-badge {
    position: absolute;
    top: -12px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
}

.lead-card {
    border-color: var(--primary-navy);
    box-shadow: 0 8px 25px rgba(13, 43, 77, 0.1);
}

.lead-card img {
    width: 100px;
    height: 100px;
    border-color: var(--primary-navy);
}

.lead-card:hover {
    border-color: var(--primary-navy);
}

.lead-card:hover img {
    border-color: var(--primary-navy);
}

@media (max-width: 768px) {
    .supporter-card {
        width: calc(50% - 12px);
    }
}
@media (max-width: 480px) {
    .supporter-card {
        width: 100%;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0a1f3a 100%);
    color: var(--white);
    position: relative;
    padding-top: 60px;
    margin-top: 80px;
}

.footer-top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
}

.footer-top-wave svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 120px;
}

.footer-top-wave .shape-fill {
    fill: var(--primary-navy);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 0;
}

.footer-brand {
    flex: 2;
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .heart-icon {
    font-size: 1.8rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3);
}

.footer-links-grid {
    flex: 3;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-col a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 14px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-contact-link {
    display: inline-block;
    background: rgba(227, 6, 19, 0.1);
    color: var(--primary-red) !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    margin-top: 8px;
    border: 1px solid rgba(227, 6, 19, 0.3);
}

.footer-contact-link:hover {
    background: var(--primary-red) !important;
    color: var(--white) !important;
    transform: translateY(-3px) translateX(0);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
}

.footer-left p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-dot {
    opacity: 0.5;
}

.footer-right p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.dev-link {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-link:hover {
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .nav {
        display: none; /* simple mobile nav hide for now */
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* =====================================================
   HAMBURGER BUTTON
   ===================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s ease;
    z-index: 1100;
    flex-shrink: 0;
}
.hamburger:hover {
    background: rgba(13, 43, 77, 0.07);
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary-navy);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                width 0.3s ease;
    transform-origin: center;
}
/* Animate to X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   MOBILE NAV OVERLAY
   ===================================================== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 80px; /* matches header height */
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    pointer-events: none;
}
.mobile-nav-overlay.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
}
.mobile-nav-link {
    text-decoration: none;
    color: var(--primary-navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 12px 16px;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}
.mobile-nav-link:hover {
    background: rgba(13, 43, 77, 0.06);
    color: var(--primary-red);
}
.mobile-nav-cta {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
}

/* =====================================================
   RESPONSIVE – TABLET (≤ 900px)
   ===================================================== */
@media (max-width: 900px) {
    .header-container {
        height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
        top: 70px;
    }

    .nav,
    .header-action {
        display: none;
    }

    /* Hero */
    .hero-new {
        background-position: center top;
        padding: 40px 0 0 0;
    }
    .hero-new-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-new-content {
        width: 100%;
        padding-bottom: 40px;
    }
    .hero-new h1 {
        font-size: 2.4rem;
    }
    .hero-buttons {
        flex-wrap: wrap;
    }
    .hero-buttons .btn {
        flex: 1 1 auto;
        text-align: center;
        justify-content: center;
    }

    /* Info bar – 2 columns on tablet */
    .info-bar-container {
        grid-template-columns: 1fr 1fr;
    }

    /* Countdown */
    .countdown-container {
        flex-direction: column;
        text-align: center;
    }
    .countdown-left {
        justify-content: center;
    }
    .countdown-center {
        flex-direction: column;
        gap: 12px;
    }
    .countdown-right {
        justify-content: center;
    }

    /* Mission/Stats */
    .mission-header h2 {
        font-size: 2.2rem;
    }
    .stats-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: start;
    }

    /* Disease cards – 1 column */
    .disease-cards {
        grid-template-columns: 1fr;
    }

    /* Campaign */
    .campaign-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .visual-card {
        left: 10px;
        bottom: 10px;
    }

    /* CTA Banner */
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .cta-left {
        flex-direction: column;
        align-items: center;
    }
    .cta-right {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .cta-right .btn {
        width: 100%;
        justify-content: center;
    }

    /* Org title */
    .org-title {
        font-size: 2.2rem;
    }

    /* Organizers badges */
    .org-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .org-separator {
        width: 80px;
        height: 1px;
    }

    /* Supporter cards – 2 per row */
    .supporter-card {
        width: calc(50% - 12px);
    }

    /* Form toggle – stacked */
    .toggle-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
        display: flex;
    }
    .footer-links-grid {
        flex-direction: column;
        gap: 30px;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
}

/* =====================================================
   RESPONSIVE – MOBILE (≤ 600px)
   ===================================================== */
@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    /* ── Header ── */
    .logo-text {
        font-size: 1rem;
    }
    .logo-subtext {
        display: none;
    }

    /* ── Hero ── */
    /* Hide the background image on small screens for better readability */
    .hero-new {
        background-image: none !important;
        background-color: #f5f7fa;
        padding: 32px 0 0 0;
    }
    .hero-new-content {
        padding-bottom: 32px;
    }
    .hero-new h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }
    .hero-badge-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .badge-text {
        font-size: 0.75rem;
    }
    .hero-desc-main {
        font-size: 0.97rem;
        line-height: 1.6;
    }
    .hero-desc-main br,
    .hero-desc-sub br {
        display: none;
    }
    .hero-desc-sub {
        font-size: 0.9rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 13px 20px;
    }
    /* Feature pills – horizontally scrollable row */
    .hero-features {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 14px;
        scrollbar-width: none;
    }
    .hero-features::-webkit-scrollbar { display: none; }
    .feature-item {
        min-width: 72px;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    /* ── Info Bar ── */
    .info-bar {
        padding: 32px 0 36px;
    }
    .info-bar-container {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .info-card {
        border-radius: 16px;
    }
    .info-card-icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        border-radius: 11px;
        margin: 0 0 12px 16px;
    }
    .info-card-body {
        padding: 0 16px;
    }
    .info-card-value {
        font-size: 0.92rem;
    }

    /* ── Countdown Bar ── */
    .countdown-bar {
        padding: 28px 0;
    }
    .countdown-container {
        gap: 24px;
    }
    .countdown-left h2 {
        font-size: 1.05rem;
        text-align: center;
    }
    .countdown-center {
        align-items: center;
    }
    .countdown-label {
        font-size: 0.85rem;
    }
    .timer {
        gap: 8px;
    }
    .time-box span {
        font-size: 1.7rem;
    }
    .time-box small {
        font-size: 0.65rem;
    }
    .timer .colon {
        font-size: 1.3rem;
        margin-top: -12px;
    }
    .calendar-text {
        text-align: center;
    }
    .cal-date {
        font-size: 0.95rem;
    }

    /* ── Campaign Section ── */
    .campaign-section {
        padding: 50px 0;
    }
    .campaign-wrapper {
        gap: 28px;
    }
    .campaign-lead {
        font-size: 1rem;
    }
    .campaign-desc {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    .campaign-highlights li {
        gap: 14px;
        padding: 16px;
    }
    .highlight-icon {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    /* Hide floating visual card on mobile to prevent content overlap */
    .visual-card {
        display: none;
    }
    .campaign-visual {
        padding: 0;
    }

    /* ── Mission / About Section ── */
    .mission-section {
        padding: 50px 0;
    }
    .mission-header {
        margin-bottom: 28px;
    }
    .mission-header h2 {
        font-size: 1.8rem;
    }
    .mission-header p {
        font-size: 0.95rem;
    }

    /* Stats bar – single column */
    .stats-bar {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        margin-bottom: 32px;
    }
    .stat-item {
        width: 100%;
    }
    .stat-text strong {
        font-size: 1.05rem;
    }
    .stat-text .title {
        font-size: 0.78rem;
    }

    /* Disease Cards */
    .disease-cards {
        gap: 20px;
        margin-bottom: 32px;
    }
    .disease-card {
        padding: 24px 20px;
    }
    .card-main-icon {
        font-size: 3rem;
        margin-bottom: 14px;
    }
    .disease-card h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .card-desc {
        font-size: 0.88rem;
        min-height: unset;
        margin-bottom: 20px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 28px;
    }
    .cta-icon {
        width: 56px;
        height: 56px;
        font-size: 2.2rem;
    }
    .cta-text h3 {
        font-size: 1.25rem;
    }
    .cta-text p {
        font-size: 0.88rem;
    }
    .cta-text p br { display: none; }
    .cta-right .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    /* Mission footer divider */
    .mission-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* ── Register / Forms Section ── */
    .forms-container-section {
        padding: 50px 0;
    }
    .forms-header {
        margin-bottom: 32px;
    }
    .forms-header h2 {
        font-size: 1.85rem;
    }
    .forms-header p {
        font-size: 0.95rem;
    }
    .form-toggle-wrapper {
        margin-bottom: 28px;
        padding: 0 4px;
    }
    .form-toggle {
        width: 100%;
    }
    .toggle-btn {
        flex: 1;
        padding: 11px 10px;
        font-size: 0.85rem;
        text-align: center;
        white-space: nowrap;
    }
    .form-card-header {
        padding: 20px;
    }
    .form-card-header h3 {
        font-size: 1.25rem;
    }
    .form-card-body {
        padding: 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-group {
        margin-bottom: 16px;
    }
    /* font-size 1rem on mobile inputs prevents iOS auto-zoom */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 13px 14px;
    }
    .btn.w-100 {
        font-size: 1rem;
        padding: 14px;
    }

    /* ── Organizers / Supporters ── */
    .supporters-section {
        padding: 50px 0;
    }
    .org-title {
        font-size: 1.8rem;
    }
    .org-desc {
        font-size: 0.95rem;
    }
    .org-desc br { display: none; }
    .org-badges {
        align-items: flex-start;
        padding: 0 4px;
        gap: 16px;
    }
    .org-badge {
        gap: 12px;
    }
    .org-badge-text strong {
        font-size: 0.9rem;
    }
    .org-separator {
        width: 100%;
        height: 1px;
    }
    /* 2-per-row supporter cards on mobile */
    .supporters-grid {
        gap: 16px;
    }
    .supporter-card {
        width: calc(50% - 8px);
        min-width: unset;
        padding: 18px 12px;
    }
    .supporter-card img {
        width: 64px;
        height: 64px;
    }
    .supporter-card h4 {
        font-size: 0.9rem;
    }
    .supporter-card span {
        font-size: 0.78rem;
    }
    .lead-card img {
        width: 80px;
        height: 80px;
    }

    /* ── Toast ── */
    .toast-message {
        bottom: 16px;
        right: 16px;
        left: 16px;
        transform: translateY(120%);
    }
    .toast-message.show {
        transform: translateY(0);
    }

    /* ── Footer ── */
    .footer {
        margin-top: 60px;
    }
    .footer-content {
        padding: 32px 16px;
        gap: 32px;
    }
    .footer-links-grid {
        gap: 24px;
    }
    .footer-col h4 {
        margin-bottom: 16px;
    }
    .footer-bottom {
        padding: 18px 0;
    }
    .footer-bottom-container {
        gap: 12px;
    }
}

/* =====================================================
   RESPONSIVE – EXTRA SMALL (≤ 380px)
   ===================================================== */
@media (max-width: 380px) {
    .hero-new h1 {
        font-size: 1.6rem;
    }
    .timer {
        gap: 4px;
    }
    .time-box span {
        font-size: 1.35rem;
    }
    .timer .colon {
        font-size: 1rem;
        margin-top: -10px;
    }
    /* Go to single column at very small screens */
    .supporter-card {
        width: 100%;
    }
    .toggle-btn {
        font-size: 0.75rem;
        padding: 10px 8px;
    }
    .org-title,
    .mission-header h2,
    .forms-header h2 {
        font-size: 1.6rem;
    }
    .campaign-highlights li {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ══════════════════════════════════════════
   INFLUENCER REELS SECTION
══════════════════════════════════════════ */
.reels-section {
    padding: 100px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    color: var(--text-gray);
}

/* Dynamic Glowing Blobs */
.reels-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227,6,19,0.05) 0%, transparent 70%);
    filter: blur(40px);
    animation: blob-float 12s infinite alternate;
    pointer-events: none;
}
.reels-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,43,77,0.05) 0%, transparent 70%);
    filter: blur(50px);
    animation: float 15s infinite alternate-reverse;
    pointer-events: none;
}

/* ── Reels Header ── */
.reels-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.reels-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227,6,19,0.1);
    border: 1px solid rgba(227,6,19,0.3);
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.15);
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 10px rgba(227,6,19,0.1); }
    50% { box-shadow: 0 0 25px rgba(227,6,19,0.35); }
    100% { box-shadow: 0 0 10px rgba(227,6,19,0.1); }
}

.reels-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.reels-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Reels Grid ── */
.reels-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

/* ── Reel Card (live embed) ── */
.reel-card {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 16px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.reel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(227, 6, 19, 0.3);
}

/* Dynamic Gradient Border on Hover */
.reel-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, var(--primary-red), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.reel-card:hover::after {
    opacity: 1;
}

.reel-embed-wrapper {
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.03);
}

.reel-embed-wrapper .instagram-media {
    min-width: unset !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.reel-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 8px 8px 8px;
}

.reel-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(227, 6, 19, 0.8);
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

.reel-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.reel-info strong {
    color: var(--primary-navy);
    font-size: 1.05rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}
.reel-info span {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.reel-watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-red), #c0000e);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
    position: relative;
    z-index: 2;
}
.reel-watch-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.5);
    color: #fff !important;
}

/* ── Placeholder Reel Card ── */
.reel-placeholder-card {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    background: #fafafa;
}

.reel-placeholder-card:hover {
    border-style: solid;
    border-color: rgba(227, 6, 19, 0.3);
}

.reel-placeholder-inner {
    text-align: center;
    padding: 40px;
}

.reel-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    display: inline-block;
    animation: bounce 2s infinite;
}

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

.reel-placeholder-inner h4 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.reel-placeholder-inner p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.reel-influencer-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-influencer-preview img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--primary-navy);
    object-fit: cover;
    margin-left: -16px;
    transition: transform 0.3s ease, z-index 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.reel-influencer-preview img:first-child { margin-left: 0; }
.reel-influencer-preview img:hover {
    transform: scale(1.2) translateY(-6px);
    z-index: 10 !important;
}

.reel-preview-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.15);
    backdrop-filter: blur(4px);
    border: 3px solid var(--primary-navy);
    color: #ff6b6b;
    font-size: 0.75rem;
    font-weight: 800;
    margin-left: -16px;
    z-index: 1;
}

/* ══════════════════════════════════════════
   MAKE A REEL / BE A PART OF THIS CTA
══════════════════════════════════════════ */
.make-reel-cta {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 36px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.make-reel-cta:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: rgba(227, 6, 19, 0.3);
}

/* Shining light effect on CTA */
.make-reel-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    animation: cta-shine 8s infinite;
}

@keyframes cta-shine {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.make-reel-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(227,6,19,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.make-reel-left {
    flex: 1;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.make-reel-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(227,6,19,0.8), #90000a);
    box-shadow: 0 10px 30px rgba(227,6,19,0.4), inset 0 0 10px rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: icon-float 5s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.make-reel-icon {
    font-size: 2.8rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.make-reel-text {
    flex: 1;
}

.make-reel-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 12px;
    background: rgba(227,6,19,0.15);
    padding: 6px 12px;
    border-radius: 8px;
}

.make-reel-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.make-reel-text p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.make-reel-steps {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.make-reel-steps li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--primary-navy);
    font-size: 0.95rem;
    line-height: 1.5;
    background: #f9f9f9;
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.make-reel-steps li:hover {
    background: #f1f3f5;
    border-color: rgba(13, 43, 77, 0.2);
}

.make-reel-steps li strong {
    color: var(--primary-red);
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-navy);
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-heading);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.make-reel-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    min-width: 240px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn-outline-reel {
    background: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.btn-outline-reel:hover {
    background: var(--primary-navy);
    color: var(--white) !important;
    border-color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 43, 77, 0.3);
}

/* ── Reels section responsive ── */
@media (max-width: 992px) {
    .make-reel-cta {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
    }
    .make-reel-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .make-reel-steps li {
        text-align: left;
    }
    .make-reel-right {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .reels-grid {
        grid-template-columns: 1fr;
    }
    .reel-placeholder-card {
        min-height: 350px;
    }
    .make-reel-text h3 {
        font-size: 1.8rem;
    }
    .reels-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .reels-section {
        padding: 70px 0 50px;
    }
    .make-reel-cta {
        padding: 30px 20px;
    }
    .make-reel-icon-wrap {
        width: 70px;
        height: 70px;
    }
    .make-reel-icon {
        font-size: 2.2rem;
    }
    .make-reel-steps li {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
}
