/* ===== VeeraCare Homepage Redesign CSS ===== */
:root {
    --primary: #d90429;
    --primary-dark: #b80324;
    --primary-light: #FEE7EA;
    --primary-lighter: #FFF5F6;
    --secondary: #0d6efd;
    --accent: #16a34a;
    --text-dark: #1a1a2e;
    --text-body: #444;
    --text-muted: #777;
    --white: #fff;
    --bg-light: #f8fafc;
    --border: #e8e8e8;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(217, 4, 41, 0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white)
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

img {
    max-width: 100%
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s cubic-bezier(.4, 0, .2, 1)
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    animation: fadeInDown .5s ease
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo:hover {
    opacity: .9
}

.logo img {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 2px 8px rgba(217, 4, 41, .2))
}

.logo-text {
    line-height: 1.15
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary)
}

.logo-subtitle {
    font-size: .6rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: .5px
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px
}

.nav-link {
    padding: 8px 14px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: 8px;
    transition: var(--transition);
    position: relative
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary)
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 20px;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border)
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(217, 4, 41, .3)
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(217, 4, 41, .4)
}

.btn-register {
    background: linear-gradient(135deg, #d90429, #b80324);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(217, 4, 41, .35)
}

.btn-register:hover {
    box-shadow: 0 6px 20px rgba(217, 4, 41, .5)
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13, 110, 253, .3)
}

.btn-secondary:hover {
    background: #0b5ed7;
    box-shadow: 0 6px 20px rgba(13, 110, 253, .4)
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(22, 163, 74, .3)
}

.btn-accent:hover {
    background: #15803d;
    box-shadow: 0 6px 20px rgba(22, 163, 74, .4)
}

.btn-white {
    background: var(--white);
    color: var(--text-dark);
    border: 1.5px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
}

.btn-white:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.btn-lg {
    padding: 12px 24px;
    font-size: .9rem;
    border-radius: 10px
}

.btn-emergency {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 18px rgba(217, 4, 41, .35);
    animation: pulse 2.5s infinite
}

.btn-emergency:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(217, 4, 41, .5)
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition)
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.modal {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
    transform: scale(.9) translateY(20px);
    transition: var(--transition)
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0)
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border)
}

.modal-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark)
}

.modal-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted)
}

.modal-close:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: rotate(90deg)
}

.modal-body {
    padding: 18px 22px 22px
}

.role-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.role-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: var(--transition)
}

.role-item:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateX(4px)
}

.role-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    transition: var(--transition)
}

.role-item:hover .role-icon {
    background: var(--primary);
    color: white
}

.role-info h4 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dark)
}

.role-info p {
    font-size: .75rem;
    color: var(--text-muted)
}

.role-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: .8rem;
    transition: var(--transition)
}

.role-item:hover .role-arrow {
    color: var(--primary);
    transform: translateX(4px)
}

/* ===== HERO ===== */
.hero {
    padding: 72px 0 20px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #fff 40%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 4, 41, .07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0
}

.hero .container {
    position: relative;
    z-index: 10
}

.hero-zone-banner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: center
}

.hero-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.12;
    margin-bottom: 6px
}

.hero-subtitle {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px
}

.hero-bullets {
    list-style: none;
    margin: 0 0 18px
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-dark)
}

.hero-bullets li .red {
    color: var(--primary)
}

.hero-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.hero-ctas .btn {
    padding: 11px 22px;
    font-size: .88rem;
    border-radius: 10px
}

/* Find Blood Card */
.find-blood-card {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    border: 2px solid white;
    position: relative
}

.helpline-badge {
    position: absolute;
    top: -18px;
    right: 18px;
    background: white;
    border-radius: 100px;
    padding: 5px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    border: 1px solid var(--border)
}

.helpline-badge i {
    background: var(--primary);
    color: white;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: .65rem
}

/* Zone 3: Quick Access Grid */
.hero-zone-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 16px;
    margin-top: 20px
}

.h-grid-col {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    border: 1px solid var(--border)
}

.h-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px
}

.h-col-actions {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.h-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: .9rem;
    transition: all .2s;
    border: 1px solid transparent
}

.h-action-btn:hover {
    background: white;
    border-color: var(--border);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05)
}

.h-act-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.h-col-map {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #f0f4f8, #e1e8ed);
    overflow: hidden;
    position: relative
}

.h-col-map .h-col-title {
    position: relative;
    z-index: 2
}

.h-map-container {
    flex: 1;
    min-height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden
}

.h-map-container svg {
    width: 100%;
    height: 100%;
    max-height: 300px
}

.h-map-container svg path {
    fill: #e2e8f0;
    stroke: #cbd5e1;
    stroke-width: 1;
    transition: fill .3s
}

.h-map-container svg path:hover {
    fill: #cbd5e1
}

.map-ut-path {
    fill: var(--primary) !important;
    animation: pulse-ut 2s infinite alternate
}

@keyframes pulse-ut {
    0% {
        fill: var(--primary);
        stroke-width: 1px
    }

    100% {
        fill: #ff4d4d;
        stroke-width: 2px;
        stroke: #8b1111
    }
}

.h-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
    background: white;
    padding: 8px;
    border-radius: 8px;
    z-index: 2;
    position: relative
}

.l-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .65rem;
    font-weight: 600;
    color: #555
}

.l-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.h-col-dash {
    display: flex;
    flex-direction: column
}

.h-dash-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0
}

.h-dash-item:last-of-type {
    border-bottom: none
}

.h-dash-item i {
    width: 20px;
    font-size: 1rem
}

.d-label {
    font-size: .85rem;
    color: var(--text-dark);
    font-weight: 500
}

.d-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark)
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: .65rem;
    font-weight: 600
}


/* ===== STATS STRIP ===== */
.stats-strip {
    background: var(--white);
    padding: 18px 0
}

.stats-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04)
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary)
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.stat-icon.red {
    background: var(--primary-light);
    color: var(--primary)
}

.stat-icon.blue {
    background: #e8f0fe;
    color: var(--secondary)
}

.stat-icon.green {
    background: #e8f5e9;
    color: var(--accent)
}

.stat-icon.orange {
    background: #fff3e0;
    color: #e65100
}

.stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1
}

.stat-label {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 500
}

/* ===== SECTION COMMONS ===== */
.section {
    padding: 44px 0
}

.section-header {
    text-align: center;
    margin-bottom: 28px
}

.section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px
}

.section-title .red {
    color: var(--primary)
}

.section-desc {
    font-size: .9rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
    border: 1px solid rgba(217, 4, 41, .15)
}

/* ===== CORE FEATURES ===== */
.features-section {
    background: var(--bg-light)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px
}

.feature-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: inherit;
    text-decoration: none
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary)
}

.feature-card.highlight {
    border-color: var(--primary)
}

.feature-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary)
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition)
}

.feature-icon.fc-red {
    background: var(--primary-light);
    color: var(--primary)
}

.feature-icon.fc-blue {
    background: #e8f0fe;
    color: var(--secondary)
}

.feature-icon.fc-green {
    background: #e8f5e9;
    color: var(--accent)
}

.feature-icon.fc-orange {
    background: #fff3e0;
    color: #e65100
}

.feature-icon.fc-purple {
    background: #f3e5f5;
    color: #7b1fa2
}

.feature-icon.fc-teal {
    background: #e0f2f1;
    color: #00796b
}

.feature-card:hover .feature-icon {
    transform: scale(1.1)
}

.feature-card.highlight .feature-icon {
    background: var(--primary);
    color: var(--white)
}

.feature-card h3 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--white)
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0
}

.step-item {
    text-align: center;
    flex: 1;
    max-width: 180px;
    position: relative
}

.step-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: var(--primary-light);
    color: var(--primary);
    border: 3px solid var(--primary);
    transition: var(--transition)
}

.step-item:hover .step-circle {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08)
}

.step-item h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px
}

.step-item p {
    font-size: .75rem;
    color: var(--text-muted)
}

.step-arrow {
    flex-shrink: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 24px
}

/* ===== CAMPAIGNS ===== */
.campaigns-section {
    background: var(--white);
    overflow: hidden
}

.campaigns-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.camp-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    font-family: inherit;
    font-size: .82rem;
    font-weight: 600;
    border: 2px solid var(--border);
    border-radius: 100px;
    background: var(--white);
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden
}

.camp-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px)
}

.camp-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 18px rgba(217, 4, 41, .3)
}

.camp-tab .tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    background: var(--bg-light);
    color: var(--text-muted);
    transition: var(--transition)
}

.camp-tab.active .tab-count {
    background: rgba(255, 255, 255, .25);
    color: var(--white)
}

.campaigns-panel {
    display: none;
    animation: fadeInUp .4s ease
}

.campaigns-panel.active {
    display: block
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.camp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden
}

.camp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary)
}

.camp-card-header {
    padding: 14px 16px 10px;
    position: relative
}

.camp-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--border)
}

.camp-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.camp-status-badge.upcoming {
    background: #eef6ff;
    color: #1565c0;
    border: 1px solid #bbdefb
}

.camp-status-badge.ongoing {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    animation: pulse 2.5s infinite
}

.camp-status-badge.completed {
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(217, 4, 41, .2)
}

.camp-card-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.camp-card-org {
    font-size: .72rem;
    color: var(--text-muted);
    font-weight: 500
}

.camp-card-body {
    padding: 12px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.camp-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .78rem;
    color: var(--text-body)
}

.camp-detail i {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--primary);
    font-size: .7rem;
    flex-shrink: 0
}

.camp-detail-text {
    padding-top: 2px
}

.camp-detail-label {
    font-size: .62rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3px
}

.camp-detail-val {
    font-weight: 600;
    color: var(--text-dark);
    font-size: .78rem
}

.camp-card-footer {
    padding: 0 16px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.camp-donors-info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-muted)
}

.camp-donors-info i {
    color: var(--primary)
}

.camp-donors-info span {
    color: var(--primary);
    font-weight: 700
}

.camp-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    font-family: inherit;
    font-size: .7rem;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none
}

.camp-card-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(217, 4, 41, .3)
}

.camp-card-btn.outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary)
}

.camp-card-btn.outline:hover {
    background: var(--primary);
    color: var(--white)
}

.camp-card-shimmer {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    overflow: hidden
}

.shimmer-line {
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 10px
}

.shimmer-line.short {
    width: 60%
}

.shimmer-line.medium {
    width: 80%
}

.shimmer-line.long {
    width: 100%
}

.shimmer-line.tiny {
    width: 40%;
    height: 10px
}

.camps-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted)
}

.camps-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.4rem;
    color: var(--text-muted)
}

.camps-empty h4 {
    font-size: .95rem;
    color: var(--text-dark);
    margin-bottom: 5px
}

.camps-empty p {
    font-size: .82rem;
    max-width: 360px;
    margin: 0 auto
}

.campaigns-view-all {
    text-align: center;
    margin-top: 24px
}

/* ===== IMPACT ===== */
.impact-section {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #fff 50%, var(--primary-lighter) 100%)
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.impact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary)
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition)
}

.impact-card:hover::before {
    opacity: 1
}

.impact-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: var(--primary-light);
    color: var(--primary)
}

.impact-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 3px
}

.impact-label {
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 500
}

/* ===== PARTNERS ===== */
.partners-section {
    background: var(--bg-light);
    padding: 36px 0
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition)
}

.partner-badge:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px)
}

.partner-badge i {
    font-size: 1.1rem;
    color: var(--primary)
}

.partner-badge span {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-dark)
}

/* ===== FOOTER ===== */
.footer {
    background: #0A0F1A;
    color: white;
    padding: 50px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 36px
}

.footer-brand img {
    width: 44px;
    margin-bottom: 14px
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px
}

.footer-brand p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    margin-bottom: 16px
}

.footer-social {
    display: flex;
    gap: 8px
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: white;
    font-size: .95rem;
    transition: var(--transition)
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px)
}

.footer-col h4 {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 16px
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: 8px
}

.footer-links a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    transition: var(--transition)
}

.footer-links a:hover {
    color: white
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6)
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 4px;
    width: 16px
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .6);
    transition: var(--transition)
}

.footer-contact-item a:hover {
    color: white
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5)
}

.footer-apps {
    display: flex;
    gap: 8px;
    align-items: center
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: white;
    font-size: .72rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, .15)
}

.app-badge:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px)
}

.app-badge i {
    font-size: 1rem
}

.footer-legal {
    display: flex;
    gap: 20px
}

.footer-legal a {
    color: rgba(255, 255, 255, .5);
    transition: var(--transition)
}

.footer-legal a:hover {
    color: white
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: .3s ease
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .6);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible
}

.mobile-nav-inner {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
    transform: translateX(100%);
    transition: .3s ease;
    padding: 24px;
    display: flex;
    flex-direction: column
}

.mobile-nav.active .mobile-nav-inner {
    transform: translateX(0)
}

.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1rem;
    transition: .3s ease
}

.mobile-nav-close:hover {
    background: var(--primary-light);
    color: var(--primary)
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 60px
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-body);
    transition: .3s ease
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--primary-light);
    color: var(--primary)
}

.mobile-nav-links a i {
    width: 20px;
    text-align: center;
    font-size: .9rem
}

.mobile-nav-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mobile-nav-actions .btn {
    width: 100%;
    justify-content: center
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .nav {
        display: none
    }

    .hamburger {
        display: flex
    }

    .header-actions .btn {
        font-size: .78rem;
        padding: 7px 14px
    }

    .hero-zone-banner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .hero-right {
        margin-top: 16px
    }

    .hero-zone-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .h-col-map {
        grid-column: 1 / -1
    }

    .stats-strip .container {
        grid-template-columns: repeat(2, 1fr)
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .campaigns-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    .steps-row {
        flex-wrap: wrap;
        gap: 16px
    }

    .step-arrow {
        display: none
    }
}

@media(max-width:768px) {
    .container {
        padding: 0 16px
    }

    .header-inner {
        height: 56px
    }

    .logo img {
        width: 36px;
        height: 36px
    }

    .logo-title {
        font-size: 1.05rem
    }

    .header-actions .btn-outline {
        display: none
    }

    .hero {
        padding: 66px 0 18px
    }

    .hero-title {
        font-size: 1.3rem
    }

    .hero-ctas {
        flex-wrap: wrap
    }

    .hero-ctas .btn {
        flex: 1 1 100%;
        font-size: .78rem
    }

    .section {
        padding: 36px 0
    }

    .section-title {
        font-size: 1.2rem
    }

    .section-header {
        margin-bottom: 22px
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px
    }

    .feature-card {
        padding: 18px 10px
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        margin-bottom: 8px
    }

    .feature-card h3 {
        font-size: .75rem
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .impact-card {
        padding: 20px 12px
    }

    .impact-val {
        font-size: 1.3rem
    }

    .campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px
    }

    .partners-row {
        gap: 10px
    }

    .stat-card {
        padding: 12px 14px
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem
    }

    .stat-val {
        font-size: 1.15rem
    }

    .stat-label {
        font-size: .68rem
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 14px
    }

    .header-inner {
        height: 52px
    }

    .logo img {
        width: 32px;
        height: 32px
    }

    .logo-title {
        font-size: .95rem
    }

    .logo-subtitle {
        display: none
    }

    .hero {
        padding: 62px 0 16px
    }

    .hero-title {
        font-size: 1.15rem
    }

    .stats-strip .container {
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }

    .stat-card {
        padding: 10px 12px;
        gap: 10px
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: .9rem;
        border-radius: 10px
    }

    .stat-val {
        font-size: 1rem
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px
    }

    .feature-card {
        padding: 14px 6px;
        border-radius: 10px
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: .85rem;
        margin-bottom: 6px
    }

    .feature-card h3 {
        font-size: .68rem
    }

    .impact-grid {
        gap: 8px
    }

    .impact-card {
        padding: 18px 10px
    }

    .impact-val {
        font-size: 1.1rem
    }

    .campaigns-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .section {
        padding: 30px 0
    }

    .modal {
        max-width: calc(100vw - 28px)
    }

    .role-item {
        padding: 10px;
        gap: 10px
    }

    .role-icon {
        width: 36px;
        height: 36px;
        font-size: .9rem
    }

    .role-info h4 {
        font-size: .8rem
    }

    .role-info p {
        font-size: .7rem
    }
}