/* ========================================
   GSAW - God Save Africa & The World
   Main Stylesheet - Multi-page Structure
   Brand Colors: Red (#E31E24), Green (#1B7A3D), Orange (#F47920)
======================================== */

/* ========================================
   1. CSS VARIABLES
======================================== */
:root {
    --red: #E31E24;
    --red-dark: #b8171c;
    --green: #1B7A3D;
    --green-dark: #145a2d;
    --orange: #F47920;
    --orange-dark: #d4661a;
    --dark: #1a1a2e;
    --dark-lighter: #2d2d44;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --nav-height: 70px;
}

/* ========================================
   2. RESET & BASE
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--green);
    transition: var(--transition);
}

a:hover {
    color: var(--green-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

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

/* ========================================
   3. TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

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

/* ========================================
   4. TOP BAR
======================================== */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i {
    color: var(--green);
}

.top-bar-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-bar-right a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--green);
}

/* ========================================
   5. NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--gray-500);
    font-weight: 500;
}

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

.nav-link {
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--green);
    background: rgba(27, 122, 61, 0.05);
}

.nav-link.active {
    color: var(--green);
    font-weight: 600;
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    margin-left: 10px;
    border-radius: 50px;
    padding: 10px 20px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   6. BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
}

.btn-green {
    background: var(--green);
    color: var(--white);
}

.btn-green:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(27, 122, 61, 0.3);
}

.btn-accent {
    background: var(--orange);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244, 121, 32, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-300);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--red-dark);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.82rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   7. HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, #0f3a1a 50%, var(--dark-lighter) 100%);
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(27, 122, 61, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(227, 30, 36, 0.1) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 30px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   8. SECTIONS - COMMON
======================================== */
.section {
    padding: 90px 0;
}

.section-dark {
    background: var(--gray-50);
}

.section-green {
    background: var(--green);
    color: var(--white);
}

.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #0f3a1a 60%, var(--dark-lighter) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--orange);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    background: rgba(27, 122, 61, 0.08);
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    margin: 15px auto;
    border-radius: 3px;
}

.section-desc {
    color: var(--gray-600);
    max-width: 650px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* ========================================
   9. ELECTION BANNER
======================================== */
.election-banner {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: 20px 0;
}

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

.banner-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

/* ========================================
   10. ABOUT SECTION
======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-lead {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--gray-600);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.highlight i {
    color: var(--green);
    font-size: 1.1rem;
}

.info-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.info-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.vision-card {
    background: linear-gradient(135deg, rgba(27, 122, 61, 0.03), rgba(27, 122, 61, 0.08));
}

.vision-card .card-icon {
    background: rgba(27, 122, 61, 0.1);
    color: var(--green);
}

.mission-card {
    background: linear-gradient(135deg, rgba(244, 121, 32, 0.03), rgba(244, 121, 32, 0.08));
}

.mission-card .card-icon {
    background: rgba(244, 121, 32, 0.1);
    color: var(--orange);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========================================
   11. VIDEO SECTION
======================================== */
.video-container {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--dark);
}

.video-container video {
    width: 100%;
    display: block;
}

.social-follow {
    text-align: center;
}

.social-follow p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.facebook:hover {
    background: #0d65d9;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.3);
}

.social-btn.tiktok {
    background: #010101;
}

.social-btn.tiktok:hover {
    background: #333;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* ========================================
   12. ELECTIONS SECTION
======================================== */
.elections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.election-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.election-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.election-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(244, 121, 32, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--red);
    margin-bottom: 20px;
}

.election-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.election-dates li,
.election-reasons li {
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
}

.election-dates li:last-child,
.election-reasons li:last-child {
    border-bottom: none;
}

.election-reasons li i {
    color: var(--green);
    margin-right: 8px;
}

.vote-steps {
    counter-reset: step;
}

.vote-steps li {
    position: relative;
    padding: 8px 0 8px 30px;
    font-size: 0.88rem;
    color: var(--gray-600);
    counter-increment: step;
}

.vote-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.election-cta {
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(27, 122, 61, 0.05), rgba(244, 121, 32, 0.05));
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.cta-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.cta-box h3 i {
    color: var(--orange);
}

.cta-box p {
    color: var(--gray-600);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   13. MANIFESTO
======================================== */
.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.manifesto-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.manifesto-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.manifesto-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(227, 30, 36, 0.08);
    position: absolute;
    top: 10px;
    right: 15px;
}

.manifesto-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.manifesto-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========================================
   14. LEADERSHIP
======================================== */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.leader-card {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    transition: var(--transition);
    background: var(--gray-200);
    cursor: default;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.leader-primary {
    grid-column: 1 / -1;
    width: 360px;
    aspect-ratio: 3 / 4;
    justify-self: center;
}

.leader-avatar {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gray-400);
    background: linear-gradient(160deg, var(--gray-100), var(--gray-300));
}

.leader-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.leader-primary .leader-avatar {
    font-size: 5rem;
    background: linear-gradient(160deg, rgba(27,122,61,0.08), rgba(27,122,61,0.18));
    color: var(--green);
}

.leader-card h3 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.9;
}

.leader-name {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.leader-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Overlay at bottom of each card */
.leader-card .leader-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    text-align: left;
}

.leadership-note {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-600);
}

.leadership-note i {
    color: var(--orange);
    margin-right: 5px;
}

/* ========================================
   15. CONSTITUTION
======================================== */
.constitution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.const-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.const-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.const-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.const-card h3 i {
    color: var(--green);
}

.const-card ul li {
    padding: 6px 0 6px 15px;
    font-size: 0.85rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    position: relative;
}

.const-card ul li:last-child {
    border-bottom: none;
}

.const-card ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

/* ========================================
   16. LEAGUES
======================================== */
.leagues-section {
    margin-top: 50px;
    text-align: center;
}

.leagues-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.league-card {
    background: var(--gray-50);
    padding: 30px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.league-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.league-card i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 12px;
}

.league-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.league-card p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   17. VALUES
======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27, 122, 61, 0.08), rgba(244, 121, 32, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--green);
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   18. NEWS
======================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.news-card a {
    text-decoration: none;
    color: inherit;
}

.news-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--gray-100);
}

.news-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--green), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 3rem;
}

.news-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.news-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green);
    background: rgba(27, 122, 61, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
}

.news-date-text {
    font-size: 0.78rem;
    color: var(--gray-500);
}

.news-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-body p {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.7;
    flex: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
}

.news-link:hover {
    color: var(--green-dark);
    gap: 8px;
}

/* ========================================
   19. MEMBERSHIP / JOIN
======================================== */
.join-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.join-info h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.join-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--gray-600);
}

.join-benefits li i {
    color: var(--green);
    margin-top: 3px;
    flex-shrink: 0;
}

.join-process {
    margin-top: 30px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.join-process h4 {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.join-process h4 i {
    color: var(--orange);
    margin-right: 5px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text strong {
    font-size: 0.85rem;
}

.step-text p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin: 0;
}

.member-rights {
    margin-top: 20px;
    padding: 15px;
    background: rgba(244, 121, 32, 0.05);
    border: 1px solid rgba(244, 121, 32, 0.15);
    border-radius: var(--radius-sm);
}

.member-rights h4 {
    font-size: 0.85rem;
    color: var(--orange);
    margin-bottom: 5px;
}

.member-rights h4 i {
    margin-right: 5px;
}

.member-rights p {
    font-size: 0.82rem;
    color: var(--gray-600);
}

.join-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 1.1rem;
}

.form-header h3 i {
    color: var(--green);
    margin-right: 8px;
}

.form-header p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.88rem;
    transition: var(--transition);
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(27, 122, 61, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

/* Signature Pad */
.signature-pad-wrapper {
    position: relative;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    overflow: hidden;
}

.signature-pad-wrapper canvas {
    width: 100%;
    height: 150px;
    display: block;
    cursor: crosshair;
    touch-action: none;
}

.signature-pad-wrapper.signed {
    border-color: var(--green);
    border-style: solid;
}

.signature-pad-wrapper.error {
    border-color: var(--red);
}

.signature-clear {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: var(--gray-600);
    cursor: pointer;
    font-family: var(--font-main);
    transition: var(--transition);
}

.signature-clear:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-600);
    margin-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
    cursor: pointer;
    padding: 6px 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 15px;
}

.form-success h3 {
    margin-bottom: 10px;
}

.form-success p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.success-note {
    margin-top: 15px;
    font-size: 0.82rem !important;
    color: var(--gray-500) !important;
}

/* ========================================
   20. CONTACT
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.contact-card a:hover {
    color: var(--green);
}

/* ========================================
   21. DOCUMENTS
======================================== */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.doc-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.doc-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.doc-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(227, 30, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--red);
    flex-shrink: 0;
}

.doc-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.doc-info p {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.doc-download {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
}

.doc-download:hover {
    color: var(--green-dark);
}

/* ========================================
   22. FOOTER
======================================== */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    color: var(--gray-400);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--green);
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.footer-legal {
    font-size: 0.75rem !important;
    color: var(--gray-600) !important;
}

/* ========================================
   23. ARTICLE PAGE
======================================== */
.article-page {
    padding-top: var(--nav-height);
}

.article-header {
    background: linear-gradient(135deg, var(--dark), #0f3a1a);
    padding: 80px 0 50px;
}

.article-header .container {
    max-width: 800px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1.3;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
}

.article-content p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.article-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.article-content blockquote {
    border-left: 4px solid var(--green);
    padding: 15px 20px;
    margin: 25px 0;
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--gray-600);
}

/* ========================================
   24. BACK TO TOP
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

/* ========================================
   24.5 ANIMATIONS
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   24.6 WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-family: var(--font-main);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ========================================
   24.7 COOKIE CONSENT BANNER
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10000;
    font-size: 0.85rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    max-width: 700px;
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--orange);
    text-decoration: underline;
}

.cookie-banner button {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-banner button:hover {
    background: var(--green-dark);
}

/* ========================================
   25. RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .elections-grid,
    .manifesto-grid,
    .values-grid,
    .news-grid,
    .constitution-grid,
    .leagues-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leader-primary {
        grid-column: 1 / -1;
    }

    .join-container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        margin: 0 auto;
    }

    .whatsapp-float { bottom: 80px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
    .whatsapp-float .whatsapp-tooltip { display: none; }
    .cookie-banner { flex-direction: column; text-align: center; padding: 15px; }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-cta {
        margin-left: 0 !important;
        text-align: center;
        justify-content: center;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 70px 0;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .elections-grid,
    .manifesto-grid,
    .values-grid,
    .news-grid,
    .leadership-grid,
    .constitution-grid,
    .leagues-grid {
        grid-template-columns: 1fr;
    }

    .documents-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .join-form-wrapper {
        padding: 25px 20px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .logo-tagline {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .documents-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 25px 20px;
    }
}

/* ========================================
   DONATION PAGE STYLES
======================================== */

/* Donor Type Toggle */
.donor-type-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
    background: var(--white);
    flex: 1;
    position: relative;
}

.donor-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.donor-type-option span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.donor-type-option span i {
    font-size: 1.2rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.donor-type-option:has(input:checked) {
    border-color: var(--green);
    background: rgba(27, 122, 61, 0.05);
    color: var(--green);
    box-shadow: 0 0 0 3px rgba(27, 122, 61, 0.1);
}

.donor-type-option:has(input:checked) span i {
    color: var(--green);
}

/* Amount Selection */
.amount-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 10px;
}

.amount-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1rem;
    background: var(--white);
}

.amount-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.amount-option:has(input:checked) {
    border-color: var(--orange);
    background: rgba(244, 121, 32, 0.06);
    color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244, 121, 32, 0.1);
}

#custom-amount {
    display: none;
    margin-top: 10px;
}

/* Banking Details Table */
.banking-details {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 25px;
    margin: 10px 0;
    border: 1px solid var(--gray-200);
}

.banking-details h4 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1rem;
}

.banking-table {
    width: 100%;
    border-collapse: collapse;
}

.banking-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.banking-table tr:last-child {
    border-bottom: none;
}

.banking-table td {
    padding: 10px 5px;
    font-size: 0.9rem;
}

.banking-table td:first-child {
    font-weight: 600;
    color: var(--gray-700);
    width: 40%;
}

.banking-table td:last-child {
    color: var(--dark);
}

/* File Upload */
.file-upload-wrapper {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.file-upload-wrapper:hover {
    border-color: var(--green);
    background: rgba(27, 122, 61, 0.02);
}

.file-upload-wrapper.has-file {
    border-color: var(--green);
    border-style: solid;
    background: rgba(27, 122, 61, 0.03);
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--gray-500);
}

.file-upload-label i {
    font-size: 2rem;
    color: var(--gray-400);
}

.file-upload-label span {
    font-size: 0.9rem;
}

.file-upload-label .file-types {
    font-size: 0.8rem;
    color: var(--gray-400);
}

#pop-upload {
    display: none;
}

.file-upload-preview {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.file-upload-preview i {
    color: var(--green);
    font-size: 1.3rem;
}

.file-upload-preview .file-name {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

.file-remove-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.7rem;
    transition: var(--transition);
}

.file-remove-btn:hover {
    background: var(--red-dark);
    transform: scale(1.1);
}

/* Donation Purpose */
.purpose-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.purpose-select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(27, 122, 61, 0.1);
}

/* Donation Success */
.donation-success {
    text-align: center;
    padding: 50px 20px;
}

.donation-success .success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease;
}

.donation-success .success-icon i {
    font-size: 2rem;
    color: var(--white);
}

.donation-success h3 {
    color: var(--green);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.donation-success p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 25px;
}

@media (max-width: 768px) {
    .donor-type-options {
        flex-direction: column;
    }

    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .banking-table td:first-child {
        width: 35%;
    }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
    .top-bar, .navbar, .footer, .back-to-top, .whatsapp-float, .cookie-banner,
    .page-header button, .breadcrumb { display: none !important; }
    .page-header { background: #fff !important; color: #000 !important; padding: 20px 0 !important; }
    .page-header h1, .page-header p { color: #000 !important; }
    .section { padding: 20px 0 !important; }
    .manifesto-card { break-inside: avoid; border: 1px solid #ddd; }
    body { font-size: 12pt; }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button ripple */
@keyframes ripple-anim {
    to { transform: scale(2.8); opacity: 0; }
}

/* Enhanced button hover */
.btn, .cta-btn, .submit-btn, .join-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
}
.btn:hover, .cta-btn:hover, .submit-btn:hover, .join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* Card hover lift */
.card:not(.no-hover):hover,
.benefit-card:hover,
.news-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.card, .benefit-card, .news-card, .feature-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

/* Leader card hover */
.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}
.leader-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Stat counter animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
[data-count] {
    animation: countUp 0.5s ease forwards;
}

/* Smooth section backgrounds */
section {
    transition: background 0.3s ease;
}

/* Hero overlay fade in */
.hero-content, .page-hero-content {
    animation: heroFadeIn 0.9s ease both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Nav active highlight */
.nav-active {
    color: var(--green) !important;
    font-weight: 700;
}

/* Focus ring improvement */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 3px;
    border-radius: 4px;
}
