/*==================================================
FORKAT FOUNDATION - AWARD-WINNING DESIGN
Version: 10.0 | All 10 Bonuses Included
==================================================*/

/* ==========================================
   ROOT VARIABLES
   ========================================== */

:root {
    --gold: #C49A6C;
    --gold-light: #D4B08C;
    --gold-gradient: linear-gradient(135deg, #C49A6C 0%, #D4B08C 50%, #E8C99B 100%);
    --dark-blue: #0A2A4A;
    --dark-blue-light: #1A4A7A;
    --dark-blue-gradient: linear-gradient(135deg, #0A2A4A 0%, #1A4A7A 50%, #2A6A9A 100%);
    --urgent-red: #C0392B;
    --urgent-gradient: linear-gradient(135deg, #C0392B 0%, #E74C3C 50%, #F1948A 100%);
    --success-green: #27AE60;
    --success-gradient: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
}

/* ==========================================
   RESET & BASE
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #FFFFFF;
    color: #4A4642;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: #1A1614;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 600;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C49A6C;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    margin-bottom: 14px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #8A857F;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary {
    background: linear-gradient(135deg, #0A2A4A 0%, #1A4A7A 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(10, 42, 74, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(10, 42, 74, 0.35);
}

.btn-secondary {
    background: linear-gradient(135deg, #C49A6C 0%, #D4B08C 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(196, 154, 108, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(196, 154, 108, 0.4);
}

.btn-outline {
    background: transparent;
    color: #0A2A4A;
    border: 2px solid #0A2A4A;
}

.btn-outline:hover {
    background: #0A2A4A;
    color: #FFFFFF;
    transform: translateY(-4px);
}

.btn-white {
    background: #FFFFFF;
    color: #0A2A4A;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ==========================================
   ANNOUNCEMENT BAR
   ========================================== */

.announcement-bar {
    background: #061A2A;
    color: #FFFFFF;
    padding: 8px 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 400;
}

/* ==========================================
   NEWS TICKER BAR
   ========================================== */

.news-ticker-bar {
    background: var(--dark-blue);
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 2px solid var(--gold);
}

.news-ticker-bar .ticker-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: tickerScroll 25s linear infinite;
    white-space: nowrap;
}

.news-ticker-bar .ticker-content span {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-ticker-bar .ticker-content .ticker-highlight {
    color: var(--gold);
    font-weight: 700;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ==========================================
   NAVBAR
   ========================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #0A2A4A;
}

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #4A4642;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0A2A4A;
}

.nav-links a.active {
    color: #0A2A4A;
    font-weight: 600;
}

.donate-btn {
    background: linear-gradient(135deg, #C49A6C 0%, #D4B08C 100%) !important;
    color: #FFFFFF !important;
    padding: 10px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 20px rgba(196, 154, 108, 0.3) !important;
}

.donate-btn:hover {
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 8px 35px rgba(196, 154, 108, 0.4) !important;
}

#darkToggle {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #F0EDE8;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#darkToggle:hover {
    transform: rotate(180deg) scale(1.08);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #1A1614;
    padding: 8px;
}

/* ==========================================
   LANGUAGE SWITCHER
   ========================================== */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
}

.lang-btn {
    padding: 6px 14px;
    border: 2px solid transparent;
    border-radius: 50px;
    background: transparent;
    color: #8A857F;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lang-btn:hover {
    color: #0A2A4A;
    background: #F8F6F3;
}

.lang-btn.active {
    border-color: #C49A6C;
    background: #C49A6C;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(196, 154, 108, 0.3);
}

body.dark .lang-btn {
    color: #94A3B8;
}
body.dark .lang-btn:hover {
    color: #FFFFFF;
    background: #1E293B;
}
body.dark .lang-btn.active {
    border-color: #C49A6C;
    background: #C49A6C;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .language-switcher {
        margin: 8px 0 0 0;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .lang-btn {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}

/* ==========================================
   HERO VIDEO SLIDESHOW
   ========================================== */

.hero-slideshow {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    background: #0A2A4A;
}

.slideshow-container {
    position: relative;
    width: 100%;
    min-height: 90vh;
}

.slide {
    display: none;
    width: 100%;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide.active {
    display: block;
    animation: heroFade 1.2s ease;
}

.slide video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

@keyframes heroFade {
    0% {
        opacity: 0;
        transform: scale(1.04);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 42, 74, 0.7) 0%, rgba(10, 42, 74, 0.2) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 100px 0;
}

.hero-content {
    max-width: 600px;
    color: #FFFFFF;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.hero-content h1 {
    color: #FFFFFF;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 14px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.stat-box h2 {
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 2px;
}

.stat-box span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Hero Navigation */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.dot.active {
    background: #FFFFFF;
    transform: scale(1.3);
    border-color: #FFFFFF;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10px;
    width: 5px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 50px;
    transform: translateX(-50%);
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 18px);
    }
}

/* ==========================================
   THERMOMETER SECTION
   ========================================== */

.thermometer-section {
    padding: 60px 0;
    background: #F8F6F3;
}

.thermometer-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thermometer-wrapper h3 {
    font-size: 1.5rem;
    color: #0A2A4A;
    margin-bottom: 16px;
}

.thermometer {
    width: 100%;
    height: 24px;
    background: #E5E0D8;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1);
}

.thermometer-fill {
    height: 100%;
    background: var(--urgent-gradient);
    border-radius: 50px;
    transition: width 1.5s ease;
    width: 0%;
    position: relative;
}

.thermometer-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.thermometer-text {
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A2A4A;
}

.thermometer-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #8A857F;
}

.thermometer-stats span {
    font-weight: 600;
}

/* ==========================================
   IMPACT CALCULATOR
   ========================================== */

.impact-calculator {
    padding: 80px 0;
    background: #FFFFFF;
}

.calculator-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #F8F6F3;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(10, 42, 74, 0.06);
}

.calculator-wrapper h3 {
    font-size: 1.6rem;
    color: #0A2A4A;
    margin-bottom: 8px;
}

.calculator-wrapper p {
    color: #8A857F;
    margin-bottom: 24px;
}

.calculator-slider {
    position: relative;
    margin-bottom: 20px;
}

.calculator-slider input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #E5E0D8;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.calculator-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold-gradient);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(196, 154, 108, 0.3);
    transition: all 0.3s ease;
}

.calculator-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calculator-value {
    font-size: 2.4rem;
    font-weight: 900;
    color: #0A2A4A;
    margin-top: 8px;
}

.calculator-result {
    font-size: 1.1rem;
    color: #4A4642;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 12px;
    margin-top: 8px;
    border: 1px solid #E5E0D8;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   VIDEO WALL
   ========================================== */

.video-wall {
    padding: 80px 0;
    background: #F8F6F3;
}

.video-wall-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-wall-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 42, 74, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #000;
    aspect-ratio: 16/9;
}

.video-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10, 42, 74, 0.15);
}

.video-wall-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   MAP SECTION
   ========================================== */

.map-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 42, 74, 0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-premium {
    padding: 100px 0;
    background: #FFFFFF;
}

.about-premium .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-premium .about-grid.reverse {
    direction: rtl;
}

.about-premium .about-grid.reverse .about-content {
    direction: ltr;
}

.about-premium .about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10, 42, 74, 0.12);
}

.about-premium .about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-premium .about-image:hover img {
    transform: scale(1.03);
}

.about-premium .about-image .floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #FFFFFF;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(10, 42, 74, 0.15);
    text-align: center;
}

.about-premium .about-image .floating-card h3 {
    font-size: 2rem;
    color: #0A2A4A;
    font-weight: 900;
    margin-bottom: 2px;
}

.about-premium .about-image .floating-card span {
    color: #8A857F;
    font-size: 0.85rem;
    font-weight: 500;
}

.about-premium .about-content .about-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #F8F6F3;
    color: #C49A6C;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-premium .about-content h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    color: #0A2A4A;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.about-premium .about-content p {
    color: #8A857F;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.about-premium .about-content .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin: 24px 0 32px;
}

.about-premium .about-content .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #4A4642;
}

.about-premium .about-content .feature-list li::before {
    content: '✓';
    color: #C49A6C;
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .about-premium .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-premium .about-grid.reverse {
        direction: ltr;
    }
    .about-premium .about-image img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .about-premium .about-content .feature-list {
        grid-template-columns: 1fr;
    }
    .about-premium .about-image .floating-card {
        bottom: -10px;
        right: -10px;
        padding: 14px 20px;
    }
    .about-premium .about-image .floating-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .about-premium .about-image img {
        height: 240px;
    }
}

/* ==========================================
   PROGRAMS SECTION
   ========================================== */

.programs-premium {
    padding: 100px 0;
    background: #F8F6F3;
}

.programs-premium .programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.programs-premium .program-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(10, 42, 74, 0.04);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.programs-premium .program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.programs-premium .program-card:hover::before {
    opacity: 1;
}

.programs-premium .program-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 30px 80px rgba(10, 42, 74, 0.12);
}

.programs-premium .program-card .program-icon {
    font-size: 3.2rem;
    display: block;
    margin-bottom: 18px;
    transition: transform 0.5s ease;
}

.programs-premium .program-card:hover .program-icon {
    transform: scale(1.15) rotate(-5deg);
}

.programs-premium .program-card h3 {
    font-size: 1.2rem;
    color: #0A2A4A;
    margin-bottom: 10px;
}

.programs-premium .program-card p {
    color: #8A857F;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.programs-premium .program-card .btn-outline {
    color: #0A2A4A;
    border: 2px solid #E5E0D8;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.programs-premium .program-card .btn-outline:hover {
    background: var(--gold-gradient);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-4px);
}

@media (max-width: 1200px) {
    .programs-premium .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-premium .programs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==========================================
   IMPACT SECTION
   ========================================== */

.impact-premium {
    padding: 100px 0;
    background: var(--dark-blue-gradient);
    position: relative;
    overflow: hidden;
}

.impact-premium::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    animation: blobFloat 25s infinite alternate;
}

.impact-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 50%;
    animation: blobFloat 30s infinite alternate-reverse;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(80px, 40px) scale(1.2);
    }
}

.impact-premium .section-title .section-label {
    color: #E8C99B;
}

.impact-premium .section-title h2 {
    color: #FFFFFF;
}

.impact-premium .section-title p {
    color: rgba(255, 255, 255, 0.6);
}

.impact-premium .impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.impact-premium .impact-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #FFFFFF;
}

.impact-premium .impact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.impact-premium .impact-card h2 {
    font-size: 3.2rem;
    color: #FFFFFF;
    font-weight: 900;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.impact-premium .impact-card h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.impact-premium .impact-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .impact-premium .impact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .impact-premium .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials-premium {
    padding: 100px 0;
    background: #FFFFFF;
}

.testimonials-premium .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonials-premium .testimonial-card {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(10, 42, 74, 0.04);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
}

.testimonials-premium .testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: #C49A6C;
    opacity: 0.06;
    position: absolute;
    top: 10px;
    left: 24px;
    font-family: Georgia, serif;
}

.testimonials-premium .testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(10, 42, 74, 0.12);
}

.testimonials-premium .testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid var(--gold-gradient);
    transition: transform 0.5s ease;
}

.testimonials-premium .testimonial-card:hover img {
    transform: scale(1.05) rotate(-3deg);
}

.testimonials-premium .testimonial-card p {
    font-style: italic;
    color: #4A4642;
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 1rem;
}

.testimonials-premium .testimonial-card h4 {
    font-size: 1.05rem;
    color: #0A2A4A;
    margin-bottom: 2px;
}

.testimonials-premium .testimonial-card span {
    color: #8A857F;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .testimonials-premium .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-premium .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PARTNER SCROLL
   ========================================== */

.partner-scroll {
    padding: 60px 0;
    background: #F8F6F3;
    overflow: hidden;
}

.partner-track {
    display: flex;
    gap: 40px;
    animation: partnerScroll 25s linear infinite;
    width: max-content;
}

.partner-track .partner-item {
    padding: 20px 30px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(10, 42, 74, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.partner-track .partner-item:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.06);
}

.partner-track .partner-item img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

@keyframes partnerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-premium {
    padding: 100px 0;
    background: var(--gold-gradient);
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    animation: blobFloat 20s infinite alternate;
}

.cta-premium .cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-premium .cta-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-premium h2 {
    color: #FFFFFF;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.cta-premium p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.9;
}

.cta-premium .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-premium .cta-buttons .btn-primary {
    background: #FFFFFF;
    color: #0A2A4A;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.cta-premium .cta-buttons .btn-primary:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.15);
}

.cta-premium .cta-buttons .btn-white {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-premium .cta-buttons .btn-white:hover {
    background: #FFFFFF;
    color: #0A2A4A;
    transform: translateY(-6px) scale(1.03);
}

@media (max-width: 768px) {
    .cta-premium .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-premium .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ==========================================
   NEWSLETTER
   ========================================== */

.newsletter-premium {
    padding: 80px 0;
    background: var(--dark-blue-gradient);
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-premium::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    animation: blobFloat 25s infinite alternate;
}

.newsletter-premium .newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-premium .newsletter-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.newsletter-premium h2 {
    color: #FFFFFF;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 14px;
}

.newsletter-premium p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 28px;
}

.newsletter-premium .newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-premium .newsletter-form input {
    flex: 1;
    min-width: 260px;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.newsletter-premium .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-premium .newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

.newsletter-premium .newsletter-form .btn-secondary {
    background: var(--gold-gradient);
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.newsletter-premium .newsletter-form .btn-secondary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(196, 154, 108, 0.3);
}

@media (max-width: 768px) {
    .newsletter-premium .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-premium .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
    background: #061A2A;
    color: #FFFFFF;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.footer-logo h2 {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 800;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold-gradient);
    transform: translateY(-4px);
}

.footer-social a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-social a:hover img {
    opacity: 1;
}

.footer-column h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: #FFFFFF;
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact span img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-contact span {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

/* ==========================================
   FLOATING BUTTONS
   ========================================== */

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.35);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp:hover {
    transform: scale(1.1);
}

.whatsapp img {
    width: 28px;
    height: 28px;
}

#backToTop {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    box-shadow: 0 8px 30px rgba(196, 154, 108, 0.25);
    transition: all 0.3s ease;
    z-index: 99;
}

#backToTop:hover {
    transform: translateY(-4px) scale(1.06);
}

#progressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ==========================================
   STICKY CTA
   ========================================== */

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--gold-gradient);
    padding: 14px 28px;
    border-radius: 60px;
    box-shadow: 0 20px 60px rgba(196, 154, 108, 0.4);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: pulseUrgency 2s infinite;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
}

.sticky-cta:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow: 0 30px 80px rgba(196, 154, 108, 0.5);
}

.sticky-cta .cta-icon {
    font-size: 1.4rem;
}

.sticky-cta .cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sticky-cta .cta-text .small {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.8;
}

@keyframes pulseUrgency {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 16px;
        right: 16px;
        padding: 10px 18px;
        font-size: 0.8rem;
        border-radius: 50px;
    }
    .sticky-cta .cta-text .small {
        font-size: 0.55rem;
    }
}

/* ==========================================
   AI CHAT WIDGET
   ========================================== */

.ai-chat-widget {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 999;
    background: var(--dark-blue);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 320px;
    max-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.ai-chat-widget.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.ai-chat-widget .chat-header {
    background: var(--gold-gradient);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.ai-chat-widget .chat-header h4 {
    color: #FFFFFF;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-chat-widget .chat-header .chat-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ai-chat-widget .chat-header .chat-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.ai-chat-widget .chat-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
    background: #FFFFFF;
}

.ai-chat-widget .chat-body .chat-message {
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.6;
}

.ai-chat-widget .chat-body .chat-message.bot {
    background: #F8F6F3;
    color: #4A4642;
    border-bottom-left-radius: 4px;
}

.ai-chat-widget .chat-body .chat-message.user {
    background: var(--gold-gradient);
    color: #FFFFFF;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.ai-chat-widget .chat-footer {
    padding: 12px 16px;
    background: #FFFFFF;
    border-top: 1px solid #E5E0D8;
    display: flex;
    gap: 10px;
}

.ai-chat-widget .chat-footer input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #E5E0D8;
    border-radius: 50px;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

.ai-chat-widget .chat-footer input:focus {
    border-color: #C49A6C;
}

.ai-chat-widget .chat-footer button {
    padding: 10px 18px;
    border: none;
    border-radius: 50px;
    background: var(--gold-gradient);
    color: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-chat-widget .chat-footer button:hover {
    transform: scale(1.05);
}

.chat-toggle-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #FFFFFF;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 8px 35px rgba(196, 154, 108, 0.4);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseUrgency 2s infinite;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 50px rgba(196, 154, 108, 0.5);
}

body.dark .ai-chat-widget .chat-body {
    background: #1E293B;
}
body.dark .ai-chat-widget .chat-body .chat-message.bot {
    background: #0F172A;
    color: #CBD5E1;
}
body.dark .ai-chat-widget .chat-footer {
    background: #1E293B;
    border-top-color: #334155;
}
body.dark .ai-chat-widget .chat-footer input {
    background: #0F172A;
    border-color: #334155;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .ai-chat-widget {
        width: 280px;
        left: 15px;
        bottom: 90px;
    }
    .chat-toggle-btn {
        left: 15px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .ai-chat-widget {
        width: 220px;
        left: 8px;
        bottom: 70px;
        max-height: 400px;
    }
    .ai-chat-widget .chat-body {
        max-height: 200px;
        padding: 12px;
    }
    .chat-toggle-btn {
        left: 8px;
        bottom: 12px;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* ==========================================
   SUBSCRIBE POPUP
   ========================================== */

.subscribe-popup {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    padding: 40px 50px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    z-index: 99999;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.subscribe-popup.open {
    bottom: 20px;
}

.subscribe-popup .popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #8A857F;
    transition: all 0.3s ease;
}

.subscribe-popup .popup-close:hover {
    transform: rotate(90deg);
    color: #0A2A4A;
}

.subscribe-popup .popup-icon {
    font-size: 3rem;
    text-align: center;
    display: block;
    margin-bottom: 12px;
}

.subscribe-popup h3 {
    font-size: 1.4rem;
    color: #0A2A4A;
    text-align: center;
    margin-bottom: 8px;
}

.subscribe-popup p {
    color: #8A857F;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.subscribe-popup form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.subscribe-popup form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #E5E0D8;
    border-radius: 50px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.subscribe-popup form input:focus {
    border-color: #C49A6C;
}

.subscribe-popup form button {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    background: var(--gold-gradient);
    color: #FFFFFF;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-popup form button:hover {
    transform: scale(1.05);
}

body.dark .subscribe-popup {
    background: #1E293B;
}
body.dark .subscribe-popup h3 {
    color: #F1F5F9;
}
body.dark .subscribe-popup p {
    color: #CBD5E1;
}
body.dark .subscribe-popup form input {
    background: #0F172A;
    border-color: #334155;
    color: #FFFFFF;
}
body.dark .subscribe-popup .popup-close {
    color: #94A3B8;
}
body.dark .subscribe-popup .popup-close:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .subscribe-popup {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .subscribe-popup {
        padding: 24px 18px;
    }
    .subscribe-popup form {
        flex-direction: column;
    }
    .subscribe-popup form input {
        min-width: auto;
        width: 100%;
    }
}

/* ==========================================
   EXIT-INTENT POPUP
   ========================================== */

.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

.exit-popup.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

.exit-popup .exit-content {
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.exit-popup .exit-content .exit-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #8A857F;
    transition: all 0.3s ease;
}

.exit-popup .exit-content .exit-close:hover {
    transform: rotate(90deg);
    color: #0A2A4A;
}

.exit-popup .exit-content .exit-icon {
    font-size: 3.6rem;
    display: block;
    margin-bottom: 12px;
}

.exit-popup .exit-content h3 {
    font-size: 1.6rem;
    color: #0A2A4A;
    margin-bottom: 8px;
}

.exit-popup .exit-content p {
    color: #8A857F;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.exit-popup .exit-content .exit-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.exit-popup .exit-content .exit-buttons .btn-primary {
    background: var(--gold-gradient);
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.exit-popup .exit-content .exit-buttons .btn-primary:hover {
    transform: scale(1.05);
}

.exit-popup .exit-content .exit-buttons .btn-secondary {
    background: transparent;
    color: #0A2A4A;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid #E5E0D8;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.exit-popup .exit-content .exit-buttons .btn-secondary:hover {
    border-color: #C49A6C;
}

body.dark .exit-popup .exit-content {
    background: #1E293B;
}
body.dark .exit-popup .exit-content h3 {
    color: #F1F5F9;
}
body.dark .exit-popup .exit-content p {
    color: #CBD5E1;
}
body.dark .exit-popup .exit-content .exit-buttons .btn-secondary {
    color: #F1F5F9;
    border-color: #334155;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .exit-popup .exit-content {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .exit-popup .exit-content {
        padding: 24px 18px;
    }
    .exit-popup .exit-content .exit-buttons {
        flex-direction: column;
    }
    .exit-popup .exit-content .exit-buttons .btn-primary,
    .exit-popup .exit-content .exit-buttons .btn-secondary {
        width: 100%;
    }
}

/* ==========================================
   SCROLL REVEAL
   ========================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   DARK MODE
   ========================================== */

body.dark {
    background: #0F172A;
    color: #94A3B8;
}

body.dark .navbar {
    background: rgba(15, 23, 42, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.04);
}

body.dark .nav-links a {
    color: #94A3B8;
}
body.dark .nav-links a:hover,
body.dark .nav-links a.active {
    color: #FFFFFF;
}

body.dark .section-title h2 {
    color: #FFFFFF;
}

body.dark .program-card,
body.dark .testimonial-card {
    background: #1E293B;
}
body.dark .program-card h3 {
    color: #FFFFFF;
}
body.dark .program-card p {
    color: #94A3B8;
}
body.dark .testimonial-card p {
    color: #CBD5E1;
}
body.dark .testimonial-card h4 {
    color: #FFFFFF;
}
body.dark .testimonial-card span {
    color: #94A3B8;
}
body.dark #darkToggle {
    background: #1E293B;
    color: #FFFFFF;
}
body.dark .menu-toggle {
    color: #FFFFFF;
}
body.dark .nav-links.mobile-open {
    background: #1E293B;
}
body.dark .about-premium .about-image .floating-card {
    background: #1E293B;
}
body.dark .about-premium .about-image .floating-card h3 {
    color: #FFFFFF;
}
body.dark .about-premium .about-image .floating-card span {
    color: #94A3B8;
}
body.dark .programs-premium {
    background: #0F172A;
}
body.dark .testimonials-premium {
    background: #0F172A;
}
body.dark .footer-grid p {
    color: #94A3B8;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 992px) {
    .hero-grid {
        text-align: center;
        padding: 80px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content p {
        margin: 0 auto 24px;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-arrow {
        padding: 10px 14px;
        font-size: 1rem;
    }

    .prev-arrow {
        left: 10px;
    }
    .next-arrow {
        right: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 12px;
        background: #FFFFFF;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(10, 42, 74, 0.12);
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        z-index: 100;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links a {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }

    .video-wall-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-box {
        padding: 12px 10px;
    }

    .stat-box h2 {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .video-wall-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper iframe {
        height: 220px;
    }

    .thermometer-stats {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .calculator-wrapper {
        padding: 24px;
    }

    .calculator-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-box h2 {
        font-size: 1.2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .slide-arrow {
        display: none;
    }

    .calculator-value {
        font-size: 1.5rem;
    }
}

/* ==========================================
   VISUAL IMPACT CALCULATOR — SPEECHLESS DESIGN
   ========================================== */

.impact-calculator {
    padding: 80px 0;
    background: #FFFFFF;
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(10, 42, 74, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.calculator-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

/* Slider */
.calculator-slider-wrapper {
    padding: 20px 0 30px;
}

.calculator-slider {
    position: relative;
    text-align: center;
}

.calculator-slider input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: #E5E0D8;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.calculator-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-gradient);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(196, 154, 108, 0.4);
    transition: all 0.3s ease;
    border: 3px solid #FFFFFF;
}

.calculator-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(196, 154, 108, 0.5);
}

.calculator-value {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0A2A4A;
    margin-top: 12px;
    letter-spacing: -0.02em;
}

/* Visual Impact Display */
.impact-visual-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #F8F6F3;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.impact-visual-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.impact-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.impact-visual-display:hover .impact-visual-image img {
    transform: scale(1.05);
}

.impact-visual-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 42, 74, 0.1) 0%, transparent 100%);
}

.impact-visual-content {
    padding: 30px 40px 30px 0;
}

.impact-badge {
    display: inline-block;
    padding: 4px 16px;
    background: var(--urgent-gradient);
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.impact-visual-content h3 {
    font-size: 1.4rem;
    color: #0A2A4A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.impact-visual-content p {
    color: #8A857F;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.impact-stats-mini {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.impact-stats-mini span {
    font-size: 0.8rem;
    color: #4A4642;
    background: #FFFFFF;
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #E5E0D8;
}

.impact-cta {
    padding: 12px 32px !important;
    font-size: 0.95rem !important;
}

/* Quick Amount Buttons */
.quick-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.quick-amount-btn {
    padding: 8px 20px;
    border: 2px solid #E5E0D8;
    border-radius: 50px;
    background: transparent;
    font-weight: 600;
    font-size: 0.85rem;
    color: #4A4642;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quick-amount-btn:hover {
    border-color: #C49A6C;
    background: #F8F6F3;
    transform: translateY(-2px);
}

.quick-amount-btn.active {
    border-color: #C49A6C;
    background: var(--gold-gradient);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(196, 154, 108, 0.3);
}

.quick-amount-btn.active:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 30px rgba(196, 154, 108, 0.4);
}

/* Dark Mode */
body.dark .calculator-wrapper {
    background: #1E293B;
}

body.dark .impact-visual-display {
    background: #0F172A;
}

body.dark .impact-visual-content h3 {
    color: #F1F5F9;
}

body.dark .impact-visual-content p {
    color: #CBD5E1;
}

body.dark .impact-stats-mini span {
    background: #1E293B;
    color: #F1F5F9;
    border-color: #334155;
}

body.dark .quick-amount-btn {
    color: #CBD5E1;
    border-color: #334155;
}

body.dark .quick-amount-btn:hover {
    border-color: #C49A6C;
    background: #1E293B;
}

body.dark .quick-amount-btn.active {
    background: var(--gold-gradient);
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 992px) {
    .impact-visual-display {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .impact-visual-image {
        height: 220px;
    }

    .impact-visual-content {
        padding: 24px 30px;
    }

    .calculator-wrapper {
        padding: 30px 24px;
    }

    .calculator-value {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .impact-visual-image {
        height: 180px;
    }

    .impact-visual-content h3 {
        font-size: 1.2rem;
    }

    .impact-stats-mini {
        gap: 10px;
    }

    .impact-stats-mini span {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .quick-amounts {
        gap: 6px;
    }

    .quick-amount-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .calculator-value {
        font-size: 1.8rem;
    }

    .calculator-wrapper {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .impact-visual-image {
        height: 160px;
    }

    .impact-visual-content {
        padding: 16px 20px;
    }

    .impact-visual-content h3 {
        font-size: 1rem;
    }

    .impact-cta {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   VIDEO WALL — SPEECHLESS LAYOUT
   ========================================== */

.video-wall-premium {
    padding: 100px 0;
    background: #F8F6F3;
}

.video-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(10, 42, 74, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(10, 42, 74, 0.12);
}

.video-row.reverse {
    direction: rtl;
}

.video-row.reverse .video-col-right {
    direction: ltr;
}

.video-col {
    position: relative;
}

.video-col-left {
    min-height: 350px;
    background: #000;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.video-wrapper .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
}

.video-wrapper .video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background: rgba(255, 255, 255, 0.25);
    border-color: #C49A6C;
    box-shadow: 0 0 40px rgba(196, 154, 108, 0.3);
}

.video-wrapper .video-play-btn.playing {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 42, 74, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.video-col-right {
    padding: 40px 50px 40px 0;
}

.video-row.reverse .video-col-right {
    padding: 40px 0 40px 50px;
}

.video-content .video-badge {
    display: inline-block;
    padding: 4px 16px;
    background: var(--gold-gradient);
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.video-content h3 {
    font-size: 1.6rem;
    color: #0A2A4A;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.video-content p {
    color: #8A857F;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.video-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.video-stats span {
    font-size: 0.8rem;
    color: #4A4642;
    background: #F8F6F3;
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 600;
}

.video-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-cta .btn {
    padding: 14px 32px !important;
    font-size: 0.95rem !important;
}

.video-impact {
    font-size: 0.85rem;
    color: #8A857F;
    font-weight: 500;
    font-style: italic;
}

/* Dark Mode */
body.dark .video-wall-premium {
    background: #0F172A;
}

body.dark .video-row {
    background: #1E293B;
    border-color: rgba(255, 255, 255, 0.04);
}

body.dark .video-content h3 {
    color: #F1F5F9;
}

body.dark .video-content p {
    color: #CBD5E1;
}

body.dark .video-stats span {
    background: #0F172A;
    color: #F1F5F9;
}

body.dark .video-impact {
    color: #94A3B8;
}

/* Responsive */
@media (max-width: 992px) {
    .video-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 40px;
    }

    .video-row.reverse {
        direction: ltr;
    }

    .video-col-right {
        padding: 30px 30px 40px !important;
    }

    .video-col-left {
        min-height: 250px;
    }

    .video-wrapper {
        min-height: 250px;
    }

    .video-wrapper video {
        min-height: 250px;
    }

    .video-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .video-wall-premium {
        padding: 60px 0;
    }

    .video-col-left {
        min-height: 200px;
    }

    .video-wrapper {
        min-height: 200px;
    }

    .video-wrapper video {
        min-height: 200px;
    }

    .video-wrapper .video-play-btn {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .video-col-right {
        padding: 20px 20px 30px !important;
    }

    .video-content h3 {
        font-size: 1.1rem;
    }

    .video-stats {
        gap: 10px;
    }

    .video-stats span {
        font-size: 0.7rem;
        padding: 3px 12px;
    }

    .video-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .video-cta .btn {
        width: 100%;
        text-align: center;
    }

    .video-impact {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .video-col-left {
        min-height: 160px;
    }

    .video-wrapper {
        min-height: 160px;
    }

    .video-wrapper video {
        min-height: 160px;
    }

    .video-wrapper .video-play-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .video-content h3 {
        font-size: 1rem;
    }

    .video-content p {
        font-size: 0.9rem;
    }
}