/* ============================================= */
/*      Kids DisneyBurg KinderCare - Styles       */
/*      Disney-Themed Colorful Preschool Site      */
/* ============================================= */

/* CSS Custom Properties */
:root {
    --disney-pink: #FF69B4;
    --disney-pink-light: #FFB6D9;
    --disney-blue: #4A90D9;
    --disney-blue-light: #89CFF0;
    --disney-green: #4CD964;
    --disney-green-light: #98FB98;
    --disney-yellow: #FFD700;
    --disney-yellow-light: #FFF44F;
    --disney-purple: #9B59B6;
    --disney-purple-light: #D8B4FE;
    --disney-orange: #FF8C42;
    --disney-red: #FF6B6B;
    --disney-teal: #2DD4BF;
    --disney-coral: #FF7F7F;

    --bg-primary: #fff8fc;
    --bg-secondary: #f0e6ff;
    --bg-gradient-1: linear-gradient(135deg, #FFE5F1 0%, #E8D5FF 50%, #D5EEFF 100%);
    --bg-gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-gradient-rainbow: linear-gradient(90deg, #FF69B4, #FFD700, #4CD964, #4A90D9, #9B59B6, #FF69B4);

    --text-dark: #2D1B4E;
    --text-medium: #5A4478;
    --text-light: #8B7AAF;

    --shadow-soft: 0 4px 20px rgba(155, 89, 182, 0.15);
    --shadow-medium: 0 8px 30px rgba(155, 89, 182, 0.2);
    --shadow-strong: 0 12px 40px rgba(155, 89, 182, 0.25);
    --shadow-glow-pink: 0 0 30px rgba(255, 105, 180, 0.3);
    --shadow-glow-blue: 0 0 30px rgba(74, 144, 217, 0.3);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --radius-full: 50%;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    --font-display: 'Fredoka One', cursive;
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* Sparkles Container */
.sparkles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--disney-yellow);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle-fade 1s ease-out forwards;
}

@keyframes sparkle-fade {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.5) rotate(180deg);
    }

    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition-medium);
    background: rgba(255, 248, 252, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 105, 180, 0.1);
}

.navbar.scrolled {
    padding: 5px 0;
    background: rgba(255, 248, 252, 0.95);
    box-shadow: var(--shadow-soft);
    border-bottom-color: rgba(255, 105, 180, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 100px;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-medium);
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--disney-pink);
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--bg-gradient-rainbow);
    background-size: 200% 100%;
    border-radius: 3px;
    transition: transform var(--transition-fast);
    animation: rainbow-move 3s linear infinite;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--disney-pink);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 130px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 248, 252, 0.3) 0%,
            rgba(255, 248, 252, 0.5) 30%,
            rgba(255, 248, 252, 0.7) 60%,
            rgba(255, 248, 252, 0.9) 100%);
    z-index: 1;
}

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.float-star {
    position: absolute;
    font-size: 2rem;
    animation: float-around 6s ease-in-out infinite;
}

@keyframes float-around {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(10deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }

    75% {
        transform: translateY(-25px) rotate(8deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    max-width: 1100px;
}

.hero-logo-wrapper {
    margin-bottom: 20px;
    animation: hero-logo-entrance 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

@keyframes hero-logo-entrance {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-logo {
    max-width: 1050px;
    width: 100%;
    filter: drop-shadow(0 10px 30px rgba(155, 89, 182, 0.3));
    animation: gentle-float 4s ease-in-out infinite;
}

@keyframes gentle-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.color-p {
    color: #FF69B4;
}

.color-l {
    color: #4A90D9;
}

.color-a {
    color: #4CD964;
}

.color-y {
    color: #FFD700;
}

.color-le {
    color: #FF8C42;
}

.color-e {
    color: #9B59B6;
}

.color-ar {
    color: #FF69B4;
}

.color-r {
    color: #4A90D9;
}

.color-n {
    color: #4CD964;
}

.color-g {
    color: #FFD700;
}

.color-ro {
    color: #FF8C42;
}

.color-o {
    color: #9B59B6;
}

.color-w {
    color: #FF69B4;
}

.dot {
    color: var(--text-light);
    margin: 0 5px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--disney-purple);
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-medium);
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.95rem;
    animation: badge-pulse 2s ease-in-out infinite;
}

.badge-admission {
    background: linear-gradient(135deg, #FF69B4, #FF8C42);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.badge-joyful {
    background: linear-gradient(135deg, #4A90D9, #9B59B6);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 217, 0.4);
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--disney-pink), #FF8C42);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--disney-purple);
    border: 2px solid var(--disney-purple-light);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--disney-purple);
    color: white;
    border-color: var(--disney-purple);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-magic .btn-sparkle {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateY(-50%) skewX(-15deg);
    animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 150%;
    }
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    background: #25D366;
    color: white;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 10px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 4;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===================== SECTIONS ===================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    animation: gentle-float 3s ease-in-out infinite;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.rainbow-text {
    background: var(--bg-gradient-rainbow);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-move 4s linear infinite;
}

@keyframes rainbow-move {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* ===================== ABOUT ===================== */
.about {
    padding: 80px 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 4px solid var(--disney-pink-light);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform var(--transition-slow);
}

.about-image-frame:hover .about-image {
    transform: scale(1.05);
}

.frame-decoration {
    position: absolute;
    font-size: 2rem;
    animation: gentle-float 3s ease-in-out infinite;
    z-index: 2;
}

.frame-top-left {
    top: -10px;
    left: -10px;
    animation-delay: 0s;
}

.frame-top-right {
    top: -10px;
    right: -10px;
    animation-delay: 0.5s;
}

.frame-bottom-left {
    bottom: -10px;
    left: -10px;
    animation-delay: 1s;
}

.frame-bottom-right {
    bottom: -10px;
    right: -10px;
    animation-delay: 1.5s;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.highlight-text {
    color: var(--disney-pink);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--disney-yellow);
    border-radius: 3px;
    opacity: 0.5;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.stat-card {
    text-align: center;
    padding: 15px 8px;
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card-pink {
    background: rgba(255, 105, 180, 0.12);
}

.stat-card-blue {
    background: rgba(74, 144, 217, 0.12);
}

.stat-card-green {
    background: rgba(76, 217, 100, 0.12);
}

.stat-card-yellow {
    background: rgba(255, 215, 0, 0.12);
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ===================== PROGRAMS ===================== */
.programs {
    padding: 80px 0;
    background: var(--bg-gradient-1);
    position: relative;
}

.programs-wave-top,
.programs-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
}

.programs-wave-top {
    top: -1px;
}

.programs-wave-bottom {
    bottom: -1px;
}

.programs-wave-top svg,
.programs-wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 20px 20px 0 0;
}

.card-color-1::before {
    background: linear-gradient(90deg, var(--disney-pink), var(--disney-pink-light));
}

.card-color-1:hover {
    border-color: var(--disney-pink-light);
    box-shadow: var(--shadow-glow-pink);
}

.card-color-2::before {
    background: linear-gradient(90deg, var(--disney-blue), var(--disney-blue-light));
}

.card-color-2:hover {
    border-color: var(--disney-blue-light);
    box-shadow: var(--shadow-glow-blue);
}

.card-color-3::before {
    background: linear-gradient(90deg, var(--disney-green), var(--disney-green-light));
}

.card-color-3:hover {
    border-color: var(--disney-green-light);
    box-shadow: 0 0 30px rgba(76, 217, 100, 0.3);
}

.card-color-4::before {
    background: linear-gradient(90deg, var(--disney-purple), var(--disney-purple-light));
}

.card-color-4:hover {
    border-color: var(--disney-purple-light);
    box-shadow: 0 0 30px rgba(155, 89, 182, 0.3);
}

.program-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient-1);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast);
}

.program-card:hover .card-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.card-icon {
    font-size: 2.5rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.card-age {
    font-size: 0.85rem;
    color: var(--disney-pink);
    font-weight: 700;
    margin-bottom: 10px;
    padding: 3px 12px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: var(--radius-lg);
    display: inline-block;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.feature-tag {
    font-size: 0.78rem;
    padding: 4px 10px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    color: var(--text-medium);
    font-weight: 600;
}

/* ===================== ACTIVITIES ===================== */
.activities {
    padding: 80px 0;
    background: var(--bg-primary);
}

.activities-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.activity-item {
    text-align: center;
    padding: 20px 10px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: default;
}

.activity-item[data-color="pink"] {
    background: rgba(255, 105, 180, 0.1);
}

.activity-item[data-color="blue"] {
    background: rgba(74, 144, 217, 0.1);
}

.activity-item[data-color="green"] {
    background: rgba(76, 217, 100, 0.1);
}

.activity-item[data-color="yellow"] {
    background: rgba(255, 215, 0, 0.1);
}

.activity-item[data-color="purple"] {
    background: rgba(155, 89, 182, 0.1);
}

.activity-item[data-color="orange"] {
    background: rgba(255, 140, 66, 0.1);
}

.activity-item[data-color="teal"] {
    background: rgba(45, 212, 191, 0.1);
}

.activity-item[data-color="rose"] {
    background: rgba(255, 107, 107, 0.1);
}

.activity-item[data-color="indigo"] {
    background: rgba(102, 126, 234, 0.1);
}

.activity-item[data-color="coral"] {
    background: rgba(255, 127, 127, 0.1);
}

.activity-item[data-color="lime"] {
    background: rgba(132, 204, 22, 0.1);
}

.activity-item[data-color="sky"] {
    background: rgba(56, 189, 248, 0.1);
}

.activity-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

.activity-item[data-color="pink"]:hover {
    box-shadow: var(--shadow-glow-pink);
}

.activity-item[data-color="blue"]:hover {
    box-shadow: var(--shadow-glow-blue);
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    display: block;
    transition: transform var(--transition-fast);
}

.activity-item:hover .activity-icon {
    transform: scale(1.2) rotate(10deg);
}

.activity-item h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 700;
}

.activities-image-wrapper {
    max-width: 700px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 3px solid var(--disney-yellow-light);
}

.activities-image {
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
}

.activities-image-wrapper:hover .activities-image {
    transform: scale(1.03);
}

/* ===================== WHY US ===================== */
.why-us {
    padding: 80px 0;
    background: var(--bg-gradient-1);
    position: relative;
}

.why-us-wave-top,
.why-us-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
}

.why-us-wave-top {
    top: -1px;
}

.why-us-wave-bottom {
    bottom: -1px;
}

.why-us-wave-top svg,
.why-us-wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--disney-pink-light);
    box-shadow: var(--shadow-medium);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform var(--transition-fast);
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(5deg);
    animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {

    0%,
    100% {
        transform: scale(1.2) rotate(0deg);
    }

    25% {
        transform: scale(1.2) rotate(15deg);
    }

    50% {
        transform: scale(1.2) rotate(-10deg);
    }

    75% {
        transform: scale(1.2) rotate(8deg);
    }
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===================== ADMISSIONS ===================== */
.admissions {
    padding: 80px 0;
    background: var(--bg-primary);
}

.admission-card-main {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 3px solid var(--disney-pink-light);
}

.admission-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.admission-confetti span {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: confetti-float 8s ease-in-out infinite;
}

.admission-confetti span:nth-child(1) {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.admission-confetti span:nth-child(2) {
    top: 10%;
    right: 8%;
    animation-delay: 0.8s;
}

.admission-confetti span:nth-child(3) {
    top: 30%;
    left: 3%;
    animation-delay: 1.5s;
}

.admission-confetti span:nth-child(4) {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

.admission-confetti span:nth-child(5) {
    bottom: 10%;
    left: 10%;
    animation-delay: 2.5s;
}

.admission-confetti span:nth-child(6) {
    top: 50%;
    right: 3%;
    animation-delay: 3s;
}

.admission-confetti span:nth-child(7) {
    top: 15%;
    left: 30%;
    animation-delay: 1s;
}

.admission-confetti span:nth-child(8) {
    bottom: 30%;
    right: 20%;
    animation-delay: 3.5s;
}

.admission-confetti span:nth-child(9) {
    top: 60%;
    left: 15%;
    animation-delay: 4s;
}

.admission-confetti span:nth-child(10) {
    bottom: 5%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes confetti-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(90deg);
    }

    50% {
        transform: translateY(-5px) rotate(180deg);
    }

    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

.admission-inner {
    position: relative;
    z-index: 1;
    padding: 50px 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 230, 240, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.admission-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--disney-pink);
    margin-bottom: 15px;
}

.admission-star {
    display: inline-block;
    animation: star-spin 3s linear infinite;
}

@keyframes star-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.admission-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.admission-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    min-width: 110px;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--disney-pink), var(--disney-purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.step-info h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.step-info p {
    font-size: 0.78rem;
    color: var(--text-light);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--disney-pink-light);
    font-weight: 700;
}

.admission-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================== MARQUEE ===================== */
.gallery-marquee {
    padding: 20px 0;
    background: linear-gradient(90deg, var(--disney-pink), var(--disney-yellow), var(--disney-green), var(--disney-blue), var(--disney-purple), var(--disney-pink));
    background-size: 200% 100%;
    animation: rainbow-move 6s linear infinite;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: marquee-scroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-emoji {
    font-size: 1.5rem;
}

.marquee-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===================== CONTACT ===================== */
.contact {
    padding: 80px 0 50px;
    background: var(--bg-gradient-1);
    position: relative;
}

.contact-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
}

.contact-wave-top svg {
    display: block;
    width: 100%;
    height: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-address:hover {
    border-color: var(--disney-pink-light);
}

.contact-phone:hover {
    border-color: var(--disney-blue-light);
}

.contact-hours:hover {
    border-color: var(--disney-green-light);
}

.contact-whatsapp:hover {
    border-color: #25D366;
}

.contact-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-address .contact-icon-wrap {
    background: linear-gradient(135deg, var(--disney-pink), #ff9a9e);
}

.contact-phone .contact-icon-wrap {
    background: linear-gradient(135deg, var(--disney-blue), #89CFF0);
}

.contact-hours .contact-icon-wrap {
    background: linear-gradient(135deg, var(--disney-green), #98FB98);
}

.whatsapp-green {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-card p a {
    color: var(--disney-blue);
    font-weight: 700;
}

.contact-card p a:hover {
    color: var(--disney-pink);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 3px solid white;
}

/* ===================== FOOTER ===================== */
.footer {
    position: relative;
    background: #1a1035;
    color: rgba(255, 255, 255, 0.85);
}

.footer-wave {
    position: absolute;
    top: -79px;
    left: 0;
    width: 100%;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-content {
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    height: 150px;
    margin-bottom: 10px;
    filter: brightness(1.1);
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--disney-yellow);
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links h5,
.footer-contact h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--disney-pink);
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    padding: 4px 0;
    font-size: 0.92rem;
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--disney-yellow);
    transform: translateX(5px);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--disney-pink);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    transition: all var(--transition-fast);
}

.social-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-facebook {
    background: #1877F2;
}

.social-whatsapp {
    background: #25D366;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
    position: relative;
    z-index: 2;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}

.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: #25D366;
    animation: wa-pulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes wa-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--disney-purple), var(--disney-pink));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* ===================== ANIMATIONS ===================== */
.animate-bounce-in {
    animation: bounce-in 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.6s ease-out 0.3s forwards;
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fade-in 0.6s ease-out 0.5s forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fade-in 0.6s ease-out 0.7s forwards;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

.animate-pop-in {
    opacity: 0;
    transform: scale(0.8);
    animation: pop-in 0.5s ease-out 0.9s forwards;
}

.animate-pop-in-delay {
    opacity: 0;
    transform: scale(0.8);
    animation: pop-in 0.5s ease-out 1.1s forwards;
}

@keyframes pop-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activities-showcase {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 248, 252, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 30px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }

    .hero-logo {
        max-width: 700px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .activities-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .admission-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .admission-inner {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .hero-logo {
        max-width: 550px;
    }

    .activities-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .whatsapp-pulse {
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        bottom: 80px;
        right: 25px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}