/*
Theme Name: Kidshree School
Theme URI: https://kidshree.com
Author: Kidshree
Author URI: https://kidshree.com
Description: A modern, colorful, and fully responsive WordPress theme for Kidshree Kids School. Elementor compatible, SEO optimized, and built for easy customization.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kidshree-school
Tags: education, kids, school, elementor, responsive, customizer, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

Primary Color: #FF6B6B
Secondary Color: #4ECDC4
Accent Color: #FFD93D
*/

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

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #333333;
}

a { color: #FF6B6B; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #4ECDC4; }

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

ul, ol { list-style: none; }

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* === TOP BAR === */
.top-bar {
    background: #FF6B6B;
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar a { color: #ffffff; font-size: 13px; }
.top-bar a:hover { color: #FFD93D; }

.top-bar .dashicons { font-size: 14px; width: 14px; height: 14px; vertical-align: middle; margin-right: 4px; }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-icons a:hover { background: #FFD93D; color: #333 !important; }

/* === STICKY HEADER === */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

/* === LOGO === */
.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-branding img { max-height: 60px; width: auto; }

.site-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #FF6B6B;
    line-height: 1;
}

.site-title a { color: inherit; }
.site-title a:hover { color: #4ECDC4; }

.site-description {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
    font-family: 'Nunito', sans-serif;
}

/* === NAVIGATION === */
.main-navigation {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.main-navigation ul li { position: relative; }

.main-navigation ul li a {
    display: block;
    padding: 8px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current-page-ancestor > a {
    background: #FF6B6B;
    color: #ffffff;
}

/* Dropdown */
.main-navigation ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 8px;
    display: none;
    z-index: 100;
    flex-direction: column;
    gap: 2px;
}

.main-navigation ul li:hover > ul { display: flex; }
.main-navigation ul li ul li a { padding: 8px 12px; border-radius: 8px; color: #333; font-size: 13px; }
.main-navigation ul li ul li a:hover { background: #FF6B6B; color: #fff; }

/* CTA Button */
.header-cta {
    flex-shrink: 0;
}

.btn, .header-cta a, button[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary, .header-cta a {
    background: #FF6B6B;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.btn-primary:hover, .header-cta a:hover {
    background: #e55a5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.5);
    color: #fff;
}

.btn-secondary {
    background: #4ECDC4;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(78,205,196,0.4);
}

.btn-secondary:hover {
    background: #3dbdb4;
    transform: translateY(-2px);
    color: #fff;
}

.btn-accent {
    background: #FFD93D;
    color: #333333;
    box-shadow: 0 4px 15px rgba(255,217,61,0.4);
}

.btn-accent:hover {
    background: #fccf2a;
    transform: translateY(-2px);
    color: #333;
}

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

.btn-outline:hover {
    background: #FF6B6B;
    color: #fff;
}

/* === HAMBURGER === */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.menu-toggle:hover { background: #f5f5f5; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #333; border-radius: 2px; transition: all 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, #fff9f0 0%, #f0fffe 50%, #fff0f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78,205,196,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,217,61,0.2);
    color: #333;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid #FFD93D;
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span.highlight {
    color: #FF6B6B;
    position: relative;
}

.hero-title span.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255,217,61,0.5);
    z-index: -1;
    border-radius: 3px;
}

.hero-description {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat h3 {
    font-size: 28px;
    font-weight: 800;
    color: #FF6B6B;
}

.hero-stat p {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

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

.hero-image-wrapper img {
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
    max-height: 480px;
    object-fit: cover;
    width: 100%;
}

.hero-image-badge {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.hero-image-badge.badge-top-left { top: 20px; left: -20px; }
.hero-image-badge.badge-bottom-right { bottom: 30px; right: -20px; }

.hero-image-badge .badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.badge-icon.yellow { background: rgba(255,217,61,0.2); }
.badge-icon.pink { background: rgba(255,107,107,0.15); }
.badge-icon.teal { background: rgba(78,205,196,0.2); }

.badge-text strong { display: block; font-size: 16px; font-weight: 800; color: #333; }
.badge-text span { font-size: 12px; color: #666; }

/* === SECTION BASE === */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,107,107,0.1);
    color: #FF6B6B;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title span { color: #FF6B6B; }

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === BG VARIANTS === */
.bg-light { background: #f8f9ff; }
.bg-gradient { background: linear-gradient(135deg, #fff9f0 0%, #f0fffe 100%); }
.bg-primary { background: #FF6B6B; }
.bg-secondary { background: #4ECDC4; }
.bg-dark { background: #2d2d2d; color: #fff; }

/* === ABOUT SECTION === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper { position: relative; }
.about-image-wrapper img {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    width: 100%;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #FF6B6B;
    color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255,107,107,0.4);
    font-family: 'Poppins', sans-serif;
}

.about-experience-badge .years { font-size: 28px; font-weight: 800; line-height: 1; }
.about-experience-badge .text { font-size: 10px; font-weight: 600; text-align: center; line-height: 1.2; margin-top: 4px; }

.about-content { padding: 20px 0; }
.about-content .section-tag { justify-content: flex-start; }
.about-content .section-title { text-align: left; }

.about-text { font-size: 16px; color: #555; margin-bottom: 24px; line-height: 1.8; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.about-feature .check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(78,205,196,0.2);
    color: #4ECDC4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* === WHY CHOOSE US === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

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

.why-card:nth-child(3n+1) { border-bottom-color: #FF6B6B; }
.why-card:nth-child(3n+2) { border-bottom-color: #4ECDC4; }
.why-card:nth-child(3n+3) { border-bottom-color: #FFD93D; }

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.why-icon.pink { background: rgba(255,107,107,0.12); }
.why-icon.teal { background: rgba(78,205,196,0.12); }
.why-icon.yellow { background: rgba(255,217,61,0.2); }
.why-icon.purple { background: rgba(155,89,182,0.1); }
.why-icon.green { background: rgba(46,213,115,0.12); }
.why-icon.orange { background: rgba(255,165,2,0.12); }

.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #333; }
.why-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* === PROGRAMS SECTION === */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.program-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.program-card-thumb {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    position: relative;
    overflow: hidden;
}

.program-card-thumb.pink { background: linear-gradient(135deg, #ffe0e0 0%, #ffc8c8 100%); }
.program-card-thumb.teal { background: linear-gradient(135deg, #d4f5f3 0%, #a8ebe8 100%); }
.program-card-thumb.yellow { background: linear-gradient(135deg, #fff8d4 0%, #ffeea0 100%); }
.program-card-thumb.purple { background: linear-gradient(135deg, #ead5ff 0%, #d4b0ff 100%); }
.program-card-thumb.green { background: linear-gradient(135deg, #d4ffe0 0%, #a8f0be 100%); }
.program-card-thumb.orange { background: linear-gradient(135deg, #ffe8cc 0%, #ffd4a0 100%); }

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

.program-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #FF6B6B;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.program-card-body { padding: 24px; }
.program-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #333; }
.program-card-body p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 16px; }

.program-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.program-age {
    font-size: 13px;
    font-weight: 700;
    color: #4ECDC4;
    background: rgba(78,205,196,0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* === AGE GROUPS === */
.age-groups-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.age-group-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
    cursor: default;
}

.age-group-card:hover { transform: translateY(-6px); }
.age-group-emoji { font-size: 52px; margin-bottom: 16px; display: block; }
.age-group-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.age-group-card .age-range { font-size: 14px; color: #666; font-weight: 600; }

/* === TEACHERS === */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.teacher-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.teacher-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

.teacher-photo {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.teacher-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.teacher-card:hover .teacher-photo img { transform: scale(1.05); }

.teacher-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
}

.teacher-photo-placeholder.pink-bg { background: linear-gradient(135deg, #ffe0e0, #ffc8c8); }
.teacher-photo-placeholder.teal-bg { background: linear-gradient(135deg, #d4f5f3, #a8ebe8); }
.teacher-photo-placeholder.yellow-bg { background: linear-gradient(135deg, #fff8d4, #ffeea0); }
.teacher-photo-placeholder.purple-bg { background: linear-gradient(135deg, #ead5ff, #d4b0ff); }

.teacher-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: bottom 0.3s ease;
    white-space: nowrap;
}

.teacher-card:hover .teacher-social { bottom: 12px; }
.teacher-social a { font-size: 14px; color: #666; transition: color 0.2s; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #f5f5f5; }
.teacher-social a:hover { background: #FF6B6B; color: #fff; }

.teacher-info { padding: 20px; }
.teacher-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: #333; }
.teacher-role { font-size: 13px; color: #FF6B6B; font-weight: 600; margin-bottom: 8px; }
.teacher-exp { font-size: 12px; color: #888; }

/* === FACILITIES === */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.facility-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 240px;
    cursor: pointer;
}

.facility-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.facility-card:hover img { transform: scale(1.08); }

.facility-card-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: transform 0.4s;
}

.facility-card:hover .facility-card-bg { transform: scale(1.05); }

.facility-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: background 0.3s;
}

.facility-card:hover .facility-overlay { background: linear-gradient(to top, rgba(255,107,107,0.8) 0%, rgba(255,107,107,0.3) 60%); }
.facility-overlay h3 { color: #fff; font-size: 18px; font-weight: 700; }

/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

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

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

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

.gallery-item-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    transition: transform 0.4s;
}

.gallery-item:hover img, .gallery-item:hover .gallery-item-bg { transform: scale(1.08); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,107,107,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    font-size: 28px;
    color: #fff;
    opacity: 0;
}

.gallery-item:hover .gallery-item-overlay { background: rgba(255,107,107,0.5); opacity: 1; }

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-quote {
    font-size: 40px;
    line-height: 1;
    color: #FF6B6B;
    font-family: Georgia, serif;
    margin-bottom: 12px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B6B, #FFD93D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

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

.testimonial-author-info h4 { font-size: 15px; font-weight: 700; color: #333; margin-bottom: 2px; }
.testimonial-author-info span { font-size: 12px; color: #888; }

.testimonial-stars {
    margin-bottom: 8px;
    color: #FFD93D;
    font-size: 15px;
    letter-spacing: 1px;
}

/* Reviews Count Banner */
.reviews-banner {
    background: #FF6B6B;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.reviews-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.reviews-count { font-size: 42px; font-weight: 800; font-family: 'Poppins', sans-serif; }
.reviews-label { font-size: 16px; font-weight: 600; }
.reviews-stars { font-size: 24px; letter-spacing: 3px; color: #FFD93D; }

/* === FAQ === */
.faq-grid { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    gap: 16px;
}

.faq-question:hover { background: #fff9f9; }
.faq-question.active { color: #FF6B6B; }

.faq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #FF6B6B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question.active .faq-toggle { transform: rotate(45deg); }

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.faq-answer.open { padding: 0 24px 20px; max-height: 400px; }

/* === CONTACT SECTION === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: #FF6B6B;
    color: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    height: fit-content;
}

.contact-info-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 24px; color: #fff; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item-text strong { display: block; font-weight: 700; margin-bottom: 4px; font-size: 14px; }
.contact-item-text span { font-size: 14px; opacity: 0.85; }
.contact-item-text a { color: #fff; text-decoration: none; }

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.contact-form-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 24px; color: #333; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .form-group.full { grid-column: 1 / -1; }

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: #333;
    background: #fafafa;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 4px rgba(255,107,107,0.1);
    background: #fff;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    display: none;
    background: rgba(78,205,196,0.1);
    border: 1px solid #4ECDC4;
    color: #2a9d8f;
    padding: 12px 16px;
    border-radius: 12px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
}

/* Map */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-top: 48px;
}

.map-wrapper iframe, .map-wrapper .map-placeholder {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    background: linear-gradient(135deg, #4ECDC4 0%, #2a9d8f 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* === ADMISSION CTA === */
.admission-cta {
    background: linear-gradient(135deg, #FF6B6B 0%, #ff4757 100%);
    padding: 70px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.admission-cta::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.admission-cta::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.admission-cta h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.admission-cta p { font-size: 17px; opacity: 0.9; margin-bottom: 32px; position: relative; z-index: 1; }
.admission-cta .btn-accent { font-size: 16px; padding: 14px 36px; position: relative; z-index: 1; }

/* === ACTIVITIES === */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.activity-item {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
    cursor: default;
}

.activity-item:hover { transform: translateY(-6px); }
.activity-emoji { font-size: 40px; margin-bottom: 12px; display: block; }
.activity-item h4 { font-size: 13px; font-weight: 700; color: #333; }

/* === FOOTER === */
.site-footer {
    background: #1a1a2e;
    color: #aaa;
}

.footer-top {
    padding: 70px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: #FF6B6B;
    border-radius: 2px;
}

.footer-about-text { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: #aaa; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover { background: #FF6B6B; color: #fff; transform: translateY(-2px); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links li a::before { content: '›'; color: #FF6B6B; font-size: 16px; }
.footer-links li a:hover { color: #FF6B6B; padding-left: 6px; }

.footer-contact-list { list-style: none; }
.footer-contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #aaa;
}

.footer-contact-list li strong { display: block; color: #ddd; font-size: 12px; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-contact-list li a { color: #aaa; text-decoration: none; }
.footer-contact-list li a:hover { color: #FF6B6B; }
.footer-contact-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #666;
}

.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: #FF6B6B; }

/* === PAGE TEMPLATES === */
.page-hero {
    background: linear-gradient(135deg, #fff0f0 0%, #f0fffe 100%);
    padding: 70px 0 50px;
    text-align: center;
    border-bottom: 3px solid rgba(255,107,107,0.1);
}

.page-hero h1 { font-size: 40px; font-weight: 800; color: #333; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: #666; max-width: 500px; margin: 0 auto; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin-top: 14px;
}

.breadcrumb a { color: #FF6B6B; text-decoration: none; }
.breadcrumb .sep { color: #ccc; }
.breadcrumb .current { color: #333; font-weight: 600; }

/* === BLOG === */
.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.post-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    margin-bottom: 28px;
    transition: transform 0.3s;
}

.post-card:hover { transform: translateY(-4px); }

.post-card-thumb { height: 220px; overflow: hidden; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-card-thumb img { transform: scale(1.05); }

.post-card-body { padding: 24px; }
.post-card-meta { display: flex; gap: 16px; font-size: 13px; color: #888; margin-bottom: 12px; }
.post-card-meta a { color: #FF6B6B; }
.post-card-body h2, .post-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #333; }
.post-card-body h2 a, .post-card-body h3 a { color: #333; }
.post-card-body h2 a:hover, .post-card-body h3 a:hover { color: #FF6B6B; }
.post-card-body p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 16px; }
.post-card-body .read-more { font-size: 14px; font-weight: 700; color: #FF6B6B; }
.post-card-body .read-more:hover { color: #4ECDC4; }

/* === SIDEBAR === */
.widget-area { position: sticky; top: 100px; }
.widget { background: #fff; border-radius: 16px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.widget-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #FF6B6B; color: #333; }
.widget ul { list-style: none; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: 14px; }
.widget ul li a { color: #555; }
.widget ul li a:hover { color: #FF6B6B; }
.widget ul li:last-child { border-bottom: none; }
.widget .search-form { display: flex; gap: 8px; }
.widget .search-field { flex: 1; padding: 10px 14px; border: 2px solid #f0f0f0; border-radius: 10px; font-size: 14px; outline: none; }
.widget .search-field:focus { border-color: #FF6B6B; }
.widget .search-submit { padding: 10px 16px; background: #FF6B6B; color: #fff; border: none; border-radius: 10px; cursor: pointer; font-weight: 600; font-size: 14px; }

/* === SINGLE POST === */
.entry-content { max-width: 740px; }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 { margin: 28px 0 14px; color: #333; }
.entry-content p { font-size: 16px; color: #555; margin-bottom: 20px; line-height: 1.8; }
.entry-content ul, .entry-content ol { margin: 16px 0 20px 24px; font-size: 16px; color: #555; }
.entry-content li { margin-bottom: 8px; }
.entry-content img { border-radius: 16px; margin: 24px 0; }
.entry-content blockquote { border-left: 4px solid #FF6B6B; padding: 16px 24px; background: #fff9f9; border-radius: 0 12px 12px 0; margin: 24px 0; font-style: italic; color: #555; }
.entry-content a { color: #FF6B6B; text-decoration: underline; }

.single-post-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; padding: 60px 0; }

.post-meta-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin: 20px 0 28px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; }
.post-meta-item { font-size: 13px; color: #888; display: flex; align-items: center; gap: 6px; }
.post-meta-item a { color: #FF6B6B; }

.post-navigation { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid #f0f0f0; }
.nav-link { flex: 1; padding: 20px; background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: transform 0.3s; }
.nav-link:hover { transform: translateY(-4px); }
.nav-link.next-post { text-align: right; }
.nav-link .nav-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 6px; display: block; }
.nav-link .nav-title { font-size: 15px; font-weight: 700; color: #333; }

/* === 404 PAGE === */
.error-404-page { text-align: center; padding: 100px 0; }
.error-404-page .error-number { font-size: 140px; font-weight: 900; color: #FF6B6B; line-height: 1; opacity: 0.2; font-family: 'Poppins', sans-serif; }
.error-404-page h2 { font-size: 28px; font-weight: 800; color: #333; margin-bottom: 12px; }
.error-404-page p { font-size: 16px; color: #666; margin-bottom: 28px; }

/* === SEARCH === */
.search-result-count { font-size: 14px; color: #666; margin-bottom: 28px; background: #f8f8f8; padding: 12px 16px; border-radius: 10px; }
.search-result-count strong { color: #FF6B6B; }

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #333;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: all 0.2s;
}

.pagination .page-numbers:hover, .pagination .page-numbers.current {
    background: #FF6B6B;
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,107,107,0.4);
}

/* === SCROLL TO TOP === */
.scroll-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: #FF6B6B;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    border: none;
    text-decoration: none;
}

.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { background: #e55a5a; transform: translateY(-3px); color: #fff; }

/* === COMMENTS === */
.comments-area { margin-top: 48px; padding-top: 40px; border-top: 1px solid #f0f0f0; }
.comments-area h2 { font-size: 22px; font-weight: 800; color: #333; margin-bottom: 24px; }
.comment-list { list-style: none; }
.comment-body { padding: 20px; background: #fff; border-radius: 16px; margin-bottom: 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment-author img { border-radius: 50%; }
.comment-meta { font-size: 12px; color: #888; margin-bottom: 8px; }
.comment-content p { font-size: 14px; color: #555; line-height: 1.7; }
.comment-reply-link { font-size: 13px; font-weight: 700; color: #FF6B6B; }
.comment-respond { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); margin-top: 32px; }
.comment-respond h3 { font-size: 20px; font-weight: 800; color: #333; margin-bottom: 20px; }
.comment-form .form-group { margin-bottom: 16px; }
.comment-form p label { display: block; font-size: 13px; font-weight: 700; color: #333; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea { width: 100%; padding: 12px 16px; border: 2px solid #f0f0f0; border-radius: 12px; font-size: 15px; outline: none; transition: border-color 0.3s; font-family: 'Nunito', sans-serif; }
.comment-form input:focus, .comment-form textarea:focus { border-color: #FF6B6B; }
.comment-form textarea { resize: vertical; min-height: 120px; }
.comment-form input[type="submit"] { background: #FF6B6B; color: #fff; border: none; padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'Poppins', sans-serif; transition: all 0.3s; }
.comment-form input[type="submit"]:hover { background: #e55a5a; transform: translateY(-2px); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .age-groups-grid { grid-template-columns: repeat(2, 1fr); }
    .teachers-grid { grid-template-columns: repeat(2, 1fr); }
    .activities-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .single-post-layout { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .facilities-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 40px;
        box-shadow: 4px 0 30px rgba(0,0,0,0.12);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 9997;
    }
    .main-navigation.open { left: 0; }
    .main-navigation ul { flex-direction: column; width: 100%; gap: 0; }
    .main-navigation ul li ul { position: static; display: none; box-shadow: none; border-radius: 0; padding: 0 0 0 16px; }
    .main-navigation ul li:hover > ul { display: flex; }
    .main-navigation ul li a { padding: 12px 16px; border-radius: 12px; font-size: 15px; width: 100%; }
    .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 9996; }
    .nav-overlay.visible { display: block; }
    .top-bar { display: none; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .hero-image-badge { display: none; }
    .why-grid, .programs-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .facilities-grid { grid-template-columns: 1fr; }
    .activities-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; height: 180px; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .post-navigation { flex-direction: column; }
    .teachers-grid { grid-template-columns: 1fr 1fr; }
    .age-groups-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 60px 0; }
    .page-hero h1 { font-size: 28px; }
}

@media (max-width: 480px) {
    .header-cta { display: none; }
    .teachers-grid, .age-groups-grid { grid-template-columns: 1fr; }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr; }
    .reviews-banner .container { flex-direction: column; gap: 8px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}
