/* Little Learners Daycare & Preschool Stylesheet */

/* CSS Variables */
:root {
    --primary: hsl(193, 63%, 51%);       /* Sky Blue from Logo */
    --primary-hover: hsl(193, 63%, 43%);
    --secondary: hsl(9, 81%, 58%);       /* Orange-Red from Logo/Accent */
    --secondary-hover: hsl(9, 81%, 50%);
    --yellow: hsl(45, 95%, 53%);         /* Golden Yellow from Logo */
    --yellow-light: hsl(45, 95%, 92%);
    --yellow-dark: hsl(45, 95%, 40%);
    
    --bg-pink: hsl(9, 100%, 97%);        /* Soft Orange-Red */
    --bg-blue: hsl(187, 60%, 96%);       /* Soft Cyan-Blue */
    --bg-purple: hsl(210, 60%, 96%);     /* Soft Indigo-Blue */
    --bg-green: hsl(160, 50%, 96%);      /* Soft Green */
    
    --card-pink-border: hsl(9, 100%, 92%);
    --card-blue-border: hsl(187, 60%, 90%);
    --card-purple-border: hsl(210, 60%, 90%);
    --card-green-border: hsl(160, 50%, 90%);
    
    --text-dark: hsl(210, 29%, 16%);     /* Dark Slate outline from logo */
    --doodle-stroke: #7462DB;            /* Playful periwinkle violet outline for doodles */
    --balloon-stroke: #C29023;           /* Warm golden yellow outline for balloon (1) */
    --car-stroke: #2E8CA3;               /* Rich blue-teal outline for toy car (2) */
    --tree-stroke: #1E7F75;              /* Forest green outline for palm tree (3) */
    --text-muted: hsl(210, 14%, 40%);    /* Medium Slate */
    --white: #ffffff;
    --border-color: #eee;
    
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --shadow-primary: 0 10px 20px -3px hsla(193, 63%, 51%, 0.3);
    --shadow-secondary: 0 10px 20px -3px hsla(9, 81%, 58%, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, textarea, select {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Typography styles */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

p {
    font-weight: 500;
    color: var(--text-muted);
}

/* Common Layout Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background-color: var(--bg-purple);
    color: var(--primary);
}

.badge-secondary {
    background-color: var(--bg-pink);
    color: var(--secondary);
}

.badge-yellow {
    background-color: var(--yellow-light);
    color: var(--yellow-dark);
}

/* Custom Gradients & Text */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-text {
    color: var(--secondary);
}

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: var(--primary);
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-primary);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.cta-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px hsla(193, 63%, 51%, 0.4);
}

.cta-btn i {
    transition: transform var(--transition-fast);
}

.cta-btn:hover i {
    transform: translateX(4px);
}

.cta-secondary {
    background-color: var(--secondary);
    box-shadow: var(--shadow-secondary);
}

.cta-secondary:hover {
    background-color: var(--secondary-hover);
    box-shadow: 0 15px 25px -5px hsla(9, 81%, 58%, 0.4);
}

/* Upper Info Bar */
.top-bar {
    background-color: hsl(210, 29%, 15%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-info i {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    color: var(--secondary);
}

/* Header & Navbar */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: background var(--transition-normal);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    color: var(--primary);
    cursor: pointer;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--bg-purple);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.icon-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

/* Hero Section */
/* Hero Section */
.hero {
    background-color: #FAF9EB;
    padding: 90px 0 160px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
}

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

.hero-content h1 {
    font-size: 4.4rem;
    margin: 10px 0 20px 0;
    line-height: 1.1;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 580px;
    color: var(--text-muted);
}

/* Hero Action Buttons - Kidza Style */
.hero-btns-new {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
}

.cta-orange {
    background-color: #E25B36;
    box-shadow: 0 8px 20px rgba(226, 91, 54, 0.25);
    border: 2px solid #D14D28;
}

.cta-orange:hover {
    background-color: #D14D28;
    box-shadow: 0 12px 25px rgba(226, 91, 54, 0.4);
    transform: translateY(-3px);
}

/* Floating Hand-Drawn Background Elements */
.hero-doodles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.doodle {
    position: absolute;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.doodle:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.balloon-doodle {
    top: 25%;
    left: 3%;
    animation: float-slow 8s ease-in-out infinite alternate;
}

.car-doodle {
    top: 12%;
    left: 45%;
    animation: float-slow-ufo 10s ease-in-out infinite alternate;
}

.crown-doodle {
    top: 15%;
    right: 25%;
    animation: pulse-glow 6s ease-in-out infinite;
}

.tree-doodle {
    bottom: 50px;
    left: 36%;
    animation: float-slow 12s ease-in-out infinite alternate-reverse;
}

.squiggle-doodle {
    top: 45%;
    right: 3%;
    animation: pulse-glow 5s ease-in-out infinite;
}

/* Kids Cutout & Badge Layout */
.hero-kids-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 520px;
    z-index: 5;
    margin-right: -24px;
}

/* Tilted Admission Badge */
/* Admission Open Info Label */
.admission-status-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(226, 91, 54, 0.1);
    border: 1.5px solid rgba(226, 91, 54, 0.2);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    color: #E25B36;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(226, 91, 54, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #E25B36;
    border-radius: var(--radius-full);
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background-color: #E25B36;
    animation: status-pulse 1.8s ease-in-out infinite;
}

@keyframes status-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.8); opacity: 0; }
}

/* Google Reviews Layout (Image removed) */
.hero-reviews-blob {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 90%;
    height: 85%;
    background-color: var(--bg-blue);
    background-image: url('assets/hero_kids_bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
    z-index: 1;
    animation: blob-bounce 8s ease-in-out infinite alternate;
}

.review-card {
    position: absolute;
    background-color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--card-blue-border);
    box-shadow: var(--shadow-sm);
    z-index: 15;
    transition: all var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.review-card .stars {
    color: var(--yellow);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.review-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.card-top-left {
    top: 20px;
    left: -12%;
    width: 240px;
}

.card-top-right {
    top: 50px;
    right: -8%;
    width: 240px;
}

.card-mid-right {
    top: 180px;
    right: -12%;
    width: 290px;
}

/* Google Rating Box */
.google-rating-box {
    position: absolute;
    bottom: 50px;
    right: 38%;
    width: 270px;
    background-color: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--card-blue-border);
    box-shadow: var(--shadow-lg);
    z-index: 16;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

.google-rating-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(54, 173, 207, 0.25);
    border-color: var(--primary);
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-g-badge {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background-color: hsl(210, 29%, 16%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.reviews-count {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.rating-body {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0;
}

.rating-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.rating-star-icon {
    font-size: 1.6rem;
    color: var(--yellow);
    line-height: 1;
}

.rating-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1;
    margin-left: 2px;
}

.rating-link {
    align-self: flex-end;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.rating-link:hover {
    color: var(--secondary-hover);
}

.rating-link i {
    transition: transform var(--transition-fast);
}

.rating-link:hover i {
    transform: translateX(4px);
}

/* Keyframe Animations for Doodles */
@keyframes pulse-glow {
    0% { transform: scale(0.9); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(0.9); opacity: 0.4; }
}

@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(6deg); }
}

@keyframes float-slow-ufo {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    100% { transform: translate(-8px, 10px) rotate(-4deg); }
}

/* Bottom cloud-like wave divider */
.cloud-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 6;
}

.cloud-wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.location-content h2 {
    font-size: 2.8rem;
    margin: 15px 0 20px 0;
}

.location-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--bg-blue);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.highlight-item:hover .highlight-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.highlight-item h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Map card styling */
.location-map {
    position: relative;
}

.map-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--card-blue-border);
    background-color: var(--white);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* Floating info badge inside map */
.map-info-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 5;
    max-width: 280px;
}

.map-info-badge h4 {
    font-size: 1.2rem;
    margin: 8px 0;
    color: var(--text-dark);
}

.map-info-badge p {
    font-size: 0.88rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.map-info-badge p:last-child {
    margin-bottom: 0;
}

.map-info-badge i {
    color: var(--secondary);
}

/* Features / Services Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: transparent;
}

.feature-card.pink-theme {
    background-color: var(--bg-pink);
    border-color: var(--card-pink-border);
}
.feature-card.pink-theme::before {
    background-color: var(--secondary);
}

.feature-card.blue-theme {
    background-color: var(--bg-blue);
    border-color: var(--card-blue-border);
}
.feature-card.blue-theme::before {
    background-color: hsl(190, 80%, 45%);
}

.feature-card.purple-theme {
    background-color: var(--bg-purple);
    border-color: var(--card-purple-border);
}
.feature-card.purple-theme::before {
    background-color: var(--primary);
}

.feature-card.green-theme {
    background-color: var(--bg-green);
    border-color: var(--card-green-border);
}
.feature-card.green-theme::before {
    background-color: hsl(140, 60%, 45%);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--white);
}

.pink-theme .feature-icon { background-color: var(--secondary); }
.blue-theme .feature-icon { background-color: hsl(190, 80%, 45%); }
.purple-theme .feature-icon { background-color: var(--primary); }
.green-theme .feature-icon { background-color: hsl(140, 60%, 45%); }

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.read-more {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pink-theme .read-more { color: var(--secondary); }
.blue-theme .read-more { color: hsl(190, 80%, 45%); }
.purple-theme .read-more { color: var(--primary); }
.green-theme .read-more { color: hsl(140, 60%, 45%); }

.read-more i {
    transition: transform var(--transition-fast);
}

.feature-card:hover .read-more i {
    transform: translateX(4px);
}

/* About Section */
.about {
    padding: 60px 0 100px 0;
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--yellow-light);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    animation: float 4s ease-in-out infinite alternate;
}

.about-badge .count {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content h2 {
    font-size: 2.8rem;
    margin: 15px 0 20px 0;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.about-checkmarks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.checkmark-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.check-icon {
    width: 26px;
    height: 26px;
    border-radius: var(--radius-full);
    background-color: var(--yellow-light);
    color: var(--yellow-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* Wave Background Transitions */
.wave-bg-purple {
    background-color: var(--white);
    line-height: 0;
    width: 100%;
}

.wave-bg-purple svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Classes Section */
.classes {
    background-color: var(--primary);
    padding: 80px 0 100px 0;
}

.classes .section-header h2 {
    color: var(--white);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.class-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.25);
}

.class-card.featured {
    transform: translateY(-8px);
    border: 3px solid var(--yellow);
}

.class-card.featured:hover {
    transform: translateY(-14px);
}

.class-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.class-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.class-card:hover .class-img img {
    transform: scale(1.08);
}

.class-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.class-info {
    padding: 30px;
}

.class-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.class-info p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    height: 70px;
    overflow: hidden;
}

.class-meta {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.class-meta strong {
    color: var(--text-dark);
}

.class-btn {
    width: 100%;
    justify-content: center;
}

/* Wave Background White (Bottom of Classes) */
.wave-bg-white {
    background-color: var(--white);
    line-height: 0;
}

.wave-bg-white svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Why Choose Us Section */
.choose-us {
    padding: 80px 0;
    background-color: var(--white);
}

.choose-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.choose-us-content h2 {
    font-size: 2.8rem;
    margin: 15px 0 20px 0;
}

.choose-us-content p {
    margin-bottom: 35px;
}

/* Progress bars styling */
.progress-container {
    margin-bottom: 40px;
}

.progress-bar-group {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.progress-label .percentage {
    color: var(--secondary);
}

.progress-track {
    height: 12px;
    background-color: var(--bg-purple);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.25, 1);
}

.choose-us-images .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-img-large {
    grid-row: span 2;
    border-radius: var(--radius-lg);
    object-fit: cover;
    height: 420px;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.nested-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grid-img-sub {
    border-radius: var(--radius-md);
    object-fit: cover;
    height: 200px;
    width: 100%;
    box-shadow: var(--shadow-md);
}

/* Teachers Section */
.teachers {
    padding: 100px 0;
    background-color: var(--white);
}

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

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

.teacher-avatar-frame {
    width: 240px;
    height: 240px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto 25px auto;
    position: relative;
    border: 8px solid var(--bg-blue);
    box-shadow: var(--shadow-md);
}

.teacher-card:nth-child(2) .teacher-avatar-frame {
    border-color: var(--yellow-light);
}

.teacher-card:nth-child(3) .teacher-avatar-frame {
    border-color: var(--bg-pink);
}

.teacher-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.teacher-socials {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(360deg, rgba(54, 173, 207, 0.9) 0%, rgba(54, 173, 207, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: bottom var(--transition-normal);
}

.teacher-avatar-frame:hover .teacher-socials {
    bottom: 0;
}

.teacher-socials a {
    width: 36px;
    height: 36px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.teacher-socials a:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.teacher-card h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.teacher-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Statistics Banner Section */
.stats-banner {
    position: relative;
    background-color: var(--primary);
    padding: 100px 0;
    color: var(--white);
}

.wave-bg-purple-top,
.wave-bg-purple-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-bg-purple-top {
    top: 0;
}

.wave-bg-purple-top svg {
    display: block;
    width: 100%;
    height: 50px;
}

.wave-bg-purple-bottom {
    bottom: 0;
}

.wave-bg-purple-bottom svg {
    display: block;
    width: 100%;
    height: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 5;
}

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

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--yellow);
}

.stat-item .counter {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Opening Schedule & Quick Contact Section */
.schedule-contact-wrapper {
    padding: 100px 0;
    background: radial-gradient(circle at 80% 20%, hsl(140, 60%, 97%) 0%, var(--white) 90%);
}

.schedule-contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Opening Times Widget */
.opening-times-box {
    background-color: var(--yellow-light);
    border: 3px solid var(--yellow);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
}

.opening-times-box h3 {
    font-size: 2rem;
    margin: 15px 0 10px 0;
}

.opening-times-box p {
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.schedule-list {
    list-style: none;
    margin-bottom: 35px;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 1.05rem;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.closed-tag {
    color: var(--secondary);
    font-weight: 700;
}

/* Live status badge */
.live-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.live-status-badge.open {
    background-color: hsl(140, 60%, 90%);
    color: hsl(140, 60%, 25%);
}

.live-status-badge.closed {
    background-color: hsl(0, 100%, 94%);
    color: hsl(0, 100%, 35%);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    display: block;
}

.live-status-badge.open .status-dot {
    background-color: hsl(140, 60%, 45%);
    animation: pulse 1.5s infinite;
}

.live-status-badge.closed .status-dot {
    background-color: hsl(0, 100%, 50%);
}

/* Contact Form Widget */
.quick-contact-box {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.quick-contact-box h3 {
    font-size: 2.2rem;
    margin: 15px 0 10px 0;
}

.quick-contact-box p {
    margin-bottom: 35px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 20px;
    border: 2.5px solid var(--bg-purple);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b5c0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: hsl(260, 100%, 99%);
    box-shadow: 0 0 0 4px hsla(248, 80%, 63%, 0.1);
}

.alert-box {
    padding: 12px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-box.success {
    background-color: hsl(140, 60%, 90%);
    color: hsl(140, 60%, 25%);
    border: 1px solid hsl(140, 60%, 80%);
}

.alert-box.error {
    background-color: hsl(0, 100%, 94%);
    color: hsl(0, 100%, 35%);
    border: 1px solid hsl(0, 100%, 90%);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-purple);
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 50px auto 0 auto;
    position: relative;
}

.testimonials-slider {
    position: relative;
    height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-slow);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.testimonial-slide .rating {
    font-size: 1.1rem;
    color: var(--yellow);
    margin-bottom: 20px;
}

.testimonial-slide .quote {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.parent-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.parent-avatar {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--bg-purple);
}

.parent-info h4 {
    font-size: 1.15rem;
    line-height: 1.2;
}

.parent-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Slider Controls */
.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-full);
    background-color: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.prev-btn { left: -60px; }
.next-btn { right: -60px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: rgba(54, 173, 207, 0.2);
    display: block;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dots .dot.active {
    background-color: var(--primary);
    width: 28px;
}

/* Partner Logos Section */
.partners {
    background-color: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.partners-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.partner-logo i {
    font-size: 1.6rem;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.05);
}

/* Latest Blogs Section */
.blogs {
    padding: 100px 0;
    background-color: var(--white);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

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

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    height: 70px;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-footer span {
    color: var(--text-muted);
}

.read-more-link {
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.read-more-link i {
    transition: transform var(--transition-fast);
}

.blog-card:hover .read-more-link i {
    transform: translateX(4px);
}

/* Pre-footer Grass Decor */
.pre-footer-decor {
    line-height: 0;
    background-color: var(--white);
    overflow: hidden;
}

.grass-decor {
    width: 100%;
    height: 80px;
}

/* Footer Section */
.footer {
    background-color: hsl(210, 29%, 15%);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: var(--radius-full);
}

.footer-about .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.footer-socials a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-newsletter p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 60px 14px 20px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid transparent;
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    border-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--secondary-hover);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-policy-links {
    display: flex;
    gap: 20px;
}

.footer-policy-links a:hover {
    color: var(--yellow);
}


/* Keyframe Animations */
@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

@keyframes blob-bounce {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}


/* RESPONSIVE DESIGN (Media Queries) */

@media (max-width: 1024px) {
    html { font-size: 15px; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content p {
        margin: 0 auto 35px auto;
    }
    
    .hero-btns-new {
        justify-content: center;
    }
    
    .hero-kids-wrapper {
        justify-content: center;
        height: auto;
        margin-top: 40px;
        margin-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .review-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 320px;
        margin-bottom: 10px;
        box-sizing: border-box;
    }
    
    .google-rating-box {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 320px;
        margin-top: 10px;
        box-sizing: border-box;
    }
    
    .hero-reviews-blob {
        display: none;
    }
    

    
    .about-container,
    .choose-us-container,
    .location-container,
    .schedule-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image,
    .choose-us-images {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Drawer Toggle */
    .menu-toggle {
        display: block;
    }
    
    .nav-menu-wrapper {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 40px;
        gap: 30px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: left var(--transition-normal);
        overflow-y: auto;
    }
    
    .nav-menu-wrapper.open {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-actions .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .top-bar {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2.1rem;
    }
    
    .about-content h2,
    .choose-us-content h2 {
        font-size: 2.2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    
    .testimonial-slide {
        padding: 30px 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 580px) {
    .map-info-badge {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 15px;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        box-shadow: none;
        background-color: var(--white);
        border: none;
        border-top: 1.5px solid var(--card-blue-border);
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-btns-new {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    

    
    .about-checkmarks {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide .quote {
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Summer and Non-School Days Page Styles
   ========================================================================== */

.summer-hero {
    background-color: #FAF9EB;
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.summer-hero h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-top: 15px;
    margin-bottom: 20px;
}

.summer-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

.summer-hero .hero-doodles .balloon-doodle {
    top: 15%;
    left: 8%;
}

.summer-hero .hero-doodles .car-doodle {
    top: 55%;
    right: 8%;
}

.summer-hero .hero-doodles .tree-doodle {
    bottom: -10px;
    left: 20%;
}

.summer-hero .hero-doodles .crown-doodle {
    top: 15%;
    right: 20%;
}

.schedule-section {
    padding: 100px 0;
    background-color: var(--white);
}

.closures-section {
    padding: 100px 0;
    background-color: hsl(210, 60%, 97%);
}

/* Timeline Layout */
.timeline-container {
    max-width: 800px;
    margin: 50px auto 0 auto;
    position: relative;
    padding-left: 20px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 0;
    bottom: -40px;
    width: 4px;
    background-color: var(--card-blue-border);
    z-index: 1;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.timeline-content-card {
    background-color: var(--white);
    border: 1.5px solid var(--card-blue-border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    flex-grow: 1;
    transition: all var(--transition-normal);
    border-left: 6px solid currentColor;
}

.timeline-content-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.timeline-content-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.timeline-time-badge {
    display: inline-block;
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    background-color: var(--bg-blue);
    color: var(--primary);
    margin-bottom: 12px;
}

/* Colored timeline item helpers */
.time-purple { color: #6C55F9; }
.time-purple .timeline-time-badge { background-color: var(--bg-purple); color: #6C55F9; }

.time-blue { color: #36ADCF; }
.time-blue .timeline-time-badge { background-color: var(--bg-blue); color: #36ADCF; }

.time-green { color: #1E9E90; }
.time-green .timeline-time-badge { background-color: var(--bg-green); color: #1E9E90; }

.time-pink { color: #E25B36; }
.time-pink .timeline-time-badge { background-color: var(--bg-pink); color: #E25B36; }

.time-yellow { color: #D19400; }
.time-yellow .timeline-time-badge { background-color: var(--yellow-light); color: #D19400; }

/* Excursion notice card */
.excursion-alert-card {
    background-color: hsl(9, 100%, 97%);
    border: 2px dashed var(--secondary);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-sm);
}

.excursion-alert-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.excursion-alert-content h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.excursion-alert-content p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Closures grid & calendar cards */
.closures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.month-card {
    background-color: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.month-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: currentColor;
}

.month-header {
    background-color: currentColor;
    color: var(--white);
    padding: 14px 20px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.month-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.month-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.month-body li {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.month-body li:last-child {
    margin-bottom: 0;
}

.month-body li i {
    color: currentColor;
    font-size: 0.85rem;
}

.month-open-status {
    color: var(--text-muted);
    font-weight: 500;
    font-style: italic;
    text-align: center;
}

/* Color codes for calendar months */
.month-card.m-red { color: #E25B36; }
.month-card.m-purple { color: #6C55F9; }
.month-card.m-blue { color: #2B96B5; }
.month-card.m-green { color: #1E9E90; }
.month-card.m-yellow { color: #D19400; }

@media (max-width: 1024px) {
    .closures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline-container {
        padding-left: 0;
    }
    .timeline-item {
        gap: 16px;
    }
    .timeline-item::before {
        left: 22px;
    }
    .timeline-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    .excursion-alert-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 580px) {
    .closures-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Programs & Fees Page Styles
   ========================================================================== */

.pricing-section {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-section-alt {
    padding: 100px 0;
    background-color: hsl(210, 60%, 97%); /* soft blue background */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 50px auto 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border: 1.5px solid var(--card-blue-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* Featured styling for Kindergarten card */
.pricing-card.featured-pricing {
    border-color: #2EC4B6; /* Playful green border */
    box-shadow: 0 15px 30px -5px rgba(46, 196, 182, 0.15);
}

.pricing-card.featured-pricing:hover {
    border-color: #20806E;
    box-shadow: 0 20px 35px -5px rgba(46, 196, 182, 0.25);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.price-box {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background-color: var(--bg-blue);
    border-radius: var(--radius-md);
}

.price-box.alt-bg {
    background-color: var(--bg-pink);
}

.price-box .standard-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.price-box .price-tag {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-box.alt-bg .price-tag {
    color: var(--secondary);
}

.pricing-card p.card-desc {
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Schools List */
.served-schools-box {
    margin-top: 15px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.served-schools-box h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.school-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.school-list li {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.school-list li:last-child {
    margin-bottom: 0;
}

.school-list li i {
    color: #2EC4B6;
    font-size: 0.95rem;
}

/* Subsidy / Affordability Grant bubble highlight */
.grant-bubble {
    background-color: hsl(160, 50%, 96%); /* very soft green bg */
    border: 1.5px solid #2EC4B6;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 25px;
    position: relative;
}

.grant-bubble h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #20806E;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.grant-bubble p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}

.pricing-card .cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Responsive pricing layout breakpoints */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-grid .pricing-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing-grid-two {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid .pricing-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
}

/* ==========================================================================
   Pre-Registration Page Styles
   ========================================================================== */

.register-form-section {
    padding: 100px 0;
    background-color: hsl(210, 60%, 97%); /* soft blue background */
}

.register-form-container {
    background-color: var(--white);
    border: 1.5px solid var(--card-blue-border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.register-form fieldset {
    border: none;
    margin: 0 0 35px 0;
    padding: 0;
}

.register-form fieldset:last-of-type {
    margin-bottom: 25px;
}

.register-form legend {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-blue);
    padding-bottom: 6px;
    width: 100%;
}

.register-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

.register-form .form-group {
    display: flex;
    flex-direction: column;
}

.register-form .form-group.full-width {
    grid-column: span 2;
}

.register-form label {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.register-form input,
.register-form select,
.register-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all var(--transition-fast);
    background-color: var(--white);
}

.register-form input:focus,
.register-form select:focus,
.register-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(193, 63%, 51%, 0.15);
    background-color: var(--white);
}

.register-form textarea {
    resize: vertical;
}

.register-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A2B49' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.register-form .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.1rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .register-form-container {
        padding: 35px 24px;
    }
}

@media (max-width: 640px) {
    .register-form .form-grid {
        grid-template-columns: 1fr;
    }
    .register-form .form-group.full-width {
        grid-column: span 1;
    }
}

/* Multi-child Form additions */
.child-details-block {
    position: relative;
    padding: 25px;
    background-color: var(--white);
    border: 2px dashed var(--bg-purple);
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    transition: all var(--transition-normal);
}

.child-details-block:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.child-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1.5px solid var(--bg-blue);
    padding-bottom: 8px;
}

.child-block-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0;
}

.remove-child-btn {
    background: none;
    border: none;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    display: none; /* dynamically set by JS */
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.remove-child-btn:hover {
    background-color: hsl(0, 100%, 97%);
    color: hsl(0, 100%, 40%);
}

/* ==========================================================================
   Meet Our Staff Page Styles
   ========================================================================== */

.staff-section {
    padding: 100px 0;
    background-color: var(--white);
}

.staff-leadership-section {
    padding: 100px 0;
    background-color: hsl(210, 60%, 97%); /* soft blue background */
    position: relative;
}

.staff-leadership-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .staff-leadership-grid {
        grid-template-columns: 1fr;
    }
}

/* Featured Leader Card (Roxanne) */
.leader-card-featured {
    background-color: var(--white);
    border: 3.5px solid var(--yellow);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 35px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

@media (max-width: 768px) {
    .leader-card-featured {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
}

.leader-avatar-large {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: var(--radius-full);
    border: 6px solid var(--yellow-light);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.leader-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-content {
    flex-grow: 1;
}

.leader-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.staff-title-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.title-founder {
    background-color: var(--yellow-light);
    color: var(--yellow-dark);
}

.title-director {
    background-color: hsl(193, 63%, 90%);
    color: hsl(193, 63%, 25%);
}

.title-level3 {
    background-color: hsl(260, 60%, 92%);
    color: hsl(260, 60%, 35%);
}

.title-level1 {
    background-color: hsl(340, 60%, 93%);
    color: hsl(340, 60%, 35%);
}

.title-general {
    background-color: hsl(140, 60%, 90%);
    color: hsl(140, 60%, 25%);
}

.leader-accomplishments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.accomplishment-badge {
    background-color: hsl(210, 60%, 95%);
    border: 1px solid hsl(210, 60%, 85%);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.accomplishment-badge i {
    color: var(--primary);
}

.leader-quote-box {
    margin-top: 25px;
    padding: 15px 20px;
    border-left: 4px solid var(--secondary);
    background-color: var(--bg-pink);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    text-align: left;
}

.leader-quote-box p {
    font-style: italic;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.leader-quote-box cite {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

/* Secondary Leader Card (Arscent) */
.leader-card-sub {
    background-color: var(--white);
    border: 2.5px solid var(--card-blue-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100%;
}

.leader-avatar-medium {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-full);
    border: 5px solid var(--bg-blue);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.leader-avatar-medium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card-sub h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* Staff Bios Grid */
.staff-bios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .staff-bios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .staff-bios-grid {
        grid-template-columns: 1fr;
    }
}

/* Bios Card */
.bio-card {
    background-color: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-normal);
}

.bio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.bio-avatar {
    width: 125px;
    height: 125px;
    border-radius: var(--radius-full);
    border: 4px solid var(--bg-purple);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.bio-card:nth-child(even) .bio-avatar {
    border-color: var(--bg-pink);
}

.bio-card:nth-child(3n) .bio-avatar {
    border-color: var(--bg-blue);
}

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

.bio-card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.bio-text-container {
    position: relative;
    width: 100%;
}

.bio-text-wrapper {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 15px;
    font-weight: 500;
    text-align: left;
    transition: max-height 0.4s ease;
    overflow: hidden;
}

.bio-text-wrapper.clamped {
    max-height: 110px; /* clamp to approx 4 lines of text */
    position: relative;
}

/* Gradient fade overlay for clamped text */
.bio-text-wrapper.clamped::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.read-more-toggle {
    background: none;
    border: none;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-fast);
}

.read-more-toggle:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}



