/* ============================================
   MOOPS DESIGN - COMPLETE PREMIUM CSS
   Rudo-inspired dark theme with mega dropdowns
   Version: 3.0
   ============================================ */

/* ============================================
   1. FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   2. CSS VARIABLES
   ============================================ */
:root {
    /* Dark Backgrounds */
    --bg-dark-primary: #121212;
    --bg-dark-secondary: #0000004a;
    --bg-dark-tertiary: #110b0b;
    --bg-overlay: rgba(0, 0, 0, 0.85);
    
    /* Neon Accent Colors */
    --neon-green: #f18282;
    --neon-lime: #f0a0a0;
    --neon-yellow: #f8d8d8;
    
    /* Olive Greens */
    --olive-dark: #2e2222;
    --olive-mid: #2c2222;
    --olive-light: #826868;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #efe6e6;
    --text-muted: #ad9797;
    --text-dark: #1a1a1a;
    
    /* Typography - Smaller Professional Sizes */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --text-xs: 0.6875rem;
    --text-sm: 0.8125rem;
    --text-base: 0.875rem;
    --text-md: 0.9375rem;
    --text-lg: 1rem;
    --text-xl: 1.125rem;
    --text-2xl: 1.375rem;
    --text-3xl: 1.75rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 4rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 20px rgba(234, 136, 136, 0.3);
    --shadow-neon-lg: 0 0 40px rgba(234, 136, 136, 0.4), 0 0 60px rgba(212, 234, 136, 0.2);
    
    /* Transitions */
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 700ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   WhatsApp Floating Button (Dark-Mode Aware)
   ========================================= */
    
    :root {
        --wa-green: #25D366;
        --wa-green-dark: #128C7E;
        --wa-shadow: rgba(37, 211, 102, 0.45);
    }
    
    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        :root {
            --wa-shadow: rgba(37, 211, 102, 0.7);
        }
    }
    
    .whatsapp-float {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        width: 60px !important;
        height: 60px !important;
        background: linear-gradient(135deg, var(--wa-green), var(--wa-green-dark)) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 2147483647 !important;
        box-shadow: 0 8px 24px var(--wa-shadow) !important;
        text-decoration: none !important;
        animation: wa-pulse 2s infinite !important;
    }
    
    .whatsapp-float i {
        color: #ffffff !important;
        font-size: 32px !important;
    }
    
    /* Pulse animation */
    @keyframes wa-pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
        }
        70% {
            box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }
    
    /* Mobile */
    @media (max-width: 768px) {
        .whatsapp-float {
            width: 54px !important;
            height: 54px !important;
            bottom: 16px !important;
            right: 16px !important;
        }
    
        .whatsapp-float i {
            font-size: 28px !important;
        }
    }

/* ============================================
   3. GLOBAL RESETS
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-secondary);
    background: var(--bg-dark-primary);
    font-weight: 400;
}

::selection {
    background: var(--neon-green);
    color: var(--bg-dark-primary);
}

/* ============================================
   4. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 { font-size: var(--text-6xl); font-weight: 800; }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-4xl); }
h4 { font-size: var(--text-3xl); }
h5 { font-size: var(--text-2xl); }
h6 { font-size: var(--text-xl); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--text-base);
}

a {
    color: var(--neon-green);
    text-decoration: none;
    transition: all var(--transition-slow);
}

a:hover {
    color: var(--neon-lime);
    text-shadow: var(--shadow-neon);
}

/* ============================================
   5. NAVBAR - DYNAMIC TRANSPARENT
   ============================================ */
.moops-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-slow);
}

.moops-navbar.scrolled {
    background: rgba(20, 9, 9, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(234, 136, 136, 0.1);
    padding: 1rem 0;
}

.moops-navbar.on-light-section {
    background: rgba(245, 240, 240, 0.85);
    backdrop-filter: blur(20px);
}

.moops-navbar.on-light-section .navbar-brand,
.moops-navbar.on-light-section .nav-link {
    color: var(--olive-dark) !important;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: -0.03em;
    transition: all var(--transition-slow);
}

.navbar-brand:hover {
    color: var(--neon-lime);
    text-shadow: var(--shadow-neon);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 0.5rem 1rem !important;
    transition: all var(--transition-slow);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-green) !important;
}

/* ============================================
   6. MEGA DROPDOWN - RUDO STYLE
   ============================================ */
.mega-dropdown {
    position: static;
}

.nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.35em;
    vertical-align: 0.1em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-dropdown:hover .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
}

.mega-dropdown .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 700px;
    max-width: calc(100vw - 2rem);
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.03);
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mega Menu Layout */
.mega-menu-inner {
    display: flex;
    min-height: 280px;
}

/* Left Side - Info Panel */
.mega-menu-info {
    width: 45%;
    padding: 2.5rem;
    background: #faf8f8;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.mega-menu-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.mega-menu-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* Right Side - Items */
.mega-menu-items {
    width: 55%;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}

/* Menu Item */
.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mega-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 58, 58, 0.08) 0%, rgba(61, 79, 58, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

.mega-menu-item:hover::before {
    opacity: 1;
}

.mega-menu-item:hover {
    transform: translateX(6px);
    color: #070000;
    background-color: #f0a0a0;
}

.mega-menu-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.mega-menu-item-icon i {
    font-size: 1.75rem;
    color: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-item:hover .mega-menu-item-icon i {
    color: var(--olive-dark);
    transform: scale(1.1);
}

.mega-menu-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.mega-menu-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.mega-menu-item:hover .mega-menu-item-title {
    color: var(--olive-dark);
}

.mega-menu-item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #888888;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.mega-menu-item:hover .mega-menu-item-desc {
    color: #666666;
}

.mega-menu-item-arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--olive-dark);
    position: relative;
    z-index: 1;
}

.mega-menu-item:hover .mega-menu-item-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Animation */
.mega-dropdown:hover .mega-menu-item:nth-child(1) { animation: menuItemSlide 0.4s ease 0.05s both; }
.mega-dropdown:hover .mega-menu-item:nth-child(2) { animation: menuItemSlide 0.4s ease 0.1s both; }
.mega-dropdown:hover .mega-menu-item:nth-child(3) { animation: menuItemSlide 0.4s ease 0.15s both; }
.mega-dropdown:hover .mega-menu-item:nth-child(4) { animation: menuItemSlide 0.4s ease 0.2s both; }
.mega-dropdown:hover .mega-menu-item:nth-child(5) { animation: menuItemSlide 0.4s ease 0.25s both; }

@keyframes menuItemSlide {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.btn {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    border: none;
    transition: all var(--transition-slower);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--bg-dark-primary);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--neon-lime);
    color: var(--bg-dark-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon-lg);
}

.btn-outline {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
}

.btn-outline:hover {
    background: var(--neon-green);
    color: var(--bg-dark-primary);
    box-shadow: var(--shadow-neon-lg);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--olive-dark);
    color: var(--text-primary);
}

.btn-dark:hover {
    background: var(--olive-mid);
    box-shadow: 0 0 20px rgba(79, 58, 58, 0.5);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: var(--text-md);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: var(--text-xs);
}

/* ============================================
   8. HERO SECTION
   ============================================ */
.hero-section {
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background-color: var(--bg-dark-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Semi-opaque overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.85); /* Adjust opacity as needed */
    z-index: 1;
    pointer-events: none;
}

/* Decorative gradient blur - top left */
.hero-section::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(49, 28, 28, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
}

/* Additional decorative blur - needs a wrapper element */
.hero-section .hero-blur-accent {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(46, 8, 8, 0.2) 0%, transparent 50%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
}

/* Ensure content stays above overlay */
.hero-section .container,
.hero-section > * {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(234, 136, 136, 0.1);
    border: 1px solid rgba(234, 136, 136, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    transition: all var(--transition-slower);
}

.hero-badge:hover {
    background: rgba(234, 136, 136, 0.15);
    box-shadow: var(--shadow-neon);
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--neon-green);
}

.hero-description {
    font-size: var(--text-md);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Translucent Tag Capsules */
.hero-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.hero-tag {
    font-size: var(--text-sm);
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    transition: all var(--transition-slow);
}

.hero-tag:hover {
    background: rgba(234, 136, 136, 0.15);
    border-color: rgba(234, 136, 136, 0.3);
    color: var(--neon-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 136, 136, 0.2);
}

/* ============================================
   HERO UNDERLINE/SWOOSH - RESPONSIVE FIX
   Add this to your CSS file
   ============================================ */

/* Hero Title Underline Container */
.hero-title .underline-wrapper {
    position: relative;
    display: inline-block;
}

/* The SVG/Image underline decoration */
.hero-title .underline-wrapper .image-2,
.hero-title .underline-decoration {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

/* Desktop - Large screens */
@media (min-width: 992px) {
    .hero-title .underline-wrapper .image-2,
    .hero-title .underline-decoration {
        bottom: -20px;
        width: 100%;
        max-width: none;
    }
}

/* Tablet - Medium screens */
@media (max-width: 991px) {
    .hero-title .underline-wrapper .image-2,
    .hero-title .underline-decoration {
        bottom: -8px;
        width: 90%;
        left: 5%;
    }
}

/* Mobile - Small screens */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.3rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-title .underline-wrapper .image-2,
    .hero-title .underline-decoration {
        bottom: -6px;
        width: 80%;
        left: 10%;
        height: 8px;
        object-fit: contain;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-title .underline-wrapper .image-2,
    .hero-title .underline-decoration {
        bottom: -4px;
        width: 70%;
        left: 15%;
        height: 6px;
    }
}


/* ============================================
   9. IMAGE WRAPPER - NICE STUDIO PARALLAX
   ============================================ */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--bg-dark-secondary);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
    will-change: transform;
    transform: scale(1.15);
}

.image-wrapper:hover img {
    transform: scale(1.2);
}

/* Parallax Speeds */
.image-wrapper[data-parallax-speed="slow"] { --parallax-speed: 0.08; }
.image-wrapper[data-parallax-speed="medium"] { --parallax-speed: 0.15; }
.image-wrapper[data-parallax-speed="fast"] { --parallax-speed: 0.25; }

/* Reveal Animation */
.image-wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Image Effects */
.image-wrapper[data-effect="grayscale-to-color"] img {
    filter: grayscale(100%);
    transition: filter 0.8s ease, transform var(--transition-slower);
}

.image-wrapper[data-effect="grayscale-to-color"].revealed img {
    filter: grayscale(0%);
}

.image-wrapper[data-effect="blur-to-sharp"] img {
    filter: blur(10px);
    transition: filter 0.8s ease, transform var(--transition-slower);
}

.image-wrapper[data-effect="blur-to-sharp"].revealed img {
    filter: blur(0);
}

.image-wrapper[data-effect="clip-reveal"] {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper[data-effect="clip-reveal"].revealed {
    clip-path: inset(0 0 0 0);
}

/* ============================================
   10. CARDS
   ============================================ */
.card-minimal {
    background: rgba(28, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(234, 136, 136, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition-slower);
}

.card-minimal:hover {
    transform: translateY(-6px);
    background: rgba(28, 17, 17, 0.8);
    border-color: rgba(234, 136, 136, 0.3);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(234, 136, 136, 0.15);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(234, 136, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--neon-green);
    transition: all var(--transition-slower);
}

.card-minimal:hover .card-icon {
    background: rgba(234, 136, 136, 0.2);
    box-shadow: var(--shadow-neon);
}

.card-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-description {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   11. SECTIONS
   ============================================ */
section {
    padding: 5rem 0;
    position: relative;
}

.section-light {
    background: #f5f0f0;
    color: var(--text-dark);
}

.section-light h1, .section-light h2, .section-light h3,
.section-light h4, .section-light h5, .section-light h6 {
    color: var(--olive-dark);
}

.section-light p {
    color: #666666;
}

.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: var(--text-md);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
}

/* ============================================
   12. FOOTER
   ============================================ */
.moops-footer {
    background: var(--bg-dark-secondary);
    border-top: 1px solid rgba(212, 234, 136, 0.1);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.footer-heading {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: all var(--transition-slow);
}

.footer-links a:hover {
    color: var(--neon-green);
    text-shadow: var(--shadow-neon);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(212, 234, 136, 0.05);
}

/* ============================================
   13. UTILITIES
   ============================================ */
.text-neon { color: var(--neon-green); }
.text-neon-hover:hover { 
    color: var(--neon-lime);
    text-shadow: var(--shadow-neon);
}
.bg-dark { background: var(--bg-dark-primary); }
.bg-dark-secondary { background: var(--bg-dark-secondary); }

/* ============================================
   14. SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-lime));
    box-shadow: 0 0 10px var(--neon-green);
    transition: width 0.1s linear;
}

/* ============================================
   15. BACK TO TOP
   ============================================ */
/*.back-to-top {*/
/*    position: fixed;*/
/*    bottom: 2rem;*/
/*    right: 2rem;*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    border-radius: 50%;*/
/*    background: rgba(234, 136, 136, 0.1);*/
/*    border: 2px solid var(--neon-green);*/
/*    color: var(--neon-green);*/
/*    font-size: 1.25rem;*/
/*    cursor: pointer;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: all var(--transition-slow);*/
/*    z-index: 999;*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*.back-to-top.visible {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

/*.back-to-top:hover {*/
/*    background: var(--neon-green);*/
/*    color: var(--bg-dark-primary);*/
/*    box-shadow: var(--shadow-neon-lg);*/
/*    transform: translateY(-3px);*/
/*}*/

/* ============================================
   BACK TO TOP - CENTERED VERSION
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(234, 136, 136, 0.1);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    z-index: 999;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--neon-green);
    color: var(--bg-dark-primary);
    box-shadow: var(--shadow-neon-lg);
    transform: translateX(-50%) translateY(-3px);
}

/* ============================================
   16. REVEAL ON SCROLL
   ============================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-child {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-child.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Page Load Transition */
body:not(.loaded) #main-content {
    opacity: 0;
}

body.loaded #main-content {
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* ============================================
   17. CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--olive-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}

/* ============================================
   18. RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
    }
    
    .hero-section {
        min-height: auto;
        padding: 8rem 0 3rem;
    }
    
    .mega-dropdown .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        border-radius: 12px;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .mega-menu-inner {
        flex-direction: column;
    }
    
    .mega-menu-info {
        width: 100%;
        padding: 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }
    
    .mega-menu-items {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 767px) {
    :root {
        --text-6xl: 2rem;
        --text-5xl: 1.75rem;
        --text-4xl: 1.5rem;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-tags {
        gap: 0.75rem;
    }
    
    .hero-tag {
        padding: 0.375rem 1rem;
        font-size: var(--text-xs);
    }
}

/* ============================================
   19. ANIMATIONS
   ============================================ */
@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(212, 234, 136, 0.3); }
    50% { text-shadow: 0 0 20px rgba(212, 234, 136, 0.6); }
}

.glow-text {
    animation: glow 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}