/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #000000;
    --secondary-bg: #0a0a0a;
    --card-bg: #111111;
    --neon-green: #00ff88;
    --aqua-blue: #00d4ff;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --gradient-primary: linear-gradient(135deg, var(--neon-green), var(--aqua-blue));
    --gradient-secondary: linear-gradient(45deg, #00ff88, #00d4ff, #ff00aa);
    --shadow-neon: 0 0 20px rgba(0, 255, 136, 0.3);
    --shadow-aqua: 0 0 20px rgba(0, 212, 255, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.logo-icon img {
    transition: all 0.3s ease;
    border-radius: 50%;
}

.nav-logo:hover .logo-icon img {
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8));
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 40px;
    background: var(--gradient-primary);
    opacity: 0.2;
    filter: blur(20px);
    border-radius: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    margin-top: 80px; /* Shift text down */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--aqua-blue) 50%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: gradientGlow 2s ease-in-out infinite;
}

@keyframes gradientGlow {
    0%, 100% { 
        filter: brightness(1) saturate(1);
    }
    50% { 
        filter: brightness(1.2) saturate(1.3);
    }
}

/* Section Titles - Enhanced Cooler & Bolder */
.section-title {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: titleGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-green), var(--aqua-blue), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--aqua-blue), var(--neon-green), transparent);
    border-radius: 1px;
    opacity: 0.7;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 50px rgba(0, 255, 136, 0.7), 0 0 70px rgba(0, 212, 255, 0.3);
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--aqua-blue);
}

.btn-secondary:hover {
    background: var(--aqua-blue);
    color: var(--primary-bg);
    box-shadow: var(--shadow-aqua);
    transform: translateY(-2px);
}

/* Interactive Bottle - Realistic Design */
.interactive-bottle {
    position: relative;
    width: 200px;
    height: 300px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottle-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle-body {
    position: relative;
    width: 120px;
    height: 240px;
    background: linear-gradient(135deg, 
        #e8f4fd 0%,
        #ffffff 20%,
        #f0f8ff 50%,
        #e6f3ff 80%,
        #d4e9f7 100%);
    border-radius: 60px 60px 40px 40px;
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.8),
        inset 0 0 40px rgba(0, 150, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.bottle-shoulder {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: linear-gradient(135deg, 
        #d4e9f7 0%,
        #e6f3ff 50%,
        #d4e9f7 100%);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.bottle-neck {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, 
        #cce7f5 0%,
        #d4e9f7 50%,
        #cce7f5 100%);
    border-radius: 30px 30px 0 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.neck-ring {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 8px;
    background: linear-gradient(90deg, 
        #b8d9f0 0%,
        #d4e9f7 50%,
        #b8d9f0 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.bottle-cap {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cap-body {
    width: 65px;
    height: 25px;
    background: linear-gradient(135deg, 
        #4a90e2 0%,
        #5ba0f2 50%,
        #4a90e2 100%);
    border-radius: 32px 32px 0 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

.cap-top {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 8px;
    background: linear-gradient(135deg, 
        #357abd 0%,
        #4a90e2 50%,
        #357abd 100%);
    border-radius: 27px 27px 0 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cap-grip {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 4px;
    background: linear-gradient(90deg, 
        #2d6da3 0%,
        #357abd 50%,
        #2d6da3 100%);
    border-radius: 2px;
}

.bottle-water {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 180px;
    background: linear-gradient(180deg, 
        rgba(135, 206, 250, 0.8) 0%,
        rgba(100, 149, 237, 0.6) 50%,
        rgba(70, 130, 180, 0.4) 100%);
    border-radius: 50px 50px 30px 30px;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.bottle-water.water-visible {
    opacity: 1;
}

.bottle-condensation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.condensation-drop {
    position: absolute;
    width: 3px;
    height: 8px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.3) 100%);
    border-radius: 2px;
    animation: condensation-drip 3s ease-in-out infinite;
}

.condensation-drop:nth-child(1) {
    top: 30px;
    left: 15px;
    animation-delay: 0s;
}

.condensation-drop:nth-child(2) {
    top: 60px;
    right: 20px;
    animation-delay: 1s;
}

.condensation-drop:nth-child(3) {
    top: 90px;
    left: 25px;
    animation-delay: 2s;
}

.condensation-drop:nth-child(4) {
    top: 120px;
    right: 15px;
    animation-delay: 0.5s;
}

.bottle-highlights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.highlight-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%);
    height: 1px;
    width: 80%;
    left: 10%;
    animation: highlight-shimmer 4s ease-in-out infinite;
}

.highlight-line:nth-child(1) {
    top: 40px;
    animation-delay: 0s;
}

.highlight-line:nth-child(2) {
    top: 120px;
    animation-delay: 1.5s;
}

.highlight-line:nth-child(3) {
    top: 180px;
    animation-delay: 3s;
}

.bottle-reflection {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    border-radius: 0 60px 40px 0;
    animation: reflection-move 3s ease-in-out infinite;
}

/* Bottle Animations */
@keyframes condensation-drip {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(0);
    }
    50% { 
        opacity: 1; 
        transform: translateY(5px);
    }
}

@keyframes highlight-shimmer {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateX(-20px);
    }
    50% { 
        opacity: 0.8; 
        transform: translateX(20px);
    }
}

@keyframes reflection-move {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateX(0);
    }
    50% { 
        opacity: 0.6; 
        transform: translateX(-5px);
    }
}

/* Cap Open Animation */
.bottle-cap.cap-open {
    transform: translateX(-50%) rotateX(-120deg);
    transform-origin: bottom center;
}

/* Hover Effects */
.interactive-bottle:hover .bottle-body {
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.9),
        inset 0 0 40px rgba(0, 150, 255, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 255, 136, 0.3);
}

.interactive-bottle:hover .bottle-cap {
    transform: translateX(-50%) translateY(-5px);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}

.particle-3 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.particle-4 {
    top: 80%;
    right: 25%;
    animation-delay: 3s;
}

.particle-5 {
    top: 30%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) translateX(10px); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) translateX(-5px); 
        opacity: 0.5;
    }
    75% { 
        transform: translateY(-15px) translateX(15px); 
    opacity: 0.7;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-container {
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content {
        margin-top: 60px; /* Slightly less margin on mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .interactive-bottle {
        width: 150px;
        height: 225px;
    }
    
    .bottle-body {
        width: 90px;
        height: 180px;
        border-radius: 45px 45px 30px 30px;
    }
    
    .bottle-neck {
        width: 45px;
        height: 30px;
        border-radius: 22px 22px 0 0;
    }
    
    .cap-body {
        width: 50px;
        height: 20px;
        border-radius: 25px 25px 0 0;
    }
    
    .bottle-water {
        width: 75px;
        height: 135px;
        border-radius: 37px 37px 22px 22px;
    }
}

/* About Section - Completely Redesigned */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 20, 40, 0.8) 50%,
        rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* About Section Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr; /* Changed from 1fr 280px to single column */
    gap: 40px; /* Reduced gap since cards are now below text */
    align-items: start;
    margin-top: 40px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 100%; /* Ensure text doesn't overflow */
}

.about-intro {
    margin-bottom: 20px;
}

.about-description {
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 100%; /* Prevent text from extending into stats area */
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for 2x2 layout */
    gap: 30px; /* Increased from 25px to make cards bigger */
    margin-top: 20px;
    width: 100%; /* Ensure full width usage */
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Changed to 1x4 horizontal layout */
    gap: 25px; /* Increased gap for better spacing */
    position: static; /* Changed from sticky to static */
    align-self: start;
    min-width: auto; /* Allow natural width */
    max-width: 100%; /* Full width for horizontal layout */
    margin: 0 auto; /* Center the stats section */
    padding: 0 20px; /* Add horizontal padding for better spacing */
    width: 100%; /* Ensure full width usage like mission-grid */
}

.stat-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--neon-green);
    border-radius: 10px; /* Reduced from 15px */
    padding: 25px 20px; /* Increased vertical padding to match mission cards */
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    min-width: auto; /* Allow natural width */
    position: relative;
    z-index: 2;
    min-height: 160px; /* Increased height to match mission cards better */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-icon {
    font-size: 1.6rem; /* Reduced from 1.8rem */
    margin-bottom: 8px; /* Reduced from 12px */
    display: block;
}

.stat-number {
    font-size: 1.2rem; /* Reduced from 1.4rem */
    font-weight: 700;
    color: #00ff88;
    display: block;
    margin-bottom: 3px; /* Reduced from 0.5rem */
    word-break: keep-all;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.7rem; /* Reduced from 0.75rem */
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.2; /* Reduced from 1.3 */
}

/* Responsive adjustments - Desktop only */
@media (max-width: 1400px) {
    .about-content {
        grid-template-columns: 1fr; /* Keep single column */
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr); /* Keep 2x2 on larger screens */
        gap: 20px; /* Increased gap for better spacing */
        max-width: 600px; /* Increased max width to match mission cards */
        width: 100%; /* Ensure full width usage */
    }
    
    .stat-card {
        padding: 20px 15px; /* Maintain good padding proportions */
        min-height: 150px; /* Slightly reduced height for medium screens */
    }
}

@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        position: static;
        grid-template-columns: repeat(2, 1fr); /* Maintain 2x2 on medium screens */
        max-width: 100%;
        gap: 20px; /* Increased from 15px */
        min-width: auto;
        max-width: 600px; /* Increased from 500px */
        margin: 0 auto;
        width: 100%; /* Ensure full width usage */
    }
    
    .stat-card {
        min-width: auto; /* Allow flex to manage width */
        flex: 1;
        max-width: none; /* Remove max-width constraint */
        padding: 18px 15px; /* Maintain good padding proportions */
        min-height: 140px; /* Adjusted height for medium screens */
    }
}

/* Mobile layout - NO CHANGES as requested */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(4, 1fr); /* Changed to 1x4 horizontal layout */
        gap: 10px; /* Reduced from 12px */
        max-width: 100%;
    }
    
    .stat-card {
        min-width: 100%;
        max-width: 100%;
        padding: 12px; /* Reduced from 16px */
    }
    
    .stat-number {
        font-size: 1rem; /* Reduced from 1.2rem */
    }
    
    .stat-label {
        font-size: 0.6rem; /* Reduced from 0.7rem */
    }
    
    .mission-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    
    .mission-card {
        min-height: auto;
        padding: 25px;
        min-width: 100%; /* Full width on mobile */
    }
}

/* About Text Section */
.about-subtitle {
    font-size: 2.2rem; /* Increased from 2.5rem */
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.about-description {
    font-size: 1.3rem; /* Increased from 1.2rem */
    line-height: 1.8;
    color: #e6fff6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 100%;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .about-subtitle {
        font-size: 1.8rem; /* Increased from smaller size */
    }
    
    .about-description {
        font-size: 1.1rem; /* Increased from smaller size */
        line-height: 1.7;
    }
}

/* Enhanced Stats Cards */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.05) 0%,
        rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 350px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1) 0%,
        rgba(0, 212, 255, 0.1) 100%);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.15);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff88;
    display: block;
    margin-bottom: 0.5rem;
    word-break: keep-all;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.85rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.4;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials .stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 20, 40, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.1),
        inset 0 0 20px rgba(0, 255, 136, 0.05);
}

.testimonials .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 255, 136, 0.1) 50%,
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.testimonials .stat-item:hover::before {
    left: 100%;
}

.testimonials .stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(0, 255, 136, 0.1) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.testimonials .stat-item:hover::after {
    opacity: 1;
}

.testimonials .stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 
        0 25px 50px rgba(0, 255, 136, 0.3),
        0 0 30px rgba(0, 212, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.testimonials .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-green), var(--aqua-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    0% { 
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
    }
}

.testimonials .stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.testimonials .stat-item:hover .stat-label {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Add floating particles around stats */
.testimonials-stats::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 8s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-10px) rotate(1deg);
        opacity: 0.8;
    }
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem;
        max-width: 100%;
    }
    
    .testimonials .stat-item {
        padding: 2rem 1.5rem;
        min-height: 140px;
    }
    
    .testimonials .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonials .stat-label {
        font-size: 1rem;
    }
}

.contact-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(17, 17, 17, 0.8);
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .contact-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Enhanced Mission Cards */
.mission-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 35px; /* Increased from 25px to make cards bigger */
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px; /* Increased from 280px to make cards bigger */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 450px; /* Increased from 400px to make cards bigger */
}

.mission-card:hover {
    background: rgba(0, 0, 0, 0.8); /* Keep dark background, don't turn gray */
    border-color: var(--aqua-blue);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.4),
        0 0 50px rgba(0, 212, 255, 0.3),
        0 0 70px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.card-icon {
    width: 70px; /* Increased icon size */
    height: 70px; /* Increased icon size */
    margin: 0 auto 25px; /* Increased margin */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-green), var(--aqua-blue));
    border-radius: 18px; /* Increased border radius */
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
}

.card-title {
    font-size: 1.4rem; /* Increased font size */
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 20px; /* Increased margin */
    line-height: 1.3;
}

.card-description {
    font-size: 1rem; /* Increased font size */
    line-height: 1.7; /* Increased line height */
    color: #e6fff6;
    margin-bottom: 25px; /* Increased margin */
    flex-grow: 1;
    max-width: 100%; /* Ensure text uses full card width */
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; /* Increased gap between feature tags */
    justify-content: center;
    margin-top: auto;
}

.feature {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 8px 16px; /* Increased padding */
    border-radius: 25px; /* Increased border radius */
    font-size: 0.85rem; /* Increased font size */
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px; /* Added minimum width for feature tags */
}

.feature:hover {
    background: rgba(0, 255, 136, 0.2); /* Keep green glow, don't turn gray */
    border-color: var(--aqua-blue);
    box-shadow: 
        0 0 15px rgba(0, 255, 136, 0.4),
        0 0 25px rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

/* Responsive adjustments for better horizontal sizing */
@media (max-width: 1400px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .mission-card {
        padding: 25px;
        min-height: 280px;
        min-width: 350px; /* Adjusted minimum width */
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 1200px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2x2 on medium screens */
        gap: 25px;
    }
    
    .mission-card {
        min-height: 300px;
        min-width: 320px; /* Adjusted for medium screens */
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    
    .mission-card {
        min-height: auto;
        padding: 25px;
        min-width: 100%; /* Full width on mobile */
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
    
    .feature {
        font-size: 0.85rem;
        padding: 8px 15px;
        min-width: 100px; /* Adjusted for mobile */
    }
}

/* Enhanced Visual Section */
.about-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.eco-impact-visualization {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

/* Impact Center */
.impact-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2) 0%,
        rgba(0, 212, 255, 0.2) 100%);
    border: 3px solid rgba(0, 255, 136, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: centerRotate 20s linear infinite;
    backdrop-filter: blur(10px);
}

@keyframes centerRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.center-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, 
        rgba(0, 255, 136, 0.3) 0%, 
        rgba(0, 212, 255, 0.2) 50%,
        transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.center-content {
    text-align: center;
    color: white;
}

.logo-container {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.logo-container img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    animation: logoSpin 10s linear infinite;
}

@keyframes logoSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.center-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.center-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Orbit Items */
.impact-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    animation: orbitRotate 30s linear infinite;
}

.orbit-1 { animation-duration: 25s; }
.orbit-2 { animation-duration: 35s; animation-direction: reverse; }
.orbit-3 { animation-duration: 40s; }

@keyframes orbitRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-item {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.15) 0%,
        rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: itemFloat 6s ease-in-out infinite;
}

@keyframes itemFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.orbit-item:hover {
    transform: translateX(-50%) scale(1.1);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.item-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.item-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #00ff88;
}

.item-content p {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.3;
}

/* Connecting Lines */
.connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(0, 255, 136, 0.6) 0%,
        rgba(0, 212, 255, 0.6) 100%);
    transform-origin: top center;
    animation: lineGlow 3s ease-in-out infinite;
}

.line-1 { transform: translate(-50%, -50%) rotate(0deg); }
.line-2 { transform: translate(-50%, -50%) rotate(120deg); }
.line-3 { transform: translate(-50%, -50%) rotate(240deg); }

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; box-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }
    50% { opacity: 0.8; box-shadow: 0 0 20px rgba(0, 255, 136, 0.6); }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 80%; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { top: 30%; left: 70%; animation-delay: 6s; }
.particle:nth-child(5) { top: 70%; left: 60%; animation-delay: 1s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-20px) scale(1.5); 
        opacity: 1; 
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .eco-impact-visualization {
        width: 400px;
        height: 400px;
    }
    
    .impact-center {
        width: 150px;
        height: 150px;
    }
    
    .impact-orbit {
        width: 300px;
        height: 300px;
    }
    
    .orbit-item {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .mission-card {
        padding: 25px;
    }
    
    .eco-impact-visualization {
        width: 300px;
        height: 300px;
    }
    
    .impact-center {
        width: 120px;
        height: 120px;
    }
    
    .logo-container {
        width: 50px;
        height: 50px;
    }
    
    .logo-container img {
        width: 30px;
        height: 30px;
    }
    
    .impact-orbit {
        width: 250px;
        height: 250px;
    }
    
    .orbit-item {
        width: 80px;
        height: 80px;
    }
    
    .item-icon {
        font-size: 1.5rem;
    }
    
    .item-content h4 {
        font-size: 0.9rem;
    }
    
    .item-content p {
        font-size: 0.7rem;
    }
}

/* Product Showcase Section */
.products {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.product-card.featured {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
    background: linear-gradient(135deg, var(--card-bg), rgba(0, 255, 136, 0.05));
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.05) 0%,
        rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.product-card.featured .product-image {
    height: 220px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1) 0%,
        rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.product-image:hover {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1) 0%,
        rgba(0, 212, 255, 0.1) 100%);
    border-color: rgba(0, 255, 136, 0.3);
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, 
        rgba(0, 255, 136, 0.1) 0%,
        rgba(0, 212, 255, 0.05) 50%,
        transparent 100%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.5; 
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.bottle-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: 200px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 255, 136, 0.2));
    position: relative;
    z-index: 2;
}

.product-card:hover .bottle-image {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 15px 30px rgba(0, 255, 136, 0.3));
}

.product-card.featured .bottle-image {
    max-height: 220px;
}

/* Premium bottle specific styling */
.product-card:last-child .bottle-image {
    max-height: 220px;
    transform: scale(1.1);
}

.product-card:last-child:hover .bottle-image {
    transform: scale(1.15) translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-green);
}

/* Mobile responsive for bottle images */
@media (max-width: 768px) {
    .bottle-image {
        max-height: 150px;
    }
    
    .product-card.featured .bottle-image {
        max-height: 170px;
    }
    
    .product-card:last-child .bottle-image {
        max-height: 170px;
        transform: scale(1.05);
    }
    
    .product-card:last-child:hover .bottle-image {
        transform: scale(1.1) translateY(-3px);
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-card.featured .product-image {
        height: 170px;
    }
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 20, 40, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.1),
        inset 0 0 20px rgba(0, 255, 136, 0.05);
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 255, 136, 0.1) 50%,
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.highlight-item:hover::before {
    left: 100%;
}

.highlight-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(0, 255, 136, 0.1) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.highlight-item:hover::after {
    opacity: 1;
}

.highlight-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 
        0 25px 50px rgba(0, 255, 136, 0.3),
        0 0 30px rgba(0, 212, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.icon-temperature,
.icon-tracking,
.icon-eco-friendly {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green), var(--aqua-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: iconPulse 3s ease-in-out infinite;
}

.icon-temperature::before,
.icon-tracking::before,
.icon-eco-friendly::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--neon-green), var(--aqua-blue));
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(0, 255, 136, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 30px rgba(0, 255, 136, 0.6),
            inset 0 0 25px rgba(255, 255, 255, 0.15);
    }
}

@keyframes iconGlow {
    0% { 
        opacity: 0.3;
        transform: scale(1);
    }
    100% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.highlight-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover h4 {
    color: var(--aqua-blue);
    text-shadow: 
        0 0 15px rgba(0, 255, 136, 0.5),
        0 0 25px rgba(0, 212, 255, 0.3);
}

.highlight-item p {
    color: #e6fff6;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.highlight-item:hover p {
    opacity: 1;
    color: #ffffff;
}

/* Add floating background effects */
.product-highlights::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 10s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.6;
    }
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .product-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .highlight-item {
        padding: 2rem 1.5rem;
    }
    
    .highlight-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .icon-temperature,
    .icon-tracking,
    .icon-eco-friendly {
        width: 50px;
        height: 50px;
    }
    
    .highlight-item h4 {
        font-size: 1.2rem;
    }
    
    .highlight-item p {
        font-size: 0.95rem;
    }
}

.testimonials .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.testimonials .stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
}

.icon-temperature, .icon-tracking, .icon-eco-friendly {
    width: 40px;
    height: 40px;
    background: var(--primary-bg);
    border-radius: 50%;
    position: relative;
}

.highlight-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.highlight-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.testimonial-card.featured {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
    background: linear-gradient(135deg, var(--card-bg), rgba(0, 255, 136, 0.05));
}

.stars {
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    color: var(--primary-bg);
    font-weight: 600;
    font-size: 1rem;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials .stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 20, 40, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.1),
        inset 0 0 20px rgba(0, 255, 136, 0.05);
}

.testimonials .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 255, 136, 0.1) 50%,
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.testimonials .stat-item:hover::before {
    left: 100%;
}

.testimonials .stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(0, 255, 136, 0.1) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.testimonials .stat-item:hover::after {
    opacity: 1;
}

.testimonials .stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 
        0 25px 50px rgba(0, 255, 136, 0.3),
        0 0 30px rgba(0, 212, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.testimonials .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-green), var(--aqua-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    0% { 
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
    }
}

.testimonials .stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.testimonials .stat-item:hover .stat-label {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Add floating particles around stats */
.testimonials-stats::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 8s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-10px) rotate(1deg);
        opacity: 0.8;
    }
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem;
        max-width: 100%;
    }
    
    .testimonials .stat-item {
        padding: 2rem 1.5rem;
        min-height: 140px;
    }
    
    .testimonials .stat-number {
    font-size: 2.5rem;
    }
    
    .testimonials .stat-label {
        font-size: 1rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    position: relative;
}

.gallery-container {
    margin-bottom: 4rem;
}

.gallery-slider {
    position: relative;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lifestyle-1 {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 212, 255, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 500"><rect width="800" height="500" fill="%23000"/><circle cx="200" cy="150" r="50" fill="%2300ff88" opacity="0.3"/><circle cx="600" cy="350" r="80" fill="%2300d4ff" opacity="0.3"/></svg>');
}

.lifestyle-2 {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 255, 136, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 500"><rect width="800" height="500" fill="%23000"/><rect x="100" y="100" width="200" height="300" fill="%2300ff88" opacity="0.2"/><rect x="500" y="200" width="150" height="200" fill="%2300d4ff" opacity="0.2"/></svg>');
}

.lifestyle-3 {
    background: linear-gradient(135deg, rgba(255, 0, 170, 0.3), rgba(0, 255, 136, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 500"><rect width="800" height="500" fill="%23000"/><ellipse cx="400" cy="250" rx="300" ry="150" fill="%2300d4ff" opacity="0.2"/></svg>');
}

.lifestyle-4 {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(255, 0, 170, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 500"><rect width="800" height="500" fill="%23000"/><polygon points="200,100 300,200 200,300 100,200" fill="%2300ff88" opacity="0.3"/><polygon points="600,200 700,300 600,400 500,300" fill="%2300d4ff" opacity="0.3"/></svg>');
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: var(--text-primary);
}

.image-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.image-overlay p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.slider-btn {
    background: transparent;
    border: 2px solid var(--aqua-blue);
    color: var(--aqua-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--aqua-blue);
    color: var(--primary-bg);
    box-shadow: var(--shadow-aqua);
    transform: scale(1.1);
}

.btn-arrow {
    font-size: 1.5rem;
    font-weight: bold;
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.gallery-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gym {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 212, 255, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%23000"/><circle cx="100" cy="100" r="30" fill="%2300ff88" opacity="0.4"/><circle cx="300" cy="100" r="30" fill="%2300d4ff" opacity="0.4"/></svg>');
}

.hiking {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 255, 136, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%23000"/><polygon points="50,150 100,100 150,120 200,80 250,100 300,60 350,80" stroke="%2300ff88" stroke-width="3" fill="none" opacity="0.6"/></svg>');
}

.office {
    background: linear-gradient(135deg, rgba(255, 0, 170, 0.3), rgba(0, 255, 136, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%23000"/><rect x="100" y="50" width="200" height="100" fill="%2300d4ff" opacity="0.3"/></svg>');
}

.travel {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(255, 0, 170, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%23000"/><circle cx="200" cy="100" r="40" fill="%2300ff88" opacity="0.4"/><circle cx="200" cy="100" r="20" fill="%2300d4ff" opacity="0.6"/></svg>');
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    color: var(--text-primary);
    text-align: center;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(17, 17, 17, 0.8);
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

.contact-subtitle {
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 500px;
}

.contact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-bottle-icon {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.contact-bottle-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 2;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    position: relative;
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
}

.contact-card:hover::before {
    left: 0;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--aqua-blue);
    text-shadow: 0 0 10px var(--aqua-blue);
    transform: translateX(5px);
}

.contact-address {
    color: var(--neon-green);
    font-style: normal;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
}

.card-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.contact-card:hover .card-hover-effect {
    width: 300px;
    height: 300px;
}

/* Social Connect Section */
.social-connect {
    text-align: center;
    padding: 3rem;
    background: rgba(17, 17, 17, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    margin-bottom: 3rem;
}

.social-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--neon-green);
    color: var(--text-primary);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
}

.social-link.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.social-link.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 10px 25px rgba(228, 64, 95, 0.3);
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.3);
}

.social-link.linkedin:hover {
    border-color: #0077b5;
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.3);
}

.social-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.social-label {
    font-weight: 600;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 136, 0.1), transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 160px;
}

.icon-email, .icon-facebook, .icon-instagram {
    width: 30px;
    height: 30px;
    background: var(--primary-bg);
    border-radius: 50%;
    position: relative;
}

.icon-email::before {
    content: '✉';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--neon-green);
    font-size: 16px;
}

.icon-facebook::before {
    content: 'f';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--aqua-blue);
    font-size: 18px;
    font-weight: bold;
}

.icon-instagram::before {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}

.method-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.method-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--aqua-blue);
    text-shadow: 0 0 10px var(--aqua-blue);
}

/* Contact Form */
.contact-form-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--neon-green);
    background: var(--card-bg);
    padding: 0 0.5rem;
}

.form-label {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-input[type="select"] + .form-label,
.form-input:focus + .form-label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--neon-green);
    background: var(--card-bg);
    padding: 0 0.5rem;
    transform: translateY(0);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1.2rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.form-submit:hover .btn-arrow {
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.social-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 2px solid rgba(0, 255, 136, 0.2);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.social-icon.email:hover {
    background: var(--neon-green);
    color: var(--primary-bg);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    color: white;
}

.icon-email-simple::before {
    content: '✉';
    font-size: 24px;
}

.icon-facebook-simple::before {
    content: 'f';
    font-size: 28px;
    font-weight: bold;
}

.icon-instagram-simple::before {
    content: '📷';
    font-size: 24px;
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo {
    flex: 1;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.6));
    transform: scale(1.05);
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.7; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 1; }
    50% { transform: translateY(-10px) translateX(-10px); opacity: 0.5; }
    75% { transform: translateY(-30px) translateX(5px); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 3D Stage */
.three-stage {
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0,255,136,0.08) 0%, rgba(0,0,0,0.9) 60%, rgba(0,0,0,1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.12);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.12), 0 0 0 1px rgba(0, 212, 255, 0.08) inset;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    width: 36px;
    height: 28px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--aqua-blue));
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .three-stage {
        height: 340px;
        margin-top: 0.5rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 16px;
        right: 16px;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(0,255,136,0.15);
        border-radius: 16px;
        padding: 1rem 1.25rem;
        flex-direction: column;
        gap: 1rem;
        z-index: 999;
        box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    }

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

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

    .hero {
        padding-top: 5rem;
    }

    .hero-container { gap: 1.25rem; }

    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 250px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* 3D Bottle Mobile Optimization */
    .bottle-3d-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    /* About Section Mobile */
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .about-subtitle {
        font-size: 1.3rem;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .mission-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Products Section Mobile */
    .products {
        padding: 4rem 0;
    }
    
    .product-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .product-name {
        font-size: 1.3rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .product-features {
        gap: 0.3rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Testimonials Section Mobile */
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
    
    /* Gallery Section Mobile */
    .gallery {
        padding: 4rem 0;
    }
    
    .gallery-slider {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .image-overlay h3 {
        font-size: 1.4rem;
    }
    
    .image-overlay p {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 4rem 0;
    }
    
    .contact-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.6rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-bottle-icon {
        width: 100px;
        height: 100px;
    }
    
    .contact-bottle-icon img {
        width: 60px;
        height: 60px;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .social-connect {
        padding: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .contact-cta {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Notification Mobile */
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 1rem;
    }
    
    .notification-message {
        font-size: 0.9rem;
        margin-right: 1.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .bottle-3d-container {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-card {
        padding: 1rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    /* Footer Mobile Fixes */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo-container {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        text-align: center;
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    max-width: 400px;
    z-index: 10000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-neon);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-color: var(--neon-green);
    background: linear-gradient(135deg, var(--card-bg), rgba(0, 255, 136, 0.1));
}

.notification-error {
    border-color: #ff4444;
    background: linear-gradient(135deg, var(--card-bg), rgba(255, 68, 68, 0.1));
}

.notification-message {
    color: var(--text-primary);
    font-weight: 500;
    display: block;
    margin-right: 2rem;
}

.notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: var(--text-primary);
}

/* Enhanced form focus states */
.form-group.focused .form-label {
    top: -10px !important;
    left: 15px !important;
    font-size: 0.8rem !important;
    color: var(--neon-green) !important;
    background: var(--card-bg) !important;
    padding: 0 0.5rem !important;
    transform: translateY(0) !important;
}

/* Global tweak to avoid accidental horizontal scroll and hide scrollbar */
html, body {
    overflow-x: hidden;
}

/* Hide scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Hide scrollbar for Firefox */
html {
    scrollbar-width: none;
}

/* Hide scrollbar for IE and Edge */
body {
    -ms-overflow-style: none;
}

/* Product interactive styles */
.product-card {
    perspective: 1000px;
}

.product-image,
.product-info {
    transition: transform 0.5s ease, box-shadow 0.4s ease, filter 0.4s ease;
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover .product-image {
        transform: rotateY(12deg) translateY(-8px) scale(1.02);
        filter: brightness(1.05);
    }
    .product-card:hover {
        transform: translateY(-10px);
    }
}

/* Reduce oversized buttons on mobile */
.product-price .btn {
    padding: 0.75rem 1.2rem;
    border-radius: 14px;
}

@media (max-width: 768px) {
    /* Nav/Menu fixes */
    .navbar { height: 64px; }
    .nav-container { padding: 0.75rem 16px; }
    .nav-menu {
        left: 0;
        right: 0;
        margin: 0 16px;
        max-width: calc(100vw - 32px);
        overflow-x: hidden;
        z-index: 1001;
    }

    /* Hero spacing so it doesn't sit under the navbar */
    .hero { padding-top: 6.5rem; }
    .three-stage { height: 340px; margin-top: 0.25rem; }

    /* About visual should not be sticky on mobile to avoid overlaps */
    .about-visual { position: static; top: auto; transform: none; margin-top: 1rem; }

    /* Stats spacing to avoid overlap with next sections */
    .stats-section { margin: 2rem 0 1rem; grid-template-columns: 1fr; }

    /* Buttons sizing on mobile */
    .btn { width: auto; padding: 0.85rem 1.2rem; border-radius: 14px; }
    .product-price { gap: 0.75rem; }
    .product-price .btn { padding: 0.6rem 1rem; font-size: 0.95rem; border-radius: 12px; }

    /* Product grid spacing */
    .product-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .product-card { border-radius: 18px; }
    
    /* Footer Mobile Fixes */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo {
        flex: none;
    }
    
    .footer-logo-container {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .footer-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        padding-top: 1.5rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(0, 255, 136, 0.1);
    }
}

/* Ensure 3D canvas is on top of hero background */
.hero-visual { position: relative; z-index: 1; }
.floating-particles { z-index: 3; pointer-events: none; }

/* Realistic Interactive Water Bottle */
.interactive-bottle {
    position: relative;
        width: 200px;
    height: 300px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottle-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle-body {
    position: relative;
    width: 120px;
    height: 240px;
    background: linear-gradient(135deg, 
        #e8f4fd 0%,
        #ffffff 20%,
        #f0f8ff 50%,
        #e6f3ff 80%,
        #d4e9f7 100%);
    border-radius: 60px 60px 40px 40px;
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.8),
        inset 0 0 40px rgba(0, 150, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.bottle-shoulder {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: linear-gradient(135deg, 
        #d4e9f7 0%,
        #e6f3ff 50%,
        #d4e9f7 100%);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.bottle-neck {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, 
        #cce7f5 0%,
        #d4e9f7 50%,
        #cce7f5 100%);
    border-radius: 30px 30px 0 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.neck-ring {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 8px;
    background: linear-gradient(90deg, 
        #b8d9f0 0%,
        #d4e9f7 50%,
        #b8d9f0 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.bottle-cap {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cap-body {
    width: 65px;
    height: 25px;
    background: linear-gradient(135deg, 
        #4a90e2 0%,
        #5ba0f2 50%,
        #4a90e2 100%);
    border-radius: 32px 32px 0 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

.cap-top {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 8px;
    background: linear-gradient(135deg, 
        #357abd 0%,
        #4a90e2 50%,
        #357abd 100%);
    border-radius: 27px 27px 0 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cap-grip {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 4px;
    background: linear-gradient(90deg, 
        #2d6da3 0%,
        #357abd 50%,
        #2d6da3 100%);
    border-radius: 2px;
}

.bottle-water {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 180px;
    background: linear-gradient(180deg, 
        rgba(135, 206, 250, 0.8) 0%,
        rgba(100, 149, 237, 0.6) 50%,
        rgba(70, 130, 180, 0.4) 100%);
    border-radius: 50px 50px 30px 30px;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.bottle-water.water-visible {
    opacity: 1;
}

.bottle-condensation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.condensation-drop {
    position: absolute;
    width: 3px;
    height: 8px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.3) 100%);
    border-radius: 2px;
    animation: condensation-drip 3s ease-in-out infinite;
}

.condensation-drop:nth-child(1) {
    top: 30px;
    left: 15px;
    animation-delay: 0s;
}

.condensation-drop:nth-child(2) {
    top: 60px;
    right: 20px;
    animation-delay: 1s;
}

.condensation-drop:nth-child(3) {
    top: 90px;
    left: 25px;
    animation-delay: 2s;
}

.condensation-drop:nth-child(4) {
    top: 120px;
    right: 15px;
    animation-delay: 0.5s;
}

.bottle-highlights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.highlight-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%);
    height: 1px;
    width: 80%;
    left: 10%;
    animation: highlight-shimmer 4s ease-in-out infinite;
}

.highlight-line:nth-child(1) {
    top: 40px;
    animation-delay: 0s;
}

.highlight-line:nth-child(2) {
    top: 120px;
    animation-delay: 1.5s;
}

.highlight-line:nth-child(3) {
    top: 180px;
    animation-delay: 3s;
}

.bottle-reflection {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    border-radius: 0 60px 40px 0;
    animation: reflection-move 3s ease-in-out infinite;
}

/* Bottle Animations */
@keyframes condensation-drip {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(0);
    }
    50% { 
        opacity: 1; 
        transform: translateY(5px);
    }
}

@keyframes highlight-shimmer {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateX(-20px);
    }
    50% { 
        opacity: 0.8; 
        transform: translateX(20px);
    }
}

@keyframes reflection-move {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateX(0);
    }
    50% { 
        opacity: 0.6; 
        transform: translateX(-5px);
    }
}

/* Cap Open Animation */
.bottle-cap.cap-open {
    transform: translateX(-50%) rotateX(-120deg);
    transform-origin: bottom center;
}

/* Hover Effects */
.interactive-bottle:hover .bottle-body {
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.9),
        inset 0 0 40px rgba(0, 150, 255, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 255, 136, 0.3);
}

.interactive-bottle:hover .bottle-cap {
    transform: translateX(-50%) translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .interactive-bottle {
        width: 150px;
        height: 225px;
    }
    
    .bottle-body {
        width: 90px;
        height: 180px;
        border-radius: 45px 45px 30px 30px;
    }
    
    .bottle-neck {
        width: 45px;
        height: 30px;
        border-radius: 22px 22px 0 0;
    }
    
    .cap-body {
        width: 50px;
        height: 20px;
        border-radius: 25px 25px 0 0;
    }
    
    .bottle-water {
        width: 75px;
        height: 135px;
        border-radius: 37px 37px 22px 22px;
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Changed to 1x4 horizontal layout */
    gap: 12px; /* Reduced from 20px */
    position: static; /* Changed from sticky to static */
    align-self: start;
    min-width: auto; /* Allow natural width */
    max-width: 100%; /* Full width for horizontal layout */
    margin: 0 auto; /* Center the stats section */
}

.stat-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--neon-green);
    border-radius: 10px; /* Reduced from 15px */
    padding: 15px; /* Reduced from 25px */
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    min-width: auto; /* Allow natural width */
    position: relative;
    z-index: 2;
}

.stat-icon {
    font-size: 1.8rem; /* Increased from 1.6rem for better proportion */
    margin-bottom: 10px; /* Increased from 8px for better spacing */
    display: block;
}

.stat-number {
    font-size: 1.4rem; /* Increased from 1.2rem for better visibility */
    font-weight: 700;
    color: #00ff88;
    display: block;
    margin-bottom: 5px; /* Increased from 3px for better spacing */
    word-break: keep-all;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.8rem; /* Increased from 0.7rem for better readability */
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.3; /* Increased from 1.2 for better spacing */
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .about-content {
        grid-template-columns: 1fr; /* Keep single column */
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr); /* Keep 1x4 on larger screens */
        gap: 18px; /* Slightly reduced gap */
        max-width: 100%; /* Full width for horizontal layout */
    }
    
    .stat-card {
        padding: 12px; /* Reduced from 22px */
    }
}

@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        position: static;
        grid-template-columns: repeat(2, 1fr); /* Maintain 2x2 on medium screens */
        max-width: 100%;
        gap: 20px; /* Increased from 15px */
        min-width: auto;
        max-width: 600px; /* Increased from 500px */
        margin: 0 auto;
        width: 100%; /* Ensure full width usage */
    }
    
    .stat-card {
        min-width: auto; /* Allow flex to manage width */
        flex: 1;
        max-width: none; /* Remove max-width constraint */
        padding: 18px 15px; /* Maintain good padding proportions */
        min-height: 140px; /* Adjusted height for medium screens */
    }
}

/* Mobile layout - NO CHANGES as requested */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(4, 1fr); /* Changed to 1x4 horizontal layout */
        gap: 10px; /* Reduced from 12px */
        max-width: 100%;
    }
    
    .stat-card {
        min-width: 100%;
        max-width: 100%;
        padding: 12px; /* Reduced from 16px */
    }
    
    .stat-number {
        font-size: 1rem; /* Reduced from 1.2rem */
    }
    
    .stat-label {
        font-size: 0.6rem; /* Reduced from 0.7rem */
    }
    
    .mission-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    
    .mission-card {
        min-height: auto;
        padding: 25px;
        min-width: 100%; /* Full width on mobile */
    }
}

/* Global Background Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 255, 136, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(0, 212, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: globalParticles 20s ease-in-out infinite;
}

/* Floating Particles Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(0, 255, 136, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(0, 212, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 45% 55%, rgba(0, 255, 136, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 75% 35%, rgba(0, 212, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 25% 85%, rgba(0, 255, 136, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 65% 15%, rgba(0, 212, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 35% 45%, rgba(0, 255, 136, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 55% 65%, rgba(0, 212, 255, 0.3) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px, 250px 250px, 350px 350px, 180px 180px, 280px 280px, 220px 220px, 320px 320px;
    pointer-events: none;
    z-index: -2;
    animation: floatingParticles 25s linear infinite;
}

@keyframes floatingParticles {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-15px) translateX(10px);
    }
    50% {
        transform: translateY(-25px) translateX(-5px);
    }
    75% {
        transform: translateY(-10px) translateX(15px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

/* Additional Small Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Section-specific particle positioning */
.hero .floating-particles,
.products .floating-particles,
.testimonials .floating-particles,
.gallery .floating-particles,
.about .floating-particles,
.contact .floating-particles,
.footer .floating-particles {
    position: absolute;
    z-index: 1;
}

/* Section-specific particle animations */
.hero .floating-particles::before {
    animation: heroParticles 20s linear infinite;
}

.products .floating-particles::before {
    animation: productParticles 25s linear infinite;
}

.testimonials .floating-particles::before {
    animation: testimonialParticles 22s linear infinite;
}

.gallery .floating-particles::before {
    animation: galleryParticles 28s linear infinite;
}

.about .floating-particles::before {
    animation: aboutParticles 24s linear infinite;
}

.contact .floating-particles::before {
    animation: contactParticles 26s linear infinite;
}

.footer .floating-particles::before {
    animation: footerParticles 30s linear infinite;
}

.floating-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.6) 0.5px, transparent 0.5px),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.6) 0.5px, transparent 0.5px),
        radial-gradient(circle at 30% 70%, rgba(0, 255, 136, 0.5) 0.5px, transparent 0.5px),
        radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.5) 0.5px, transparent 0.5px),
        radial-gradient(circle at 20% 60%, rgba(0, 255, 136, 0.4) 0.5px, transparent 0.5px),
        radial-gradient(circle at 80% 40%, rgba(0, 212, 255, 0.4) 0.5px, transparent 0.5px);
    background-size: 150px 150px, 200px 200px, 175px 175px, 225px 225px, 160px 160px, 190px 190px;
    animation: smallParticles 30s linear infinite;
}

@keyframes smallParticles {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) translateX(15px) rotate(120deg);
    }
    66% {
        transform: translateY(-30px) translateX(-10px) rotate(240deg);
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg);
    }
}

/* Section-specific particle keyframes */
@keyframes heroParticles {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-25px) translateX(20px) rotate(180deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

@keyframes productParticles {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-30px) translateX(-15px) rotate(270deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

@keyframes testimonialParticles {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-20px) translateX(25px) rotate(90deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

@keyframes galleryParticles {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-35px) translateX(10px) rotate(180deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

@keyframes aboutParticles {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-15px) translateX(-20px) rotate(135deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

@keyframes contactParticles {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-25px) translateX(15px) rotate(225deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

@keyframes footerParticles {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-20px) translateX(-25px) rotate(315deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

@keyframes globalParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) rotate(1deg) scale(1.1);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-10px) rotate(2deg) scale(1);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-15px) rotate(-1deg) scale(1.05);
        opacity: 0.6;
    }
}

/* Hero Section Particles */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 255, 136, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
    animation: heroParticles 15s ease-in-out infinite;
}

@keyframes heroParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    33% { 
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.7;
    }
    66% { 
        transform: translateY(-25px) rotate(-1deg);
        opacity: 0.5;
    }
}

/* About Section Particles */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 255, 136, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(0, 212, 255, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
    animation: aboutParticles 18s ease-in-out infinite;
}

@keyframes aboutParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-12px) rotate(1.5deg) scale(1.05);
        opacity: 0.6;
    }
}

/* Product Section Particles */
.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 15%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 85%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 45% 55%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: productParticles 22s ease-in-out infinite;
}

@keyframes productParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-18px) rotate(2deg);
        opacity: 0.6;
    }
    66% { 
        transform: translateY(-8px) rotate(-1deg);
        opacity: 0.4;
    }
}

/* Testimonials Section Particles */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 60% 40%, rgba(0, 255, 136, 0.03) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
    animation: testimonialParticles 25s ease-in-out infinite;
}

@keyframes testimonialParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(1deg) scale(1.1);
        opacity: 0.6;
    }
}

/* Gallery Section Particles */
.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: galleryParticles 20s ease-in-out infinite;
}

@keyframes galleryParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-15px) rotate(1.5deg);
        opacity: 0.5;
    }
    66% { 
        transform: translateY(-25px) rotate(-0.5deg);
        opacity: 0.4;
    }
}

/* Contact Section Particles */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 30%, rgba(0, 255, 136, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: contactParticles 23s ease-in-out infinite;
}

@keyframes contactParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-16px) rotate(1.2deg) scale(1.05);
        opacity: 0.6;
    }
}

/* Footer Section Particles */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: footerParticles 28s ease-in-out infinite;
}

@keyframes footerParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-10px) rotate(0.8deg);
        opacity: 0.4;
    }
}

/* Enhanced mobile particles - more subtle */
@media (max-width: 768px) {
    body::before {
        background: 
            radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.02) 0%, transparent 60%),
            radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.02) 0%, transparent 60%);
        animation: globalParticlesMobile 25s ease-in-out infinite;
    }
    
    body::after {
        background-size: 100px 100px, 150px 150px, 125px 125px, 175px 175px, 90px 90px, 140px 140px;
        animation: floatingParticlesMobile 35s linear infinite;
    }
    
    .floating-particles::before {
        background-size: 75px 75px, 100px 100px, 87px 87px, 112px 112px, 80px 80px, 95px 95px;
        animation: smallParticlesMobile 40s linear infinite;
    }
    
    /* Mobile particle optimization */
    .hero .floating-particles::before,
    .products .floating-particles::before,
    .testimonials .floating-particles::before,
    .gallery .floating-particles::before,
    .about .floating-particles::before,
    .contact .floating-particles::before,
    .footer .floating-particles::before {
        animation-duration: 45s; /* Slower animations on mobile for better performance */
    }
    
    @keyframes globalParticlesMobile {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg) scale(1);
            opacity: 0.2;
        }
        50% { 
            transform: translateY(-10px) rotate(0.5deg) scale(1.05);
            opacity: 0.3;
        }
    }
    
    @keyframes floatingParticlesMobile {
        0% { transform: translateY(0px) translateX(0px); }
        50% { transform: translateY(-10px) translateX(5px); }
        100% { transform: translateY(0px) translateX(0px); }
    }
    
    @keyframes smallParticlesMobile {
        0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
        50% { transform: translateY(-15px) translateX(10px) rotate(180deg); }
        100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
    }
    
    .hero::before,
    .about::before,
    .products::before,
    .testimonials::before,
    .gallery::before,
    .contact::before,
    .footer::before {
        opacity: 0.3; /* Reduce opacity on mobile for better performance */
        animation-duration: 30s; /* Slower animation on mobile */
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        letter-spacing: 1px;
    }
    
    .section-title::before {
        width: 90%;
        height: 3px;
        bottom: -12px;
    }
    
    .section-title::after {
        width: 70%;
        height: 1.5px;
        bottom: -20px;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr); /* Changed to 1x4 horizontal layout */
        gap: 10px; /* Reduced from 12px */
        max-width: 100%;
    }
    
    .stat-card {
        min-width: 100%;
        max-width: 100%;
        padding: 12px; /* Reduced from 16px */
    }
    
    .stat-number {
        font-size: 1rem; /* Reduced from 1.2rem */
    }
    
    .stat-label {
        font-size: 0.6rem; /* Reduced from 0.7rem */
    }
    
    .mission-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    
    .mission-card {
        min-height: auto;
        padding: 25px;
        min-width: 100%; /* Full width on mobile */
    }
}

