/* ============================================
   GREEN YEAR RESOLUTION - PREMIUM WEBSITE
   Modern, Engaging, Environmental Design
   ============================================ */

/* === CSS Variables === */
:root {
    /* Colors */
    --primary-dark: #0a0a0a;
    --secondary-dark: #121212;
    --surface-dark: #1a1a1a;
    --card-dark: #1e1e1e;
    --accent-green: #4CAF50;
    --accent-green-bright: #66BB6A;
    --accent-green-light: #81C784;
    --accent-green-glow: rgba(76, 175, 80, 0.4);
    --accent-teal: #26A69A;
    --accent-cyan: #00BCD4;
    --cta-red: #FF3B30;
    --cta-red-glow: rgba(255, 59, 48, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #707070;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(76, 175, 80, 0.4);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-blur: 20px;

    /* Gradients */
    --gradient-green: linear-gradient(135deg, #4CAF50 0%, #26A69A 50%, #00BCD4 100%);
    --gradient-green-subtle: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(0, 188, 212, 0.1));
    --gradient-dark: linear-gradient(180deg, #0a0a0a, #121212);
    --gradient-hero: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 50%, #0a0a0a 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(76, 175, 80, 0.3), transparent 70%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    --container-max: 1200px;
    --card-radius: 20px;
    --card-radius-small: 12px;
    --card-padding: 32px;

    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow-green: 0 0 40px rgba(76, 175, 80, 0.3), 0 0 80px rgba(76, 175, 80, 0.15);
    --shadow-glow-green-intense: 0 0 30px rgba(76, 175, 80, 0.5), 0 0 60px rgba(76, 175, 80, 0.3), 0 0 100px rgba(76, 175, 80, 0.15);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Smoother scrolling on iOS */
    -webkit-overflow-scrolling: touch;
    /* Lock horizontal scroll completely */
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-primary);
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Lock horizontal scroll and prevent drag */
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
    position: relative;
    /* Prevent overscroll bounce on mobile */
    overscroll-behavior: none;
    overscroll-behavior-x: none;
    /* Only allow vertical touch gestures */
    touch-action: pan-y;
}

/* Performance: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* === MOBILE: Aggressive Horizontal Lock === */
@media (max-width: 768px) {
    html {
        width: 100%;
        overflow-x: hidden;
    }

    body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    /* Constrain all containers */
    .main-wrapper,
    section,
    .container,
    header,
    footer,
    nav {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    /* Prevent any element from being wider than screen */
    * {
        max-width: 100%;
    }

    /* Allow images and svgs to scale down */
    img,
    svg,
    video {
        max-width: 100%;
        height: auto;
    }

    /* Fix huge text causing overflow */
    h1,
    h2,
    h3,
    .stat-number,
    .vision-text {
        word-break: break-word;
        hyphens: auto;
    }
}

/* === SPLASH SCREEN VFX === */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #0a0a0a;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.splash-bg {
    position: absolute;
    inset: 0;
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.splash-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splash-polluted {
    z-index: 1;
}

.splash-green {
    z-index: 2;
    opacity: 0;
    transform: scale(1.1);
}

.splash-green.active {
    opacity: 1;
    transform: scale(1);
}

/* Pollution Overlay - Haze Effect */
.pollution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(139, 90, 43, 0.3) 0%,
            rgba(100, 80, 60, 0.4) 50%,
            rgba(50, 40, 30, 0.6) 100%);
    mix-blend-mode: overlay;
}

/* Green Overlay - Fresh Effect */
.green-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(76, 175, 80, 0.1) 0%,
            rgba(0, 188, 212, 0.05) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 2s ease;
}

.splash-green.active .green-overlay {
    opacity: 1;
}

/* Smoke Particles Container */
.smoke-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Tree Particles Container */
.tree-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Leaf Particles Container */
.leaf-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Splash Content Overlay */
.splash-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

.splash-logo {
    height: 100px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 30px rgba(76, 175, 80, 0.6));
    animation: splashLogoPulse 2s ease-in-out infinite;
}

@keyframes splashLogoPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(76, 175, 80, 0.6));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(76, 175, 80, 0.9));
        transform: scale(1.02);
    }
}

.splash-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-shadow: 0 0 40px rgba(76, 175, 80, 0.3);
}

.splash-tagline {
    font-size: clamp(1rem, 4vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 48px;
    opacity: 0.9;
}

.splash-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: ctaBounce 1.5s ease-in-out infinite;
}

@keyframes ctaBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.tap-circle {
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.1);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.tap-circle:hover {
    background: rgba(76, 175, 80, 0.2);
    box-shadow: 0 0 50px rgba(76, 175, 80, 0.6);
    transform: scale(1.1);
}

.tap-icon {
    font-size: 32px;
}

.tap-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-green);
    font-weight: var(--font-weight-semibold);
}

/* VFX Layer */
.vfx-layer {
    position: absolute;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(76, 175, 80, 0.6) 0%,
            rgba(0, 188, 212, 0.4) 30%,
            transparent 70%);
    transform: scale(0);
    opacity: 0;
}

.ripple-effect.active {
    animation: rippleExpand 1.5s ease-out forwards;
}

@keyframes rippleExpand {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.flash-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(76, 175, 80, 0.6) 50%,
            rgba(0, 188, 212, 0.4) 100%);
    opacity: 0;
}

.flash-effect.active {
    animation: flashBurst 0.8s ease-out forwards;
}

@keyframes flashBurst {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
    }
}

/* Smoke Particle Animation */
.smoke-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(100, 100, 100, 0.8), transparent);
    border-radius: 50%;
    animation: smokeRise 8s ease-out infinite;
}

@keyframes smokeRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-200px) scale(2);
        opacity: 0.4;
    }

    100% {
        transform: translateY(-400px) scale(3);
        opacity: 0;
    }
}

/* Tree Growth Animation */
.tree-particle {
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 0;
    background: linear-gradient(180deg, #4CAF50, #2E7D32);
    border-radius: 50% 50% 0 0;
    transform-origin: bottom center;
    opacity: 0;
}

.tree-particle.grow {
    animation: treeGrow 2s ease-out forwards;
}

@keyframes treeGrow {
    0% {
        height: 0;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        height: 150px;
        opacity: 1;
    }
}

/* Leaf Particle Animation */
.leaf-particle {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    animation: leafFall 4s ease-in-out infinite;
}

@keyframes leafFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* === Premium Glass Card === */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--border-glow);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 28px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-normal);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-green);
    opacity: 0.5;
}

.navbar.scrolled {
    padding: 18px 0;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 100px;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.5));
}

.nav-logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 35px rgba(76, 175, 80, 0.8));
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-title {
    font-size: 15px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    color: var(--cta-red);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 2px solid var(--cta-red);
    border-radius: 8px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cta-red);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.nav-cta:hover {
    color: var(--text-primary);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--cta-red-glow);
}

.nav-cta:hover::before {
    opacity: 1;
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

/* === Nav Logo Glow (Mobile) === */
.nav-logo-glow {
    display: none;
    align-items: center;
    justify-content: center;
}

.nav-logo-glow img {
    height: 72px;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.6));
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-logo {
        display: none;
    }

    .nav-logo-glow {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-container {
        padding: 0 24px;
        justify-content: center;
    }
}

/* === Mobile Menu === */
.mobile-menu {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--secondary-dark);
    backdrop-filter: blur(20px);
    padding: 32px;
    display: none;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--accent-green);
    padding-left: 12px;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 15s ease-out;
    will-change: transform;
}

.hero:hover .hero-bg-image {
    transform: scale(1);
}

/* Parallax effect */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0.5;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 140px 40px 100px;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark);
    background: var(--gradient-green);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 40px;
    box-shadow: var(--shadow-glow-green);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: var(--shadow-glow-green);
    }

    50% {
        box-shadow: var(--shadow-glow-green-intense);
    }
}

.hero-title {
    margin-bottom: 32px;
}

.hero-title span {
    display: block;
    font-size: clamp(52px, 11vw, 84px);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(18px, 2.8vw, 22px);
    font-weight: var(--font-weight-light);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

@keyframes fadeInUpCentered {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeInUpCentered 1s ease forwards;
    animation-delay: 0.6s;
    z-index: 5;
    pointer-events: none;
}

.scroll-circle {
    width: 56px;
    height: 56px;
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed scrollBounce from here since it might conflict if not careful, 
       but actually scrollBounce is on the CHILD (.scroll-circle), so it's fine. 
       The parent .scroll-indicator moves into place, the child bounces. */
    animation: scrollBounce 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px var(--accent-green-glow);
    transition: all var(--transition-normal);
}

.scroll-circle:hover {
    background: rgba(76, 175, 80, 0.1);
    box-shadow: var(--shadow-glow-green);
}

.scroll-circle svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-green);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-green);
}

/* === Activity Header === */
.activity-header {
    background: var(--secondary-dark);
    padding: 28px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.activity-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.activity-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.activity-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.activity-partner {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(76, 175, 80, 0.5);
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.3));
}

.cta-button {
    padding: 14px 32px;
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    color: var(--cta-red);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 2px solid var(--cta-red);
    border-radius: 8px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cta-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.cta-button:hover {
    color: var(--text-primary);
    box-shadow: 0 0 30px var(--cta-red-glow);
}

.cta-button:hover::before {
    transform: scaleX(1);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* === Section Styles === */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark);
    background: var(--gradient-green);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
    box-shadow: var(--shadow-glow-green);
}

.section-badge.light {
    background: rgba(76, 175, 80, 0.15);
    color: var(--accent-green);
    box-shadow: none;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.section-title {
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: var(--font-weight-bold);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-title.centered {
    text-align: center;
}

.highlight {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === Vision Section === */
.vision-section {
    background: var(--primary-dark);
    overflow: hidden;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

@media (max-width: 900px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.vision-text {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.vision-text:last-child {
    margin-bottom: 0;
}

.image-container {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    cursor: pointer;
}

.image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-green-subtle);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

/* Hover for desktop */
.image-container:hover::before {
    opacity: 1;
}

/* Touch/Active for mobile */
.image-container:active::before,
.image-container.touched::before {
    opacity: 1;
}

.image-container img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-container:hover img,
.image-container:active img,
.image-container.touched img {
    transform: scale(1.08);
}

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

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.stat-card {
    padding: var(--card-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark);
    background: var(--gradient-green);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-glow-green);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-number {
    transform: scale(1.15);
    box-shadow: var(--shadow-glow-green-intense);
}

.stat-title {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* === Idea Section === */
.idea-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    text-align: center;
    position: relative;
}

.idea-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(100px);
}

.idea-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.idea-intro {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.idea-title {
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: var(--font-weight-medium);
    line-height: 1.35;
    margin-bottom: 28px;
}

.gradient-text-large {
    display: block;
    font-size: clamp(52px, 9vw, 80px);
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 16px;
    text-shadow: 0 0 80px rgba(76, 175, 80, 0.3);
}

.idea-desc {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
}

/* === Journey Section === */
.journey-section {
    background: var(--primary-dark);
    position: relative;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

/* Timeline connecting line */
.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-green), var(--accent-teal), var(--accent-cyan));
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    padding: 24px 0;
    opacity: 1 !important;
}

.timeline-item.visible {
    opacity: 1 !important;
}

.timeline-marker {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-glow-green);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15);
    box-shadow: var(--shadow-glow-green-intense);
}

.timeline-content {
    flex: 1;
    padding: var(--card-padding);
    transition: all var(--transition-normal);
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 10px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.timeline-item:hover .timeline-content {
    background: var(--glass-bg-hover);
    border-color: var(--border-glow);
    transform: translateX(8px);
}

.timeline-item.featured .timeline-marker {
    width: 60px;
    height: 60px;
    font-size: 17px;
}

.timeline-item.featured .timeline-content {
    background: rgba(76, 175, 80, 0.08);
    border-color: rgba(76, 175, 80, 0.25);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-marker {
        width: 44px;
        height: 44px;
        font-size: 13px;
    }
}

/* === Ambassadors Section === */
.ambassadors-section {
    background: var(--secondary-dark);
    overflow: hidden;
}

.ambassadors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 56px;
}

@media (max-width: 900px) {
    .ambassadors-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.ambassador-card {
    background: var(--card-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.ambassador-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.ambassador-card:hover {
    transform: translateY(-12px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-xl), var(--shadow-glow-green);
}

.ambassador-card:hover::before {
    opacity: 0.5;
}

.ambassador-card.featured {
    border: 2px solid rgba(76, 175, 80, 0.4);
}

.ambassador-image {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 32px auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-green);
    box-shadow: var(--shadow-glow-green);
    transition: all var(--transition-normal);
    z-index: 1;
    background: var(--surface-dark);
}

.ambassador-card:hover .ambassador-image {
    box-shadow: var(--shadow-glow-green-intense);
    border-width: 5px;
}

.ambassador-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform var(--transition-slow);
}

/* RJ Richa - zoom in to fill circle better */
.ambassador-card:nth-child(1) .ambassador-image img {
    object-position: center top;
    transform: scale(1.3);
}

.ambassador-card:nth-child(1):hover .ambassador-image img {
    transform: scale(1.4);
}

/* RJ Inkita - move up to show face */
.ambassador-card:nth-child(2) .ambassador-image img {
    object-position: center 45%;
    transform: scale(1.3);
}

.ambassador-card:nth-child(2):hover .ambassador-image img {
    transform: scale(1.4);
}

/* RJ Harshal - move up and zoom to fill circle better */
.ambassador-card:nth-child(3) .ambassador-image img {
    object-position: center 55%;
    transform: scale(1.55);
}

.ambassador-card:nth-child(3):hover .ambassador-image img {
    transform: scale(1.65);
}

.ambassador-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.ambassador-card:hover .ambassador-overlay {
    opacity: 1;
}

.ambassador-info {
    padding: 28px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ambassador-info h3 {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 10px;
}

.ambassador-title {
    display: inline-block;
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark);
    background: var(--gradient-green);
    padding: 8px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.ambassador-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.ambassador-social {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--accent-green);
    transition: all var(--transition-fast);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(76, 175, 80, 0.1);
}

.ambassador-social:hover {
    color: var(--accent-green-bright);
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--accent-green-glow);
}

.activities-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.activity-tag {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    background: var(--surface-dark);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.activity-tag:hover {
    background: rgba(76, 175, 80, 0.15);
    border-color: var(--border-glow);
    color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* === Activation Section === */
.activation-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.activation-bg {
    position: absolute;
    inset: 0;
}

.activation-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.activation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.75));
}

.activation-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
}

.venue-card {
    padding: 36px;
    margin: 40px 0;
    border-left: 5px solid var(--accent-green);
    position: relative;
}

.venue-card::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-green);
    box-shadow: 0 0 20px var(--accent-green-glow);
}

.venue-label {
    display: block;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}

.venue-value {
    display: block;
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.venue-note {
    display: block;
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
}

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

.feature-item {
    padding: 18px 24px;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius-small);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: default;
}

.feature-item:hover {
    background: rgba(76, 175, 80, 0.15);
    border-color: var(--border-glow);
    color: var(--text-primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), 0 0 20px var(--accent-green-glow);
}

/* === Quote Section === */
.quote-section {
    background: linear-gradient(135deg, var(--primary-dark), rgba(76, 175, 80, 0.08));
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(76, 175, 80, 0.15), transparent 70%);
}

.quote-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-icon {
    margin-bottom: 40px;
    font-size: 48px;
    color: var(--accent-green);
    text-shadow: 0 0 40px var(--accent-green-glow);
    animation: starGlow 2s ease-in-out infinite;
}

@keyframes starGlow {

    0%,
    100% {
        text-shadow: 0 0 20px var(--accent-green-glow);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 40px var(--accent-green-glow), 0 0 60px rgba(76, 175, 80, 0.3);
        transform: scale(1.1);
    }
}

.quote-text {
    font-size: clamp(26px, 4.5vw, 44px);
    font-weight: var(--font-weight-medium);
    font-style: italic;
    line-height: 1.55;
    color: var(--text-primary);
    margin-bottom: 48px;
}

.quote-text .highlight {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-line {
    width: 120px;
    height: 5px;
    background: var(--gradient-green);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 0 30px var(--accent-green-glow);
}

/* === Closing Section === */
.closing-section {
    background: var(--secondary-dark);
    padding: 140px 0;
}

.closing-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.closing-title {
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: var(--font-weight-bold);
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.partnership-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 48px;
    background: var(--card-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    margin-bottom: 48px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.partnership-row:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-xl), var(--shadow-glow-green);
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.partner-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.partner-logo {
    height: 110px;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 0 30px rgba(76, 175, 80, 0.6));
}

.partner-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 50px rgba(76, 175, 80, 0.9));
}

.partner-name {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(76, 175, 80, 0.5);
}

.partner-divider {
    font-size: 36px;
    color: var(--text-muted);
}

.closing-tagline {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* === Footer === */
.site-footer {
    background: var(--primary-dark);
    padding: 56px 0;
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-green);
    opacity: 0.4;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 96px;
    margin: 0 auto 24px;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 0 25px rgba(76, 175, 80, 0.5));
}

.footer-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 40px rgba(76, 175, 80, 0.8));
}

.footer-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* === Scroll Animations - DISABLED === */
.scroll-animate {
    opacity: 1 !important;
}

.scroll-animate.visible {
    opacity: 1 !important;
}

/* Staggered animations */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

/* === Fade In Animation === */
.animate-fade-in {
    animation: fadeInUp 1s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Scrollbar === */
/* Desktop scrollbar - styled */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-green), var(--accent-teal));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-green-bright), var(--accent-cyan));
}

/* Mobile scrollbar - hidden for cleaner experience */
@media (max-width: 768px) {
    html {
        scrollbar-width: none;
        /* Firefox */
    }

    body {
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    ::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }
}

::selection {
    background: var(--accent-green);
    color: var(--primary-dark);
}

/* === Loading Animation === */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.loading {
    background: linear-gradient(90deg, var(--glass-bg), var(--glass-bg-hover), var(--glass-bg));
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}