/* ==========================================
   CSS Variables & Base Styles
   ========================================== */
:root {
    /* Colors - Vibrant Professional Palette */
    --color-primary: #0891b2;
    --color-primary-dark: #0e7490;
    --color-primary-light: #22d3ee;
    --color-accent: #06b6d4;
    --color-accent-light: #67e8f9;
    
    --color-gold: #f59e0b;
    --color-gold-light: #fbbf24;
    --color-gold-dark: #d97706;
    
    --color-coral: #f472b6;
    --color-emerald: #10b981;
    --color-purple: #8b5cf6;
    
    --color-text: #0f172a;
    --color-text-light: #475569;
    --color-text-muted: #94a3b8;
    
    --color-bg: #ffffff;
    --color-bg-light: #f8fafc;
    --color-bg-dark: #0c1222;
    --color-bg-card: #ffffff;
    
    --color-border: #e2e8f0;
    
    /* WhatsApp */
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #128C7E;
    
    /* Gradients - Vibrant */
    --gradient-primary: linear-gradient(135deg, #0891b2 0%, #22d3ee 50%, #06b6d4 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-dark: linear-gradient(135deg, #0c1222 0%, #1e293b 50%, #0f172a 100%);
    --gradient-hero: linear-gradient(180deg, rgba(12, 18, 34, 0.95) 0%, rgba(8, 145, 178, 0.85) 100%);
    --gradient-vibrant: linear-gradient(135deg, #06b6d4 0%, #0891b2 25%, #8b5cf6 50%, #f472b6 75%, #f59e0b 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

/* ==========================================
   Preloader Styles
   ========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c1222 0%, #1e3a5f 50%, #0c1222 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    animation: preloaderFadeIn 0.8s ease forwards;
}

@keyframes preloaderFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preloader-logo {
    margin-bottom: 2rem;
    animation: preloaderPulse 2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.preloader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    -webkit-animation: spinnerRotate 1.5s linear infinite;
    animation: spinnerRotate 1.5s linear infinite;
    will-change: transform;
}

.spinner-ring:nth-child(1) {
    border-top-color: #00BCD4;
    border-right-color: #00BCD4;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-right-color: #D4AF37;
    border-bottom-color: #D4AF37;
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-bottom-color: #00BCD4;
    border-left-color: #00BCD4;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

@-webkit-keyframes spinnerRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinnerRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.preloader-text {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.preloader-text .dot {
    animation: dotBlink 1.4s infinite;
    animation-fill-mode: both;
}

.preloader-text .dot-1 {
    animation-delay: 0s;
}

.preloader-text .dot-2 {
    animation-delay: 0.2s;
}

.preloader-text .dot-3 {
    animation-delay: 0.4s;
}

@keyframes dotBlink {
    0%, 80%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

@keyframes preloaderTextPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ==========================================
   Contact Floating Button
   ========================================== */
.contact-float-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    z-index: 9998;
    box-shadow: 
        0 4px 15px rgba(0, 188, 212, 0.4),
        0 0 30px rgba(0, 188, 212, 0.2);
    transition: all 0.3s ease;
    animation: contactBounce 2s ease-in-out infinite;
}

.contact-float-btn:hover {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    transform: scale(1.1);
    box-shadow: 
        0 6px 25px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3);
}

.contact-float-btn svg {
    width: 28px;
    height: 28px;
}

@keyframes contactBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Contact Button Tooltip */
.contact-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: #333;
}

.contact-float-btn:hover .contact-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Contact button pulse ring */
.contact-float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0;
    animation: contactPulse 2s ease-out infinite;
}

@keyframes contactPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile adjustments for contact button */
@media (max-width: 768px) {
    .contact-float-btn {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .contact-float-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-tooltip {
        display: none;
    }
}
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows - Enhanced */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(8, 145, 178, 0.15);
    --shadow-lg: 0 10px 40px rgba(8, 145, 178, 0.12);
    --shadow-xl: 0 20px 60px rgba(8, 145, 178, 0.18);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
}

.section-title .highlight {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header.light .section-title {
    color: #fff;
}

.section-header.light .section-badge {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
    color: var(--color-gold-light);
    border-color: rgba(245, 158, 11, 0.3);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
    color: #fff;
    box-shadow: 
        0 4px 15px rgba(6, 182, 212, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(6, 182, 212, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(245, 158, 11, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 158, 11, 0.5);
    color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(12, 18, 34, 0.98) 0%, rgba(8, 47, 61, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: var(--space-sm) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar.scrolled .logo-img {
    height: 45px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    transition: var(--transition-base);
}

.logo-subtext {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-accent);
}

.navbar.scrolled .logo-text {
    color: var(--color-text);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-base);
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--color-gold-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition-base);
}

.navbar.scrolled .nav-toggle span {
    background: #fff;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(139, 92, 246, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.12) 0%, transparent 70%),
        linear-gradient(180deg, #0f172a 0%, #1e3a5f 40%, #2d5a7b 100%);
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 70% 60%, rgba(245, 158, 11, 0.08) 0%, transparent 25%);
    animation: slowRotate 80s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(248, 250, 252, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* Wave Pattern Background */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2306b6d4' fill-opacity='0.05' d='M0,192L48,176C96,160,192,128,288,138.7C384,149,480,203,576,208C672,213,768,171,864,165.3C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;
    opacity: 0.8;
    pointer-events: none;
}

/* Abstract circles decoration */
.hero .hero-content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero .hero-content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 58, 95, 0.3) 50%, rgba(8, 145, 178, 0.2) 100%);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-lg);
    padding-bottom: var(--space-3xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold-light);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(251, 191, 36, 0.08) 100%);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin-bottom: var(--space-md);
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-gold-light);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.15), inset 0 0 20px rgba(245, 158, 11, 0.05);
        transform: translateY(0);
    }
    50% { 
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.25), inset 0 0 30px rgba(245, 158, 11, 0.1);
        transform: translateY(-2px);
    }
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    display: block;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 25%, #67e8f9 50%, #f59e0b 75%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
    filter: drop-shadow(0 2px 10px rgba(6, 182, 212, 0.3));
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    margin: var(--space-md) auto var(--space-lg);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
}

/* Hero Products Showcase */
.hero-products {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: var(--space-lg);
    margin: var(--space-md) 0;
    flex-wrap: wrap;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    border-radius: var(--radius-2xl);
    position: relative;
}

.hero-products::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    padding: 1px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, transparent 50%, rgba(245, 158, 11, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-product-item {
    width: 120px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 15px 35px rgba(6, 182, 212, 0.4));
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-product-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.5), rgba(212, 175, 55, 0.3), rgba(6, 182, 212, 0.5));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-product-item:hover::before {
    opacity: 1;
}

.hero-product-item::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.5) 0%, transparent 70%);
    filter: blur(8px);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.hero-product-item:hover::after {
    opacity: 1;
    width: 100%;
    bottom: -20px;
    filter: blur(12px);
}

.hero-product-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.08) saturate(1.1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    border-radius: var(--radius-md);
}

/* Specific fix for Albluea image which has different dimensions */
.hero-product-item:first-child img {
    max-height: 90%;
    width: auto;
}

.hero-product-item:hover {
    transform: translateY(-20px) scale(1.12);
    filter: drop-shadow(0 25px 50px rgba(6, 182, 212, 0.6));
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-color: rgba(6, 182, 212, 0.3);
}

.hero-product-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.12) saturate(1.15) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.hero-product-item:nth-child(1) { animation: floatProduct 4s ease-in-out infinite; }
.hero-product-item:nth-child(2) { animation: floatProduct 4s ease-in-out 0.4s infinite; }
.hero-product-item:nth-child(3) { animation: floatProduct 4s ease-in-out 0.8s infinite; }
.hero-product-item:nth-child(4) { animation: floatProduct 4s ease-in-out 1.2s infinite; }
.hero-product-item:nth-child(5) { animation: floatProduct 4s ease-in-out 1.6s infinite; }
.hero-product-item:nth-child(6) { animation: floatProduct 4s ease-in-out 2s infinite; }
.hero-product-item:nth-child(7) { animation: floatProduct 4s ease-in-out 2.4s infinite; }

@keyframes floatProduct {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 100px !important;
    }
    
    .hero-products {
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .hero-product-item {
        width: 90px;
        height: 135px;
        padding: 0.4rem;
    }
}

@media (max-width: 480px) {
    .hero-product-item {
        width: 55px;
        height: 85px;
        padding: 0.25rem;
    }
    
    .hero-product-item::after {
        bottom: -8px;
        height: 12px;
    }
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(6, 182, 212, 0.5);
    border-radius: 12px;
    margin: var(--space-sm) auto 0;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-content {
    max-width: 540px;
}

.about-text {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.feature span {
    font-weight: 500;
    color: var(--color-text);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 50%, #0891b2 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    color: #fff;
    box-shadow: 0 10px 40px rgba(8, 145, 178, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4 0%, #f59e0b 50%, #06b6d4 100%);
}

.visual-card.secondary {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6a 50%, #3d6a8a 100%);
    color: #fff;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.visual-card.secondary::before {
    background: linear-gradient(90deg, #f59e0b 0%, #06b6d4 50%, #f59e0b 100%);
}

.visual-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-gold-light);
}

.visual-card p {
    font-size: 0.9375rem;
    opacity: 0.9;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================
   Mission Banner
   ========================================== */
.mission-banner {
    background: var(--gradient-dark);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.mission-content h2 {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.mission-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==========================================
   Products Section
   ========================================== */
.products {
    padding: var(--space-3xl) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.08);
    transition: var(--transition-base);
    border: 1px solid rgba(6, 182, 212, 0.1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4 0%, #0891b2 50%, #f59e0b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 145, 178, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
}

.product-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(145deg, #f0f9ff 0%, #ffffff 100%);
    align-items: stretch;
}

.product-image {
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card.featured .product-image {
    height: auto;
    min-height: 350px;
    max-height: 450px;
    padding: var(--space-md);
}

.product-card.featured .product-image img {
    object-fit: contain;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

/* Product gradient backgrounds (fallback) */
.product-image.albluea {
    background: linear-gradient(135deg, #0066cc 0%, #00bcd4 50%, #00d4aa 100%);
}

.product-image.boofi {
    background: linear-gradient(135deg, #4a3728 0%, #6d4c41 50%, #8d6e63 100%);
}

.product-image.dalale {
    background: linear-gradient(135deg, #ff6f00 0%, #ff9800 50%, #ffc107 100%);
}

.product-image.qephire {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 50%, #bdbdbd 100%);
}

.product-image.mastaw {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 50%, #ffcc80 100%);
}

.product-image.habanae {
    background: linear-gradient(135deg, #d32f2f 0%, #ff5722 50%, #ff9800 100%);
}

.product-image.hoppse {
    background: linear-gradient(135deg, #1b5e20 0%, #388e3c 50%, #4caf50 100%);
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
}

.product-content {
    padding: var(--space-lg);
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.product-tagline {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.product-ingredients {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.product-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.benefit {
    font-size: 0.75rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(10, 110, 124, 0.08) 0%, rgba(0, 188, 212, 0.08) 100%);
    color: var(--color-primary);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
}

/* ==========================================
   Values Section
   ========================================== */
.values {
    padding: var(--space-3xl) 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, #0c1222 0%, #1e293b 50%, #0f172a 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
}

.value-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4 0%, #8b5cf6 50%, #f59e0b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--color-gold-light);
}

.value-card h3 {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-light);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: var(--space-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info p {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-top: var(--space-md);
}

.contact-details {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(10, 110, 124, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contact-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.contact-form {
    background: var(--color-bg-light);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.form-group label .required {
    color: #ef4444;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    color: var(--color-text);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(10, 110, 124, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--color-bg-dark);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand .logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    background: transparent;
    padding: 0;
    margin: 0;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-newsletter p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.newsletter-form .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
}

.footer-bottom {
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   Responsive Styles
   ========================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .product-card.featured {
        grid-column: span 1;
        display: block;
    }
    
    .product-card.featured .product-image {
        min-height: 220px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-xl);
        transition: var(--transition-base);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.25rem;
        color: #fff;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-scroll {
        display: block;
        bottom: 5px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    :root {
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .product-content {
        padding: var(--space-md);
    }
    
    .contact-form {
        padding: var(--space-md);
    }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Floating Bubbles Animation
   ========================================== */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.15) 0%, 
        rgba(0, 188, 212, 0.05) 50%,
        rgba(212, 175, 55, 0.1) 100%);
    border-radius: 50%;
    animation: floatBubble linear infinite;
    border: 1px solid rgba(0, 188, 212, 0.2);
    box-shadow: 
        inset 0 0 20px rgba(0, 188, 212, 0.1),
        0 0 10px rgba(0, 188, 212, 0.05);
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 35%;
    animation-duration: 14s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 30px;
    height: 30px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    width: 45px;
    height: 45px;
    left: 65%;
    animation-duration: 13s;
    animation-delay: 3s;
}

.bubble:nth-child(6) {
    width: 25px;
    height: 25px;
    left: 75%;
    animation-duration: 9s;
    animation-delay: 5s;
}

.bubble:nth-child(7) {
    width: 55px;
    height: 55px;
    left: 85%;
    animation-duration: 15s;
    animation-delay: 2.5s;
}

.bubble:nth-child(8) {
    width: 35px;
    height: 35px;
    left: 5%;
    animation-duration: 11s;
    animation-delay: 6s;
}

.bubble:nth-child(9) {
    width: 15px;
    height: 15px;
    left: 45%;
    animation-duration: 8s;
    animation-delay: 1.5s;
}

.bubble:nth-child(10) {
    width: 50px;
    height: 50px;
    left: 90%;
    animation-duration: 12s;
    animation-delay: 4.5s;
}

@keyframes floatBubble {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(0.8);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateX(30px) scale(1);
    }
    90% {
        opacity: 0.4;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-20px) scale(0.9);
    }
}

/* ==========================================
   Microbiome/Probiotic Floating Images
   ========================================== */
.microbiome-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.microbe-img {
    position: absolute;
    opacity: 0.25;
    animation: microbeFloat 20s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 188, 212, 0.3));
}

.microbe-img-1 {
    width: 120px;
    height: 120px;
    top: 8%;
    left: 5%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.microbe-img-2 {
    width: 100px;
    height: 100px;
    top: 65%;
    left: 8%;
    animation-duration: 22s;
    animation-delay: -5s;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.microbe-img-3 {
    width: 90px;
    height: 90px;
    top: 20%;
    right: 8%;
    animation-duration: 28s;
    animation-delay: -10s;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.3));
}

.microbe-img-4 {
    width: 80px;
    height: 80px;
    top: 75%;
    right: 5%;
    animation-duration: 20s;
    animation-delay: -3s;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.3));
}

.microbe-img-5 {
    width: 110px;
    height: 110px;
    top: 40%;
    left: 3%;
    animation-duration: 24s;
    animation-delay: -8s;
}

.microbe-img-6 {
    width: 70px;
    height: 70px;
    bottom: 15%;
    right: 12%;
    animation-duration: 26s;
    animation-delay: -12s;
    filter: drop-shadow(0 0 15px rgba(244, 114, 182, 0.3));
}

.microbe-img-7 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 3%;
    animation-duration: 23s;
    animation-delay: -7s;
    opacity: 0.18;
}

.microbe-img-8 {
    width: 75px;
    height: 75px;
    bottom: 25%;
    left: 12%;
    animation-duration: 27s;
    animation-delay: -15s;
    opacity: 0.2;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.3));
}

.microbe-img-9 {
    width: 65px;
    height: 65px;
    top: 15%;
    left: 25%;
    animation-duration: 21s;
    animation-delay: -4s;
    opacity: 0.22;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.microbe-img-10 {
    width: 85px;
    height: 85px;
    top: 55%;
    right: 20%;
    animation-duration: 29s;
    animation-delay: -9s;
    opacity: 0.18;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.4));
}

.microbe-img-11 {
    width: 55px;
    height: 55px;
    bottom: 35%;
    left: 35%;
    animation-duration: 24s;
    animation-delay: -11s;
    opacity: 0.2;
    filter: drop-shadow(0 0 15px rgba(0, 188, 212, 0.4));
}

.microbe-img-12 {
    width: 70px;
    height: 70px;
    top: 30%;
    right: 25%;
    animation-duration: 26s;
    animation-delay: -6s;
    opacity: 0.15;
    filter: drop-shadow(0 0 15px rgba(244, 114, 182, 0.4));
}

@keyframes microbeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    20% {
        transform: translate(15px, -25px) rotate(45deg) scale(1.05);
    }
    40% {
        transform: translate(-10px, -40px) rotate(90deg) scale(0.98);
    }
    60% {
        transform: translate(20px, -20px) rotate(180deg) scale(1.02);
    }
    80% {
        transform: translate(-15px, -35px) rotate(270deg) scale(0.95);
    }
}

/* ==========================================
   Fermentation Particles
   ========================================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleRise linear infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.particle:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-duration: 10s; animation-delay: 1s; width: 3px; height: 3px; }
.particle:nth-child(3) { left: 30%; animation-duration: 7s; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-duration: 9s; animation-delay: 0.5s; width: 5px; height: 5px; }
.particle:nth-child(5) { left: 50%; animation-duration: 11s; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-duration: 8s; animation-delay: 1.5s; width: 3px; height: 3px; }
.particle:nth-child(7) { left: 70%; animation-duration: 10s; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 80%; animation-duration: 7s; animation-delay: 0.8s; width: 4px; height: 4px; }
.particle:nth-child(9) { left: 90%; animation-duration: 9s; animation-delay: 4s; }
.particle:nth-child(10) { left: 15%; animation-duration: 12s; animation-delay: 1.2s; width: 3px; height: 3px; }
.particle:nth-child(11) { left: 55%; animation-duration: 8s; animation-delay: 2.8s; }
.particle:nth-child(12) { left: 85%; animation-duration: 10s; animation-delay: 3.5s; width: 5px; height: 5px; }

@keyframes particleRise {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0);
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateX(20px);
    }
    90% {
        opacity: 0.3;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(-15px);
    }
}

/* ==========================================
   Organic Wave Shapes
   ========================================== */
.organic-shapes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.organic-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
}

.wave-1 {
    animation: waveMove 25s linear infinite;
    opacity: 0.8;
}

.wave-2 {
    animation: waveMove 20s linear infinite reverse;
    opacity: 0.6;
    bottom: 20px;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   Mobile Adjustments for Animations
   ========================================== */
@media (max-width: 768px) {
    .microbe-img:nth-child(n+5) {
        display: none;
    }
    
    .microbe-img {
        opacity: 0.15;
    }
    
    .microbe-img-1 {
        width: 80px;
        height: 80px;
    }
    
    .microbe-img-2 {
        width: 70px;
        height: 70px;
    }
    
    .microbe-img-3 {
        width: 60px;
        height: 60px;
    }
    
    .microbe-img-4 {
        width: 55px;
        height: 55px;
    }
    
    .particle:nth-child(n+7) {
        display: none;
    }
    
    .organic-wave {
        height: 100px;
    }
    
    .bubble:nth-child(n+7) {
        display: none;
    }
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 
        0 4px 15px rgba(0, 188, 212, 0.4),
        0 0 30px rgba(0, 188, 212, 0.2);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 6px 25px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(0, 188, 212, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Pulse animation for back to top */
.back-to-top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0;
    animation: backToTopPulse 2s ease-out infinite;
}

@keyframes backToTopPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================================
   Enhanced Scroll Animations
   ========================================== */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Mobile adjustments for back to top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    .bubble:nth-child(n+7) {
        display: none;
    }
}

/* ==========================================
   Floating Molecules
   ========================================== */
.molecules-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.molecule {
    position: absolute;
    opacity: 0.15;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
}

.molecule-1 {
    width: 80px;
    top: 15%;
    left: 8%;
    animation: moleculeFloat1 18s ease-in-out infinite;
}

.molecule-2 {
    width: 60px;
    top: 60%;
    right: 12%;
    animation: moleculeFloat2 22s ease-in-out infinite;
}

.molecule-3 {
    width: 50px;
    top: 75%;
    left: 20%;
    animation: moleculeFloat1 25s ease-in-out infinite reverse;
}

.molecule-4 {
    width: 70px;
    top: 25%;
    right: 5%;
    animation: moleculeFloat2 20s ease-in-out infinite;
}

.molecule-5 {
    width: 55px;
    top: 45%;
    left: 12%;
    animation: moleculeFloat1 23s ease-in-out infinite;
    opacity: 0.12;
}

.molecule-6 {
    width: 65px;
    top: 35%;
    right: 18%;
    animation: moleculeFloat2 19s ease-in-out infinite reverse;
    opacity: 0.18;
}

.molecule-7 {
    width: 45px;
    bottom: 20%;
    left: 30%;
    animation: moleculeFloat1 26s ease-in-out infinite;
    opacity: 0.1;
}

.molecule-8 {
    width: 75px;
    bottom: 35%;
    right: 8%;
    animation: moleculeFloat2 21s ease-in-out infinite;
    opacity: 0.14;
}

@keyframes moleculeFloat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-10px, -50px) rotate(180deg);
    }
    75% {
        transform: translate(30px, -20px) rotate(270deg);
    }
}

@keyframes moleculeFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(-25px, 20px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translate(15px, -30px) rotate(240deg) scale(0.9);
    }
}

/* ==========================================
   Lab Flask Elements
   ========================================== */
.flask-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flask {
    position: absolute;
    opacity: 0.12;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
}

.flask-1 {
    width: 100px;
    bottom: 20%;
    left: 5%;
    animation: flaskBubble 12s ease-in-out infinite;
}

.flask-2 {
    width: 70px;
    top: 30%;
    right: 8%;
    animation: flaskBubble 15s ease-in-out infinite 2s;
    transform: scaleX(-1);
}

@keyframes flaskBubble {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ==========================================
   Botanical Elements
   ========================================== */
.botanical-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.botanical {
    position: absolute;
    opacity: 0.15;
}

.botanical-leaf-1 {
    width: 60px;
    top: 20%;
    left: 15%;
    animation: leafDrift1 25s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.3));
}

.botanical-leaf-2 {
    width: 45px;
    bottom: 30%;
    right: 18%;
    animation: leafDrift2 30s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.3));
}

.botanical-tea-1 {
    width: 70px;
    top: 50%;
    left: 3%;
    animation: leafDrift1 20s ease-in-out infinite reverse;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.botanical-tea-2 {
    width: 50px;
    top: 10%;
    right: 20%;
    animation: leafDrift2 28s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.botanical-amla {
    width: 80px;
    bottom: 15%;
    right: 5%;
    animation: amlaFloat 22s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.3));
}

@keyframes leafDrift1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, 20px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 35px) rotate(-3deg);
    }
    75% {
        transform: translate(20px, 15px) rotate(8deg);
    }
}

@keyframes leafDrift2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-20px, 25px) rotate(-10deg);
    }
    66% {
        transform: translate(10px, -15px) rotate(5deg);
    }
}

@keyframes amlaFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ==========================================
   Water Droplets
   ========================================== */
.droplets-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.droplet {
    position: absolute;
    width: 10px;
    height: 14px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.3), rgba(6, 182, 212, 0.6));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    box-shadow: 
        inset -2px -2px 4px rgba(255, 255, 255, 0.3),
        0 0 10px rgba(6, 182, 212, 0.3);
}

.droplet-1 {
    left: 10%;
    animation: dropletFall 8s ease-in infinite;
}

.droplet-2 {
    left: 25%;
    width: 8px;
    height: 12px;
    animation: dropletFall 10s ease-in infinite 1s;
}

.droplet-3 {
    left: 45%;
    width: 12px;
    height: 16px;
    animation: dropletFall 12s ease-in infinite 2s;
}

.droplet-4 {
    left: 65%;
    animation: dropletFall 9s ease-in infinite 0.5s;
}

.droplet-5 {
    left: 80%;
    width: 6px;
    height: 9px;
    animation: dropletFall 11s ease-in infinite 3s;
}

.droplet-6 {
    left: 92%;
    width: 9px;
    height: 13px;
    animation: dropletFall 7s ease-in infinite 1.5s;
}

@keyframes dropletFall {
    0% {
        top: -5%;
        opacity: 0;
        transform: scale(0.5);
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.4;
    }
    100% {
        top: 105%;
        opacity: 0;
        transform: scale(0.8);
    }
}

/* ==========================================
   Gradient Mesh Orbs
   ========================================== */
.orbs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.6), rgba(6, 182, 212, 0) 70%);
    top: -10%;
    left: -10%;
    animation: orbPulse1 15s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0) 70%);
    bottom: -5%;
    right: -5%;
    animation: orbPulse2 18s ease-in-out infinite;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), rgba(139, 92, 246, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbPulse3 20s ease-in-out infinite;
}

@keyframes orbPulse1 {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.2) translate(50px, 50px);
    }
}

@keyframes orbPulse2 {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.3) translate(-40px, -30px);
    }
}

@keyframes orbPulse3 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.4;
    }
}

/* ==========================================
   Light Rays / God Rays
   ========================================== */
.light-rays {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0.08;
}

.light-rays::before,
.light-rays::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 2px;
    height: 200%;
    background: linear-gradient(180deg, 
        transparent,
        rgba(6, 182, 212, 0.8),
        rgba(212, 175, 55, 0.6),
        transparent
    );
    transform-origin: top center;
}

.light-rays::before {
    animation: lightRay 8s ease-in-out infinite;
}

.light-rays::after {
    animation: lightRay 8s ease-in-out infinite 4s;
}

@keyframes lightRay {
    0%, 100% {
        transform: translateX(-50%) rotate(-30deg);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) rotate(30deg);
        opacity: 1;
    }
}

/* Additional light rays */
.light-rays::before {
    box-shadow: 
        -100px 0 0 rgba(6, 182, 212, 0.3),
        -200px 0 0 rgba(212, 175, 55, 0.2),
        100px 0 0 rgba(6, 182, 212, 0.3),
        200px 0 0 rgba(212, 175, 55, 0.2);
}

/* ==========================================
   Swirl / Vortex Animation
   ========================================== */
.swirl-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}

.swirl {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        repeating-conic-gradient(
            from 0deg,
            transparent 0deg 10deg,
            rgba(6, 182, 212, 0.3) 10deg 20deg
        );
    animation: swirlRotate 30s linear infinite;
    mask-image: radial-gradient(circle, transparent 30%, black 70%);
    -webkit-mask-image: radial-gradient(circle, transparent 30%, black 70%);
}

@keyframes swirlRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* ==========================================
   Constellation Canvas
   ========================================== */
.constellation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* ==========================================
   Mobile Adjustments for New Effects
   ========================================== */
@media (max-width: 1024px) {
    .molecule-3, .molecule-4 {
        display: none;
    }
    
    .flask-2 {
        display: none;
    }
    
    .botanical-tea-2, .botanical-leaf-2 {
        display: none;
    }
    
    .droplet-5, .droplet-6 {
        display: none;
    }
    
    .orb-3 {
        display: none;
    }
    
    .swirl-container {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 60px;
    }
    
    .molecules-container {
        display: none;
    }
    
    .flask-container {
        display: none;
    }
    
    .botanical-container {
        opacity: 0.1;
    }
    
    .botanical-leaf-1, .botanical-amla {
        display: block;
    }
    
    .botanical-leaf-2, .botanical-tea-1, .botanical-tea-2 {
        display: none;
    }
    
    .droplets-container {
        display: none;
    }
    
    .orbs-container {
        opacity: 0.2;
    }
    
    .orb-1 {
        width: 200px;
        height: 200px;
    }
    
    .orb-2 {
        width: 150px;
        height: 150px;
    }
    
    .light-rays {
        opacity: 0.05;
    }
    
    .swirl-container {
        display: none;
    }
    
    .constellation-canvas {
        opacity: 0.2;
    }
}
