/* ========================================
   MODERN DESIGN SYSTEM
   ======================================== */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #f59e0b;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-soft: 0 20px 40px -15px rgba(0,0,0,0.1);
    --shadow-strong: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 16px;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.4);
}

.btn-glow {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s;
    background: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-donate {
    background: var(--secondary) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
    border-radius: 3px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-modern {
    position: relative;
    min-height: 100vh;
    background: var(--light);
    overflow: hidden;
    padding: 140px 0 100px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-badge i {
    color: #f59e0b;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    color: var(--primary);
    font-size: 20px;
}

.trust-item strong {
    display: block;
    font-size: 18px;
    color: var(--dark);
    line-height: 1;
    font-weight: 700;
}

.trust-item span {
    font-size: 13px;
    color: var(--gray);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    width: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hero-card.floating {
    animation: float 6s ease-in-out infinite;
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 28px;
}

.card-body h4 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--dark);
    font-weight: 700;
}

.card-body p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-2);
    border-radius: 4px;
}

.card-body small {
    color: var(--gray);
    font-size: 13px;
}

.stat-float {
    position: absolute;
    background: white;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    z-index: 20;
}

.stat-float i {
    font-size: 24px;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.stat-float strong {
    display: block;
    font-size: 22px;
    color: var(--dark);
    line-height: 1;
    font-weight: 800;
}

.stat-float span {
    color: var(--gray);
    font-size: 13px;
}

.stat-float-1 {
    top: 15%;
    right: 0;
    animation: float 5s ease-in-out infinite 1s;
}

.stat-float-2 {
    bottom: 15%;
    left: 0;
    animation: float 5s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ========================================
   IMPACT SECTION (BENTO GRID)
   ======================================== */

.impact-modern {
    padding: 120px 0;
    background: white;
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header-center h2 {
    font-size: 48px;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--light);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(99, 102, 241, 0.2);
}

.pillar-card.large {
    grid-row: span 2;
    background: var(--gradient-1);
    color: white;
}

.pillar-card.large h3,
.pillar-card.large p {
    color: white;
}

.pillar-card.wide {
    grid-column: span 2;
    background: var(--dark);
    color: white;
    justify-content: center;
}

.pillar-card.wide h3,
.pillar-card.wide p {
    color: white;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.pillar-icon.education {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.pillar-icon.health {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.pillar-icon.women {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.pillar-icon.rural {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.pillar-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.pillar-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 15px;
}

.pillar-stat {
    margin-top: auto;
    padding-top: 32px;
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    color: white;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    margin-top: 24px;
    font-weight: 600;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 16px;
}

/* ========================================
   PROGRAMS SECTION
   ======================================== */

.programs-modern {
    padding: 120px 0;
    background: var(--light);
}

.programs-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.program-box {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.program-box:hover {
    transform: translateY(-10px);
}

.program-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.program-box:hover .program-image img {
    transform: scale(1.05);
}

.program-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.program-content {
    padding: 32px;
}

.program-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.program-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--gray);
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.program-meta i {
    color: var(--primary);
}

/* ========================================
   DONATION CTA SECTION
   ======================================== */

.donation-modern {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.donation-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 40px;
}

.quick-amounts {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.quick-amount {
    padding: 16px 32px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.quick-amount:hover,
.quick-amount.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.payment-methods {
    margin-top: 32px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 24px;
    color: rgba(255,255,255,0.8);
}

/* ========================================
   FOOTER
   ======================================== */

.footer-modern {
    background: var(--dark);
    color: white;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: white;
    font-weight: 700;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* ========================================
   PAGE HEADERS
   ======================================== */

.page-header {
    background: var(--gradient-1);
    padding: 160px 0 80px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* ========================================
   DONATION PAGE STYLES
   ======================================== */

.donation-section {
    padding: 60px 0;
    background: var(--light);
    min-height: 100vh;
}

.donation-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.donation-form-container {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.progress-steps:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-light);
    z-index: 0;
}

.step {
    background: var(--gray-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray);
    position: relative;
    z-index: 1;
    font-size: 14px;
}

.step.active {
    background: var(--primary);
    color: white;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    margin-bottom: 28px;
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
}

.program-select {
    margin-bottom: 24px;
}

.program-description {
    margin-top: 12px;
    padding: 16px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    font-size: 14px;
    color: var(--primary-dark);
    border-left: 4px solid var(--primary);
}

/* Modern Donation Cards */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.amount-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    position: relative;
    overflow: hidden;
}

.amount-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: background 0.3s;
}

.amount-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.2);
}

.amount-card.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.amount-card.active::before {
    background: var(--primary);
}

.amount-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
    background: rgba(99, 102, 241, 0.1);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.amount-card .amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin: 8px 0;
    line-height: 1;
}

.amount-card .impact {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.4;
}

.custom-amount {
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.donation-type {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.donation-type label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark);
}

/* Sidebar */
.donation-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.info-card h4 {
    margin-bottom: 16px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 10px 0;
    color: var(--gray);
    padding-left: 28px;
    position: relative;
    font-size: 14px;
}

.info-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 16px;
}

.breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.break-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray);
}

.break-item .color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.trust-badges .badges {
    display: flex;
    gap: 20px;
    justify-content: space-around;
}

.badge {
    text-align: center;
}

.badge i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.badge span {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
}

/* ========================================
   FORM ELEMENTS
   ======================================== */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray);
}

.form-buttons {
    display: flex;
    gap: 16px;
}

.payment-methods {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-method {
    flex: 1;
    padding: 20px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.payment-method.active,
.payment-method:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.payment-method i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
    color: var(--primary);
}

.order-summary {
    background: var(--light);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.order-summary h4 {
    margin-bottom: 16px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 14px;
}

.summary-row.total {
    border-top: 2px solid var(--gray-light);
    padding-top: 12px;
    font-weight: 700;
    color: var(--dark);
    font-size: 18px;
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--success);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.btn-pay {
    background: var(--success);
    font-size: 18px;
    padding: 16px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta-group,
    .trust-indicators {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .pillar-card.large,
    .pillar-card.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .programs-slider {
        grid-template-columns: 1fr;
    }
    
    .donation-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .amount-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px 0;
        transition: 0.3s;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header-center h2 {
        font-size: 32px;
    }
    
    .quick-amounts {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-amount {
        width: 100%;
        max-width: 200px;
    }
}

/* ========================================
   PROGRAMS PAGE - MODERN STYLES
   ======================================== */

.programs-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.programs-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.programs-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.programs-hero .lead {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 48px;
    line-height: 1.6;
}

.impact-stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.impact-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 24px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.stat-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-icon-box.education-box {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.stat-icon-box.health-box {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.stat-icon-box.women-box {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.stat-number-lg {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label-lg {
    font-size: 14px;
    color: var(--gray);
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite 2s;
}

/* Featured Program Section */
.featured-program {
    padding: 100px 0;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.2;
}

.featured-content {
    padding: 20px 0;
}

.program-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.program-desc {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.program-features {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--success);
    font-size: 20px;
}

.funding-progress {
    background: var(--light);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
}

.progress-header .raised {
    color: var(--primary);
}

.progress-bar-modern {
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill-modern {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 5px;
    transition: width 1s ease;
}

.progress-text {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.donation-tiers h4 {
    margin-bottom: 16px;
    color: var(--dark);
    font-size: 16px;
}

.tier-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tier-btn {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    text-align: center;
    min-width: 100px;
}

.tier-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.tier-btn.featured-tier {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    position: relative;
}

.tier-btn.featured-tier::after {
    content: 'Popular';
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary);
    color: white;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.tier-btn .amount {
    font-size: 20px;
    font-weight: 800;
    display: block;
}

.tier-btn .tier-impact {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
}

/* Programs Grid Section */
.programs-grid-section {
    padding: 100px 0;
    background: var(--light);
}

.programs-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.bento-card:hover {
    transform: translateY(-5px);
}

.bento-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.bento-card:hover .bento-image img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(99, 102, 241, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.pink-overlay {
    background: linear-gradient(to top, rgba(236, 72, 153, 0.9), transparent);
}

.bento-card:hover .bento-overlay {
    opacity: 1;
}

.bento-stats {
    display: flex;
    gap: 20px;
    color: white;
}

.bento-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.bento-content {
    padding: 32px;
}

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.health-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.women-icon {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.bento-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.bento-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.impact-list-compact {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-light);
}

.impact-item {
    display: flex;
    flex-direction: column;
}

.impact-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.impact-text {
    font-size: 13px;
    color: var(--gray);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.skill-tag {
    background: rgba(236, 72, 153, 0.1);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Wide Rural Card */
.wide-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.bento-content-horizontal {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-icon-large {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.rural-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.bento-text-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.rural-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0;
}

.rural-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--gray);
}

.rural-stat i {
    font-size: 24px;
    color: #10b981;
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.rural-stat strong {
    display: block;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

.rural-stat span {
    font-size: 14px;
}

.bento-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: white;
}

.stories-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.story-card {
    background: var(--light);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 32px;
    position: relative;
}

.story-quote {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.story-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.story-author strong {
    display: block;
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 4px;
}

.story-author span {
    font-size: 13px;
    color: var(--gray);
}

/* Programs CTA */
.programs-cta {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.programs-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-box-modern {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box-modern h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-box-modern p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 968px) {
    .programs-hero h1 {
        font-size: 36px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-image img {
        height: 300px;
    }
    
    .programs-bento {
        grid-template-columns: 1fr;
    }
    
    .wide-card {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .bento-image-side {
        display: none;
    }
    
    .stories-carousel {
        grid-template-columns: 1fr;
    }
    
    .impact-stats-row {
        flex-direction: column;
        align-items: center;
    }
    
    .impact-stat-item {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   CONTACT PAGE - MODERN STYLES
   ======================================== */

.contact-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-hero .lead {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section Layout */
.contact-section-modern {
    padding: 80px 0;
    background: white;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Info Cards */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-large {
    background: var(--light);
    padding: 32px;
    border-radius: 20px;
    transition: transform 0.3s;
}

.info-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.info-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.info-icon-box.call-box {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.info-icon-box.email-box {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.info-card-large h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.info-card-large p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-link {
    display: block;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary);
}

.link-with-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s;
}

.link-with-arrow:hover {
    gap: 12px;
}

/* Social Box */
.social-connect-box {
    background: var(--dark);
    padding: 28px;
    border-radius: 20px;
    color: white;
}

.social-connect-box h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.social-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-btn.facebook:hover { background: #1877f2; }
.social-btn.twitter:hover { background: #1da1f2; }
.social-btn.instagram:hover { background: #e4405f; }
.social-btn.linkedin:hover { background: #0077b5; }
.social-btn.youtube:hover { background: #ff0000; }

/* Right Side - Form */
.form-container-modern {
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.form-header {
    margin-bottom: 32px;
    text-align: center;
}

.form-header h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.form-header p {
    color: var(--gray);
    font-size: 15px;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modern label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-control-modern {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
    background: white;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-control-modern::placeholder {
    color: #94a3b8;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
}

select.form-control-modern {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.btn-submit-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit-modern:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.5);
}

.btn-submit-modern i {
    transition: transform 0.3s;
}

.btn-submit-modern:hover i {
    transform: translateX(4px);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-note i {
    color: var(--success);
}

/* Map Section */
.map-section-modern {
    position: relative;
    line-height: 0;
}

.map-section-modern iframe {
    width: 100%;
    height: 400px;
}

.map-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-strong);
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.location-badge i {
    font-size: 24px;
    color: var(--primary);
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.location-badge strong {
    display: block;
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 4px;
}

.location-badge span {
    color: var(--gray);
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.faq-item h4 i {
    color: var(--primary);
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 15px;
    padding-left: 52px;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side {
        order: 2;
    }
    
    .contact-form-side {
        order: 1;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .map-overlay-card {
        display: none;
    }
}

/* Fix overlapping map badge */
.map-overlay-card {
    display: none;
}

/* ========================================
   ABOUT PAGE - MODERN STYLES
   ======================================== */

.about-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 140px 0 100px;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.about-hero .lead {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-stats-bar {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(99, 102, 241, 0.1);
}

.h-stat {
    display: flex;
    flex-direction: column;
}

.h-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.h-label {
    font-size: 14px;
    color: var(--gray);
    margin-top: 4px;
}

.about-hero-visual {
    position: relative;
    height: 500px;
}

.main-image {
    width: 80%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: absolute;
    top: 0;
    right: 0;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary);
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.floating-card strong {
    display: block;
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
}

.floating-card span {
    font-size: 13px;
    color: var(--gray);
}

.card-1 {
    left: 0;
    bottom: 80px;
    animation-delay: 0s;
}

.card-2 {
    right: 20px;
    bottom: 0;
    animation-delay: 1s;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    padding: 48px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.mission-card {
    background: var(--primary);
    color: white;
}

.vision-card {
    background: var(--light);
    border: 2px solid #e2e8f0;
}

.mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.mission-card .mv-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.vision-card .mv-icon {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.mv-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.mission-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 24px;
}

.vision-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.mv-list {
    list-style: none;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
}

.mv-list i {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.vision-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #e2e8f0;
}

.v-stat {
    text-align: center;
}

.v-stat span {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.v-stat small {
    font-size: 14px;
    color: var(--gray);
}

/* Journey Timeline */
.journey-section {
    padding: 100px 0;
    background: var(--light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item.left {
    flex-direction: row;
}

.timeline-item.right {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: white;
    transform: translateY(-50%) rotate(45deg);
}

.timeline-item.left .timeline-content::after {
    right: -10px;
}

.timeline-item.right .timeline-content::after {
    left: -10px;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-dot.highlight {
    background: var(--primary);
    width: 32px;
    height: 32px;
    box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.2);
}

.timeline-item.future .timeline-content {
    background: var(--dark);
    color: white;
}

.timeline-item.future .timeline-content::after {
    background: var(--dark);
}

.year {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-item.future .year {
    background: rgba(255,255,255,0.2);
    color: white;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.timeline-item.future p {
    color: rgba(255,255,255,0.8);
}

/* Impact Numbers */
.impact-numbers-section {
    padding: 100px 0;
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.impact-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--dark);
}

.impact-header p {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.section-tag.light {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.impact-number-card {
    background: var(--light);
    padding: 32px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s;
}

.impact-number-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.icon-circle.edu {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.icon-circle.health {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.icon-circle.women {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.icon-circle.rural {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.number-content {
    display: flex;
    flex-direction: column;
}

.big-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.number-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.number-sublabel {
    font-size: 13px;
    color: var(--gray);
}

/* Team Section */
.team-section-modern {
    padding: 100px 0;
    background: var(--light);
}

.team-section-modern .subtitle {
    color: var(--gray);
    margin-top: 16px;
    font-size: 18px;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.team-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.team-card-modern:hover {
    transform: translateY(-10px);
}

.team-image-modern {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-card-modern:hover .team-image-modern img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: bottom 0.3s;
}

.team-card-modern:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
}

.team-info-modern {
    padding: 28px;
}

.team-info-modern h3 {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--dark);
    font-weight: 700;
}

.role {
    display: block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-info-modern p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Certifications */
.certifications-section {
    padding: 100px 0;
    background: white;
}

.cert-box {
    background: var(--dark);
    border-radius: 32px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cert-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
}

.cert-content {
    position: relative;
    z-index: 1;
    color: white;
}

.cert-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
}

.cert-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cert-badges-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.cert-badge-large {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.3s;
}

.cert-badge-large:hover {
    background: rgba(255,255,255,0.2);
}

.cert-badge-large i {
    font-size: 28px;
    color: var(--accent);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.cert-badge-large strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cert-badge-large span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.cert-image {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-box h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content-box p {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 968px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-hero-visual {
        display: none;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-content::after {
        display: none;
    }
    
    .timeline-dot {
        left: 30px;
        transform: none;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-cards {
        grid-template-columns: 1fr;
    }
    
    .team-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .cert-image {
        display: none;
    }
    
    .cert-badges-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .team-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .hero-stats-bar {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   LIVE ACTIVITY FEED
   ======================================== */

.live-activity {
    margin-top: 60px;
    background: white;
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: var(--shadow-soft);
    border: 2px solid #f1f5f9;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.live-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 14px;
    color: var(--dark);
    animation: slideIn 0.5s ease;
}

.activity-item i {
    color: var(--primary);
    font-size: 16px;
    width: 32px;
    height: 32px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.activity-item small {
    margin-left: auto;
    color: var(--gray);
    font-size: 12px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for number changes */
.big-number {
    transition: all 0.3s ease;
}

/* ========================================
   ENHANCED LIVE ACTIVITY FEED
   ======================================== */

.live-activity {
    margin-top: 60px;
    background: white;
    border-radius: 24px;
    padding: 28px 32px;
    box-shadow: var(--shadow-soft);
    border: 2px solid #f1f5f9;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.live-dot::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 14px;
    font-size: 15px;
    color: var(--dark);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s;
}

.activity-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

.activity-item:hover::before {
    opacity: 1;
}

.activity-item i {
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s;
    background: rgba(99, 102, 241, 0.1);
}

.activity-item:hover i {
    transform: scale(1.15) rotate(5deg);
}

.activity-item span {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.activity-item small {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Slide in animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth number transitions */
.big-number {
    transition: all 0.3s ease;
    display: inline-block;
}

/* Pulse animation for live indicator */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Mobile responsiveness for activity feed */
@media (max-width: 640px) {
    .activity-item {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .activity-item i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .activity-item small {
        font-size: 11px;
        padding: 3px 8px;
    }
}