/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e84393;
    --primary-light: #fd79a8;
    --secondary: #a855f7;
    --accent: #6c5ce7;
    --gradient-bg: linear-gradient(135deg, #ffeef8 0%, #f0e0ff 30%, #ffe0f0 60%, #e8d5f5 100%);
    --gradient-hero: linear-gradient(180deg, #f9c5e0 0%, #dba4d8 25%, #c78dcc 50%, #e8a5d0 75%, #f5c6e0 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,230,245,0.8));
    --text-dark: #2d1b4e;
    --text-medium: #5a3d7a;
    --text-light: #8b6aad;
    --white: #ffffff;
    --shadow-soft: 0 8px 32px rgba(168, 85, 247, 0.15);
    --shadow-glow: 0 0 40px rgba(232, 67, 147, 0.3);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito', sans-serif;
    background: #F2F5FF;
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: default;
}

/* ===== INTERACTIVE BACKGROUND ===== */
.interactive-bg {
    position: fixed;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    z-index: -1;
    overflow: hidden;
    will-change: transform;
}

.interactive-bg .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s ease-out;
    transform-origin: center center;
    filter: brightness(1.02) saturate(1.1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-hover .custom-cursor {
    transform: scale(2);
}

.cursor-hover .cursor-follower {
    width: 50px;
    height: 50px;
    border-color: var(--secondary);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
    overflow: visible;
}

/* Navbar Glow Effect */
.navbar-glow {
    position: absolute;
    top: -50%;
    left: -10%;
    right: -10%;
    height: 200%;
    background: radial-gradient(ellipse at center, 
        rgba(232, 67, 147, 0.15) 0%, 
        rgba(168, 85, 247, 0.1) 40%, 
        transparent 70%);
    animation: navbarGlow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes navbarGlow {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.1) rotate(2deg); 
        opacity: 0.8;
    }
}

/* Navbar Particles */
.navbar-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.navbar-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #e84393, #a855f7);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

.navbar-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.navbar-particle:nth-child(2) { left: 30%; animation-delay: 1s; }
.navbar-particle:nth-child(3) { left: 50%; animation-delay: 2s; }
.navbar-particle:nth-child(4) { left: 70%; animation-delay: 3s; }
.navbar-particle:nth-child(5) { left: 90%; animation-delay: 4s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) scale(0); 
        opacity: 0;
    }
    20% {
        transform: translateY(-10px) scale(1); 
        opacity: 0.8;
    }
    80% {
        transform: translateY(-30px) scale(1); 
        opacity: 0.8;
    }
}

.inner-page .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.inner-page .navbar .nav-links a {
    color: var(--text-dark);
}

.inner-page .navbar .nav-logo img {
    filter: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.1);
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Enhanced Logo Styles */
.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, 
        rgba(232, 67, 147, 0.3) 0%, 
        rgba(168, 85, 247, 0.2) 40%, 
        transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.nav-logo:hover .logo-glow {
    opacity: 1;
    animation: logoGlowPulse 2s ease-in-out infinite;
}

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

.nav-logo img {
    height: 45px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

.nav-logo:hover img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(232, 67, 147, 0.3));
}

.logo-particles {
    position: absolute;
    inset: -20px;
    pointer-events: none;
    z-index: 1;
}

.logo-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #e84393, #a855f7);
    border-radius: 50%;
    opacity: 0;
}

.nav-logo:hover .logo-particle {
    animation: logoParticleBurst 1s ease-out forwards;
}

.logo-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.logo-particle:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.1s; }
.logo-particle:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 0.2s; }
.logo-particle:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 0.3s; }
.logo-particle:nth-child(5) { top: 50%; left: -10%; animation-delay: 0.4s; }
.logo-particle:nth-child(6) { top: 50%; right: -10%; animation-delay: 0.5s; }

@keyframes logoParticleBurst {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(var(--tx, -20px), var(--ty, -20px)) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx2, -40px), var(--ty2, -40px)) scale(0);
        opacity: 0;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 auto;
    max-width: 800px;
}

/* Enhanced Navigation Links */
.nav-item {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-text {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-links a:hover .nav-text {
    transform: translateY(-1px);
}

/* Navigation Underline Animation */
.nav-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e84393, #a855f7);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
    z-index: 1;
}

.nav-links a:hover .nav-underline,
.nav-links a.active .nav-underline {
    width: 80%;
}

/* Navigation Glow Effect */
.nav-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(232, 67, 147, 0.2) 0%, 
        rgba(168, 85, 247, 0.1) 40%, 
        transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
    pointer-events: none;
}

.nav-links a:hover .nav-glow {
    width: 60px;
    height: 60px;
}

/* Active State */
.nav-links a.active {
    color: #e84393;
}

.nav-links a.active .nav-underline {
    width: 80%;
    background: linear-gradient(90deg, #e84393, #a855f7);
}

/* Mega Menu Arrow Animation */
.mega-arrow {
    transition: transform 0.3s ease;
    margin-left: 6px;
    font-size: 12px;
}

.mega-menu-trigger:hover .mega-arrow {
    transform: rotate(180deg);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

/* ===== MEGA MENU ===== */
.mega-menu-trigger {
    position: relative;
}

.mega-menu-trigger > a {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.mega-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.mega-menu-trigger:hover .mega-arrow {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 850px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow: visible;
}

/* Mega Menu Glow Effect */
.mega-menu-glow {
    position: absolute;
    top: -50px;
    left: -100px;
    right: -100px;
    bottom: -50px;
    background: radial-gradient(ellipse at center, 
        rgba(232, 67, 147, 0.1) 0%, 
        rgba(168, 85, 247, 0.08) 40%, 
        transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mega-menu-trigger:hover .mega-menu-glow {
    opacity: 1;
}

/* Mega Menu Backdrop */
.mega-menu-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 240, 255, 0.9) 50%, 
        rgba(255, 235, 250, 0.85) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 30px 100px rgba(168, 85, 247, 0.15),
        0 15px 40px rgba(232, 67, 147, 0.1),
        0 0 0 1px rgba(168, 85, 247, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.mega-menu-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Invisible bridge to prevent gap closing */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 220px 1fr 260px;
    gap: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0;
}

/* Enhanced Column Headers */
.mega-col-header {
    padding: 0 20px 16px;
    position: relative;
}
a.mega-featured-cta {
    color: #fff !important;
}
.mega-col-title {
    font-family: 'Fredoka One', cursive;
    font-size: 16px;
    color: #1a0a2e;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-col-title i {
    color: #e84393;
    font-size: 14px;
}

.mega-col-underline {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e84393, #a855f7);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.mega-col:hover .mega-col-underline {
    width: 60px;
}

/* Enhanced Mega Links */
.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    mix-blend-mode: multiply;
}

.mega-list-item {
    margin-bottom: 4px;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #2d1b4e;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mega-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(232, 67, 147, 0.05) 0%, 
        rgba(168, 85, 247, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-link:hover::before {
    opacity: 1;
}

.mega-link:hover {
    transform: translateX(4px);
    background: rgba(232, 67, 147, 0.04);
    box-shadow: 0 4px 12px rgba(232, 67, 147, 0.1);
}

.mega-link-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f2b8d1, #f8d2e1);
    border-radius: 8px;
    font-size: 12px;
    color: #e84393;
    transition: all 0.3s ease;
}

.mega-link:hover .mega-link-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(232, 67, 147, 0.2);
}

.mega-link-content {
    flex: 1;
}

.mega-link-content span {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 1px;
    line-height: 1.2;
}

.mega-link-desc {
    font-size: 11px;
    line-height: 1.2;
    color: #666;
    opacity: 0.8;
}

.mega-link-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    font-size: 11px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.mega-link:hover .mega-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Columns */
.mega-col {
    padding: 24px 22px;
}

.mega-col:not(:last-child) {
    border-right: 1px solid rgba(168, 85, 247, 0.08);
}

.mega-col-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-col-title i {
    font-size: 13px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Category list */
.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #4a3a5c;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

.mega-list li a::after {
    display: none !important;
}

.mega-list li a i {
    font-size: 14px;
    color: #b8a0d0;
    transition: color 0.25s ease;
    width: 18px;
    text-align: center;
}

.mega-list li a:hover {
    background: linear-gradient(135deg, rgba(232, 67, 147, 0.08), rgba(168, 85, 247, 0.08));
    color: var(--primary);
    transform: translateX(4px);
}

.mega-list li a:hover i {
    color: var(--primary);
}

/* Product grid cards */
/* Enhanced Product Cards */
.mega-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mega-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 16px 12px;
    border-radius: 16px;
    text-decoration: none;
    color: #2d1b4e;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(168, 85, 247, 0.1);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.mega-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(232, 67, 147, 0.03) 0%, 
        rgba(168, 85, 247, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-product-card:hover::before {
    opacity: 1;
}

.mega-product-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(232, 67, 147, 0.2),
        0 6px 15px rgba(168, 85, 247, 0.15);
    border-color: rgba(232, 67, 147, 0.2);
}

.mega-product-image {
    position: relative;
    width: 70px;
    height: 70px;
    max-width: 70px;
    max-height: 70px;
    min-width: 70px;
    min-height: 70px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mega-product-image img {
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    min-width: 70px;
    min-height: 70px;
    object-fit: contain !important;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.mega-product-card:hover .mega-product-image img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(232, 67, 147, 0.3));
}

.mega-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(232, 67, 147, 0.1) 0%, 
        rgba(168, 85, 247, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-product-card:hover .mega-product-overlay {
    opacity: 1;
}

.mega-product-info {
    text-align: center;
}

.mega-product-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a0a2e;
}

.mega-product-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    color: #ffa500;
    margin-bottom: 4px;
}

.mega-product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #e84393, #a855f7);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(232, 67, 147, 0.3);
}

.mega-product-card:hover {
    background: linear-gradient(135deg, rgba(232, 67, 147, 0.1), rgba(168, 85, 247, 0.1));
    border-color: rgba(168, 85, 247, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.1);
}

.mega-product-card:hover img {
    transform: scale(1.15) rotate(-5deg);
}

.mega-product-card:hover span {
    color: var(--primary);
}

/* Featured banner */
.mega-col-featured {
    padding: 0 !important;
    border-right: none !important;
}

.mega-featured-banner {
    height: 100%;
    background: linear-gradient(160deg, #2d1252, #4a1a6b, #7b2d8e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    gap: 4px;
}

.mega-featured-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 80%, rgba(232, 67, 147, 0.25), transparent 60%),
                radial-gradient(circle at 70% 20%, rgba(168, 85, 247, 0.2), transparent 60%);
    pointer-events: none;
}

.mega-featured-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(232, 67, 147, 0.4));
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: megaFeatFloat 3s ease-in-out infinite;
}

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

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

.mega-featured-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e84393, #ff6b9d);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.mega-featured-content h5 {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin: 6px 0 4px;
}

.mega-featured-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 10px;
}

.mega-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #ff9ff3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mega-featured-cta i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.mega-featured-banner:hover .mega-featured-cta {
    color: #ffffff;
}

.mega-featured-banner:hover .mega-featured-cta i {
    transform: translateX(4px);
}

.mega-featured-banner:hover .mega-featured-img {
    transform: scale(1.1) rotate(-5deg);
    animation: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 67, 147, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 67, 147, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 110px 24px 40px;
    background: transparent;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 182, 218, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(186, 148, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Glowing Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 105, 180, 0.25);
    top: 10%;
    left: -5%;
    animation: orbFloat1 8s ease-in-out infinite;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(168, 85, 247, 0.2);
    top: 5%;
    right: -3%;
    animation: orbFloat2 10s ease-in-out infinite;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 200, 100, 0.15);
    bottom: 15%;
    left: 30%;
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.15); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-35px, 25px) scale(1.1); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -40px) scale(1.2); }
}

/* Sparkle Container */
.sparkle-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: sparkleAnim 3s ease-in-out infinite;
    box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.5);
}

@keyframes sparkleAnim {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* Floating Jelly Images */
.hero-jelly {
    position: absolute;
    z-index: 2;
    pointer-events: auto;
    cursor: grab;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transition: filter 0.3s ease;
}

.hero-jelly:hover {
    filter: drop-shadow(0 12px 35px rgba(232, 67, 147, 0.5)) brightness(1.15) saturate(1.2);
    z-index: 20;
    cursor: grabbing;
    animation-play-state: paused;
}

.hero-jelly.jelly-pop {
    animation: jellyPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes jellyPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.35) rotate(15deg); }
    60% { transform: scale(0.9) rotate(-10deg); }
    80% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.jelly-1 {
    width: 130px;
    top: 15%;
    left: 5%;
    animation: jellyFloat1 6s ease-in-out infinite;
}

.jelly-2 {
    width: 110px;
    top: 8%;
    right: 10%;
    animation: jellyFloat2 7s ease-in-out infinite;
}

.jelly-3 {
    width: 120px;
    bottom: 20%;
    left: 8%;
    animation: jellyFloat3 5s ease-in-out infinite;
}

.jelly-4 {
    width: 100px;
    top: 35%;
    right: 5%;
    animation: jellyFloat4 8s ease-in-out infinite;
}

.jelly-5 {
    width: 110px;
    bottom: 25%;
    right: 12%;
    animation: jellyFloat5 6.5s ease-in-out infinite;
}

.jelly-6 {
    width: 100px;
    top: 60%;
    left: 15%;
    animation: jellyFloat6 7.5s ease-in-out infinite;
}

@keyframes jellyFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(15px, -20px) rotate(10deg) scale(1.05); }
    50% { transform: translate(-10px, -35px) rotate(-5deg) scale(0.95); }
    75% { transform: translate(20px, -15px) rotate(8deg) scale(1.02); }
}

@keyframes jellyFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -25px) rotate(-15deg); }
    66% { transform: translate(15px, -40px) rotate(10deg); }
}

@keyframes jellyFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(25px, -30px) rotate(15deg) scale(1.1); }
}

@keyframes jellyFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, 20px) rotate(-8deg); }
    75% { transform: translate(10px, -25px) rotate(12deg); }
}

@keyframes jellyFloat5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, 15px) rotate(10deg); }
    66% { transform: translate(-15px, -20px) rotate(-12deg); }
}

@keyframes jellyFloat6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -25px) rotate(-10deg); }
}

.jelly-7 {
    width: 105px;
    top: 45%;
    left: 2%;
    animation: jellyFloat7 9s ease-in-out infinite;
}

.jelly-8 {
    width: 100px;
    bottom: 12%;
    right: 4%;
    animation: jellyFloat8 7s ease-in-out infinite;
}

.jelly-9 {
    width: 95px;
    top: 20%;
    left: 40%;
    animation: jellyFloat9 8.5s ease-in-out infinite;
}

.jelly-10 {
    width: 110px;
    bottom: 30%;
    left: 50%;
    animation: jellyFloat10 6s ease-in-out infinite;
}

@keyframes jellyFloat7 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(18px, -22px) rotate(12deg) scale(1.06); }
    66% { transform: translate(-12px, 15px) rotate(-8deg) scale(0.96); }
}

@keyframes jellyFloat8 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-18px, -30px) rotate(-14deg); }
}

@keyframes jellyFloat9 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(-10px, -18px) rotate(-6deg) scale(1.04); }
    50% { transform: translate(12px, -28px) rotate(10deg) scale(0.97); }
    75% { transform: translate(-8px, -10px) rotate(-4deg) scale(1.02); }
}

@keyframes jellyFloat10 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, 20px) rotate(8deg); }
    66% { transform: translate(-20px, -15px) rotate(-10deg); }
}

.jelly-11 {
    width: 75px;
    top: 50%;
    right: 15%;
    animation: jellyFloat11 7s ease-in-out infinite;
}

.jelly-12 {
    width: 100px;
    bottom: 8%;
    left: 25%;
    animation: jellyFloat12 8s ease-in-out infinite;
}

.jelly-13 {
    width: 70px;
    top: 28%;
    right: 25%;
    animation: jellyFloat13 6.5s ease-in-out infinite;
}

@keyframes jellyFloat11 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-15px, -20px) rotate(-10deg) scale(1.05); }
    66% { transform: translate(12px, 18px) rotate(8deg) scale(0.97); }
}

@keyframes jellyFloat12 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -22px) rotate(12deg); }
}

@keyframes jellyFloat13 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(-12px, 15px) rotate(-7deg) scale(1.04); }
    75% { transform: translate(15px, -20px) rotate(9deg) scale(0.96); }
}

.hero-content {
    text-align: center;
    z-index: 5;
    margin-bottom: 10px;
}

/* Hero Badge Pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgb(95, 85, 182);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #55efc4;
    box-shadow: 0 0 8px #55efc4;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.1); }
    50% { box-shadow: 0 0 20px 4px rgba(255,255,255,0.15); }
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.7); }
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    max-width: clamp(280px, 45vw, 520px);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.hero-logo-img:hover {
    transform: scale(1.03);
}

.hero-description {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.6;
    z-index: 5;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
    z-index: 5;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff6b9d, #e84393, #a855f7);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 6px 25px rgba(232, 67, 147, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 35px rgba(232, 67, 147, 0.6);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

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

/* ===== 3D SLIDER ===== */
.slider-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 15px auto 0;
    z-index: 10;
    position: relative;
    perspective: 1200px;
}

.slider-3d {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: visible;
}

.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    position: absolute;
    width: 300px;
    height: 380px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25))
           drop-shadow(0 5px 10px rgba(0,0,0,0.15))
           drop-shadow(0 0 5px rgba(0,0,0,0.08));
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 15%;
    width: 70%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(6px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.slide.active {
    z-index: 10;
    transform: translate(-50%, -50%) scale(1) translateZ(0);
}

.slide.active img {
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.35))
           drop-shadow(0 10px 20px rgba(0,0,0,0.2))
           drop-shadow(0 4px 8px rgba(0,0,0,0.15))
           drop-shadow(0 0 15px rgba(232, 67, 147, 0.12));
}

.slide.active::after {
    bottom: -22px;
    left: 10%;
    width: 80%;
    height: 24px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.35) 0%, transparent 70%);
    filter: blur(8px);
}

.slide.active:hover {
    transform: translate(-50%, -53%) scale(1.03) translateZ(0);
}

.slide.active:hover img {
    filter: drop-shadow(0 35px 65px rgba(0,0,0,0.4))
           drop-shadow(0 15px 30px rgba(0,0,0,0.25))
           drop-shadow(0 5px 12px rgba(0,0,0,0.18))
           drop-shadow(0 0 20px rgba(232, 67, 147, 0.18));
}

.slide.active:hover::after {
    bottom: -28px;
    filter: blur(10px);
    opacity: 0.9;
}

.slide.prev {
    z-index: 5;
    transform: translate(-130%, -50%) scale(0.75) rotateY(25deg);
    opacity: 0.6;
}

.slide.prev img {
    filter: drop-shadow(8px 20px 35px rgba(0,0,0,0.3))
           drop-shadow(3px 8px 15px rgba(0,0,0,0.2));
}

.slide.prev::after {
    bottom: -14px;
    left: 20%;
    width: 65%;
    height: 16px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.2) 0%, transparent 70%);
    transform: skewX(10deg);
}

.slide.next {
    z-index: 5;
    transform: translate(30%, -50%) scale(0.75) rotateY(-25deg);
    opacity: 0.6;
}

.slide.next img {
    filter: drop-shadow(-8px 20px 35px rgba(0,0,0,0.3))
           drop-shadow(-3px 8px 15px rgba(0,0,0,0.2));
}

.slide.next::after {
    bottom: -14px;
    left: 15%;
    width: 65%;
    height: 16px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.2) 0%, transparent 70%);
    transform: skewX(-10deg);
}

.slide.far-prev {
    z-index: 2;
    transform: translate(-180%, -50%) scale(0.55) rotateY(35deg);
    opacity: 0.3;
}

.slide.far-prev::after,
.slide.far-next::after {
    opacity: 0.4;
}

.slide.far-next {
    z-index: 2;
    transform: translate(80%, -50%) scale(0.55) rotateY(-35deg);
    opacity: 0.3;
}

.slide.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
    z-index: 0;
    pointer-events: none;
}

.slide.hidden::after {
    opacity: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
    position: relative;
    z-index: 20;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(232, 67, 147, 0.4);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

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

.slider-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--white);
}

/* Scroll Indicator - positioned in document flow, NOT absolute */
.scroll-indicator {
    position: relative;
    z-index: 10;
    display: flex;
    text-decoration: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    padding-bottom: 10px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    animation: scrollFadeIn 1.5s ease 1s both;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes scrollFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 0.85; transform: translateY(0); }
}

.scroll-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, var(--text-dark));
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--text-dark));
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0% { top: -100%; }
    100% { top: 100%; }
}

.scroll-indicator p {
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-chevron {
    color: var(--text-dark);
    font-size: 14px;
    animation: chevronBounce 2s ease-in-out infinite;
}

@keyframes chevronBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.5; }
}

/* ===== GET TO KNOW SECTION ===== */
.know-section {
    padding: 100px 0;
    position: relative;
    background: rgba(255, 245, 250, 0.95);
    backdrop-filter: blur(2px);
}

.know-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Blob-shaped image container */
.know-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.blob-shape {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1.1 / 1;
    border-radius: 30% 58% 45% 40% / 50% 45% 50% 40%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
    z-index: 2;
    animation: blobMorph 14s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.blob-shape:hover {
    transform: scale(1.03) rotate(-1deg);
}

.blob-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 30% 58% 45% 40% / 50% 45% 50% 40%; }
    33% { border-radius: 35% 55% 48% 38% / 48% 48% 46% 42%; }
    66% { border-radius: 28% 60% 42% 42% / 52% 42% 52% 38%; }
}

/* Decorative accent blobs behind the image */
.blob-accent {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.blob-accent-1 {
    width: 280px;
    height: 260px;
    background: linear-gradient(135deg, rgba(255, 165, 100, 0.35), rgba(255, 140, 80, 0.25));
    top: 5%;
    left: -30px;
    border-radius: 40% 55% 45% 50% / 50% 45% 55% 45%;
    animation: accentFloat1 8s ease-in-out infinite;
    z-index: 0;
}

.blob-accent-2 {
    width: 100px;
    height: 110px;
    background: linear-gradient(160deg, rgba(255, 185, 120, 0.5), rgba(255, 160, 90, 0.35));
    top: -15px;
    right: 15%;
    border-radius: 50% 50% 45% 55% / 60% 45% 55% 40%;
    animation: accentFloat2 10s ease-in-out infinite;
    z-index: 3;
}

@keyframes accentFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -15px) scale(1.08); }
}

@keyframes accentFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-8px, 12px) scale(1.06); }
}

/* Content side */
.know-content {
    padding-right: 20px;
}

.know-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(26px, 3.5vw, 38px);
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.know-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.know-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin-bottom: 22px;
}

.know-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 14px;
}

.know-content p strong {
    color: var(--text-dark);
}

.know-tagline {
    font-weight: 700;
    color: var(--text-dark) !important;
}

.know-tagline em {
    color: var(--primary);
    font-style: italic;
}

/* Stats grid */
.know-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.know-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.know-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.15);
    background: rgba(255, 255, 255, 0.8);
}

.know-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #e84393);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(232, 67, 147, 0.25);
}

.know-stat-icon.ingredient {
    background: linear-gradient(135deg, #55efc4, #00b894);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.25);
}

.know-stat-icon.export {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    box-shadow: 0 4px 12px rgba(10, 189, 227, 0.25);
}

.know-stat-icon.products {
    background: linear-gradient(135deg, #ffd93d, #ff9f43);
    box-shadow: 0 4px 12px rgba(255, 159, 67, 0.25);
}

.know-stat span {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 900px) {
    .know-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .know-image-wrap {
        min-height: 320px;
    }
    
    .blob-shape {
        max-width: 380px;
    }
    
    .know-content {
        padding-right: 0;
        text-align: center;
    }
    
    .know-divider {
        margin: 0 auto 22px;
    }
    
    .know-stats {
        max-width: 400px;
        margin: 28px auto 0;
    }
}

/* Know Section - Bottom Gummy Image */
.know-bottom-img {
    position: relative;
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    border-radius: 0 0 0 0;
    line-height: 0;
}

.know-gummy-img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.2s ease-out;
    will-change: transform;
    filter: brightness(1.02) saturate(1.1);
}

.know-gummy-img:hover {
    filter: brightness(1.06) saturate(1.15);
}

@media (max-width: 768px) {
    .know-gummy-img {
        max-height: 220px;
    }
    
    .know-bottom-img {
        margin-top: 30px;
    }
}

/* ===== ALLERGEN FREE SECTION ===== */
.allergen-section {
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.allergen-bg-overlay {
    position: absolute;
    inset: 0;
    background: url(../images/Gemini_Generated_Image_63veh863veh863ve.png) center bottom no-repeat #fff;
    background-size: 100%;
    backdrop-filter: blur(4px);
    z-index: 0;
        bottom: -200px;
}

/* Floating decorative gummies */
.allergen-float {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    filter: blur(1px);
}

.allergen-float-1 {
    width: 120px;
    top: 8%;
    left: 3%;
    animation: jellyFloat1 10s ease-in-out infinite;
}

.allergen-float-2 {
    width: 90px;
    bottom: 12%;
    right: 5%;
    animation: jellyFloat3 12s ease-in-out infinite;
}

.allergen-float-3 {
    width: 80px;
    top: 50%;
    right: 2%;
    animation: jellyFloat5 9s ease-in-out infinite;
}

.allergen-section .container {
    position: relative;
    z-index: 2;
}

.allergen-header {
    text-align: center;
    margin-bottom: 35px;
}

/* Allergen Badge Pill */
.allergen-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(232, 67, 147, 0.12), rgba(168, 85, 247, 0.12));
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(232, 67, 147, 0.15);
}

.allergen-badge i {
    font-size: 14px;
    color: #55efc4;
}

.allergen-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(26px, 4vw, 40px);
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.allergen-title .highlight {
    background: linear-gradient(135deg, var(--primary), #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.allergen-title .accent {
    font-size: 1em;
    background: linear-gradient(135deg, #e84393, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.allergen-subtitle {
    font-size: 16px;
    color: var(--text-medium);
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Allergen Icons Grid — 5 columns, 2 rows */
.allergen-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px 16px;
    max-width: 780px;
    margin: 0 auto 40px;
    justify-items: center;
}

.allergen-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.allergen-item:hover {
    transform: translateY(-10px) scale(1.08);
}

.allergen-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.allergen-icon.color-1 img, .allergen-icon.color-5 img{
    width: 78%;
}
.allergen-icon img{
    width: 90%;
}
.allergen-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: inherit;
    opacity: 0;
    filter: blur(12px);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.allergen-item:hover .allergen-icon::before {
    opacity: 0.5;
}

.allergen-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed;
    border-color: inherit;
    opacity: 0.2;
    animation: allergenDashSpin 20s linear infinite;
}

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

.allergen-item:hover .allergen-icon::after {
    opacity: 0.5;
}

/* Individual color themes for each allergen */
.allergen-icon.color-1 { border-color: #e84393; color: #e84393; }
.allergen-icon.color-2 { border-color: #0984e3; color: #0984e3; }
.allergen-icon.color-3 { border-color: #00b894; color: #00b894; }
.allergen-icon.color-4 { border-color: #6c5ce7; color: #6c5ce7; }
.allergen-icon.color-5 { border-color: #fdcb6e; color: #e17055; }
.allergen-icon.color-6 { border-color: #fd79a8; color: #fd79a8; }
.allergen-icon.color-7 { border-color: #00cec9; color: #00cec9; }
.allergen-icon.color-8 { border-color: #55efc4; color: #00b894; }
.allergen-icon.color-9 { border-color: #ff7675; color: #ff7675; }
.allergen-icon.color-10 { border-color: #a29bfe; color: #a29bfe; }

.allergen-item:hover .allergen-icon.color-1 { background: rgba(232, 67, 147, 0.1); box-shadow: 0 10px 30px rgba(232, 67, 147, 0.25); }
.allergen-item:hover .allergen-icon.color-2 { background: rgba(9, 132, 227, 0.1); box-shadow: 0 10px 30px rgba(9, 132, 227, 0.25); }
.allergen-item:hover .allergen-icon.color-3 { background: rgba(0, 184, 148, 0.1); box-shadow: 0 10px 30px rgba(0, 184, 148, 0.25); }
.allergen-item:hover .allergen-icon.color-4 { background: rgba(108, 92, 231, 0.1); box-shadow: 0 10px 30px rgba(108, 92, 231, 0.25); }
.allergen-item:hover .allergen-icon.color-5 { background: rgba(225, 112, 85, 0.1); box-shadow: 0 10px 30px rgba(225, 112, 85, 0.25); }
.allergen-item:hover .allergen-icon.color-6 { background: rgba(253, 121, 168, 0.1); box-shadow: 0 10px 30px rgba(253, 121, 168, 0.25); }
.allergen-item:hover .allergen-icon.color-7 { background: rgba(0, 206, 201, 0.1); box-shadow: 0 10px 30px rgba(0, 206, 201, 0.25); }
.allergen-item:hover .allergen-icon.color-8 { background: rgba(0, 184, 148, 0.1); box-shadow: 0 10px 30px rgba(0, 184, 148, 0.25); }
.allergen-item:hover .allergen-icon.color-9 { background: rgba(255, 118, 117, 0.1); box-shadow: 0 10px 30px rgba(255, 118, 117, 0.25); }
.allergen-item:hover .allergen-icon.color-10 { background: rgba(162, 155, 254, 0.1); box-shadow: 0 10px 30px rgba(162, 155, 254, 0.25); }

.allergen-item strong {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.allergen-item:hover strong {
    color: var(--primary);
}

/* Halal Banner */
.halal-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 20px;
    background: #ffffff;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.halal-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.halal-badge-img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .allergen-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 16px;
    }

    .allergen-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .halal-banner {
        padding: 20px;
    }

    .allergen-float { display: none; }
}

@media (max-width: 480px) {
    .allergen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 12px;
    }

    .allergen-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: rgba(255, 240, 248, 0.35);
    backdrop-filter: blur(2px);
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(28px, 4vw, 44px);
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.feature-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232,67,147,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #e84393);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 25px rgba(232, 67, 147, 0.3);
    transition: transform 0.3s ease;
}

.feature-icon.quality {
    background: linear-gradient(135deg, #55efc4, #00b894);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

.feature-icon.health {
    background: linear-gradient(135deg, #ff6b9d, #fd79a8);
    box-shadow: 0 8px 25px rgba(253, 121, 168, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(160deg, #f0eaf6 0%, #e8e0f0 30%, #f5e6f0 60%, #ede4f4 100%);
    overflow: hidden;
}

/* Floating background shapes */
.products-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.products-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.products-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 67, 147, 0.25), transparent 70%);
    top: -100px;
    right: 10%;
    animation: prodFloat1 12s ease-in-out infinite;
}

.products-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
    bottom: -80px;
    left: 5%;
    animation: prodFloat2 15s ease-in-out infinite 2s;
}

.products-shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(232, 183, 48, 0.2), transparent 70%);
    top: 40%;
    left: 50%;
    animation: prodFloat1 10s ease-in-out infinite 4s;
}

.products-shape-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(72, 219, 251, 0.15), transparent 70%);
    top: 10%;
    left: 20%;
    animation: prodFloat2 13s ease-in-out infinite 1s;
}

@keyframes prodFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes prodFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.08); }
}

.products-section .container {
    max-width: 100%;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: center;
    justify-items: center;
}

/* Title column */
.products-title-col {
    grid-column: 1 / 3;
    grid-row: 1;
    justify-self: start;
    padding-right: 20px;
}

/* Explore List - Categories & Products */
.explore-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    max-height: 300px;
    overflow-y: auto;
}

.explore-list li {
    margin-bottom: 8px;
}

.explore-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #4a3a5c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.explore-list li a:hover {
    background: linear-gradient(135deg, #e84393 0%, #a855f7 100%);
    color: white;
    transform: translateX(5px);
}

.explore-list li a i {
    width: 18px;
    font-size: 14px;
    color: #a855f7;
    transition: color 0.3s ease;
}

.explore-list li a:hover i {
    color: white;
}

/* Explore Card Info - Name and Button below colorful card */
.explore-card-info {
    text-align: center;
    padding: 20px 10px;
}

.explore-card-info h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.explore-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #e84393 0%, #a855f7 100%);
    color: white;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.explore-card-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(232, 67, 147, 0.4);
    color: white;
}

.products-label {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(22px, 3vw, 34px);
    background: linear-gradient(135deg, #e084b4, #c94e9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    font-style: italic;
    animation: labelFloat 4s ease-in-out infinite;
}

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

.products-heading {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(28px, 2vw, 58px);
    color: var(--text-dark);
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.products-heading span {
    background: linear-gradient(135deg, #e84393, #a855f7, #e84393);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.products-title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e84393, #a855f7);
    border-radius: 4px;
    margin-top: 16px;
    animation: lineExpand 3s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% { width: 60px; opacity: 0.7; }
    50% { width: 100px; opacity: 1; }
}

/* Pack card */
.pack-item {
    position: relative;
    perspective: 800px;
    cursor: pointer;
    width: 100%;
}

.pack-item-inner {
    position: relative;
    background: linear-gradient(145deg, #f7c5dc, #f0add0);
    border-radius: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.2s ease-out, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
    overflow: hidden;
    box-shadow:
        0 8px 30px rgba(45, 27, 78, 0.18),
        0 2px 8px rgba(45, 27, 78, 0.08);
        text-align: center;
}

.pack-item-inner img {
    max-width: 90%;
    max-height: 160px;
    object-fit: contain;
}

/* Shine sweep effect */
.pack-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 70%
    );
    z-index: 3;
    pointer-events: none;
    transition: none;
}

.pack-item-inner:hover .pack-shine {
    animation: shineSweep 0.7s ease-out forwards;
}

@keyframes shineSweep {
    0% { left: -100%; }
    100% { left: 130%; }
}

/* Gold back layer */
.pack-item-inner::before {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    bottom: 6px;
    left: 6px;
    background: linear-gradient(135deg, #e8b730, #f0c850);
    border-radius: 20px;
    z-index: -1;
    transition: transform 0.2s ease-out, opacity 0.3s ease;
    transform: translateZ(-20px);
}

/* Dark shadow layer */
.pack-item-inner::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: -6px;
    left: -2px;
    background: #2d1b4e;
    border-radius: 20px;
    z-index: -2;
    transition: transform 0.2s ease-out;
    transform: translateZ(-30px);
}

/* Hover glow */
.pack-item-inner:hover {
    box-shadow:
        0 20px 60px rgba(232, 67, 147, 0.25),
        0 8px 20px rgba(45, 27, 78, 0.15),
        0 0 40px rgba(168, 85, 247, 0.1);
}

.pack-item img {
    max-height: 550px;
    max-width: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    pointer-events: none;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.pack-item-inner:hover img {
    transform: scale(1.06) translateY(-4px);
    filter: drop-shadow(0 14px 30px rgba(45, 27, 78, 0.3));
}

/* Responsive */
@media (max-width: 1024px) {
    .products-section .container {
        padding: 0 30px;
    }

    .products-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .products-title-col {
        grid-column: 1 / -1;
        text-align: center;
        justify-self: center;
        padding-right: 0;
    }

    .products-title-line {
        margin: 16px auto 0;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .products-section .container {
        padding: 0 16px;
    }

    .products-section {
        padding: 60px 0;
    }
}

/* ===== INTERACTIVE SECTION — PREMIUM ===== */
.interactive-section {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #1a0a2e 0%, #2d1252 25%, #4a1a6b 50%, #7b2d8e 75%, #c44e8a 100%);
    position: relative;
    overflow: hidden;
}

/* Particle canvas background */
.ig-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Clouds */
.ig-cloud {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    filter: blur(40px);
}

.ig-cloud-1 {
    width: 500px; height: 180px;
    background: radial-gradient(ellipse, rgba(255, 150, 200, 0.25), transparent 70%);
    top: 8%; left: -5%;
    animation: igCloudDrift 25s ease-in-out infinite;
}
.ig-cloud-2 {
    width: 600px; height: 200px;
    background: radial-gradient(ellipse, rgba(180, 130, 255, 0.2), transparent 70%);
    top: 20%; right: -8%;
    animation: igCloudDrift 30s ease-in-out infinite reverse;
}
.ig-cloud-3 {
    width: 450px; height: 160px;
    background: radial-gradient(ellipse, rgba(255, 180, 220, 0.2), transparent 70%);
    bottom: 15%; left: 20%;
    animation: igCloudDrift 22s ease-in-out infinite 5s;
}

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

/* Rainbow */
.ig-rainbow {
    position: absolute;
    width: 350px; height: 175px;
    top: 5%; right: 8%;
    border-radius: 175px 175px 0 0;
    border: 12px solid transparent;
    border-bottom: none;
    background: conic-gradient(from 180deg at 50% 100%,
        rgba(255,0,0,0.08), rgba(255,165,0,0.08), rgba(255,255,0,0.08),
        rgba(0,255,0,0.08), rgba(0,150,255,0.08), rgba(128,0,255,0.08),
        rgba(255,0,0,0.08)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
    filter: blur(2px);
}

/* Ambient orbs */
.ig-ambient-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}
.ig-orb-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232, 67, 147, 0.3), transparent 70%);
    top: -80px; right: -60px;
    animation: igOrbPulse 8s ease-in-out infinite;
}
.ig-orb-2 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(100, 80, 255, 0.25), transparent 70%);
    bottom: -50px; left: -50px;
    animation: igOrbPulse 10s ease-in-out infinite 3s;
}
.ig-orb-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(72, 219, 251, 0.15), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: igOrbPulse 12s ease-in-out infinite 6s;
}

@keyframes igOrbPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Floating gummies with depth of field */
.ig-float {
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
.ig-float-1 {
    width: 110px; top: 8%; left: 4%;
    opacity: 0.85;
    filter: drop-shadow(0 0 15px rgba(255, 100, 150, 0.5)) blur(1.5px);
    animation: igGummyFloat 8s ease-in-out infinite;
}
.ig-float-2 {
    width: 75px; top: 12%; right: 6%;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4)) blur(2px);
    animation: igGummyFloat 10s ease-in-out infinite 2s;
}
.ig-float-3 {
    width: 55px; bottom: 20%; left: 5%;
    opacity: 0.5;
    filter: drop-shadow(0 0 8px rgba(232, 67, 147, 0.3)) blur(3px);
    animation: igGummyFloat 12s ease-in-out infinite 4s;
}
.ig-float-4 {
    width: 90px; bottom: 10%; right: 3%;
    opacity: 0.8;
    filter: drop-shadow(0 0 12px rgba(100, 200, 255, 0.4));
    animation: igGummyFloat 9s ease-in-out infinite 1s;
}
.ig-float-5 {
    width: 60px; top: 55%; left: 2%;
    opacity: 0.45;
    filter: drop-shadow(0 0 8px rgba(255, 150, 200, 0.3)) blur(2.5px);
    animation: igGummyFloat 11s ease-in-out infinite 3s;
}
.ig-float-6 {
    width: 70px; top: 35%; right: 2%;
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.35)) blur(1px);
    animation: igGummyFloat 7s ease-in-out infinite 5s;
}

@keyframes igGummyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-18px) rotate(6deg) scale(1.03); }
    50% { transform: translateY(-8px) rotate(-4deg) scale(0.98); }
    75% { transform: translateY(-22px) rotate(3deg) scale(1.02); }
}

/* Container */
.ig-container {
    position: relative;
    z-index: 5;
}

/* Header */
.interactive-header {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 10px;
}

.interactive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 200, 240, 0.9);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    box-shadow: 0 0 20px rgba(232, 67, 147, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.interactive-badge i {
    font-size: 13px;
    animation: igBadgePulse 2s ease-in-out infinite;
}

@keyframes igBadgePulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}

.interactive-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(232, 67, 147, 0.3), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.ig-gradient-text {
    background: linear-gradient(135deg, #ff6b9d, #ff9ff3, #e84393);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 0 8px rgba(232, 67, 147, 0.4));
}

.ig-gradient-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e84393, #a855f7, transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.interactive-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto 8px;
    line-height: 1.6;
}

.ig-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #fff;
    animation: igHintPulse 3s ease-in-out infinite;
}

@keyframes igHintPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}

/* ---- Playground container ---- */
.ig-playground-wrap {
    position: relative;
    max-width: 920px;
    margin: 36px auto 0;
    padding: 3px;
    border-radius: 28px;
    z-index: 5;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

.ig-playground-wrap:hover {
    transform: translateY(-4px) scale(1.005);
}

/* Neon animated border */
.ig-neon-border {
    position: absolute;
    inset: -3px;
    border-radius: 30px;
    background: linear-gradient(135deg, #e84393, #a855f7, #48dbfb, #ff6b9d, #e84393);
    background-size: 300% 300%;
    animation: igNeonShift 6s ease-in-out infinite;
    z-index: -2;
    filter: blur(1px);
}

.ig-neon-border::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 34px;
    background: inherit;
    background-size: inherit;
    animation: inherit;
    filter: blur(18px);
    opacity: 0.5;
    z-index: -3;
}

@keyframes igNeonShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glass reflection */
.ig-glass-reflection {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.04) 40%,
        transparent 100%);
    pointer-events: none;
    z-index: 10;
}

/* Canvas area */
.interactive-area {
    width: 100%;
    height: 420px;
    border-radius: 25px;
    background: linear-gradient(170deg,
        rgba(60, 20, 100, 0.6) 0%,
        rgba(80, 30, 120, 0.4) 30%,
        rgba(100, 50, 140, 0.3) 60%,
        rgba(140, 80, 160, 0.25) 100%);
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

#gummyCanvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
}

#gummyCanvas:active {
    cursor: grabbing;
}

/* Corner accents */
.ig-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 11;
    pointer-events: none;
}
.ig-corner::before,
.ig-corner::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(232, 67, 147, 0.8), rgba(72, 219, 251, 0.8));
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(232, 67, 147, 0.5);
}
.ig-corner::before { width: 24px; height: 2px; }
.ig-corner::after { width: 2px; height: 24px; }

.ig-corner-tl { top: 10px; left: 10px; }
.ig-corner-tl::before { top: 0; left: 0; }
.ig-corner-tl::after { top: 0; left: 0; }

.ig-corner-tr { top: 10px; right: 10px; }
.ig-corner-tr::before { top: 0; right: 0; }
.ig-corner-tr::after { top: 0; right: 0; }

.ig-corner-bl { bottom: 10px; left: 10px; }
.ig-corner-bl::before { bottom: 0; left: 0; }
.ig-corner-bl::after { bottom: 0; left: 0; }

.ig-corner-br { bottom: 10px; right: 10px; }
.ig-corner-br::before { bottom: 0; right: 0; }
.ig-corner-br::after { bottom: 0; right: 0; }

/* Pedestal base */
.ig-pedestal {
    width: 70%;
    max-width: 650px;
    height: 20px;
    margin: 0 auto;
    background: linear-gradient(180deg,
        rgba(200, 160, 255, 0.2) 0%,
        rgba(200, 160, 255, 0.05) 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    filter: blur(4px);
    position: relative;
    z-index: 4;
}

/* ---- Neon Buttons ---- */
.interactive-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
    position: relative;
    z-index: 5;
}

.action-btn {
    padding: 14px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Light sweep animation */
.action-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}
.action-btn:hover::after {
    left: 130%;
}

.action-btn i {
    font-size: 14px;
}

.ig-btn-pink {
    background: linear-gradient(135deg, #ff6b9d, #e84393);
    box-shadow: 0 0 20px rgba(232, 67, 147, 0.3), 0 4px 15px rgba(232, 67, 147, 0.2);
}
.ig-btn-orange {
    background: linear-gradient(135deg, #ffd93d, #ff8a5c);
    box-shadow: 0 0 20px rgba(255, 138, 92, 0.3), 0 4px 15px rgba(255, 138, 92, 0.2);
}
.ig-btn-purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3), 0 4px 15px rgba(168, 85, 247, 0.2);
    animation: igPurplePulse 3s ease-in-out infinite;
}
.ig-btn-cyan {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    box-shadow: 0 0 20px rgba(72, 219, 251, 0.3), 0 4px 15px rgba(72, 219, 251, 0.2);
}

@keyframes igPurplePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.3), 0 4px 15px rgba(168, 85, 247, 0.2); }
    50% { box-shadow: 0 0 35px rgba(168, 85, 247, 0.5), 0 4px 25px rgba(168, 85, 247, 0.35); }
}

.action-btn:hover {
    transform: translateY(-4px) scale(1.06);
}

.ig-btn-pink:hover { box-shadow: 0 0 35px rgba(232, 67, 147, 0.5), 0 8px 25px rgba(232, 67, 147, 0.3); }
.ig-btn-orange:hover { box-shadow: 0 0 35px rgba(255, 138, 92, 0.5), 0 8px 25px rgba(255, 138, 92, 0.3); }
.ig-btn-purple:hover { box-shadow: 0 0 40px rgba(168, 85, 247, 0.6), 0 8px 25px rgba(168, 85, 247, 0.4); }
.ig-btn-cyan:hover { box-shadow: 0 0 35px rgba(72, 219, 251, 0.5), 0 8px 25px rgba(72, 219, 251, 0.3); }

.action-btn:active {
    transform: translateY(-1px) scale(0.97);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: rgba(240, 224, 255, 0.3);
    backdrop-filter: blur(2px);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.2);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: #ffd93d;
    font-size: 16px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: rgba(45, 27, 78, 0.85);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(232,67,147,0.15), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(168,85,247,0.15), transparent 50%);
}

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

.cta-content h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    margin-bottom: 36px;
}

.cta-form .form-group {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 12px;
}

.cta-form input {
    flex: 1;
    padding: 14px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.cta-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.cta-form input:focus {
    border-color: var(--primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 10;
}

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

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(180deg, 
        rgba(26, 10, 46, 1) 0%, 
        rgba(26, 14, 46, 0.9) 50%, 
        rgba(26, 14, 46, 0.85) 100%);
    backdrop-filter: blur(10px);
    margin-top: 0;
    padding: 60px 0 0;
    overflow: hidden;
    color: var(--white);
}

/* Footer curved shapes */
.footer-curves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.footer-curve {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
}

.footer-curve-1 {
    width: 80vw;
    height: 400px;
    background: rgba(26, 10, 46, 0.95);
    top: -200px;
    left: -10vw;
    border-radius: 50% 50% 0 0;
    animation: footerFloat1 15s ease-in-out infinite;
}

.footer-curve-2 {
    width: 100vw;
    height: 300px;
    background: rgba(26, 14, 46, 0.9);
    top: -100px;
    left: 0;
    border-radius: 50% 50% 0 0;
    animation: footerFloat2 12s ease-in-out infinite 3s;
}

.footer-curve-3 {
    width: 90vw;
    height: 250px;
    background: rgba(26, 14, 46, 0.85);
    top: 0;
    left: 5vw;
    border-radius: 50% 50% 0 0;
    animation: footerFloat1 18s ease-in-out infinite 1s;
}

@keyframes footerFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(40px, -60px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-30px, 40px) scale(0.9) rotate(240deg); }
}

@keyframes footerFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(-50px, -40px) scale(1.15) rotate(180deg); }
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer p,
.footer ul li a {
    color: rgba(255,255,255,1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-family: 'Baloo 2', cursive;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.footer-col ul li i {
    color: var(--primary-light);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 67, 147, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(232, 67, 147, 0.5);
}

/* ===== FLOATING JELLIES BG ===== */
.floating-jellies {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-jelly-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatBg linear infinite;
}

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

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
        margin: 0 auto 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .wave-divider {
        height: 100px;
    }
    
    .footer-curve-1,
    .footer-curve-2,
    .footer-curve-3 {
        filter: blur(80px);
    }
    
    .footer-curve-1 {
        width: 100vw;
        height: 300px;
        top: -150px;
        left: 0;
    }
    
    .footer-curve-2 {
        width: 120vw;
        height: 250px;
        top: -80px;
        left: -10vw;
    }
    
    .footer-curve-3 {
        width: 100vw;
        height: 200px;
        top: 0;
        left: 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

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

    .mega-menu {
        display: none !important;
    }

    .mega-arrow {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .slider-3d {
        height: 350px;
    }

    .slide {
        width: 240px;
        height: 320px;
    }

    .features-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-col {
        padding: 20px;
    }

    .cta-form .form-group {
        flex-direction: column;
    }

    .interactive-section { padding: 80px 0 60px; }
    .interactive-title { font-size: 2.2rem; }
    .interactive-subtitle { font-size: 0.95rem; }
    .interactive-area { height: 300px; }
    .ig-playground-wrap { border-radius: 20px; }
    .ig-neon-border { border-radius: 22px; }
    .ig-glass-reflection { border-radius: 20px 20px 0 0; }
    .ig-float { display: none; }
    .ig-rainbow { display: none; }
    .action-btn { padding: 12px 22px; font-size: 13px; }
    .interactive-buttons { gap: 10px; }

    .hero-jelly {
        width: 40px !important;
    }

    .jelly-1 { width: 50px !important; }
    .jelly-2 { width: 40px !important; }
    .jelly-3 { width: 45px !important; }
}

@media (max-width: 480px) {
    .slide {
        width: 200px;
        height: 260px;
    }

    .slider-3d {
        height: 300px;
    }

    .slide.prev {
        transform: translate(-120%, -50%) scale(0.65) rotateY(20deg);
    }

    .slide.next {
        transform: translate(20%, -50%) scale(0.65) rotateY(-20deg);
    }

    .interactive-section { padding: 60px 0 40px; }
    .interactive-title { font-size: 1.6rem; }
    .interactive-badge { font-size: 10px; padding: 6px 16px; letter-spacing: 1px; }
    .interactive-area { height: 240px; border-radius: 16px; }
    .ig-playground-wrap { border-radius: 18px; }
    .ig-neon-border { border-radius: 20px; }
    .ig-corner { display: none; }
    .ig-cloud { display: none; }
    .interactive-buttons { gap: 8px; }
    .action-btn { padding: 10px 18px; font-size: 12px; border-radius: 30px; }
    .ig-pedestal { display: none; }
}
