/* ChemCheemi Africa - Complete Stylesheet - SUPER FUN KIDS EDITION! */

/* ================= CSS VARIABLES ================= */
:root {
    /* Primary Brand Colors */
    --primary: #004aad;
    --primary-light: #e6eef8;
    --primary-dark: #003580;
    
    /* Secondary Colors */
    --yellow: #F1C40F;
    --yellow-light: #fef9e7;
    --yellow-dark: #d4ac0d;
    
    --green: #27AE60;
    --green-light: #e9f7ef;
    --green-dark: #1e8449;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #fff;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    
    /* Legacy mappings for compatibility */
    --pink: #004aad;
    --pink-light: #e6eef8;
    --blue: #004aad;
    --blue-light: #e6eef8;
    --purple: #004aad;
    --purple-light: #e6eef8;
    --orange: #F1C40F;
    --orange-light: #fef9e7;
    --coral: #004aad;
    --teal: #004aad;
    
    /* Gradients */
    --rainbow-gradient: linear-gradient(90deg, #004aad, #F1C40F, #27AE60, #004aad);
    --brand-gradient: linear-gradient(135deg, #004aad, #0066cc);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
 
    background-color: #ffffff;
}

body.kids-theme {
    background: linear-gradient(180deg, #FFFBF5 0%, #FFF5EB 50%, #FFFBF5 100%);
}

/* ================= ANIMATIONS ================= */
@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
}

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

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(0deg); }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }
    50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.6); }
}

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

@keyframes sound-wave {
    0%, 100% { height: 8px; }
    50% { height: 25px; }
}

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

.bounce { animation: bounce 2s ease-in-out infinite; }
.bounce-slow { animation: bounce-slow 3s ease-in-out infinite; }
.wiggle { animation: wiggle 2s ease-in-out infinite; }
.emoji-bounce { display: inline-block; animation: bounce-slow 1.5s ease-in-out infinite; }

/* Text Rainbow Effect */
.text-rainbow {
    background: var(--rainbow-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-shift 3s ease infinite;
}

/* Rainbow Banner */
.rainbow-banner {
    background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
    background-size: 200% 100%;
    animation: rainbow-shift 4s ease infinite;
}

/* Floating Decorations */
.floating-decorations {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.deco {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float-around 15s ease-in-out infinite;
}

.deco-star { top: 10%; left: 5%; animation-delay: 0s; }
.deco-heart { top: 30%; right: 8%; animation-delay: 2s; }
.deco-music { bottom: 20%; left: 10%; animation-delay: 4s; }
.deco-book { bottom: 40%; right: 5%; animation-delay: 6s; }

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ================= UTILITIES ================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-orange {
    color: #F1C40F;
}

.gradient-text {
    background: linear-gradient(135deg, #004aad, #004aad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FFF7ED;
    color: #EA580C;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #004aad, #004aad);
    color: white;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    border-color: #004aad;
    color: #004aad;
}

.btn-outline {
    background: transparent;
    color: #004aad;
    border: 2px solid #004aad;
}

.btn-outline:hover {
    background: #004aad;
    color: white;
}

.btn-white {
    background: white;
    color: #004aad;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #004aad;
}

/* Fun Button Styles */
.btn-rainbow {
    background: linear-gradient(135deg, var(--pink), var(--orange), var(--yellow));
    background-size: 200% 200%;
    color: white;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    animation: rainbow-shift 3s ease infinite;
    border: none;
}

.btn-rainbow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
}

.btn-fun {
    background: white;
    color: #374151;
    border: 3px solid var(--blue);
    font-weight: 800;
}

.btn-fun:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

.btn-card-action {
    background: rgba(255, 255, 255, 0.95);
    color: #374151;
    font-weight: 800;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-card-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-package {
    padding: 1rem 2rem;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-package.pink {
    background: linear-gradient(135deg, var(--pink), #003580);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-package.green {
    background: linear-gradient(135deg, var(--green), #9AE66E);
    color: white;
    box-shadow: 0 6px 20px rgba(126, 217, 87, 0.4);
}

.btn-package.yellow {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: white;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.btn-package:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ================= TOP BANNER ================= */
.top-banner {
    background: linear-gradient(135deg, #004aad, #004aad);
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.top-banner a {
    text-decoration: underline;
    margin-left: 0.5rem;
}

.top-banner a:hover {
    text-decoration: none;
}

/* ================= NAVBAR ================= */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: #f3f4f6;
}

.nav-container {
    max-width: 1324px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #004aad, #004aad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(0deg);
}

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

.logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.75rem;
    color: #004aad;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
}

.nav-links a {
    padding: 0.625rem 1rem;
    color: #4b5563;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #004aad;
    background: #FFF7ED;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #6b7280;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: #FFF7ED;
    color: #004aad;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: #004aad;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #FFF7ED, #FEFCE8, #FFF7ED);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FDBA74, #FED7AA);
    top: 80px;
    left: 5%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FDE68A, #FEF3C7);
    bottom: 20%;
    right: 5%;
    opacity: 0.5;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #99F6E4, #CCFBF1);
    top: 40%;
    left: 20%;
    opacity: 0.4;
    animation: float 5s ease-in-out infinite 1s;
}

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

.hero-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 85vh;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: fit-content;
}

.hero-badge .stars {
    color: #004aad;
    letter-spacing: 2px;
}

.hero-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1f2937;
}

.hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 500px;
    line-height: 1.8;
}

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

.play-icon {
    width: 40px;
    height: 40px;
    background: #FFF7ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004aad;
    transition: all 0.3s ease;
}

.btn-secondary:hover .play-icon {
    background: #004aad;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 1rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
}

.stat-label {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 500;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #004aad, #FDE68A);
    border-radius: 3rem;
    transform: rotate(6deg) scale(0.95);
    opacity: 0.2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.hero-image-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-image-overlay p {
    opacity: 0.9;
}

.floating-card {
    position: absolute;
    right: -30px;
    top: 25%;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: floatCard 4s ease-in-out infinite;
}

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

.floating-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #004aad, #004aad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-card-text .name {
    display: block;
    font-weight: 700;
    color: #1f2937;
}

.floating-card-text .tag {
    font-size: 0.875rem;
    color: #004aad;
    font-weight: 600;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}


/* ================= ABOUT SECTION ================= */
.about {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: #FFF7ED;
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: #FEFCE8;
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat {
    padding: 1.5rem;
    border-radius: 1rem;
}

.about-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-stat-value {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
}

.about-stat-label {
    color: #6b7280;
}

.about-images {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-img {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-1 { height: 200px; }
.about-img-2 { height: 280px; margin-top: -7rem; }
.about-img-3 { height: 280px; }
.about-img-4 { height: 200px; margin-top: 1rem; }

.about-mission-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mission-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #004aad, #004aad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mission-title {
    display: block;
    font-weight: 700;
    color: #1f2937;
}

.mission-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ================= KIDS HERO SECTION ================= */
.kids-hero {
    background: linear-gradient(180deg, #FFF0F5 0%, #E8F6FF 50%, #F0FFF4 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 217, 61, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.bubble {
    position: absolute;
    border-radius: 50%;
    animation: float-around 20s ease-in-out infinite;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(255, 107, 157, 0.1));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.3), rgba(78, 205, 196, 0.1));
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.4), rgba(255, 217, 61, 0.1));
    top: 60%;
    left: 15%;
    animation-delay: 4s;
}

.bubble-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.3), rgba(126, 217, 87, 0.1));
    top: 30%;
    right: 5%;
    animation-delay: 1s;
}

.bubble-5 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(168, 85, 247, 0.1));
    bottom: 30%;
    left: 40%;
    animation-delay: 3s;
}

.hero-title .word-color-1 {
    color: var(--pink);
    display: block;
}

.hero-title .word-color-2 {
    color: var(--blue);
    display: block;
}

.hero-title .word-color-3 {
    color: var(--green);
    display: block;
}

.hero-stats-fun {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-bubble {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.stat-bubble:hover {
    transform: translateY(-5px);
}

.stat-bubble.pink {
    border-color: var(--pink-light);
}

.stat-bubble.blue {
    border-color: var(--blue-light);
}

.stat-bubble.green {
    border-color: var(--green-light);
}

.stat-bubble .stat-emoji {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-bubble .stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1f2937;
    display: block;
}

.stat-bubble .stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

.hero-image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.hero-image-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.frame-decoration {
    position: absolute;
    font-size: 2rem;
    animation: bounce-slow 2s ease-in-out infinite;
}

.frame-deco-1 {
    top: -15px;
    right: 20px;
    animation-delay: 0s;
}

.frame-deco-2 {
    bottom: 30px;
    left: -15px;
    animation-delay: 0.5s;
}

.frame-deco-3 {
    top: 50%;
    right: -15px;
    animation-delay: 1s;
}

.floating-card-fun {
    position: absolute;
    bottom: -20px;
    right: -30px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 4s ease-in-out infinite;
    border: 3px solid var(--yellow-light);
}

.floating-card-fun .card-emoji {
    font-size: 2.5rem;
}

.floating-card-fun .card-title {
    font-weight: 800;
    color: #1f2937;
    display: block;
}

.floating-card-fun .card-tag {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 700;
}

/* ================= HERO CAROUSEL STYLES ================= */
.hero-slider-text {
    position: relative;
    min-height: 80px;
    margin-bottom: 1.5rem;
}

.slide-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.slide-text.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.95) translateX(50px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    pointer-events: auto;
    position: relative;
}

.hero-slide .hero-image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.hero-slide .hero-image-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.hero-dots {
    display: flex;
    gap: 0.5rem;
}

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

.hero-dot:hover {
    background: var(--gray-400);
}

.hero-dot.active {
    background: var(--primary);
    width: 35px;
    border-radius: 6px;
}

/* Responsive adjustments for hero carousel */
@media (max-width: 1024px) {
    .hero-slide .hero-image-frame img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-slider-text {
        min-height: 100px;
    }
    
    .hero-slide .hero-image-frame img {
        height: 350px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dot.active {
        width: 28px;
    }
}

.hero-wave-colorful {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave-colorful svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* ================= SECTION HEADER FUN ================= */
.section-header-fun {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-fun .header-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce-slow 2s ease-in-out infinite;
}

.section-header-fun h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.section-header-fun p {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ================= AUDIO CAROUSEL SECTION ================= */
.audio-carousel {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
    transform: scale(1.1);
}

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

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--pink);
    width: 30px;
    border-radius: 5px;
}

/* Audio Cards */
.audio-card {
    flex-shrink: 0;
    width: 260px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.audio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.audio-card.card-pink {
    border-color: var(--pink-light);
}

.audio-card.card-pink .audio-card-visual {
    background: linear-gradient(135deg, var(--pink-light), #FFF0F5);
}

.audio-card.card-pink .audio-badge {
    background: var(--pink);
}

.audio-card.card-blue {
    border-color: var(--blue-light);
}

.audio-card.card-blue .audio-card-visual {
    background: linear-gradient(135deg, var(--blue-light), #E0FFFF);
}

.audio-card.card-blue .audio-badge {
    background: var(--blue);
}

.audio-card.card-green {
    border-color: var(--green-light);
}

.audio-card.card-green .audio-card-visual {
    background: linear-gradient(135deg, var(--green-light), #F0FFF0);
}

.audio-card.card-green .audio-badge {
    background: var(--green);
}

.audio-card.card-yellow {
    border-color: var(--yellow-light);
}

.audio-card.card-yellow .audio-card-visual {
    background: linear-gradient(135deg, var(--yellow-light), #FFFEF0);
}

.audio-card.card-yellow .audio-badge {
    background: var(--orange);
}

.audio-card.card-purple {
    border-color: var(--purple-light);
}

.audio-card.card-purple .audio-card-visual {
    background: linear-gradient(135deg, var(--purple-light), #FAF0FF);
}

.audio-card.card-purple .audio-badge {
    background: var(--purple);
}

.audio-card.card-orange {
    border-color: var(--orange-light);
}

.audio-card.card-orange .audio-card-visual {
    background: linear-gradient(135deg, var(--orange-light), #FFF5EE);
}

.audio-card.card-orange .audio-badge {
    background: var(--orange);
}

.audio-card-visual {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.audio-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.sound-waves {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 30px;
}

.sound-waves span {
    width: 4px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    animation: sound-wave 1s ease-in-out infinite;
}

.sound-waves span:nth-child(1) { animation-delay: 0s; }
.sound-waves span:nth-child(2) { animation-delay: 0.1s; }
.sound-waves span:nth-child(3) { animation-delay: 0.2s; }
.sound-waves span:nth-child(4) { animation-delay: 0.3s; }
.sound-waves span:nth-child(5) { animation-delay: 0.4s; }

.audio-card:hover .sound-waves span {
    background: var(--pink);
}

.audio-card-content {
    padding: 1.25rem;
}

.audio-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.audio-card-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.audio-card-content p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.audio-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audio-price {
    font-weight: 800;
    color: #1f2937;
    font-size: 1rem;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--pink), #003580);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

.card-sparkle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

/* ================= HOW IT WORKS SECTION ================= */
/* ================= HOW IT WORKS SECTION ================= */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #003580 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(241, 196, 15, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(39, 174, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works .section-header-fun {
    color: white;
}

.how-it-works .section-header-fun h2 {
    color: white;
}

.how-it-works .section-header-fun p {
    color: rgba(255, 255, 255, 0.8);
}

.how-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.how-intro p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.how-intro strong {
    color: var(--yellow);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin: 3rem 0;
}

.steps-line {
    position: absolute;
    top: 80px;
    left: 20%;
    right: 20%;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), white, var(--green));
    border-radius: 2px;
    z-index: 0;
}

.steps-line::before,
.steps-line::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.steps-line::before {
    left: 0;
}

.steps-line::after {
    right: 0;
    background: var(--green);
}

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-card.step-1:hover {
    border-color: var(--yellow);
    box-shadow: 0 20px 50px rgba(241, 196, 15, 0.2);
}

.step-card.step-2:hover {
    border-color: white;
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
}

.step-card.step-3:hover {
    border-color: var(--green);
    box-shadow: 0 20px 50px rgba(39, 174, 96, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray-800);
    z-index: 2;
}

.step-1 .step-number {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.4);
}

.step-2 .step-number {
    background: linear-gradient(135deg, white, var(--gray-100));
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.step-3 .step-number {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    color: white;
}

.step-icon-wrapper {
    margin: 1rem 0 1.5rem;
}

.step-icon {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon .icon-main {
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    animation: bounce-slow 3s ease-in-out infinite;
}

.step-icon .icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px dashed rgba(255, 255, 255, 0.2);
    animation: spin 10s linear infinite;
}

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

.step-icon .icon-sparkle {
    position: absolute;
    font-size: 1.25rem;
    animation: sparkle 2s ease-in-out infinite;
}

.step-icon .sparkle-1 {
    top: 0;
    right: 5px;
    animation-delay: 0s;
}

.step-icon .sparkle-2 {
    bottom: 5px;
    left: 5px;
    animation-delay: 1s;
}

.step-content h3 {
    color: white;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-tip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
}

.step-tip .tip-icon {
    font-size: 1rem;
}

.how-cta {
    text-align: center;
    margin-top: 3rem;
}

.how-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.how-decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float-around 15s ease-in-out infinite;
}

.how-decoration.deco-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.how-decoration.deco-2 {
    bottom: 20%;
    right: 8%;
    animation-delay: 3s;
}

.how-decoration.deco-3 {
    top: 60%;
    left: 10%;
    animation-delay: 6s;
}

.products {
    padding: 5rem 0;
    background: white;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    background: #f3f4f6;
    color: #6b7280;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #FFF7ED;
    color: #EA580C;
}

.filter-btn.active {
    background: #004aad;
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.age-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    transform: translateX(0);
}

.wishlist-btn:hover {
    background: #004aad;
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.875rem;
    color: #004aad;
    font-weight: 500;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0.25rem 0 0.5rem;
}

.product-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

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

.product-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1f2937;
    padding: 6px 14px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    color: white;
        margin: 10px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 
        0 4px 0 #004aad,
        0 8px 15px rgba(102, 126, 234, 0.4);
    transform: translateY(0);
    transition: all 0.2s ease;
}

.product-price:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #4a3f7a,
        0 12px 20px rgba(102, 126, 234, 0.5);
}
.add-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #004aad;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-btn:hover {
    background: #EA580C;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.view-all {
    text-align: center;
    margin-top: 2.5rem;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #004aad;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.view-all-link:hover {
    gap: 0.75rem;
}


/* ================= COMBINED CATEGORIES SECTION ================= */
.categories-combined {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFF5F8 0%, #F0FAFF 100%);
}

.categories-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.category-mega-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.category-mega-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.category-mega-card .mega-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.category-mega-card.math-card .mega-card-bg {
    background: linear-gradient(135deg, var(--pink), #003580, #004aad);
}

.category-mega-card.cards-card .mega-card-bg {
    background: linear-gradient(135deg, var(--green), #2ecc71, #58d68d);
}


.mega-card-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: white;
}

.mega-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.mega-card-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.mega-card-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.mini-products {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mini-product {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
}

.mini-product:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.mini-product img {
    /* width: 120px;
    height: 120px; */
    border-radius: 10px;
    object-fit: cover;
    margin: 0 auto 0.5rem;
}

.mini-product span {
    font-size: 0.75rem;
    font-weight: 700;
    display: block;
}

.mega-card-content .btn-card-action {
    margin-top: auto;
    align-self: flex-start;
}

.mega-card-decoration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0.3;
    font-size: 2rem;
    z-index: 0;
}

.mega-card-decoration span {
    animation: float-around 10s ease-in-out infinite;
}

.mega-card-decoration span:nth-child(2) { animation-delay: 1s; }
.mega-card-decoration span:nth-child(3) { animation-delay: 2s; }
.mega-card-decoration span:nth-child(4) { animation-delay: 3s; }

/* ================= CATEGORY PREVIEW ================= */
.category-preview {
    padding: 5rem 0;
    background: white;
}

.category-preview.alt-bg {
    background: #FAFAFA;
}

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

.preview-grid.reverse {
    direction: rtl;
}

.preview-grid.reverse > * {
    direction: ltr;
}

.preview-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #f3f4f6;
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.preview-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.preview-card.large .preview-image {
    height: 100%;
    min-height: 300px;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.preview-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.preview-tag {
    background: #004aad;
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.preview-content {
    padding: 1.5rem;
}

.preview-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.preview-content p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #004aad;
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.preview-link:hover {
    gap: 0.625rem;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ================= PACKAGES SECTION ================= */
.packages {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFF7ED 100%);
}

.packages-fun {
    position: relative;
    background: linear-gradient(180deg, white 0%, #FFF9F0 50%, #F0FFF4 100%);
}

.confetti-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 157, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(78, 205, 196, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(255, 217, 61, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 20% 70%, rgba(126, 217, 87, 0.08) 0%, transparent 30%);
    pointer-events: none;
}

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

.package-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.package-card.featured {
    border-color: #22C55E;
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.package-badge.popular {
    background: #3B82F6;
    color: white;
}

.package-badge.best {
    background: #22C55E;
    color: white;
}

.package-badge.advanced {
    background: #F59E0B;
    color: white;
}

.package-image {
    /* background: linear-gradient(135deg, #808080, #808080); */
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.package-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.package-image h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.package-content {
    padding: 1.5rem;
        background-color: #004aad;
    flex: 1;
}

.package-desc {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 0.75rem;
}

.feature-icon-sm {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #FFF7ED;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004aad;
}

.feature-icon-sm.green {
    background: #DCFCE7;
    color: #22C55E;
}

.feature-icon-sm.yellow {
    background: #FEF3C7;
    color: #F59E0B;
}

.feature-item strong {
    display: block;
    font-size: 0.875rem;
 color: #fff;
    margin-bottom: 0.125rem;
}

.feature-item p {
    font-size: 0.8rem;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.package-footer {
    padding: 1.5rem;
    border-top: 1px solid #f3f4f6;
    text-align: center;
}

.package-price {
    margin-bottom: 0.5rem;
}

.package-price .currency {
    color: #6b7280;
    font-size: 0.9rem;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #004aad;
}

.package-price .suffix {
    color: #6b7280;
    font-size: 0.9rem;
}

.savings {
    font-size: 0.8rem;
    color: #22C55E;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Fun Package Card Styles */
.package-fun {
    border-radius: 30px;
    border: none;
    overflow: visible;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.package-fun:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.featured-package {
    transform: scale(1.05);
    z-index: 10;
}

.featured-package:hover {
    transform: scale(1.05) translateY(-15px);
}

.package-ribbon {
    position: absolute;
    top: 1.5rem;
    right: -5px;
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.package-ribbon.popular {
    background: linear-gradient(135deg, var(--pink), #003580);
    color: white;
}

.package-ribbon.best {
    background: linear-gradient(135deg, var(--green), #9AE66E);
    color: white;
}

.package-ribbon.advanced {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: white;
}

.package-header {
    padding: 2rem;
    text-align: center;
    border-radius: 27px 27px 0 0;
    color: white;
}

.package-header.pink-gradient {
    background: linear-gradient(135deg, var(--pink), #003580);
}

.package-header.green-gradient {
    background: linear-gradient(135deg, var(--green), #9AE66E);
}

.package-header.yellow-gradient {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.package-header .package-emoji {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.package-header h3 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.package-header .package-tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

.package-body {
    padding: 1.5rem;
}

.package-features-fun {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-fun {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-fun .feature-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-fun strong {
    display: block;
    font-size: 0.9rem;
    color: #1f2937;
    margin-bottom: 0.125rem;
}

.feature-fun p {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

.savings-badge {
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    color: #16A34A;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
}

.package-footer-fun {
    padding: 1.5rem;
    background: #FAFAFA;
    border-radius: 0 0 27px 27px;
    text-align: center;
}

.price-tag {
    margin-bottom: 1rem;
}

.price-tag .currency {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.price-tag .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
}

.price-tag .suffix {
    font-size: 0.9rem;
    color: #6b7280;
}

/* ================= WHY KIDS LOVE US SECTION ================= */
.why-kids-love {
    padding: 5rem 0;
    background: white;
}

.love-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.love-card {
    background: linear-gradient(180deg, #FAFAFA, white);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid #f3f4f6;
    transition: all 0.4s ease;
}

.love-card:hover {
    transform: translateY(-10px);
    border-color: var(--pink-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.love-card:nth-child(2):hover { border-color: var(--blue-light); }
.love-card:nth-child(3):hover { border-color: var(--green-light); }
.love-card:nth-child(4):hover { border-color: var(--yellow-light); }

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

.love-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.love-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ================= NEWSLETTER FUN ================= */
.newsletter-fun {
    padding: 4rem 0;
    background: linear-gradient(180deg, white, var(--pink-light));
}

.newsletter-card-fun {
    background: linear-gradient(135deg, var(--pink), #003580, var(--orange));
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
}

.newsletter-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.newsletter-decoration span {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
}

.newsletter-decoration span:nth-child(1) {
    top: 10%;
    left: 5%;
    animation: float-around 15s ease-in-out infinite;
}

.newsletter-decoration span:nth-child(2) {
    top: 60%;
    right: 10%;
    animation: float-around 12s ease-in-out infinite reverse;
}

.newsletter-decoration span:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation: float-around 18s ease-in-out infinite 2s;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    color: white;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.newsletter-content p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.newsletter-form-fun {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form-fun input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form-fun input:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form-fun .btn-rainbow {
    flex-shrink: 0;
    background: white;
    color: var(--pink);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form-fun .btn-rainbow:hover {
    background: #1f2937;
    color: white;
}

/* ================= FOOTER FUN ================= */
.footer-fun {
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* ================= TESTIMONIALS SECTION ================= */
/* ================= TESTIMONIALS SECTION ================= */

.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #004aad, #004aad, #004aad);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 80px;
    right: 80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.quote-icon {
    width: 56px;
    height: 56px;
    background: #FFF7ED;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-card .stars {
    color: #004aad;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 1.375rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 700;
    color: #1f2937;
}

.author-location {
    color: #6b7280;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.nav-prev, .nav-next {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #004aad;
    transition: transform 0.3s ease;
}

.nav-prev:hover, .nav-next:hover {
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

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

.dot.active {
    width: 32px;
    background: white;
    border-radius: 6px;
}

/* ================= ABOUT SECTION ================= */
.about {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: #FFF7ED;
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: #FEFCE8;
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat {
    padding: 1.5rem;
    border-radius: 1rem;
}

.about-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-stat-value {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
}

.about-stat-label {
    color: #6b7280;
}

.about-images {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-img {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-1 { height: 200px; }
.about-img-2 { height: 280px; margin-top: -3rem; }
.about-img-3 { height: 280px; }
.about-img-4 { height: 200px; margin-top: 1rem; }

.about-mission-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mission-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #004aad, #004aad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mission-title {
    display: block;
    font-weight: 700;
    color: #1f2937;
}

.mission-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--blue-light);
}

.faq-item.active {
    border-color: var(--blue);
    box-shadow: 0 8px 30px rgba(78, 205, 196, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #FAFAFA;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--blue-light), #E0FFFF);
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question span:nth-child(2) {
    flex: 1;
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #fff;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #FAFAFA;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 4rem;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer strong {
    color: var(--blue);
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
    border-radius: 20px;
}

.faq-cta p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* ================= FEATURES SECTION ================= */
.features {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #FDBA74;
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004aad;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #004aad, #004aad);
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================= NEWSLETTER ================= */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(180deg, white, #FFF7ED);
}

.newsletter-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
    border-radius: 50%;
    opacity: 0.5;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #004aad, #004aad);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    position: relative;
    z-index: 1;
}

.newsletter-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.newsletter-card > p {
    color: #6b7280;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #004aad;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

/* ================= FOOTER ================= */
.footer {
    background: #004aad;
    color: white;
    padding-top: 0rem;
}

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

.footer-brand {
    padding-right: 2rem;
}

.footer .logo-name {
    color: white;
}

.footer-brand > p {
    color: #fff;
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 0.9rem;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #fff;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #004aad;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #374151;
}

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

.social-link {
    width: 42px;
    height: 42px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #004aad;
    color: white;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-methods > span {
    color: #6b7280;
    font-size: 0.875rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-badge {
    padding: 0.375rem 0.75rem;
    background: #374151;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.footer-copyright {
    background: #004aad;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

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

.footer-copyright p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* ================= PAGE HERO ================= */
.page-hero {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF7ED, #FEFCE8);
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #6b7280;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #004aad;
}

.breadcrumb svg {
    color: #fff;
}

.breadcrumb span:last-child {
    color: #004aad;
    font-weight: 600;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-hero p {
    color: #6b7280;
    font-size: 1.2rem;
    max-width: 600px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FDBA74, #FED7AA);
    top: -50px;
    right: 10%;
}

.hero-shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FDE68A, #FEF3C7);
    bottom: -30px;
    left: 5%;
}

/* ================= PRODUCTS SECTION ================= */
.products-section {
    padding: 4rem 0;
}

.filter-bar {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 700;
    color: #374151;
    margin-right: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    background: white;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #004aad;
    color: white;
    border-color: #004aad;
}

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

.product-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: auto;
    overflow: hidden;
    background: #f9fafb;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #F1C40F;
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-badge.new {
    background: #22C55E;
}

.wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-btn:hover {
    color: #EF4444;
}

.wishlist-btn.active svg {
    fill: #EF4444;
    stroke: #EF4444;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: #004aad;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0.5rem 0;
}

.product-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.age-tag {
    background: #FFF7ED;
    color: #EA580C;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1f2937;
}

.add-to-cart {
    width: 100%;
}

/* ================= CTA SECTION ================= */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #FFF7ED 0%, white 100%);
}

.cta-card {
    background: linear-gradient(135deg, #004aad, #004aad);
    border-radius: 2rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-image {
    position: relative;
    z-index: 1;
}

.cta-image img {
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-card.centered {
    display: block;
    text-align: center;
}

.cta-card.centered h2 {
    font-size: 2.5rem;
}

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

/* ================= ABOUT PAGE ================= */
.about-content-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text p {
  
    margin-bottom: 1rem;
     font-size: 1.2rem;
    line-height: 1.8;
}

.about-image img {
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 4rem 0;
    background: #FAFAFA;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.mv-card.mission {
    border-top: 4px solid #004aad;
}

.mv-card.vision {
    border-top: 4px solid #3B82F6;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004aad;
    margin: 0 auto 1.5rem;
}

.mv-card.vision .mv-icon {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    color: #3B82F6;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #6b7280;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004aad;
    margin: 0 auto 1rem;
}

.value-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #004aad, #004aad);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    color: white;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
}

.stat-card .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.team-card p {
    color: #004aad;
    font-weight: 600;
}

/* ================= GALLERY PAGE ================= */
.gallery-filter-section {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #f3f4f6;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    grid-auto-rows: 200px;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.video-gallery {
    padding: 4rem 0;
    background: #FAFAFA;
}

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

.video-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: rgba(249, 115, 22, 0.8);
}

.video-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    padding: 1rem 1rem 0.25rem;
}

.video-card p {
    color: #6b7280;
    font-size: 0.875rem;
    padding: 0 1rem 1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ================= CATEGORY TABS ================= */
.category-tabs-section {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #f3f4f6;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    background: #f3f4f6;
    color: #6b7280;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: #004aad;
    color: white;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .floating-card,
    .floating-card-fun {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats-fun {
        justify-content: center;
    }
    
    .categories-row {
        grid-template-columns: 1fr;
    }
    
    .category-mega-card {
        min-height: 380px;
    }
    
    .preview-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .preview-card.large {
        grid-row: auto;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .package-card.featured,
    .featured-package {
        transform: none;
    }
    
    .featured-package:hover {
        transform: translateY(-15px);
    }
    
    .love-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .steps-line {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f3f4f6;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 0.75rem 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats,
    .hero-stats-fun {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-bubble {
        padding: 0.75rem 1rem;
    }
    
    .hero-image-wrapper img,
    .hero-image-frame img {
        height: 350px;
    }
    
    .section-header-fun h2 {
        font-size: 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .audio-card {
        width: 240px;
    }
    
    .love-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-copyright .container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-form,
    .newsletter-form-fun {
        flex-direction: column;
    }
    
    .newsletter-card-fun {
        padding: 2rem 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item.tall {
        grid-row: span 1;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .mini-products {
        flex-wrap: wrap;
    }
    
    .mini-product {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .word-color-1,
    .hero-title .word-color-2,
    .hero-title .word-color-3 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats,
    .hero-stats-fun {
        /* flex-direction: column; */
        gap: 1rem;
    }
    
    .stat-bubble {
        width: 100%;
    }
    
    .filter-group {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .package-header h3 {
        font-size: 1.5rem;
    }
    
    .mega-card-content h3 {
        font-size: 1.5rem;
    }
    
    .mini-product {
        flex: 0 0 100%;
    }
}
