/* ========================================
   CHIKICUT - ESTÉTICA INFANTIL
   Modern, Colorful, Animated Website
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - from logo */
    --chiki-yellow: #FFE66D;
    --chiki-orange: #FF9A56;
    --chiki-pink: #FF6B9D;
    --chiki-green: #4ECDC4;
    --chiki-blue: #45B7D1;
    --chiki-red: #FF6B6B;
    --chiki-purple: #A78BFA;

    /* Gradients */
    --gradient-rainbow: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 25%, #4ECDC4 50%, #45B7D1 75%, #A78BFA 100%);
    --gradient-sunset: linear-gradient(135deg, #FF6B9D 0%, #FF9A56 50%, #FFE66D 100%);
    --gradient-ocean: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 100%);
    --gradient-candy: linear-gradient(135deg, #FF6B9D 0%, #A78BFA 100%);

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FFF9F0;
    --light-gray: #F8F9FA;
    --dark: #2D3436;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(78, 205, 196, 0.4);

    /* Typography */
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Spacing */
    --section-padding: 120px 5%;
    --wave-height: 150px;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--chiki-pink);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--chiki-pink);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 156, 0.1);
    border-color: transparent;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(5deg);
    }

    75% {
        transform: translateY(10px) rotate(-5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }

    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-lg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes bubble-rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

@keyframes wave-letters {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes scroll-hint {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   BUBBLES BACKGROUND
   ======================================== */

.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    animation: bubble-rise linear infinite;
    opacity: 0.6;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 5%;
    background: rgba(255, 255, 255, 0.98);
}

.nav-logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.1) rotate(-5deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-rainbow);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--chiki-pink);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-sunset);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 5% 80px;
    background: linear-gradient(180deg, var(--off-white) 0%, #FFF5E6 50%, #FFE8F5 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
    animation: slide-up 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--chiki-pink);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-title .letter {
    display: inline-block;
    color: var(--color);
    animation: wave-letters 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.1s);
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-title .letter:nth-child(1) {
    --i: 0;
}

.hero-title .letter:nth-child(2) {
    --i: 1;
}

.hero-title .letter:nth-child(3) {
    --i: 2;
}

.hero-title .letter:nth-child(4) {
    --i: 3;
}

.hero-title .letter:nth-child(5) {
    --i: 4;
}

.hero-title .letter:nth-child(6) {
    --i: 5;
}

.hero-title .letter:nth-child(7) {
    --i: 6;
}

.hero-title .letter:nth-child(8) {
    --i: 7;
}

.hero-title .letter:hover {
    transform: scale(1.2) rotate(10deg);
}

.hero-slogan {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--chiki-green);
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 156, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--chiki-green);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--chiki-green);
}

.btn-secondary:hover {
    background: var(--chiki-green);
    color: var(--white);
    transform: translateY(-5px);
}

/* Floating Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.floating-element.scissors {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.comb {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element.star {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.floating-element.heart {
    top: 40%;
    right: 10%;
    animation-delay: 0.5s;
}

.floating-element.rainbow {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scroll-hint 2s ease-in-out infinite;
}

.scroll-indicator .mouse {
    width: 25px;
    height: 40px;
    border: 3px solid var(--chiki-pink);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--chiki-pink);
    border-radius: 2px;
    animation: scroll-hint 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--chiki-pink);
    font-weight: 600;
}

/* ========================================
   WAVE DIVIDERS
   ======================================== */

.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: var(--wave-height);
}

.wave-divider.bottom {
    bottom: -1px;
}

.wave-divider.top {
    top: -1px;
    transform: rotate(180deg);
}

/* Section Specific Waves */
.hero .wave-divider.bottom {
    color: var(--white);
}

.services .wave-divider.bottom {
    color: #FFF5E6;
    /* Match Experience bg start */
}

.experience .wave-divider.bottom {
    color: var(--white);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F0 50%, #FFF0F5 100%);
    /* Subtle warmth */
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-candy);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-rainbow);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: none;
    /* Hide default cursor */
}

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-rainbow);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--dark);
    opacity: 0.7;
    font-size: 1rem;
}

.service-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.service-card:hover .service-glow {
    transform: translate(-50%, -50%) scale(1);
}

/* ========================================
   EXPERIENCE SECTION
   ======================================== */

.experience {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8F5 50%, #E8F5FF 100%);
    position: relative;
    overflow: hidden;
}

.experience-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.experience-description {
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 40px;
}

.themes-carousel {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.theme-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    cursor: pointer;
}

.theme-card:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.theme-emoji {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.theme-card:hover .theme-emoji {
    transform: scale(1.3) rotate(15deg);
}

.theme-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #FFF0F5 0%, #FFF9F0 50%, #E8F5FF 100%);
    /* Warm pastel gradient */
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.location-card {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8F5 100%);
    padding: 35px 25px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--chiki-pink);
    margin-bottom: 10px;
}

.location-card p {
    color: var(--dark);
    margin-bottom: 10px;
}

.location-hours {
    display: inline-block;
    padding: 8px 15px;
    background: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--chiki-green);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

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

.social-link.tiktok {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   FRANCHISE SECTION
   ======================================== */

.franchise {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 50%, #A78BFA 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.franchise::before {
    content: '💼🚀✨';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 2rem;
}

.franchise-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.franchise .section-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--chiki-green);
}

.franchise .section-title {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.franchise-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.btn-franchise {
    background: var(--white);
    color: var(--chiki-green);
    padding: 18px 45px;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-franchise:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: glow-pulse 2s ease-in-out infinite;
    z-index: -1;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 60px 5% 30px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 10;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--chiki-yellow);
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    transform: translateY(-99%);
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 20px;
        backdrop-filter: blur(10px);
    }

    .nav-links.mobile-open {
        display: flex;
        animation: slide-up 0.3s ease-out forwards;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }

    .nav-cta {
        display: none;
    }

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

    .floating-element {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 5%;
        --wave-height: 60px;
        /* Smaller waves on tablets */
    }

    .hero {
        padding-top: 100px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .themes-carousel {
        gap: 15px;
    }

    .theme-card {
        padding: 20px 25px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-slogan {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .theme-emoji {
        font-size: 2.5rem;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.service-card,
.theme-card,
.location-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-card.visible,
.theme-card.visible,
.location-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PRELOADER
   ======================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--off-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 150px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.loader-dots span {
    width: 10px;
    height: 10px;
    background: var(--chiki-pink);
    border-radius: 50%;
    animation: pulse 1s infinite alternate;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
    background: var(--chiki-yellow);
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
    background: var(--chiki-green);
}

/* ========================================
   TOUCH DEVICES & MOBILE OPTIMIZATIONS
   ======================================== */

@media (hover: none) {

    /* Touch devices: restore default cursor and remove hover transforms */
    .service-card {
        cursor: pointer;
        transform: none !important;
    }

    .service-card:hover {
        transform: none !important;
        box-shadow: var(--shadow-md);
    }

    body {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* SMALL MOBILE SCREENS OVERRIDES */
@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem !important;
    }

    .hero-slogan {
        font-size: 1.1rem !important;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .service-card {
        padding: 25px 20px !important;
    }

    .theme-emoji {
        font-size: 2.2rem !important;
    }

    :root {
        --wave-height: 0px;
        /* Disable waves space on mobile */
    }

    .wave-divider {
        display: none !important;
        /* Hide waves completely on mobile for cleaner look */
    }

    /* Hide scroll indicator on mobile as it's not needed/confusing */
    .scroll-indicator {
        display: none !important;
    }
}