/* ===== Ultimate Homepage Styles - Zevral Master Design ===== */

/* Liquid Background Canvas */
.liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #001a33 0%, #003366 50%, #001a33 100%);
}

/* Floating Droplets Container */
.droplets-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.droplet {
    position: absolute;
    width: 20px;
    height: 30px;
    background: linear-gradient(180deg, 
        rgba(255,255,255,0.9) 0%, 
        rgba(0,204,255,0.6) 50%,
        rgba(0,102,204,0.4) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 
        0 0 20px rgba(0,204,255,0.5),
        inset 0 -5px 10px rgba(0,102,204,0.3);
    animation: droplet-float 8s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes droplet-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-30px) rotate(5deg) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-50px) rotate(-3deg) scale(0.9);
        opacity: 0.6;
    }
    75% { 
        transform: translateY(-20px) rotate(8deg) scale(1.05);
        opacity: 0.9;
    }
}

/* Crystal Navigation */
.crystal-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.05) 50%,
        rgba(0,204,255,0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.3),
        0 0 60px rgba(0,204,255,0.1);
}

.crystal-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Liquid Logo */
.liquid-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-ripple-wrap {
    position: relative;
    width: 50px;
    height: 50px;
}

.logo-ripple-wrap .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0,204,255,0.5));
    position: relative;
    z-index: 10;
}

.ripple-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(0,204,255,0.3);
    animation: ripple-expand 3s ease-out infinite;
}

.ripple-ring.r1 {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.ripple-ring.r2 {
    width: 80px;
    height: 80px;
    animation-delay: 0.5s;
}

.ripple-ring.r3 {
    width: 100px;
    height: 100px;
    animation-delay: 1s;
}

@keyframes ripple-expand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.liquid-logo .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #00ccff 50%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Links */
.crystal-nav .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.crystal-nav .nav-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.crystal-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ccff, #0066cc);
    transition: width 0.3s ease;
}

.crystal-nav .nav-link:hover,
.crystal-nav .nav-link.active {
    color: #fff;
}

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

/* Water Fill Button */
.water-fill-btn {
    position: relative;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(0,204,255,0.5);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.water-fill-btn .btn-text {
    position: relative;
    z-index: 10;
}

.water-fill-btn .water-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #00ccff, #0066cc);
    transition: height 0.4s ease;
    z-index: 1;
}

.water-fill-btn:hover {
    border-color: #00ccff;
    box-shadow: 0 0 30px rgba(0,204,255,0.4);
}

.water-fill-btn:hover .water-fill {
    height: 100%;
}

/* ===== Hero Section: Zero Gravity ===== */
.hero-ultimate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 2rem;
    overflow: hidden;
    background-image: url('Images/Experience The.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,26,51,0.7);
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Hero Text */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.floating-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0,204,255,0.2), rgba(0,102,204,0.2));
    border: 1px solid rgba(0,204,255,0.3);
    border-radius: 50px;
    color: #00ccff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title-3d {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-title-3d .line {
    display: block;
    color: #fff;
    text-shadow: 0 0 40px rgba(0,204,255,0.3);
}

.hero-title-3d .highlight {
    background: linear-gradient(135deg, #00ccff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 400px;
}

/* Live Stats */
.live-stats {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ccff;
    text-shadow: 0 0 20px rgba(0,204,255,0.5);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-glow {
    position: relative;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #00ccff;
    border-radius: 50px;
    color: #00ccff;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    background: linear-gradient(135deg, #00ccff, #0066cc);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,204,255,0.4);
}

.btn-outline {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* WhatsApp Chat Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #00ccff;
    border-radius: 50px;
    color: #00ccff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #00ccff, #0066cc);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 204, 255, 0.5);
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:active {
    transform: translateY(-1px) scale(1.02);
}

/* Bottle Showcase */
.bottle-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bottle-3d-float {
    position: relative;
    width: 400px;
    height: 600px;
    perspective: 1000px;
}

.bottle-container-3d {
    position: relative;
    width: 100%;
    height: 100%;
    animation: bottle-levitate 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes bottle-levitate {
    0%, 100% { 
        transform: translateY(0) rotateY(-5deg) rotateX(5deg);
    }
    50% { 
        transform: translateY(-30px) rotateY(5deg) rotateX(-5deg);
    }
}

.bottle-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,102,204,0.4));
}

/* View Toggle */
.view-toggle {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: rgba(0,0,0,0.4);
    border-radius: 30px;
    padding: 5px;
    gap: 5px;
}

.toggle-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 25px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.toggle-btn.active {
    color: #fff;
}

.toggle-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border-radius: 25px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.view-toggle[data-view="custom"] .toggle-slider {
    transform: translateX(100%);
}

/* Custom Label Overlay */
.custom-label-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.custom-label-overlay.active {
    opacity: 1;
}

.label-design .label-names {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
}

.label-design .label-date {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.25rem;
}

/* Bottle Particles */
.bottle-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 12px;
    background: linear-gradient(180deg, rgba(0,204,255,0.8), rgba(0,102,204,0.4));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: particle-orbit 4s ease-in-out infinite;
}

.p1 { top: 20%; left: 10%; animation-delay: 0s; }
.p2 { top: 40%; right: 5%; animation-delay: 0.5s; }
.p3 { top: 60%; left: 5%; animation-delay: 1s; }
.p4 { bottom: 20%; right: 15%; animation-delay: 1.5s; }
.p5 { bottom: 40%; left: 15%; animation-delay: 2s; }

@keyframes particle-orbit {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(20px, -30px) scale(1.2);
        opacity: 1;
    }
}

/* Scroll Liquid Indicator */
.scroll-liquid {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.liquid-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(0,204,255,0.5);
    border-radius: 13px;
    position: relative;
}

.liquid-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #00ccff;
    border-radius: 2px;
    animation: liquid-scroll 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0,204,255,0.8);
}

@keyframes liquid-scroll {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ===== Trust Bar ===== */
.trust-bar {
    padding: 60px 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,26,51,0.8) 100%);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-title {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.trust-spheres {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-sphere {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.sphere-3d-icon {
    position: relative;
    width: 80px;
    height: 80px;
    perspective: 500px;
}

.sphere-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(0,204,255,0.4) 0%, rgba(0,102,204,0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: sphere-pulse 2s ease-in-out infinite;
}

@keyframes sphere-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.9; }
}

.sphere-3d-icon .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    z-index: 10;
}

.stage-name {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    max-width: 80px;
}

/* ===== Features Section: Enhanced Anatomy of Purity ===== */
.features-section-enhanced {
    min-height: 100vh;
    padding: 100px 2rem;
    background: linear-gradient(180deg, rgba(0,26,51,0.9) 0%, rgba(0,51,102,0.8) 50%, rgba(0,26,51,0.9) 100%);
    position: relative;
    overflow: hidden;
}

.features-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,204,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.anatomy-stage {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* 3D Bottle Stage */
.bottle-stage-3d {
    position: relative;
    width: 400px;
    height: 500px;
    perspective: 1000px;
}

.bottle-assembly {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

/* Individual Bottle Parts */
.part-layer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.part-layer:hover .part-visual-3d {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Cap Layer */
.cap-layer {
    top: 0;
    z-index: 60;
}

.cap-model {
    width: 80px;
    height: 40px;
    position: relative;
}

.cap-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: linear-gradient(180deg, #00ccff, #0066cc);
    border-radius: 10px 10px 5px 5px;
    box-shadow: 0 5px 20px rgba(0,204,255,0.4);
}

.cap-ring {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: linear-gradient(180deg, rgba(0,204,255,0.8), rgba(0,102,204,0.6));
    border-radius: 5px;
    border: 2px solid rgba(0,204,255,0.5);
}

.cap-threads {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0,204,255,0.3) 3px,
        rgba(0,204,255,0.3) 5px
    );
}

/* Neck Layer */
.neck-layer {
    top: 35px;
    z-index: 50;
}

.neck-model {
    width: 50px;
    height: 60px;
}

.neck-glass {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(0,204,255,0.2) 50%, 
        rgba(255,255,255,0.1) 100%);
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 0 20px rgba(0,204,255,0.2);
}

/* Label Layer */
.label-layer {
    top: 95px;
    z-index: 40;
}

.label-model {
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0,102,204,0.9), rgba(0,204,255,0.9));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,204,255,0.3);
    border: 2px solid rgba(255,255,255,0.3);
}

.label-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.label-premium {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.25rem;
}

/* Water Layer */
.water-layer {
    top: 195px;
    z-index: 30;
}

.water-model {
    width: 130px;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(0,204,255,0.6) 0%, 
        rgba(0,102,204,0.4) 50%,
        rgba(0,204,255,0.3) 100%);
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

.water-surface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
    border-radius: 50%;
    animation: water-surface 3s ease-in-out infinite;
}

@keyframes water-surface {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.8); }
}

.water-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.water-bubbles .bubble {
    position: absolute;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: bubble-rise 4s ease-in-out infinite;
}

.bubble.b1 { width: 8px; height: 8px; left: 20%; bottom: 10%; animation-delay: 0s; }
.bubble.b2 { width: 6px; height: 6px; left: 50%; bottom: 20%; animation-delay: 1s; }
.bubble.b3 { width: 10px; height: 10px; left: 70%; bottom: 15%; animation-delay: 2s; }

@keyframes bubble-rise {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    100% { transform: translateY(-100px) scale(0.5); opacity: 0; }
}

/* Body Layer */
.body-layer {
    top: 95px;
    z-index: 20;
}

.body-model {
    width: 150px;
    height: 250px;
    position: relative;
}

.glass-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.05) 0%, 
        rgba(0,204,255,0.1) 20%,
        rgba(255,255,255,0.05) 50%,
        rgba(0,204,255,0.1) 80%,
        rgba(255,255,255,0.05) 100%);
    border-radius: 10px 10px 30px 30px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 
        inset 0 0 30px rgba(0,204,255,0.1),
        0 20px 40px rgba(0,0,0,0.3);
}

.glass-reflection {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 100px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
    border-radius: 10px;
    transform: rotate(-10deg);
}

/* Base Layer */
.base-layer {
    bottom: 0;
    z-index: 10;
}

.base-model {
    width: 140px;
    height: 30px;
}

.base-bottom {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,102,204,0.3), rgba(0,204,255,0.2));
    border-radius: 0 0 40px 40px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top: none;
}

/* Part Labels */
.part-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.part-tag {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: rgba(0,26,51,0.8);
    border: 1px solid rgba(0,204,255,0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.part-tag:hover {
    background: rgba(0,204,255,0.2);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,204,255,0.3);
}

.cap-tag { top: 10%; right: -20%; }
.label-tag { top: 30%; left: -25%; }
.water-tag { top: 50%; right: -22%; }
.body-tag { bottom: 25%; left: -20%; }

.tag-icon {
    font-size: 1.5rem;
}

.tag-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.tag-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
}

/* Controls */
.anatomy-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.explode-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0,204,255,0.2), rgba(0,102,204,0.2));
    border: 2px solid rgba(0,204,255,0.5);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.explode-control:hover {
    background: linear-gradient(135deg, rgba(0,204,255,0.4), rgba(0,102,204,0.4));
    box-shadow: 0 10px 30px rgba(0,204,255,0.3);
    transform: translateY(-3px);
}

.control-icon {
    font-size: 1.5rem;
}

.part-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(0,204,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover,
.indicator.active {
    background: #00ccff;
    box-shadow: 0 0 15px rgba(0,204,255,0.6);
}

/* Feature Cards Row */
.feature-cards-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card-highlight {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,204,255,0.2);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature-card-highlight:hover {
    transform: translateY(-10px);
    border-color: rgba(0,204,255,0.5);
    box-shadow: 0 20px 40px rgba(0,204,255,0.2);
    background: rgba(0,204,255,0.1);
}

.feature-card-highlight .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card-highlight h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card-highlight p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Exploded State */
.bottle-assembly.exploded .cap-layer {
    transform: translateX(-50%) translateY(-80px) rotateX(-10deg);
}

.bottle-assembly.exploded .neck-layer {
    transform: translateX(-50%) translateY(-40px);
}

.bottle-assembly.exploded .label-layer {
    transform: translateX(-50%) translateX(-120px) rotateY(-15deg);
}

.bottle-assembly.exploded .water-layer {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.7;
}

.bottle-assembly.exploded .body-layer {
    transform: translateX(-50%) translateX(100px) rotateY(15deg);
}

.bottle-assembly.exploded .base-layer {
    transform: translateX(-50%) translateY(50px);
}

/* ===== 7-Stage Purification: Elegant Horizontal Flow Infographic ===== */
.purification-flow-section {
    position: relative;
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #001a33 0%, #003366 50%, #001a33 100%);
    overflow: hidden;
    min-height: 100vh;
}

/* Water Ripple Background */
.flow-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.ripple-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 204, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
    animation: rippleFlow 20s ease-in-out infinite;
}

.ripple-pattern.delay-1 {
    animation-delay: -7s;
    opacity: 0.5;
}

.ripple-pattern.delay-2 {
    animation-delay: -14s;
    opacity: 0.3;
}

@keyframes rippleFlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -50%) scale(1.1) rotate(2deg); }
}

/* Section Header */
.flow-header {
    text-align: center;
    padding: 0 2rem 3rem;
    position: relative;
    z-index: 10;
}

.flow-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 50px;
    color: #00ccff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.flow-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flow-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* Flow Timeline Wrapper */
.flow-timeline-wrapper {
    position: relative;
    z-index: 10;
}

/* Connecting Light Lines */
.connection-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 10px;
    transform: translateY(-50%);
    z-index: 1;
    padding: 0 10%;
}

.light-beam {
    width: 100%;
    height: 100%;
}

/* Horizontal Scroll Container */
.flow-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.flow-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Flow Panels */
.flow-panels {
    display: flex;
    gap: 2rem;
    padding: 2rem 10%;
    min-width: max-content;
}

.flow-panel {
    flex: 0 0 auto;
    width: 280px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.flow-panel:hover {
    transform: translateY(-10px) scale(1.02);
}

.flow-panel.active .panel-glass {
    background: rgba(0, 204, 255, 0.15);
    border-color: rgba(0, 204, 255, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 204, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Panel Glass */
.panel-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.panel-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.panel-glow.final {
    background: radial-gradient(circle, rgba(0, 204, 255, 0.2) 0%, transparent 70%);
    opacity: 0.5;
}

.flow-panel:hover .panel-glow,
.flow-panel.active .panel-glow {
    opacity: 1;
}

/* Stage Number */
.stage-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(0, 204, 255, 0.4);
    letter-spacing: 1px;
}

.stage-number.final {
    color: #00ccff;
}

/* Stage Icon Wrapper */
.stage-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.icon-glow.final {
    opacity: 0.5;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.5) 0%, transparent 70%);
}

.flow-panel:hover .icon-glow,
.flow-panel.active .icon-glow {
    opacity: 1;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.stage-icon {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 204, 255, 0.3));
    transition: transform 0.3s ease;
}

.flow-panel:hover .stage-icon {
    transform: scale(1.1);
}

/* Stage Title */
.stage-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 0.75rem;
}

/* Stage Description */
.stage-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Stage Indicator */
.stage-indicator {
    width: 8px;
    height: 8px;
    background: rgba(0, 204, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.stage-indicator.active {
    background: #00ccff;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
    width: 12px;
    height: 12px;
}

/* Ready Badge */
.ready-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 204, 255, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

/* Scroll Hint */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: rgba(0, 204, 255, 0.6);
    font-size: 0.9rem;
    animation: hintFade 2s ease-in-out infinite;
}

@keyframes hintFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hint-arrows {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.arrow {
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.arrow:last-child {
    animation-delay: 0.75s;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Progress Dots */
.flow-progress {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.progress-dot {
    width: 10px;
    height: 10px;
    background: rgba(0, 204, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot:hover,
.progress-dot.active {
    background: #00ccff;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .flow-title {
        font-size: 2rem;
    }
    
    .flow-panel {
        width: 260px;
    }
    
    .flow-panels {
        padding: 2rem 5%;
        gap: 1.5rem;
    }
    
    .stage-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .stage-icon {
        font-size: 2rem;
    }
}

/* ===== Action Section ===== */
.action-section {
    padding: 100px 2rem;
    position: relative;
}

.action-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 600px;
}

.action-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.4s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,204,255,0.3);
    box-shadow: 0 20px 50px rgba(0,204,255,0.2);
}

.action-card.large {
    grid-row: span 2;
}

.action-card.wedding-card {
    grid-row: span 2;
}

.card-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card-bg .card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,26,51,0.9) 100%);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,204,255,0.1), rgba(0,102,204,0.1));
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 10;
}

.card-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0,204,255,0.2);
    border-radius: 20px;
    color: #00ccff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-link {
    color: #00ccff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #fff;
}

/* ===== Founder Section ===== */
.founder-section {
    padding: 100px 2rem;
    background: linear-gradient(180deg, rgba(0,26,51,0.8) 0%, rgba(0,51,102,0.6) 100%);
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.founder-visual {
    display: flex;
    justify-content: center;
}

.founder-frame {
    position: relative;
    width: 350px;
    height: 450px;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.frame-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(0,204,255,0.2), rgba(0,102,204,0.2));
    border-radius: 30px;
    z-index: -1;
    animation: frame-glow 4s ease-in-out infinite;
}

@keyframes frame-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.signature-anim {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
}

.signature-svg {
    width: 100%;
    height: auto;
}

.signature-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: signature-draw 3s ease forwards;
    animation-delay: 1s;
}

@keyframes signature-draw {
    to { stroke-dashoffset: 0; }
}

.signature-text {
    display: block;
    text-align: center;
    color: #00ccff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.founder-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 1rem 0;
}

.founder-content blockquote {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    border-left: 3px solid #00ccff;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.founder-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.founder-meta .name {
    color: #00ccff;
    font-weight: 600;
    font-size: 1.1rem;
}

.founder-meta .title {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 150px 2rem;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.water-fill-btn-large {
    position: relative;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.water-fill-btn-large .btn-text {
    position: relative;
    z-index: 10;
}

.water-fill-btn-large .water-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, rgba(0,204,255,0.8) 0%, rgba(0,102,204,0.9) 100%);
    transition: height 0.4s ease;
    z-index: 1;
}

.water-fill-btn-large:hover {
    border-color: #00ccff;
    box-shadow: 0 0 30px rgba(0,204,255,0.4);
}

.water-fill-btn-large:hover .water-fill {
    height: 100%;
}

.cta-secondary {
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: #00ccff;
    background: rgba(0,204,255,0.1);
}

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

.float-bottle {
    position: absolute;
    opacity: 0.3;
    animation: float-bottle 8s ease-in-out infinite;
}

.float-bottle img {
    width: 80px;
    height: auto;
}

.float-bottle.b1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-bottle.b2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.float-bottle.b3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-bottle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* ===== Ultimate Footer ===== */
.footer-ultimate {
    position: relative;
    background: linear-gradient(180deg, #001a33 0%, #000d1a 100%);
    padding-top: 150px;
}

.wave-container {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-1, .wave-2, .wave-3 {
    animation: wave-motion 10s ease-in-out infinite;
}

.wave-2 { animation-delay: -2s; }
.wave-3 { animation-delay: -4s; }

@keyframes wave-motion {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .liquid-logo-small {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.footer-brand .liquid-logo-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tagline {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(0,204,255,0.3);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ccff;
}

.footer-contact h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.made-with {
    margin-top: 0.5rem;
    color: #00ccff;
}

/* ===== Social Proof Section ===== */
.social-proof-section {
    padding: 100px 2rem;
    background: linear-gradient(180deg, rgba(0,26,51,0.9) 0%, rgba(0,51,102,0.8) 100%);
    position: relative;
    overflow: hidden;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,204,255,0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: badge-pulse 3s ease-in-out infinite;
}

.badge-item:nth-child(1) { animation-delay: 0s; }
.badge-item:nth-child(2) { animation-delay: 0.5s; }
.badge-item:nth-child(3) { animation-delay: 1s; }
.badge-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0,204,255,0.2); }
    50% { box-shadow: 0 0 40px rgba(0,204,255,0.4); }
}

.badge-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0,204,255,0.5);
    box-shadow: 0 10px 30px rgba(0,204,255,0.3);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Auto-scrolling Testimonials */
.testimonials-container {
    max-width: 1400px;
    margin: 4rem auto;
    overflow: hidden;
    position: relative;
}

.testimonials-container::before,
.testimonials-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.testimonials-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0,26,51,1) 0%, transparent 100%);
}

.testimonials-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(0,26,51,1) 0%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll-testimonials 30s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,204,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,204,255,0.4);
    box-shadow: 0 20px 40px rgba(0,204,255,0.2);
}

.testimonial-content .stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author .name {
    color: #00ccff;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author .event {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* 3D Client Logo Cylinder */
.client-showcase {
    margin-top: 5rem;
    text-align: center;
}

.client-heading {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.logo-cylinder {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    perspective: 1000px;
}

.cylinder-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate-cylinder 20s linear infinite;
}

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

.client-logo {
    position: absolute;
    width: 100px;
    height: 60px;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -30px;
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(150px);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(0,204,255,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.client-logo:hover {
    background: rgba(0,204,255,0.2);
    border-color: rgba(0,204,255,0.6);
    box-shadow: 0 0 30px rgba(0,204,255,0.4);
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.5rem;
}

.logo-placeholder span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ===== Impact Calculator Section ===== */
.impact-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, rgba(0,26,51,0.95) 0%, rgba(0,102,51,0.3) 50%, rgba(0,26,51,0.95) 100%);
    position: relative;
    overflow: hidden;
}

.impact-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.impact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.calculator-wrapper {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,204,255,0.2);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.calculator-input {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-input label {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.input-group input[type="number"] {
    width: 150px;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(0,204,255,0.3);
    border-radius: 15px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input[type="number"]:focus {
    border-color: #00ccff;
    box-shadow: 0 0 30px rgba(0,204,255,0.3);
}

.input-unit {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.range-slider {
    width: 100%;
    max-width: 500px;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0,204,255,0.5);
    transition: all 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(0,204,255,0.7);
}

/* Impact Results */
.impact-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,204,255,0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,204,255,0.4);
    box-shadow: 0 20px 40px rgba(0,204,255,0.2);
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.result-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #00ccff;
    text-shadow: 0 0 20px rgba(0,204,255,0.5);
    margin-bottom: 0.5rem;
}

.result-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Impact Statement */
.impact-statement {
    text-align: center;
    padding: 2rem;
    background: rgba(0,204,255,0.1);
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0,204,255,0.3);
}

.statement-text {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
}

.statement-text strong {
    color: #00ccff;
    font-size: 1.4rem;
}

/* Impact CTA */
.impact-cta {
    text-align: center;
}

.impact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,204,255,0.3);
}

.impact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,204,255,0.4);
}

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

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

/* Impact Decoration */
.impact-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.eco-particle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float-eco 6s ease-in-out infinite;
}

.eco-particle.p1 { top: 20%; left: 10%; animation-delay: 0s; }
.eco-particle.p2 { top: 60%; right: 15%; animation-delay: 1.5s; }
.eco-particle.p3 { bottom: 30%; left: 20%; animation-delay: 3s; }
.eco-particle.p4 { top: 40%; right: 10%; animation-delay: 4.5s; }

@keyframes float-eco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        align-items: center;
    }
    
    .live-stats {
        justify-content: center;
    }
    
    .hero-title-3d {
        font-size: 3rem;
    }
    
    .bottle-3d-float {
        width: 300px;
        height: 450px;
    }
    
    .founder-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-content blockquote {
        border-left: none;
        border-top: 3px solid #00ccff;
        padding-left: 0;
        padding-top: 1.5rem;
    }
    
    .action-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .action-card.wedding-card {
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .trust-badges {
        gap: 1rem;
    }
    
    .badge-item {
        padding: 0.75rem 1rem;
    }
    
    .testimonial-card {
        width: 300px;
    }
    
    .impact-results {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .crystal-nav {
        width: 95%;
        padding: 0.75rem 1rem;
    }
    
    .crystal-nav .nav-links {
        display: none;
    }
    
    .hero-title-3d {
        font-size: 2.5rem;
    }
    
    .stat-num {
        font-size: 2rem;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Mobile Social Proof */
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .badge-item {
        width: 200px;
        justify-content: center;
    }
    
    .testimonial-card {
        width: 280px;
        padding: 1.5rem;
    }
    
    .logo-cylinder {
        width: 200px;
        height: 200px;
    }
    
    .client-logo {
        width: 80px;
        height: 50px;
        margin-left: -40px;
        margin-top: -25px;
        transform: rotateY(calc(var(--i) * 45deg)) translateZ(100px);
    }
    
    /* Mobile Impact Calculator */
    .calculator-wrapper {
        padding: 1.5rem;
    }
    
    .impact-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-card {
        padding: 1.25rem;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
    
    .statement-text {
        font-size: 1rem;
    }
    
    .statement-text strong {
        font-size: 1.2rem;
    }
    
    /* Mobile Anatomy Section */
    .bottle-stage-3d {
        width: 280px;
        height: 380px;
    }
    
    .part-tag {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
    }
    
    .part-labels {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .feature-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card-highlight {
        padding: 1.25rem;
    }
    
    .feature-card-highlight .card-icon {
        font-size: 2rem;
    }
    
    .exploded .cap-layer {
        transform: translateX(-50%) translateY(-50px) !important;
    }
    
    .exploded .label-layer {
        transform: translateX(-50%) translateX(-80px) !important;
    }
    
    .exploded .body-layer {
        transform: translateX(-50%) translateX(60px) !important;
    }
}

/* ===== Proudly Serving Bihar: 3D Map Section ===== */
.proudly-serving-section {
    min-height: 100vh;
    padding: 100px 2rem;
    background: linear-gradient(180deg, 
        rgba(0,26,51,0.95) 0%, 
        rgba(0,51,102,0.9) 50%, 
        rgba(0,26,51,0.95) 100%);
    position: relative;
    overflow: hidden;
}

/* Cinematic Bokeh Background */
.bokeh-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bokeh-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,204,255,0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: bokeh-float 15s ease-in-out infinite;
}

.bokeh-circle.b1 { width: 300px; height: 300px; top: 10%; left: 10%; animation-delay: 0s; }
.bokeh-circle.b2 { width: 200px; height: 200px; top: 60%; left: 80%; animation-delay: 3s; }
.bokeh-circle.b3 { width: 350px; height: 350px; top: 40%; left: 50%; animation-delay: 6s; }
.bokeh-circle.b4 { width: 250px; height: 250px; top: 20%; left: 70%; animation-delay: 9s; }
.bokeh-circle.b5 { width: 180px; height: 180px; top: 80%; left: 20%; animation-delay: 12s; }
.bokeh-circle.b6 { width: 220px; height: 220px; top: 50%; left: 5%; animation-delay: 4s; }

@keyframes bokeh-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    33% { transform: translate(30px, -30px) scale(1.1); opacity: 0.5; }
    66% { transform: translate(-20px, 20px) scale(0.9); opacity: 0.4; }
}

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

.jar-float {
    position: absolute;
    opacity: 0.4;
    filter: drop-shadow(0 10px 20px rgba(0,204,255,0.3));
    animation: jar-float-anim 8s ease-in-out infinite;
}

.jar-float img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.jar-float.jar-1l { width: 60px; }
.jar-float.jar-20l { width: 80px; }

.jar-float.j1 { top: 15%; left: 5%; animation-delay: 0s; }
.jar-float.j2 { top: 70%; right: 8%; animation-delay: 2s; }
.jar-float.j3 { bottom: 20%; left: 15%; animation-delay: 4s; }

@keyframes jar-float-anim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Container */
.proudly-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Journey Title */
.journey-title {
    text-align: center;
    margin-bottom: 1rem;
}

.journey-title .title-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.journey-title .title-line.highlight {
    background: linear-gradient(135deg, #00ccff, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Map Stage */
.map-stage {
    position: relative;
    margin: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* Bihar Map Container */
.bihar-map-container {
    position: relative;
    width: 600px;
    height: 500px;
}

.bihar-map {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(0,204,255,0.4));
}

.map-outline {
    animation: map-pulse 4s ease-in-out infinite;
}

@keyframes map-pulse {
    0%, 100% { filter: url(#mapGlow) brightness(1); }
    50% { filter: url(#mapGlow) brightness(1.2); }
}

.district-lines {
    stroke-dasharray: 5,5;
    animation: dash-move 20s linear infinite;
}

@keyframes dash-move {
    to { stroke-dashoffset: -100; }
}

.location-marker {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.location-marker:hover {
    transform: scale(1.2);
}

/* Traveling Droplet */
.traveling-droplet {
    position: absolute;
    width: 40px;
    height: 50px;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
}

.droplet-3d {
    width: 100%;
    height: 100%;
    position: relative;
}

.droplet-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0,204,255,0.9) 0%, 
        rgba(0,102,204,0.8) 50%,
        rgba(0,204,255,0.9) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 
        inset -5px -5px 15px rgba(255,255,255,0.3),
        inset 5px 5px 15px rgba(0,0,0,0.2),
        0 10px 30px rgba(0,204,255,0.5);
}

.droplet-shine {
    position: absolute;
    top: 10%;
    left: 25%;
    width: 30%;
    height: 20%;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    transform: rotate(-20deg);
}

.droplet-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0,204,255,0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: droplet-pulse 2s ease-in-out infinite;
}

@keyframes droplet-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

/* Ripple Effect */
.ripples-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
}

.map-ripple {
    position: absolute;
    border: 2px solid rgba(0,204,255,0.6);
    border-radius: 50%;
    background: radial-gradient(circle, transparent 30%, rgba(0,204,255,0.1) 70%);
    animation: ripple-expand 2s ease-out forwards;
}

@keyframes ripple-expand {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}

/* Service Icons */
.service-icons-float {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.service-icon-3d {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-icon-3d:hover {
    transform: scale(1.1) translateY(-5px);
}

.icon-3d-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    font-size: 2.5rem;
    z-index: 10;
    filter: drop-shadow(0 5px 15px rgba(0,204,255,0.5));
}

.icon-ring {
    position: absolute;
    border: 2px solid rgba(0,204,255,0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-ring.ring1 {
    width: 100%;
    height: 100%;
    animation: ring-spin 4s linear infinite;
}

.icon-ring.ring2 {
    width: 130%;
    height: 130%;
    border-style: dashed;
    animation: ring-spin 6s linear infinite reverse;
}

@keyframes ring-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.service-label {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Glassmorphism Testimonials */
.glassmorphism-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.glass-card {
    position: relative;
    padding: 4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 350px;
}

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

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,204,255,0.4);
    box-shadow: 0 20px 40px rgba(0,204,255,0.2);
}

.glass-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.glass-card .card-image {
    width: 100%;
    height: 180px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.glass-card .card-image img.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.glass-card:hover .card-image img.testimonial-img {
    transform: scale(1.1);
}

.glass-card .testimonial-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.client-location {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Coverage Stats */
.coverage-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0,204,255,0.05);
    border: 1px solid rgba(0,204,255,0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.stat-item-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.stat-item-large .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item-large .stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #00ccff;
    text-shadow: 0 0 20px rgba(0,204,255,0.5);
}

.stat-item-large .stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* Mobile Responsive for Proudly Serving */
@media (max-width: 992px) {
    .journey-title .title-line {
        font-size: 2.5rem;
    }
    
    .bihar-map-container {
        width: 100%;
        max-width: 500px;
        height: 400px;
    }
    
    .service-icons-float {
        position: relative;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .glassmorphism-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .proudly-serving-section {
        padding: 60px 1rem;
    }
    
    .journey-title .title-line {
        font-size: 1.8rem;
    }
    
    .bihar-map-container {
        height: 300px;
    }
    
    .service-icons-float {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .icon-3d-wrap {
        width: 60px;
        height: 60px;
    }
    
    .icon-bg {
        font-size: 2rem;
    }
    
    .glassmorphism-testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .glass-card {
        padding: 3rem;
        min-height: 300px;
    }
    
    .coverage-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-item-large .stat-value {
        font-size: 2.5rem;
    }
    
    .map-stage {
        flex-direction: column;
        min-height: auto;
    }
    
    .traveling-droplet {
        width: 30px;
        height: 40px;
    }
}

/* ===== Contact & Team Section ===== */
.contact-team-section {
    position: relative;
    padding: 100px 2rem;
    background: linear-gradient(135deg, #001a33 0%, #003366 50%, #001a33 100%);
    overflow: hidden;
    min-height: 100vh;
}

/* Background Map */
.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.connection-map {
    width: 100%;
    height: 100%;
}

/* Contact Container */
.contact-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

/* Office Info Card - Glassmorphism */
.office-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.office-badge-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(0, 204, 255, 0.5));
}

.office-details h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Glowing Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: glow-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.6);
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 204, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 204, 255, 0.9), 0 0 60px rgba(0, 204, 255, 0.4);
    }
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: rgba(0, 204, 255, 0.3);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 1.8rem;
}

.contact-detail {
    display: flex;
    flex-direction: column;
}

.contact-detail .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail .value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail .value:hover {
    color: #00ccff;
}

/* Notify Section */
.notify-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notify-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.notify-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.3);
}

.notify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 204, 255, 0.5);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notify-btn:hover .btn-glow {
    opacity: 1;
}

/* Leadership Section */
.leadership-section {
    text-align: center;
}

.leadership-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.leadership-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ccff, transparent);
}

.leader-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Leader Card - 3D Hover Effect */
.leader-card {
    perspective: 1000px;
}

.card-3d-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    overflow: hidden;
}

.leader-card:hover .card-3d-wrapper {
    transform: rotateY(5deg) rotateX(-5deg) translateZ(20px);
    border-color: rgba(0, 204, 255, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 204, 255, 0.2);
}

/* Card Shine Effect */
.card-3d-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.leader-card:hover .card-3d-wrapper::before {
    transform: translateX(100%);
}

/* Leader Avatar */
.leader-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(0, 204, 255, 0.3);
    border-radius: 50%;
    animation: ring-pulse 3s ease-in-out infinite;
}

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

.avatar-initial {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.4);
}

/* Location Tag */
.location-tag {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 26, 51, 0.9);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #fff;
    white-space: nowrap;
}

.bihar-tag .tag-dot {
    width: 8px;
    height: 8px;
    background: #00ccff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ccff;
}

.haryana-tag .tag-dot {
    width: 8px;
    height: 8px;
    background: #c0c0c0;
    border-radius: 50%;
    box-shadow: 0 0 10px #c0c0c0;
}

/* Leader Info */
.leader-info {
    margin-bottom: 1.5rem;
}

.leader-name {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.leader-role {
    display: block;
    font-size: 1rem;
    color: #00ccff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.leader-quote {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding: 0 1rem;
}

.leader-quote::before,
.leader-quote::after {
    content: '"';
    color: rgba(0, 204, 255, 0.5);
    font-size: 1.5rem;
}

/* Leader Social Links */
.leader-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 204, 255, 0.2);
    border-color: #00ccff;
    color: #00ccff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leader-cards {
        gap: 2rem;
    }
    
    .card-3d-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-team-section {
        padding: 60px 1rem;
    }
    
    .office-info-card {
        padding: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-cards {
        grid-template-columns: 1fr;
    }
    
    .office-details h3 {
        font-size: 1.5rem;
    }
    
    .leader-name {
        font-size: 1.5rem;
    }
}

/* ===== Contact Form Styles ===== */
.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.label-icon {
    font-size: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ccff;
    background: rgba(0, 204, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #001a33;
    color: #fff;
}

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

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 204, 255, 0.5);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.form-success h4 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.form-success p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.reset-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background: rgba(0, 204, 255, 0.2);
    border-color: #00ccff;
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}

/* ===== Event Booking Form Styles ===== */
.event-booking-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Pulsating Droplet Centerpiece */
.droplet-centerpiece {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.droplet-3d-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.droplet-body-large {
    width: 120px;
    height: 150px;
    background: linear-gradient(135deg, 
        rgba(0, 204, 255, 0.9) 0%, 
        rgba(0, 102, 204, 0.8) 50%,
        rgba(0, 204, 255, 0.9) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 
        inset -10px -10px 30px rgba(255, 255, 255, 0.3),
        inset 10px 10px 30px rgba(0, 0, 0, 0.2),
        0 20px 60px rgba(0, 204, 255, 0.6),
        0 0 100px rgba(0, 204, 255, 0.4);
    position: relative;
    animation: droplet-pulse-large 3s ease-in-out infinite;
}

@keyframes droplet-pulse-large {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 20px 60px rgba(0, 204, 255, 0.6), 0 0 100px rgba(0, 204, 255, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 30px 80px rgba(0, 204, 255, 0.8), 0 0 120px rgba(0, 204, 255, 0.6);
    }
}

.droplet-shine-large {
    position: absolute;
    top: 15%;
    left: 25%;
    width: 35%;
    height: 25%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: rotate(-20deg);
    filter: blur(2px);
}

.droplet-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    border: 2px solid rgba(0, 204, 255, 0.3);
    border-radius: 50%;
    animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(0.8); 
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2); 
        opacity: 0;
    }
}

.droplet-label {
    position: absolute;
    bottom: -30px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ccff;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
}

/* Elegant Form Header */
.form-header.elegant {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 60px;
}

.form-header.elegant .form-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.form-header.elegant h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header.elegant p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Glass Input Styling */
.form-group.glass-input input,
.form-group.glass-input select,
.form-group.glass-input textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #fff;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group.glass-input input:focus,
.form-group.glass-input select:focus,
.form-group.glass-input textarea:focus {
    border-color: rgba(0, 204, 255, 0.5);
    background: rgba(0, 204, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.2);
    outline: none;
}

.form-row.elegant {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.label-icon.glow {
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.8));
}

/* Jar Sliders Section */
.jar-sliders-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sliders-title {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.title-icon {
    font-size: 1.5rem;
}

/* Jar Slider Container */
.jar-slider-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.jar-slider-container:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.jar-icon-wrapper {
    flex-shrink: 0;
}

/* Jar Icons with Glow */
.jar-icon-small,
.jar-icon-medium,
.jar-icon-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.jar-emoji {
    font-size: 1.5rem;
}

.jar-size {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Glowing effects for each jar size */
.glow-250 {
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.3);
    border-color: rgba(0, 204, 255, 0.3);
}

.glow-1l {
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
    border-color: rgba(192, 192, 192, 0.3);
}

.glow-20l {
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
    border-color: rgba(0, 102, 204, 0.3);
}

.jar-slider-container:hover .jar-icon-small,
.jar-slider-container:hover .jar-icon-medium,
.jar-slider-container:hover .jar-icon-large {
    transform: scale(1.1);
}

/* Custom Range Sliders */
.slider-wrapper {
    flex: 1;
    position: relative;
}

.glowing-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.glowing-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px currentColor;
}

.slider-250::-webkit-slider-thumb {
    background: linear-gradient(135deg, #00ccff, #0066cc);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.6);
}

.slider-1l::-webkit-slider-thumb {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.6);
}

.slider-20l::-webkit-slider-thumb {
    background: linear-gradient(135deg, #0066cc, #003366);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.6);
}

.glowing-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

/* Slider Track */
.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transform: translateY(-50%);
    z-index: 1;
}

.slider-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 8px;
    background: linear-gradient(90deg, rgba(0, 204, 255, 0.3), rgba(0, 204, 255, 0.8));
    border-radius: 4px;
    transform: translateY(-50%);
    z-index: 1;
    width: 0%;
    transition: width 0.1s ease;
}

/* Jar Count Display */
.jar-count-display {
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 204, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 204, 255, 0.3);
}

.count-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ccff;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.count-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Event Submit Button */
.event-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 204, 255, 0.4);
}

.event-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(0, 204, 255, 0.6);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.event-submit-btn:hover .btn-shine {
    left: 100%;
}

/* Event Success Message */
.event-success {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeInUp 0.6s ease;
}

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

.success-droplet {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: droplet-bounce 1s ease infinite;
}

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

.event-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.event-success p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.booking-summary {
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.reset-btn.elegant {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn.elegant:hover {
    background: rgba(0, 204, 255, 0.2);
    border-color: #00ccff;
}

/* Responsive Event Booking Form */
@media (max-width: 768px) {
    .event-booking-card {
        padding: 2rem 1.5rem;
    }
    
    .droplet-centerpiece {
        top: -40px;
    }
    
    .droplet-body-large {
        width: 80px;
        height: 100px;
    }
    
    .form-header.elegant h3 {
        font-size: 1.6rem;
    }
    
    .form-row.elegant {
        grid-template-columns: 1fr;
    }
    
    .jar-slider-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .jar-count-display {
        min-width: auto;
        width: 100%;
    }
    
    .event-submit-btn {
        font-size: 1rem;
    }
}

/* ===== PREMIUM FORM ENHANCEMENTS ===== */

/* Contact Form Premium Styling */
.contact-form-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(0, 204, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 40px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 100px rgba(0, 204, 255, 0.1);
    animation: card-float 6s ease-in-out infinite;
}

@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.1) 0%, transparent 70%);
    animation: rotate-glow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 204, 255, 0.5) 50%, 
        transparent 100%);
    animation: scan-line 4s ease-in-out infinite;
}

@keyframes scan-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Form Header Premium */
.contact-form-card .form-header {
    position: relative;
    z-index: 1;
}

.contact-form-card .form-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(0, 204, 255, 0.6));
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(0, 204, 255, 0.6)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 50px rgba(0, 204, 255, 0.9)); }
}

.contact-form-card .form-header h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #fff 0%, #00ccff 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    text-shadow: none;
    margin-bottom: 0.75rem;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Premium Input Fields */
.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group select:focus,
.contact-form-card .form-group textarea:focus {
    background: rgba(0, 204, 255, 0.08);
    border-color: rgba(0, 204, 255, 0.6);
    box-shadow: 
        0 0 0 3px rgba(0, 204, 255, 0.1),
        0 10px 40px rgba(0, 204, 255, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-form-card .form-group label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.contact-form-card .label-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.6));
}

/* Premium Submit Button */
.contact-form-card .submit-btn {
    background: linear-gradient(135deg, #00ccff, #0066cc, #00ccff);
    background-size: 200% 200%;
    border-radius: 50px;
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 
        0 10px 40px rgba(0, 204, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: btn-gradient 3s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes btn-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-form-card .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.contact-form-card .submit-btn:hover::before {
    left: 100%;
}

.contact-form-card .submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 204, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Event Booking Premium Enhancements */
.event-booking-card {
    background: linear-gradient(145deg, 
        rgba(0, 204, 255, 0.05) 0%, 
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 102, 204, 0.05) 100%);
    border: 1px solid rgba(0, 204, 255, 0.25);
    border-radius: 50px;
    padding: 4rem 3rem;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 120px rgba(0, 204, 255, 0.08);
    animation: booking-card-breathe 8s ease-in-out infinite;
}

@keyframes booking-card-breathe {
    0%, 100% { 
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 120px rgba(0, 204, 255, 0.08);
    }
    50% { 
        box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 150px rgba(0, 204, 255, 0.12);
    }
}

/* Enhanced Droplet */
.event-booking-card .droplet-body-large {
    width: 140px;
    height: 170px;
    box-shadow: 
        inset -15px -15px 40px rgba(255, 255, 255, 0.4),
        inset 15px 15px 40px rgba(0, 0, 0, 0.3),
        0 30px 80px rgba(0, 204, 255, 0.7),
        0 0 120px rgba(0, 204, 255, 0.5),
        0 0 200px rgba(0, 204, 255, 0.2);
    animation: droplet-premium-pulse 4s ease-in-out infinite;
}

@keyframes droplet-premium-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 30px 80px rgba(0, 204, 255, 0.7), 0 0 120px rgba(0, 204, 255, 0.5), 0 0 200px rgba(0, 204, 255, 0.2);
    }
    50% { 
        transform: scale(1.08); 
        box-shadow: 0 40px 100px rgba(0, 204, 255, 0.9), 0 0 160px rgba(0, 204, 255, 0.7), 0 0 280px rgba(0, 204, 255, 0.3);
    }
}

/* Enhanced Form Header */
.event-booking-card .form-header.elegant {
    margin-top: 80px;
}

.event-booking-card .form-header.elegant .form-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
    animation: celebration-icon 2s ease-in-out infinite;
}

@keyframes celebration-icon {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-10deg); }
    75% { transform: scale(1.2) rotate(10deg); }
}

.event-booking-card .form-header.elegant h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff 0%, #00ccff 25%, #ffd700 50%, #00ccff 75%, #fff 100%);
    background-size: 300% auto;
    animation: gold-gradient-shift 6s ease infinite;
}

@keyframes gold-gradient-shift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Premium Jar Sliders Section */
.event-booking-card .jar-sliders-section {
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 204, 255, 0.05) 50%,
        rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 30px;
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
}

.event-booking-card .sliders-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Slider Containers */
.event-booking-card .jar-slider-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.event-booking-card .jar-slider-container:hover {
    background: rgba(0, 204, 255, 0.08);
    border-color: rgba(0, 204, 255, 0.3);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.15);
}

/* Enhanced Jar Icons */
.event-booking-card .jar-icon-small,
.event-booking-card .jar-icon-medium,
.event-booking-card .jar-icon-large {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.event-booking-card .jar-slider-container:hover .jar-icon-small,
.event-booking-card .jar-slider-container:hover .jar-icon-medium,
.event-booking-card .jar-slider-container:hover .jar-icon-large {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 204, 255, 0.4);
}

/* Premium Count Display */
.event-booking-card .jar-count-display {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.15), rgba(0, 102, 204, 0.1));
    border: 1px solid rgba(0, 204, 255, 0.4);
    box-shadow: 
        0 0 20px rgba(0, 204, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.event-booking-card .count-number {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #00ccff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Range Sliders */
.event-booking-card .slider-wrapper {
    position: relative;
}

.event-booking-card .slider-track {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(0, 204, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    height: 10px;
    border-radius: 5px;
}

.event-booking-card .slider-fill {
    background: linear-gradient(90deg, 
        rgba(0, 204, 255, 0.3) 0%, 
        rgba(0, 204, 255, 0.9) 100%);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.event-booking-card .glowing-slider::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.event-booking-card .glowing-slider::-webkit-slider-thumb:hover {
    transform: scale(1.5);
    box-shadow: 0 0 40px currentColor;
}

/* Premium Event Submit Button */
.event-booking-card .event-submit-btn {
    background: linear-gradient(135deg, #00ccff, #0066cc, #00ccff, #0066cc);
    background-size: 300% 300%;
    animation: btn-gradient-flow 4s ease infinite;
    border-radius: 50px;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    letter-spacing: 2px;
    box-shadow: 
        0 15px 50px rgba(0, 204, 255, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset,
        0 0 60px rgba(0, 204, 255, 0.2);
}

@keyframes btn-gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.event-booking-card .event-submit-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 25px 70px rgba(0, 204, 255, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset,
        0 0 80px rgba(0, 204, 255, 0.3);
}

/* Success States Premium */
.contact-form-card .form-success,
.event-booking-card .event-success {
    background: linear-gradient(145deg, 
        rgba(0, 204, 255, 0.1) 0%, 
        rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 30px;
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 20px 60px rgba(0, 204, 255, 0.2);
}

.event-booking-card .success-droplet {
    font-size: 6rem;
    filter: drop-shadow(0 0 30px rgba(0, 204, 255, 0.8));
}

.event-booking-card .event-success h4 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Input Premium */
.event-booking-card .form-group.glass-input input,
.event-booking-card .form-group.glass-input select,
.event-booking-card .form-group.glass-input textarea {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    box-shadow: 
        inset 0 3px 6px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-booking-card .form-group.glass-input input:focus,
.event-booking-card .form-group.glass-input select:focus,
.event-booking-card .form-group.glass-input textarea:focus {
    background: rgba(0, 204, 255, 0.08);
    border-color: rgba(0, 204, 255, 0.6);
    box-shadow: 
        0 0 0 4px rgba(0, 204, 255, 0.1),
        0 15px 50px rgba(0, 204, 255, 0.25),
        inset 0 3px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.event-booking-card .label-icon.glow {
    filter: drop-shadow(0 0 15px rgba(0, 204, 255, 0.9));
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(0, 204, 255, 0.9)); }
    50% { filter: drop-shadow(0 0 25px rgba(0, 204, 255, 1)); }
}

/* ===== 3D EXPLODED VIEW BOTTLE SHOWCASE ===== */
.exploded-bottle-showcase {
    position: relative;
    padding: 4rem 2rem;
    margin: 4rem 0;
    overflow: hidden;
    border-radius: 40px;
    background: linear-gradient(180deg, 
        rgba(0, 26, 51, 0.95) 0%, 
        rgba(0, 51, 102, 0.9) 50%,
        rgba(0, 26, 51, 0.95) 100%);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Iridescent Background */
.iridescent-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 204, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 204, 255, 0.08) 0%, transparent 70%);
    animation: iridescent-shift 8s ease-in-out infinite;
}

@keyframes iridescent-shift {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%;
        opacity: 1;
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 50% 50%;
        opacity: 0.8;
    }
}

/* Holographic Particles */
.holographic-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.holographic-particles::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 204, 255, 0.3) 0%, transparent 2px),
        radial-gradient(circle at 60% 20%, rgba(0, 102, 204, 0.3) 0%, transparent 2px),
        radial-gradient(circle at 40% 70%, rgba(0, 204, 255, 0.3) 0%, transparent 2px),
        radial-gradient(circle at 80% 60%, rgba(0, 102, 204, 0.3) 0%, transparent 2px);
    background-size: 100px 100px, 150px 150px, 120px 120px, 180px 180px;
    animation: particles-float 20s linear infinite;
}

@keyframes particles-float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Liquid Ripples */
.liquid-ripples {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.1) 0%, transparent 70%);
    animation: ripple-expand 4s ease-out infinite;
}

@keyframes ripple-expand {
    0% { 
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Showcase Header */
.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.showcase-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 204, 255, 0.15);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 50px;
    color: #00ccff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #00ccff 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: gradient-shift 5s ease infinite;
}

.showcase-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Bottle Explosion Stage */
.bottle-explosion-stage {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1200px;
    z-index: 10;
}

.bottle-assembly-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 400px;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Component Layers */
.component-layer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.component-visual {
    position: relative;
    transform-style: preserve-3d;
}

.component-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.component-layer:hover .component-glow {
    opacity: 1;
}

/* Cap Component */
.cap-component {
    top: 0;
    z-index: 60;
}

.cap-3d-model {
    width: 60px;
    height: 40px;
    position: relative;
}

.cap-dome {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 20px;
    background: linear-gradient(180deg, #00ccff 0%, #0066cc 100%);
    border-radius: 25px 25px 5px 5px;
    box-shadow: 
        inset -5px -5px 10px rgba(255, 255, 255, 0.3),
        inset 5px 5px 10px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 204, 255, 0.4);
}

.cap-grip {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(180deg, #0066cc 0%, #003366 100%);
    border-radius: 5px;
    box-shadow: 
        inset -3px -3px 6px rgba(255, 255, 255, 0.2),
        inset 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.cap-thread {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 10px;
    background: repeating-linear-gradient(
        0deg,
        #004080 0px,
        #004080 2px,
        #0066cc 2px,
        #0066cc 4px
    );
    border-radius: 0 0 5px 5px;
}

/* Neck Component */
.neck-component {
    top: 35px;
    z-index: 50;
}

.neck-3d-model {
    width: 30px;
    height: 50px;
    position: relative;
}

.neck-glass-tube {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(0, 204, 255, 0.2);
}

.neck-highlight {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 30%;
    height: 80%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 5px;
    filter: blur(2px);
}

/* Label Component */
.label-component {
    top: 80px;
    z-index: 40;
}

.label-3d-model {
    width: 100px;
    height: 80px;
    position: relative;
}

.label-paper-3d {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(240, 248, 255, 0.9) 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.label-brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0066cc, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.label-premium-text {
    font-size: 0.7rem;
    color: #0066cc;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.label-gloss {
    position: absolute;
    top: 5px;
    left: 10px;
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0) 100%);
    border-radius: 5px;
    filter: blur(1px);
}

/* Water Component */
.water-component {
    top: 150px;
    z-index: 30;
}

.water-3d-model {
    width: 80px;
    height: 120px;
    position: relative;
}

.water-body {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0, 204, 255, 0.6) 0%,
        rgba(0, 102, 204, 0.8) 50%,
        rgba(0, 204, 255, 0.6) 100%);
    border-radius: 10px 10px 20px 20px;
    box-shadow: 
        inset 0 -10px 20px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 204, 255, 0.3);
    animation: water-shimmer 3s ease-in-out infinite;
}

@keyframes water-shimmer {
    0%, 100% { 
        background-position: 0% 0%;
        filter: brightness(1);
    }
    50% { 
        background-position: 0% 100%;
        filter: brightness(1.1);
    }
}

.water-bubbles-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bubble-3d {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.4) 100%);
    border-radius: 50%;
    animation: bubble-rise 2s ease-in-out infinite;
}

.bubble-3d.b1 { 
    width: 8px; 
    height: 8px; 
    left: 20%; 
    bottom: 10%; 
    animation-delay: 0s;
}
.bubble-3d.b2 { 
    width: 6px; 
    height: 6px; 
    left: 60%; 
    bottom: 20%; 
    animation-delay: 0.5s;
}
.bubble-3d.b3 { 
    width: 10px; 
    height: 10px; 
    left: 40%; 
    bottom: 5%; 
    animation-delay: 1s;
}
.bubble-3d.b4 { 
    width: 5px; 
    height: 5px; 
    left: 70%; 
    bottom: 15%; 
    animation-delay: 1.5s;
}

@keyframes bubble-rise {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    100% { 
        transform: translateY(-80px) scale(0.5);
        opacity: 0;
    }
}

.water-shimmer {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    animation: shimmer-sweep 3s ease-in-out infinite;
}

@keyframes shimmer-sweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Body Component */
.body-component {
    top: 100px;
    z-index: 20;
}

.body-3d-model {
    width: 110px;
    height: 200px;
    position: relative;
}

.glass-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 80%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 15px 15px 25px 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        inset 0 0 30px rgba(0, 204, 255, 0.1),
        0 10px 40px rgba(0, 0, 0, 0.2);
}

.glass-reflection-3d {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 25%;
    height: 70%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.3) 100%);
    border-radius: 10px;
    filter: blur(3px);
    transform: skewX(-5deg);
}

.glass-thickness {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: calc(100% - 4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px 13px 23px 23px;
}

/* Base Component */
.base-component {
    bottom: 0;
    z-index: 10;
}

.base-3d-model {
    width: 100px;
    height: 30px;
    position: relative;
}

.base-glass {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 25px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%);
    border-radius: 0 0 20px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top: none;
}

.base-ring {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 8px;
    background: linear-gradient(180deg,
        rgba(0, 204, 255, 0.3) 0%,
        rgba(0, 102, 204, 0.5) 100%);
    border-radius: 0 0 25px 25px;
}

/* Exploded States */
.bottle-assembly-3d.exploded .cap-component {
    transform: translateX(-50%) translateY(-80px) rotateX(-15deg);
}

.bottle-assembly-3d.exploded .neck-component {
    transform: translateX(-50%) translateY(-40px);
}

.bottle-assembly-3d.exploded .label-component {
    transform: translateX(-50%) translateX(120px) rotateY(25deg);
}

.bottle-assembly-3d.exploded .water-component {
    transform: translateX(-50%) translateX(-100px) rotateY(-20deg);
}

.bottle-assembly-3d.exploded .body-component {
    transform: translateX(-50%) translateY(50px) scale(0.95);
}

.bottle-assembly-3d.exploded .base-component {
    transform: translateX(-50%) translateY(60px);
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.bottle-assembly-3d.exploded ~ .connection-lines {
    opacity: 1;
}

.connection-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: line-draw 0.8s ease forwards;
}

.connection-line.cap-line { animation-delay: 0.2s; }
.connection-line.label-line { animation-delay: 0.4s; }
.connection-line.water-line { animation-delay: 0.6s; }
.connection-line.body-line { animation-delay: 0.8s; }

@keyframes line-draw {
    to { stroke-dashoffset: 0; }
}

/* Info Cards Container */
.info-cards-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

/* Glassmorphic Info Cards */
.info-card {
    position: absolute;
    width: 220px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    overflow: hidden;
}

.bottle-assembly-3d.exploded ~ .info-cards-container .info-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.info-card.cap-card {
    top: 30px;
    right: 50px;
    transition-delay: 0.2s;
}

.info-card.label-card {
    top: 180px;
    right: 30px;
    transition-delay: 0.4s;
}

.info-card.water-card {
    top: 280px;
    left: 30px;
    transition-delay: 0.6s;
}

.info-card.body-card {
    top: 380px;
    right: 50px;
    transition-delay: 0.8s;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.info-card:hover .card-shine {
    transform: translateX(100%) rotate(45deg);
}

.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.card-particles::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 204, 255, 0.6);
    border-radius: 50%;
    top: 20%;
    left: 20%;
    animation: card-particle-float 3s ease-in-out infinite;
}

@keyframes card-particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(0.5); opacity: 0; }
}

.card-icon-3d {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 15px rgba(0, 204, 255, 0.6));
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-specs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.spec {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 204, 255, 0.15);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 50px;
    font-size: 0.7rem;
    color: #00ccff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Glow Colors */
.cap-card .card-icon-3d { filter: drop-shadow(0 0 15px rgba(0, 204, 255, 0.8)); }
.label-card .card-icon-3d { filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.8)); }
.water-card .card-icon-3d { filter: drop-shadow(0 0 15px rgba(0, 230, 255, 0.8)); }
.body-card .card-icon-3d { filter: drop-shadow(0 0 15px rgba(100, 255, 218, 0.8)); }

/* Controls */
.explosion-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 30;
}

.explode-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.2), rgba(0, 102, 204, 0.2));
    border: 1px solid rgba(0, 204, 255, 0.4);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.explode-btn:hover {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.3), rgba(0, 102, 204, 0.3));
    border-color: rgba(0, 204, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.3);
}

.explode-btn.active {
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border-color: transparent;
}

/* Toggle Switch */
.auto-play-toggle {
    display: flex;
    align-items: center;
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.toggle-switch input {
    display: none;
}

.toggle-slider-switch {
    width: 50px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-slider-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider-switch {
    background: rgba(0, 204, 255, 0.3);
    border-color: rgba(0, 204, 255, 0.5);
}

.toggle-switch input:checked + .toggle-slider-switch::before {
    transform: translateX(24px);
    background: #00ccff;
}

.toggle-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .exploded-bottle-showcase {
        padding: 2rem 1rem;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .bottle-explosion-stage {
        height: 400px;
    }
    
    .info-card {
        width: 160px;
        padding: 1rem;
    }
    
    .info-card.cap-card { top: 10px; right: 10px; }
    .info-card.label-card { top: 120px; right: 5px; }
    .info-card.water-card { top: 200px; left: 5px; }
    .info-card.body-card { top: 300px; right: 10px; }
    
    .card-title { font-size: 0.9rem; }
    .card-desc { font-size: 0.75rem; }
    .spec { font-size: 0.6rem; padding: 0.2rem 0.5rem; }
    
    .explosion-controls {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== EVENT BOOKING DASHBOARD ===== */
.event-booking-dashboard {
    position: relative;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 40px;
    background: linear-gradient(135deg, 
        rgba(0, 26, 51, 0.98) 0%, 
        rgba(0, 40, 80, 0.95) 50%,
        rgba(0, 26, 51, 0.98) 100%);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    min-height: 800px;
}

/* Bokeh Background */
.bokeh-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.bokeh-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: bokeh-float 20s ease-in-out infinite;
}

.bokeh-light.light-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.3) 0%, transparent 70%);
    top: -100px;
    left: -50px;
    animation-delay: 0s;
}

.bokeh-light.light-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 100, 150, 0.2) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    animation-delay: -5s;
}

.bokeh-light.light-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(100, 255, 200, 0.25) 0%, transparent 70%);
    bottom: 30%;
    left: 10%;
    animation-delay: -10s;
}

.bokeh-light.light-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 150, 255, 0.2) 0%, transparent 70%);
    bottom: -50px;
    right: 20%;
    animation-delay: -15s;
}

.bokeh-light.light-5 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -8s;
}

@keyframes bokeh-float {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.4;
    }
    25% { 
        transform: translate(30px, -30px) scale(1.1); 
        opacity: 0.5;
    }
    50% { 
        transform: translate(-20px, 20px) scale(0.95); 
        opacity: 0.35;
    }
    75% { 
        transform: translate(20px, 30px) scale(1.05); 
        opacity: 0.45;
    }
}

/* Live Counter Badge */
.live-counter-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 100, 50, 0.15);
    border: 1px solid rgba(255, 100, 50, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    z-index: 10;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 100, 50, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 100, 50, 0.5); }
}

.counter-pulse {
    width: 8px;
    height: 8px;
    background: #ff6432;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

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

.counter-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

/* Founders Badge */
.founders-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.founder-avatars {
    display: flex;
    margin-right: -8px;
}

.avatar-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: -8px;
}

.avatar-mini:first-child {
    margin-left: 0;
}

.avatar-mini.sk {
    background: linear-gradient(135deg, #00ccff, #0066cc);
}

.avatar-mini.ss {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.8rem;
    color: #00ccff;
}

.badge-text span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Dashboard Header */
.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.dashboard-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 204, 255, 0.15);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 50px;
    color: #00ccff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.dashboard-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #00ccff 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: gradient-shift 5s ease infinite;
}

.dashboard-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Progress Bar */
.progress-bar-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, #00ccff, #0066cc);
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progress-shimmer 2s ease-in-out infinite;
}

@keyframes progress-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0 2px;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    cursor: pointer;
}

.step-dot.active {
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border-color: #00ccff;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
    transform: scale(1.1);
}

.step-dot.completed {
    background: rgba(0, 204, 255, 0.3);
    border-color: #00ccff;
    color: #00ccff;
}

/* Booking Workspace */
.booking-workspace {
    position: relative;
    z-index: 5;
    min-height: 400px;
}

/* Step Panels */
.step-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-panel.active {
    display: block;
}

.step-title {
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step 1: Event Type Grid */
.event-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.event-type-btn {
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
}

.event-type-btn:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 204, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 204, 255, 0.2);
}

.event-type-btn.selected {
    background: rgba(0, 204, 255, 0.15);
    border-color: #00ccff;
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.3);
}

.type-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-type-btn:hover .type-glow,
.event-type-btn.selected .type-glow {
    opacity: 1;
}

.type-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(0, 204, 255, 0.5));
}

.type-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.type-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Step 2: Bottle Preview */
.bottle-preview-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.dynamic-bottle {
    position: relative;
    width: 150px;
    height: 300px;
    animation: bottle-float 4s ease-in-out infinite;
}

@keyframes bottle-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.bottle-glass {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px 20px 40px 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 
        inset 0 0 30px rgba(0, 204, 255, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.3);
}

.bottle-water {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 75%;
    background: linear-gradient(180deg,
        rgba(0, 204, 255, 0.4) 0%,
        rgba(0, 102, 204, 0.6) 100%);
    border-radius: 0 0 35px 35px;
    animation: water-wave 3s ease-in-out infinite;
}

@keyframes water-wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bottle-label {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(240, 248, 255, 0.9) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.bottle-label.wedding {
    background: linear-gradient(135deg, #ffe4e1 0%, #ffb6c1 100%);
}

.bottle-label.corporate {
    background: linear-gradient(135deg, #e6f3ff 0%, #b3d9ff 100%);
}

.bottle-label.fitness {
    background: linear-gradient(135deg, #e8f5e9 0%, #a5d6a7 100%);
}

.bottle-label.party {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
}

.label-icon-default {
    font-size: 2rem;
}

.bottle-cap {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 25px;
    background: linear-gradient(180deg, #00ccff 0%, #0066cc 100%);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 5px 15px rgba(0, 204, 255, 0.4);
}

.bottle-reflection {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 20%;
    height: 60%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 10px;
    filter: blur(2px);
}

.bottle-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 2px solid rgba(0, 204, 255, 0.2);
    border-radius: 50%;
    animation: glow-ring 3s ease-in-out infinite;
}

@keyframes glow-ring {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

.preview-info {
    text-align: center;
}

.preview-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 204, 255, 0.2);
    border: 1px solid rgba(0, 204, 255, 0.4);
    border-radius: 50px;
    color: #00ccff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.preview-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Step 3: Glassmorphic Form Card */
.glassmorphic-form-card {
    max-width: 450px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: card-float 6s ease-in-out infinite;
}

@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.quick-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.field-icon {
    font-size: 1.2rem;
}

.form-field input,
.form-field select {
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: rgba(0, 204, 255, 0.5);
    background: rgba(0, 204, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.2);
    transform: translateY(-2px);
}

.selected-event-display {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 204, 255, 0.1);
    border-radius: 16px;
    border: 1px dashed rgba(0, 204, 255, 0.3);
}

.event-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-quick-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-quick-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
}

.whatsapp-quick-btn:active .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Navigation Buttons */
.step-nav-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem 0.5rem;
}

.step-nav-btn:hover {
    background: rgba(0, 204, 255, 0.2);
    border-color: #00ccff;
    transform: translateY(-2px);
}

.step-nav-btn.next {
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border-color: transparent;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 5;
}

.book-batch-btn {
    position: relative;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    border: none;
    border-radius: 50px;
    color: #001a33;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 
        0 15px 40px rgba(0, 255, 136, 0.4),
        0 0 60px rgba(0, 255, 136, 0.2);
    animation: cta-glow 2s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.2);
    }
    50% { 
        box-shadow: 0 20px 50px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 136, 0.3);
    }
}

.book-batch-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.5);
}

.btn-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate-glow 10s linear infinite;
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.btn-icon-large {
    font-size: 1.5rem;
}

.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50px;
}

.cta-subtext {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Visual Proof Slider */
.visual-proof-section {
    margin-top: 3rem;
    position: relative;
    z-index: 5;
}

.proof-title {
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.proof-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.proof-slider::-webkit-scrollbar {
    display: none;
}

.proof-slide {
    flex: 0 0 280px;
    scroll-snap-align: center;
}

.proof-image {
    height: 180px;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.proof-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.proof-image.wedding-img {
    background: linear-gradient(135deg, #ffc0cb 0%, #ffb6c1 100%);
}

.proof-image.office-img {
    background: linear-gradient(135deg, #b3d9ff 0%, #87ceeb 100%);
}

.proof-image.gym-img {
    background: linear-gradient(135deg, #98fb98 0%, #90ee90 100%);
}

.proof-image.party-img {
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
}

.proof-label {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #001a33;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00ccff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

/* Water Drop Cursor Effect */
.water-cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

.water-drop {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(0, 204, 255, 0.6) 50%,
        transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    pointer-events: none;
    animation: drop-fade 1s ease-out forwards;
}

@keyframes drop-fade {
    0% { 
        transform: scale(0) translateY(0);
        opacity: 1;
    }
    50% {
        transform: scale(1) translateY(-10px);
        opacity: 0.8;
    }
    100% { 
        transform: scale(0.5) translateY(20px);
        opacity: 0;
    }
}

/* Success Message Styling */
.event-success-message {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease;
}

.event-success-message .success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

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

.event-success-message h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.event-success-message p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.reset-form-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 204, 255, 0.2);
    border: 1px solid rgba(0, 204, 255, 0.4);
    border-radius: 50px;
    color: #00ccff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-form-btn:hover {
    background: rgba(0, 204, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .event-booking-dashboard {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .dashboard-title {
        font-size: 1.8rem;
    }
    
    .event-type-grid {
        grid-template-columns: 1fr;
    }
    
    .live-counter-badge,
    .founders-badge {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .glassmorphic-form-card {
        padding: 1.5rem;
    }
    
    .book-batch-btn {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .proof-slide {
        flex: 0 0 240px;
    }
}

/* ===== Zevral Connect - Premium Contact Section ===== */
.zevral-connect-section {
    position: relative;
    padding: 0 0 6rem 0;
    background: linear-gradient(180deg, #0a0e1a 0%, #1a1f2e 50%, #0f1419 100%);
    overflow: hidden;
    min-height: 100vh;
}

/* Live Status Marquee Bar */
.live-status-bar {
    background: linear-gradient(90deg, rgba(0, 204, 255, 0.1), rgba(0, 102, 204, 0.1));
    border-bottom: 1px solid rgba(0, 204, 255, 0.2);
    padding: 0.75rem 0;
    overflow: hidden;
}

.marquee-container {
    max-width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.marquee-dot {
    color: #00ccff;
    font-size: 0.5rem;
    align-self: center;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Water Ripple Background */
.ripple-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.ripple-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 204, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 204, 255, 0.02) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    animation: ripplePulse 15s ease-in-out infinite;
}

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

/* Section Header */
.connect-header {
    text-align: center;
    padding: 4rem 2rem 3rem;
    position: relative;
    z-index: 10;
}

.connect-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 50px;
    color: #00ccff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.connect-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.connect-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Split Screen Container */
.connect-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 968px) {
    .connect-split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Left Side: Glassmorphic Form */
.connect-form-side {
    display: flex;
    flex-direction: column;
}

.glass-form-container {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-glow {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ccff, transparent);
    opacity: 0.5;
}

/* Floating Form Fields */
.floating-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.floating-group {
    position: relative;
}

.floating-input,
.floating-select,
.floating-textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.floating-input:focus,
.floating-select:focus,
.floating-textarea:focus {
    border-color: #00ccff;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.2);
}

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

.floating-label {
    position: absolute;
    left: 3rem;
    top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.label-icon {
    font-size: 1rem;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label,
.floating-select:focus ~ .floating-label,
.floating-select:not([value=""]) ~ .floating-label,
.floating-textarea:focus ~ .floating-label,
.floating-textarea:not(:placeholder-shown) ~ .floating-label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    color: #00ccff;
    background: #1a1f2e;
    padding: 0 0.5rem;
}

.floating-label.static {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    background: #1a1f2e;
    padding: 0 0.5rem;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00ccff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.floating-input:focus ~ .input-line,
.floating-select:focus ~ .input-line,
.floating-textarea:focus ~ .input-line {
    width: calc(100% - 2rem);
}

/* Liquid Submit Button */
.liquid-submit-btn {
    position: relative;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.2), rgba(0, 102, 204, 0.2));
    border: 1px solid rgba(0, 204, 255, 0.4);
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.liquid-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #00ccff, #0066cc);
    transition: height 0.4s ease;
    z-index: 0;
}

.liquid-submit-btn:hover .liquid-fill {
    height: 100%;
}

.liquid-submit-btn:hover {
    border-color: #00ccff;
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.3);
}

.liquid-submit-btn .btn-text,
.liquid-submit-btn .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.4) 0%, transparent 70%);
    transition: all 0.4s ease;
    z-index: 0;
}

.liquid-submit-btn:hover .btn-glow {
    width: 300px;
    height: 300px;
}

/* WhatsApp Magic Section */
.whatsapp-magic-section {
    margin-top: 2rem;
    text-align: center;
}

.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.whatsapp-magic-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.whatsapp-magic-btn:hover .btn-shine {
    left: 100%;
}

.whatsapp-magic-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.magic-icon {
    font-size: 1.25rem;
}

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

.whatsapp-magic-btn:hover .magic-arrow {
    transform: translateX(5px);
}

.magic-subtext {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Right Side: Corporate Identity */
.connect-identity-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.showcase-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 204, 255, 0.3), transparent);
}

/* Founders Showcase */
.founders-showcase {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
}

.founder-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.founder-premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.founder-premium-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 204, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.founder-premium-card:hover .card-aura {
    opacity: 1;
}

.founder-avatar-large {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
}

.avatar-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.3);
}

.avatar-ring-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(0, 204, 255, 0.3);
    border-radius: 50%;
    animation: avatarPulse 2s ease-in-out infinite;
}

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

.founder-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.founder-role {
    display: block;
    font-size: 0.85rem;
    color: #00ccff;
    margin-bottom: 0.5rem;
}

.founder-location {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.founder-socials {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #00ccff;
    border-color: #00ccff;
    color: #fff;
    transform: translateY(-3px);
}

/* Location Pulse Section */
.location-pulse-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
}

.map-container {
    position: relative;
}

.map-bg {
    position: relative;
    height: 150px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.bihar-haryana-map {
    width: 100%;
    height: 100%;
}

.state-outline {
    transition: all 0.3s ease;
}

.state-outline:hover {
    fill-opacity: 0.2;
}

.connection-beam {
    filter: drop-shadow(0 0 5px rgba(0, 204, 255, 0.5));
}

.location-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.point-marker {
    width: 12px;
    height: 12px;
    background: #00ccff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
}

.point-marker.pulse-active {
    background: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

.point-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: locationPulse 2s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 0.5s;
}

.pulse-ring.delay-2 {
    animation-delay: 1s;
}

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

.point-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.patna-point:hover .point-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

.tooltip-text {
    display: block;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 600;
}

.tooltip-badge {
    display: block;
    font-size: 0.7rem;
    color: #00ccff;
    margin-top: 0.25rem;
}

/* Invite Area Button */
.invite-area-btn {
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 204, 255, 0.1);
    border: 1px dashed rgba(0, 204, 255, 0.4);
    border-radius: 12px;
    color: #00ccff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
}

.invite-area-btn:hover {
    background: rgba(0, 204, 255, 0.2);
    border-style: solid;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.2);
}

.invite-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.2) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.invite-area-btn:hover .invite-glow {
    width: 200px;
    height: 200px;
}

/* Quick Links Section */
.quick-links-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 204, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.link-icon {
    font-size: 1.75rem;
}

.link-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.link-detail {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

.email-link:hover {
    background: rgba(234, 67, 53, 0.1);
    border-color: rgba(234, 67, 53, 0.3);
}

.website-link:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: rgba(0, 204, 255, 0.3);
}

/* Social Proof Section */
.social-proof-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
}

.proof-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.proof-icon {
    font-size: 1.25rem;
}

.proof-item strong {
    color: #00ccff;
    font-weight: 600;
}

/* Invite Modal */
.invite-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1f2e, #0f1419);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    z-index: 1001;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.area-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.area-btn {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.area-btn:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: #00ccff;
    transform: translateY(-2px);
}

.area-btn.other {
    grid-column: span 2;
    background: rgba(0, 204, 255, 0.1);
    border-color: rgba(0, 204, 255, 0.3);
    color: #00ccff;
}

.close-modal-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .founder-cards-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .connect-title {
        font-size: 2rem;
    }
    
    .glass-form-container {
        padding: 1.5rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-cards-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .area-options {
        grid-template-columns: 1fr;
    }
    
    .area-btn.other {
        grid-column: span 1;
    }
}
.filtration-journey-section {
    position: relative;
    padding: 6rem 2rem;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, #000d1a 0%, #001a33 30%, #002244 70%, #001a33 100%);
}

/* Deep Blue Background with Liquid Physics */
.journey-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.liquid-physics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 204, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 204, 255, 0.05) 0%, transparent 70%);
    animation: liquidMove 20s ease-in-out infinite;
}

@keyframes liquidMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

.molecule {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(0, 204, 255, 0.3);
    animation: floatMolecule 15s ease-in-out infinite;
}

.molecule.m1 { top: 10%; left: 10%; animation-delay: 0s; }
.molecule.m2 { top: 20%; right: 15%; animation-delay: 3s; }
.molecule.m3 { top: 60%; left: 5%; animation-delay: 6s; }
.molecule.m4 { bottom: 20%; right: 10%; animation-delay: 9s; }
.molecule.m5 { top: 40%; left: 50%; animation-delay: 12s; }

@keyframes floatMolecule {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    50% { transform: translate(20px, -30px) rotate(180deg); opacity: 0.6; }
}

/* Journey Header */
.journey-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.journey-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 204, 255, 0.15);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 50px;
    color: #00ccff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.journey-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(0, 204, 255, 0.5);
}

.journey-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Filtration System Container */
.filtration-system {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* LED Light Path */
.led-path {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
}

.led-dot {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
}

.led-dot.active {
    background: #00ccff;
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.8), 0 0 60px rgba(0, 204, 255, 0.4);
    animation: ledPulse 2s ease-in-out infinite;
}

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

.led-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 204, 255, 0.3), rgba(0, 204, 255, 0.6), rgba(0, 204, 255, 0.3));
    border-radius: 2px;
    animation: ledFlow 2s ease-in-out infinite;
}

@keyframes ledFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Traveling Water Droplet */
.droplet-traveler {
    position: absolute;
    top: 70px;
    left: calc(14.28% - 20px);
    width: 40px;
    height: 40px;
    z-index: 20;
    transition: left 0.5s ease;
}

.droplet-body {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(0, 204, 255, 0.9));
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(0, 204, 255, 0.6),
        0 0 60px rgba(0, 204, 255, 0.3),
        inset -5px -5px 10px rgba(0, 0, 0, 0.2);
    animation: dropletFloat 3s ease-in-out infinite;
}

.droplet-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowExpand 3s ease-in-out infinite;
}

.droplet-shine {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 25%;
    height: 25%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

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

@keyframes glowExpand {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

/* Stages Container */
.stages-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-top: 6rem;
}

/* Stage Module */
.stage-module {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stage-glass {
    position: relative;
    width: 100px;
    height: 140px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    overflow: hidden;
}

.stage-module:hover .stage-glass,
.stage-module.active .stage-glass {
    border-color: rgba(0, 204, 255, 0.5);
    box-shadow: 
        0 0 30px rgba(0, 204, 255, 0.3),
        0 0 60px rgba(0, 204, 255, 0.1),
        inset 0 0 30px rgba(0, 204, 255, 0.1);
    transform: translateY(-10px);
}

.stage-chrome {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 3px;
}

.stage-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.5));
}

.stage-number {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.stage-connector {
    position: absolute;
    width: 20px;
    height: 8px;
    background: linear-gradient(90deg, rgba(0, 204, 255, 0.3), rgba(0, 204, 255, 0.6));
    border-radius: 4px;
}

.stage-connector.in {
    top: 50%;
    left: -10px;
}

.stage-connector.out {
    top: 50%;
    right: -10px;
}

.stage-connector.final-out {
    background: linear-gradient(90deg, rgba(0, 204, 255, 0.6), #00ccff);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
}

/* Special Stage Effects */
.carbon-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stage-module:hover .carbon-particles,
.stage-module.active .carbon-particles {
    opacity: 1;
}

.ro-membrane {
    position: absolute;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.8), transparent);
    top: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stage-module:hover .ro-membrane,
.stage-module.active .ro-membrane {
    opacity: 1;
}

.uv-light {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: uvPulse 1.5s ease-in-out infinite;
}

.stage-module:hover .uv-light,
.stage-module.active .uv-light {
    opacity: 1;
}

@keyframes uvPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.uf-fibers {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 1px dashed rgba(0, 204, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stage-module:hover .uf-fibers,
.stage-module.active .uf-fibers {
    opacity: 1;
}

.mineral-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stage-module:hover .mineral-particles,
.stage-module.active .mineral-particles {
    opacity: 1;
}

.mineral {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 700;
    animation: mineralFloat 3s ease-in-out infinite;
}

.mineral.copper { color: #b87333; top: 20%; left: 30%; animation-delay: 0s; }
.mineral.zinc { color: #c0c0c0; top: 40%; right: 25%; animation-delay: 1s; }
.mineral.mg { color: #90ee90; bottom: 25%; left: 35%; animation-delay: 2s; }

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

.diamond-shine {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: diamondSparkle 2s ease-in-out infinite;
}

.stage-module:hover .diamond-shine,
.stage-module.active .diamond-shine {
    opacity: 1;
}

@keyframes diamondSparkle {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Stage Info Cards */
.stage-info-card {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 180px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.stage-module:hover .stage-info-card,
.stage-module.active .stage-info-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.stage-info-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(255, 255, 255, 0.08);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stage-info-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stage-info-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.stage-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 204, 255, 0.2);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 20px;
    font-size: 0.7rem;
    color: #00ccff;
    font-weight: 600;
}

.stage-badge.final-badge {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.3), rgba(0, 102, 204, 0.3));
    color: #fff;
}

/* Journey Progress */
.journey-progress {
    margin-top: 14rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.progress-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.progress-bar {
    max-width: 600px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ccff, #0066cc);
    border-radius: 3px;
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .stages-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    .stage-module:nth-child(5),
    .stage-module:nth-child(6),
    .stage-module:nth-child(7) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .stages-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .journey-title {
        font-size: 2rem;
    }
    .led-path {
        display: none;
    }
    .droplet-traveler {
        display: none;
    }
    .stage-info-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        margin-top: 1rem;
    }
    .stage-info-card::before {
        display: none;
    }
    .journey-progress {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .stages-container {
        grid-template-columns: 1fr;
    }
}
.products-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(0, 26, 51, 0.8) 0%, rgba(0, 51, 102, 0.6) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 204, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 204, 255, 0.15);
}

.product-card.featured {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.1), rgba(0, 102, 204, 0.05));
    border: 2px solid rgba(0, 204, 255, 0.4);
    transform: scale(1.05);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 204, 255, 0.2);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00ccff;
    z-index: 10;
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #00ccff, #0066cc);
    color: #fff;
    border: none;
}

.product-image-wrapper {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

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

.product-img {
    max-height: 220px;
    object-fit: contain;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05) rotateY(5deg);
}

.product-info {
    text-align: center;
}

.product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.35rem 0.75rem;
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #00ccff;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ccff;
}

.btn-order {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #00ccff, #0066cc);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .product-card.featured {
        transform: none;
    }
    .product-card.featured:hover {
        transform: translateY(-10px);
    }
}
