﻿:root {
    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --neon-gold: #ffcc00;
    --neon-green: #39ff14;
    --bg-dark: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.learn-page {
    align-items: stretch;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #000000 100%);
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- STUNNING CINEMATIC HERO --- */
.profile-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
    padding: 0 15px;
    margin-top: 50px;
}

/* Main Product Card Container - Enforce Width */
.product-card-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
    color: inherit !important;
    position: relative;
    height: 100%;
}

.product-card-image {
    width: 100%;
    border-radius: 20px 20px 0 0;
    /* Only top corners rounded */
    overflow: hidden;
    margin-bottom: 0px;
    /* Removed negative margin to fix overlap */
    z-index: 1;
    position: relative;
}

.hero-glass-card {
    position: relative;
    width: 100%;
    max-width: 650px;
    /* Standardized to match content cards */
    /* Wider for impact */
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    overflow: hidden;

    /* Cinematic Background Layer */
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.1) 0%, rgba(10, 10, 20, 0.95) 80%);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(0, 243, 255, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
}

/* Background Image with Overlay */
.hero-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/img_info_new.png');
    /* Using the White Energy Stream image */
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    /* Subtle texture */
    filter: blur(2px) saturate(0);
    /* Black and white texture base */
    z-index: -2;
}

/* Moving Gradient Mesh Overlay */
.hero-glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            rgba(0, 243, 255, 0.05) 60deg,
            transparent 120deg);
    animation: rotate-light 10s linear infinite;
    z-index: -1;
}

@keyframes rotate-light {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- SCROLL TO TOP BUTTON --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    color: var(--neon-cyan);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.scroll-top-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.6);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .site-nav {
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-links.mobile-active {
        display: flex;
        opacity: 1;
    }

    .nav-link {
        font-size: 1.5rem;
    }
}

/* TYPOGRAPHY */
.hero-intro {
    font-family: 'Outfit', sans-serif;
    /* Utilizing the requested modern font stack */
    margin: 0;
    padding: 0;
    z-index: 2;
    position: relative;
}

/* "EXPERIENCE BIOPHOTON ENERGY" */
.hero-intro h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E0F7FA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    letter-spacing: -1px;
}

/* "Through Eluumis..." */
.hero-intro h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.hero-divider {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    margin: 0 auto 30px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b0c4de;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Social Row */
.social-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

/* --- BOTTOM PROFILE SECTION STYLES --- */
.profile-img-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.4);
    position: relative;
    z-index: 2;
}

.profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.4) 0%, transparent 70%);
    z-index: 1;
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    from {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-name {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 1.25rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.12);
    /* Strong tint like buttons */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.6rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 243, 255, 0.5);
    /* Strong border */
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2), inset 0 0 20px rgba(0, 243, 255, 0.1);
    /* Strong glow */
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(0, 243, 255, 0.3);
    /* Even brighter on hover */
    color: #fff;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 35px var(--neon-cyan), inset 0 0 30px rgba(0, 243, 255, 0.4);
}

/* Swiper Slider Styles */
.benefits-slider {
    width: 100%;
    /* Swiper needs explicit height when slides are absolute positioned elements or doing 3D transforms */
    height: 600px;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
    /* Ensure no scrollbars */
}

/* Links Container */
.links-container {
    width: 100%;
    max-width: 680px;
    padding: 0 15px 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-title {
    text-align: center;
    margin: 30px 0 5px;
    /* Tighter top, very tight bottom */
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

/* More specific override to keep first title snug if needed */
.links-container>.section-title:first-child {
    margin-top: 0;
}

/* ... existing code ... */

/* Biophoton Living Light Particle */
.biophoton-particle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 30px #fff, 0 0 60px var(--neon-cyan), 0 0 100px var(--neon-green);
    margin: 60px auto;
    animation: biophoton-pulse 4s infinite ease-in-out;
    position: relative;
    z-index: 2;
}

@keyframes biophoton-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 30px #fff, 0 0 60px var(--neon-cyan), 0 0 100px var(--neon-green);
    }

    50% {
        transform: scale(1.15);
        opacity: 0.95;
        box-shadow: 0 0 50px #fff, 0 0 90px var(--neon-cyan), 0 0 140px var(--neon-green);
    }
}

/* Special Styling for Promo */
.promo-block {
    position: relative;
    margin-top: 5px;
    /* Reduced from 25px to pull close to title */
}

.section-title.purple-text {
    color: var(--neon-purple);
    text-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
}

/* Link Cards */
.link-card {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 8px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    height: 80px;
}

/* Hover Effects */
.link-card:hover {
    transform: scale(1.02);
    border-color: var(--neon-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.link-card:hover::after {
    left: 100%;
}

/* Eluumis Blue Border & Glow */
.eluumis-card {
    background: rgba(0, 243, 255, 0.12);
    /* Stronger tint */
    border: 1px solid rgba(0, 243, 255, 0.5);
    /* Sharper border */
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2), inset 0 0 30px rgba(0, 243, 255, 0.15);
    /* Stronger glows */
}

.eluumis-card:hover {
    background: rgba(0, 243, 255, 0.2);
    /* Brighter hover */
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.5), inset 0 0 40px rgba(0, 243, 255, 0.3);
    transform: scale(1.03);
}

/* Stream Purple Border & Glow */
.stream-card,
.stream-sub-card {
    background: rgba(188, 19, 254, 0.12);
    /* Stronger tint */
    border: 1px solid rgba(188, 19, 254, 0.5);
    /* Sharper border */
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2), inset 0 0 30px rgba(188, 19, 254, 0.15);
    /* Stronger glows */
}

.stream-card:hover,
.stream-sub-card:hover {
    background: rgba(188, 19, 254, 0.2);
    /* Brighter hover */
    border-color: var(--neon-purple);
    box-shadow: 0 0 40px rgba(188, 19, 254, 0.5), inset 0 0 40px rgba(188, 19, 254, 0.3);
    transform: scale(1.03);
}

/* Card Image */
.card-image-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
    background: #000;
}

/* Green Theme Overrides for Width Fix */
.green-theme {
    width: 100% !important;
    max-width: 100% !important;
    /* Force full width */
    min-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
}

.green-card {
    background: rgba(0, 255, 136, 0.1) !important;
    border: 1px solid rgba(0, 255, 136, 0.5) !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2), inset 0 0 30px rgba(0, 255, 136, 0.15) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Force full width inside flex */

.green-card:hover {
    background: rgba(0, 255, 136, 0.2) !important;
    border-color: #00FF88 !important;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5), inset 0 0 40px rgba(0, 255, 136, 0.3) !important;
    transform: scale(1.02);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Text */
.card-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-main-text {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.2;
}

@media (min-width: 400px) {
    .card-main-text {
        font-size: 1.25rem;
    }
}

.card-arrow {
    width: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    opacity: 0.5;
}

.link-card:hover .card-arrow {
    color: var(--neon-cyan);
    opacity: 1;
    transform: translateX(3px);
}

/* Special Styling for Promo */
.promo-block {
    position: relative;
    margin-top: 5px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    /* Reduced from 25px */
}

/* Force full width on mobile specifically */
@media (max-width: 768px) {
    .promo-block {
        width: 100% !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    .learn-section .promo-block {
        width: 100% !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.promo-block+.promo-block {
    margin-top: 35px;
}

.promo-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--neon-purple), #ff00ff);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(188, 19, 254, 0.4);
    white-space: nowrap;
}

.promo-badge.blue-pop {
    background: linear-gradient(90deg, var(--neon-cyan), #0088ff);
    color: #000;
    font-size: 1.1rem;
    padding: 6px 18px;
    top: -15px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
    font-weight: 900;
}

.promo-badge.purple-pop {
    background: linear-gradient(90deg, var(--neon-purple), #ff00ff);
    color: white;
    font-size: 1.1rem;
    padding: 6px 18px;
    top: -15px;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.6);
    font-weight: 900;
}

/* Action Button */
.action-container {
    margin: 20px 0;
    text-align: center;
    width: 100%;
}

.btn-main {
    display: inline-block;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid var(--neon-gold);
    color: var(--neon-gold);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    background: var(--neon-gold);
    color: #000;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.glow-effect {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Learn Grid Redesign - Single Column Big Cards */
.section-title.gold-text {
    color: var(--neon-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.learn-grid {
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    gap: 25px;
    /* More space between big cards */
    padding: 0 15px;
    width: 100%;
    max-width: 600px;
    /* Constrain width for single column readability */
    margin: 0 auto;
    /* Center the column */
}

.learn-card {
    background: rgba(0, 0, 0, 0.6);
    /* Darker backing */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--neon-gold);
    border-radius: 24px;
    /* More rounded */
    padding: 0;
    text-decoration: none;
    color: var(--neon-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 100%;
    /* Fill the column container */
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.learn-card:hover {
    transform: scale(1.02);
    /* Subtle zoom */
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    border-color: #fff;
    /* Flash white on hover */
}

.learn-img-wrapper {
    width: 100%;
    height: 250px;
    /* Much taller for 8k images */
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.learn-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.learn-card:hover .learn-img-wrapper img {
    transform: scale(1.15);
    /* Stronger image zoom effect */
}

.learn-text {
    padding: 15px 10px 5px;
    /* less bottom padding */
    font-size: 1.2rem;
    /* bigger for main text */
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    display: block;
}

.learn-subtext {
    display: block;
    font-size: 0.85rem;
    color: #fff;
    font-weight: 400;
    text-transform: none;
    /* Sentence case for subtext */
    padding-bottom: 20px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* --- Hero Section --- */
.profile-hero {
    min-height: 60vh;
    /* Reduced from 85vh to tighten spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px 10px;
    /* Reduced bottom padding aggressively */
    z-index: 2;
    margin-top: 20px;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.03);
    /* Ultra subtle */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    padding: 4rem;
    /* More padding for logos */
    text-align: center;
    max-width: 650px;
    /* Standardized to match content cards */
    width: 100%;
    position: relative;
    /* For logo positioning */
    overflow: hidden;
    /* Keep glows contained */
}

/* --- Hero Logos (Inline) --- */
.hero-logos-inline {
    display: flex;
    justify-content: center;
    gap: 40px;
    /* Space between logos */
    margin-top: 30px;
    align-items: center;
}

.inline-logo {
    width: 140px;
    /* Increased from 100px */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    /* Stronger glow for "floating icon" look */
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: default;
}

.inline-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.9));
}

@media (max-width: 768px) {
    .inline-logo {
        width: 100px;
        /* Increased from 80px */
        gap: 20px;
    }
}

/* Stunning Contact Form */
.contact-section {
    width: 100%;
    padding: 60px 15px;
    display: flex;
    justify-content: center;
}

.contact-glass-card {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 30px;
    padding: 40px 30px;
    width: 100%;
    max-width: 650px;
    /* Standardized to match content cards */
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(0, 243, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Decorate the card */
.contact-glass-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: var(--neon-cyan);
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}

.contact-glass-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--neon-purple);
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}

.contact-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.contact-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.stunning-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Floating Label Inputs */
.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Focus States */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    background: rgba(0, 243, 255, 0.05);
}

/* Floating Labels Logic */
.form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s ease;
    font-size: 1rem;
    background: transparent;
}

/* Move label up on focus or if placeholder is hidden (has value) */
.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    background: #050505;
    /* Matches bg to hide line */
    padding: 0 5px;
    font-weight: 700;
}

/* Select Styling */
.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

/* Submit Button */
.btn-submit {
    position: relative;
    background: linear-gradient(90deg, var(--neon-cyan), #0088ff);
    border: none;
    padding: 18px;
    border-radius: 50px;
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    letter-spacing: 1px;
    margin-top: 10px;
    text-shadow: none;
    z-index: 1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
    color: #fff;
}

/* Gold Variant for Submit? Let's stick to Cyan/Blue for 'Send' to imply trust/action, 
   but user asked for it to 'pop'. Cyan pops on dark. */
.btn-submit span {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: 0.5s;
    z-index: 0;
}

.btn-submit:hover .btn-glow {
    opacity: 0.3;
    transform: scale(1);
}

footer {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* --- NEW PRODUCT CARD COMPONENT --- */
/* Wrapper that mimics the eluumis-card style but for the whol card */
.product-card-container {
    background: rgba(0, 243, 255, 0.12);
    border: 1px solid rgba(0, 243, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2), inset 0 0 30px rgba(0, 243, 255, 0.15);
    border-radius: 24px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.product-card-container:hover {
    background: rgba(0, 243, 255, 0.2);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.5), inset 0 0 40px rgba(0, 243, 255, 0.3);
    transform: scale(1.02);
}

.product-card-image {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-container:hover .product-card-image img {
    transform: scale(1.08);
}

/* Purple Theme Modifier */
.product-card-container.purple-theme {
    background: rgba(188, 19, 254, 0.12);
    border-color: rgba(188, 19, 254, 0.5);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2), inset 0 0 30px rgba(188, 19, 254, 0.15);
}

.product-card-container.purple-theme:hover {
    background: rgba(188, 19, 254, 0.2);
    border-color: var(--neon-purple);
    box-shadow: 0 0 40px rgba(188, 19, 254, 0.5), inset 0 0 40px rgba(188, 19, 254, 0.3);
}

/* Fix for Tablet Image Clipping - Default styles used */

/* Green Theme Modifier */
.product-card-container.green-theme {
    background: rgba(57, 255, 20, 0.12);
    border-color: rgba(57, 255, 20, 0.5);
    /* White hot core glow + Green Halo */
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 25px rgba(57, 255, 20, 0.3),
        inset 0 0 30px rgba(57, 255, 20, 0.15);
}

.product-card-container.green-theme:hover {
    background: rgba(57, 255, 20, 0.2);
    border-color: #fff;
    /* Flash white on hover border */
    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.6),
        /* Intense white core */
        0 0 50px rgba(57, 255, 20, 0.6),
        inset 0 0 50px rgba(57, 255, 20, 0.3);
}

.green-card {
    background: rgba(57, 255, 20, 0.15);
    border: 1px solid rgba(57, 255, 20, 0.6);
    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.2),
        0 0 25px rgba(57, 255, 20, 0.3),
        inset 0 0 30px rgba(57, 255, 20, 0.2);
}

.section-title.green-text {
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

/* Gold Theme Modifier */
/* Gold Theme Modifier */
.product-card-container.gold-theme {
    background: rgba(255, 204, 0, 0.12);
    border-color: rgba(255, 204, 0, 0.5);
    /* White hot core glow + Gold Halo */
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 25px rgba(255, 204, 0, 0.3),
        inset 0 0 30px rgba(255, 204, 0, 0.15);
}

.product-card-container.gold-theme:hover {
    background: rgba(255, 204, 0, 0.2);
    border-color: #fff;
    /* Flash white on hover border */
    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.6),
        /* Intense white core */
        0 0 50px rgba(255, 204, 0, 0.6),
        inset 0 0 50px rgba(255, 204, 0, 0.3);
}

.gold-card {
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.6);
    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.2),
        0 0 25px rgba(255, 204, 0, 0.3),
        inset 0 0 30px rgba(255, 204, 0, 0.2);
}

.green-card:hover {
    border-color: var(--neon-green);
    background: rgba(57, 255, 20, 0.2);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.gold-card:hover {
    border-color: var(--neon-gold);
    background: rgba(255, 204, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

/* --- BIOPHOTON BALLS PAGE STYLES --- */
/* (Strictly additive, does not affect homepage) */

.balls-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    z-index: 2;
    overflow: hidden;
}

.balls-hero-content {
    text-align: center;
    z-index: 3;
    max-width: 900px;
}

.balls-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E0F7FA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(0, 243, 255, 0.6);
    letter-spacing: -1px;
}

.balls-hero p {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

/* Feature Sections (Storbrand Style) */
.ball-section {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.ball-section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ball-section.reversed .ball-section-container {
    flex-direction: row-reverse;
}

/* Text Content */
.ball-text {
    flex: 1;
}

.ball-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ball-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 30px;
}

.ball-text ul {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.ball-text ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ball-text ul li i {
    font-size: 1.2rem;
}

/* Image Content */
.ball-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ball-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.ball-image img:hover {
    transform: scale(1.05);
}

/* Themes */
.sky-theme h2 {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.sky-theme .ball-image img {
    border-radius: 20px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.sky-theme li i {
    color: var(--neon-cyan);
}

.sky-theme .btn-buy {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.sky-theme .btn-buy:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
}

.matter-theme h2 {
    color: var(--neon-gold);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.matter-theme .ball-image img {
    border-radius: 20px;
    border: 2px solid var(--neon-gold);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}

.matter-theme li i {
    color: var(--neon-gold);
}

.matter-theme .btn-buy {
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid var(--neon-gold);
    color: var(--neon-gold);
}

.matter-theme .btn-buy:hover {
    background: var(--neon-gold);
    color: #000;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.6);
}

.set-theme h2 {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.set-theme .ball-image img {
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 40px rgba(188, 19, 254, 0.4), inset 0 0 20px rgba(0, 243, 255, 0.2);
}

.set-theme .btn-buy {
    background: linear-gradient(90deg, rgba(0, 243, 255, 0.1), rgba(188, 19, 254, 0.1));
    border: 1px solid #fff;
    color: #fff;
}

.set-theme .btn-buy:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

/* Buy Button */
.btn-buy {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    .ball-section {
        padding: 60px 15px;
        /* Reduce padding to prevent squash */
        overflow: hidden;
        /* Prevent horizontal overflow */
    }

    .ball-section-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        width: 100%;
        /* Ensure full width availability */
        max-width: 100%;
        padding: 0;
        /* Remove extra padding if any */
    }

    .ball-section.reversed .ball-section-container {
        flex-direction: column;
    }

    .ball-text {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        /* Safe internal padding */
    }

    .ball-text ul li {
        justify-content: center;
        text-align: left;
    }

    .balls-hero h1 {
        font-size: 2.5rem;
    }

    /* Benefits Grid Section */
    .benefits-section {
        padding: 100px 20px;
        background: radial-gradient(circle at center, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
    }

    /* CSS Scroll-Snap Slider (Robust Backup) */
    .benefits-scroller {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 50px 0;
        /* Hide scrollbar for clean look */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE 10+ */
    }

    .benefits-scroller::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .benefits-track {
        display: flex;
        gap: 30px;
        padding: 0 50px;
        /* Side padding so first/last cards aren't flush */
        width: max-content;
        /* Ensure it expands */
    }

    .benefit-card-scroll {
        width: 320px;
        height: 500px;
        flex-shrink: 0;
        scroll-snap-align: center;
        background: rgba(20, 20, 30, 0.8);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
        transition: transform 0.3s ease;
    }

    .benefit-card-scroll:hover {
        transform: translateY(-10px);
        border-color: var(--neon-cyan);
        box-shadow: 0 10px 40px rgba(0, 243, 255, 0.2);
    }

    .card-visual {
        height: 60%;
        width: 100%;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .card-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .benefit-card-scroll:hover .card-visual img {
        transform: scale(1.05);
    }

    .card-info {
        padding: 20px;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .card-info h3 {
        font-size: 1.4rem;
        color: #fff;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .card-info h3.gold-text {
        color: var(--neon-gold);
    }

    .card-info p {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.5;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 60px auto 0;
    }

    .benefit-slide {
        background-position: center;
        background-size: cover;
        width: 320px;
        /* Ensure height is sufficient */
        height: 500px;
        /* Fallback width if content is empty */
        min-width: 320px;
        background: rgba(20, 20, 30, 0.8);
        backdrop-filter: blur(20px);
        border: 2px solid cyan;
        /* DEBUG: Visible border to verify slide existence */
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        /* Improve rotation rendering */
        transform-style: preserve-3d;
    }

    .benefit-card {
        background: rgba(20, 20, 30, 0.6);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s ease;
        text-align: center;
        position: relative;
        /* group-hover behavior handled directly on hover */
    }

    .benefit-card:hover {
        transform: translateY(-10px);
        border-color: var(--neon-cyan);
        box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
    }

    .benefit-image {
        height: 250px;
        /* Taller to fit infographic style better */
        width: 100%;
        overflow: hidden;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .benefit-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* or contain if text is cut off */
        transition: transform 0.6s ease;
    }

    .benefit-card:hover .benefit-image img {
        transform: scale(1.05);
    }

    .benefit-content {
        padding: 25px;
    }

    .benefit-content h3 {
        font-size: 1.4rem;
        color: #fff;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .benefit-content h3.gold-text {
        color: var(--neon-gold);
    }

    .benefit-content p {
        font-size: 0.95rem;
        color: #aaa;
        line-height: 1.6;
    }

}


/* Holographic Grid System */
.benefits-grid-container {
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1000px;
}

@media (max-width: 1100px) {
    .benefits-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}

.holo-card {
    height: 550px;
    border-radius: 20px;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.holo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
    background: rgba(20, 20, 30, 0.8);
    z-index: 2;
}

.holo-visual {
    height: 65%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.holo-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.holo-card:hover .holo-visual img {
    transform: scale(1.1);
}

.holo-content {
    height: 35%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
    position: relative;
}

.holo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.holo-desc {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Alternate accent colors */
.holo-card:nth-child(3n+1):hover .holo-bar {
    background: var(--neon-gold);
}

.holo-card:nth-child(3n+2):hover .holo-bar {
    background: var(--neon-cyan);
}

.holo-card:nth-child(3n+3):hover .holo-bar {
    background: #FF00FF;
}

.holo-card:nth-child(3n+3):hover {
    border-color: #FF00FF;
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.2);
}

.holo-bar {
    width: 0%;
    height: 3px;
    background: var(--neon-gold);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.4s ease;
}

.holo-card:hover .holo-bar {
    width: 100%;
}

/* Force full width for learn page body */
body.learn-page {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

.learn-hero {
    min-height: 60vh;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a2e 0%, #000 100%);
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.learn-hero::before {
    display: none !important;
}

.learn-hero h1 {
    font-size: 4rem;
    background: linear-gradient(to right, #fff, var(--neon-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.learn-section {
    padding: 80px 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.learn-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.learn-section.reversed .learn-container {
    flex-direction: row-reverse;
}

.learn-text {
    flex: 1;
}

.learn-text h2 {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: none;
}

.learn-section.gold-theme h2 {
    color: var(--neon-gold);
}

.learn-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.learn-visual {
    flex: 1;
    position: relative;
}

.visual-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: rgba(20, 20, 30, 0.5);
    backdrop-filter: blur(10px);
}

.visual-card img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.visual-card:hover img {
    transform: scale(1.05);
}

/* INTERVIEWS GRID */
.interviews-section {
    padding: 100px 20px;
    background: #050510;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.3);
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    /* Fallback */
    width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    z-index: 10;
}

@media (max-width: 900px) {
    .learn-container {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .learn-hero h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   AFFILIATE PAGE STYLES
   ========================================= */

/* Hero */
.affiliate-hero {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.affiliate-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/affiliates/network_hero.png') center/cover no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.affiliate-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

.affiliate-hero h1 {
    font-size: 4rem;
    background: linear-gradient(135deg, white 30%, var(--neon-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Service Section (Gold/Featured) */
.affiliate-service-section {
    padding: 40px 20px;
    margin-bottom: 30px;
}

.service-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--neon-gold);
    border-radius: 20px;
    padding: 0;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
    align-items: center;
}



.service-content {
    padding: 50px;
}

.service-visual {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Review/Comparison Cards */
.programs-section {
    padding: 30px 20px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.program-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 10px;
    /* Removed constraint for better 3D fit */
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.cyan-card .program-icon img {
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.gold-card .program-icon img {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Cyan Card Hover */
.program-card.cyan-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

/* Gold Card Hover */
.program-card.gold-card:hover {
    border-color: var(--neon-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

/* Premium Buttons */
.btn-program {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    color: #000;
    margin-top: 20px;
}

.btn-program:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.btn-stream {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, #2980b9 100%);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.3);
}

.btn-stream:hover {
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.5);
}

.btn-device {
    background: linear-gradient(135deg, var(--neon-gold) 0%, #ff8c00 100%);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-device:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* Requirements Glass Panel */
.requirements-panel {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px;
    margin-top: 60px;
    text-align: center;
}

.req-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.req-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .service-card {
        grid-template-columns: 1fr !important;
    }

    .service-content {
        order: 2;
        padding: 30px;
    }

    .service-visual {
        order: 1;
        min-height: 250px;
    }

    .programs-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- BLUE GLASS EFFECT (Reusing Product Card Style) --- */
.blue-glass-effect {
    background: rgba(0, 243, 255, 0.12) !important;
    border: 1px solid rgba(0, 243, 255, 0.5) !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2), inset 0 0 30px rgba(0, 243, 255, 0.15) !important;
    border-radius: 24px !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Glitch Fixes */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.blue-glass-effect:hover {
    background: rgba(0, 243, 255, 0.2) !important;
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.5), inset 0 0 40px rgba(0, 243, 255, 0.3) !important;
    transform: scale(1.01);
}

/* Specific Targets Override */
.hero-glass-card,
.contact-glass-card {
    background: rgba(0, 243, 255, 0.12) !important;
    border: 1px solid rgba(0, 243, 255, 0.5) !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2), inset 0 0 30px rgba(0, 243, 255, 0.15) !important;

    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* --- UNIFIED NAVIGATION MENU --- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--neon-cyan);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.nav-link.active {
    background: rgba(0, 243, 255, 0.15);
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

/* Mobile Nav Adjustments */
@media (max-width: 768px) {
    .nav-container {
        gap: 10px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}


/* =========================================
   PREMIUM MOBILE MENU STYLES
   ========================================= */

/* Default: Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 900px) {

    /* Hide the Nav Bar Background */
    .site-nav {
        background: transparent !important;
        border-bottom: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        pointer-events: none;
        /* Let clicks pass through empty space */
        padding: 35px 0 !important;
        /* Ensure button is not cut off */
    }

    .nav-container {
        pointer-events: auto;
        /* Re-enable clicks on the button itself */
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 30px 20px;
        border-bottom: 1px solid var(--neon-cyan);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        text-align: center;
        gap: 20px;
    }

    /* Show when active */
    .nav-links.mobile-active {
        display: flex;
        animation: fadeInDown 0.3s ease forwards;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* --- THE TOGGLE BUTTON --- */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(0, 243, 255, 0.3);
        padding: 8px 16px;
        /* Breathing room */
        border-radius: 30px;
        /* Pill shape */
        cursor: pointer;
        transition: all 0.3s ease;
        margin-left: auto;
        /* Push to right */
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        width: fit-content;
        /* Ensure button hugs content */
    }

    /* Hover State */
    .mobile-menu-toggle:hover {
        background: rgba(0, 243, 255, 0.1);
        border-color: var(--neon-cyan);
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
        transform: scale(1.05);
        /* Tactile feedback */
    }

    /* MENU Label */
    .menu-label {
        font-family: 'Outfit', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
        /* Glowing text */
    }

    /* Icon Box */
    .toggle-icon-box {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        /* Circle backing */
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover .toggle-icon-box {
        background: var(--neon-cyan);
        box-shadow: 0 0 10px var(--neon-cyan);
    }

    .mobile-menu-toggle i {
        font-size: 1.2rem;
        color: var(--neon-cyan);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover i {
        color: #000;
        /* Contrast on hover */
    }
}
@media (max-width: 768px) { .mobile-scale-fix { transform: scale(1.15) !important; } }
