        /* ========================================
   KidsBeyond - Main Stylesheet
   Colors: Purple #5B2D8E, Pink #E91E8C, Teal #00BCD4, Yellow #FFD600
   ======================================== */

:root {
    --purple: #5B2D8E;
    --purple-dark: #3d1d64;
    --purple-light: #7B4DB5;
    --pink: #E91E8C;
    --pink-light: #ff6ec7;
    --teal: #00BCD4;
    --yellow: #FFD600;
    --yellow-light: #FFF176;
    --white: #ffffff;
    --off-white: #fdf8ff;
    --text-dark: #1a0a3a;
    --text-gray: #5a5a7a;
    --shadow: 0 8px 30px rgba(91,45,142,0.15);
    --shadow-lg: 0 20px 60px rgba(91,45,142,0.2);
    --radius: 20px;
    --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--purple-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.82rem;
    font-weight: 600;
}
.top-bar-content {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar-content span { display: flex; align-items: center; gap: 6px; }
.top-bar-content i { color: var(--yellow); }

/* ---- HEADER ---- */
.main-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(91,45,142,0.1);
    transition: all 0.3s ease;
}
.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(91,45,142,0.2);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
}
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav ul li a {
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--purple);
    background: rgba(91,45,142,0.08);
}
.btn-enroll {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 15px rgba(233,30,140,0.3);
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.btn-enroll:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(233,30,140,0.4) !important;
    background: linear-gradient(135deg, var(--purple), var(--pink)) !important;
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { cursor: pointer; }
.dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 999;
    border-top: 3px solid var(--pink);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(91,45,142,0.06);
}
.dropdown li a i { color: var(--pink); width: 16px; }
.dropdown li a:hover { background: rgba(91,45,142,0.05) !important; padding-left: 24px !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--purple);
    border-radius: 3px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ---- HERO SECTION ---- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, #8e2d6e 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
}
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}
.shape-1 { width: 400px; height: 400px; background: var(--yellow); top: -100px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; background: var(--pink); bottom: -80px; left: 10%; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; background: var(--teal); top: 40%; right: 5%; animation-delay: 4s; }
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-text { color: white; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,214,0,0.2);
    border: 1px solid rgba(255,214,0,0.4);
    color: var(--yellow);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease both;
}
.hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease 0.2s both;
}
.hero h1 span { color: var(--yellow); }
.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.4s both;
}
.btn-primary {
    background: linear-gradient(135deg, var(--yellow), #ffaa00);
    color: var(--purple-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(255,214,0,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,214,0,0.5); }
.btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-image-wrap img {
    border-radius: 30px;
    max-height: 480px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.2);
}
.hero-stat-cards {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 12px;
    left: -30px;
    bottom: 30px;
}
.stat-card {
    background: white;
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    animation: bounceIn 0.6s ease both;
}
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.stat-card:nth-child(1) .stat-icon { background: rgba(233,30,140,0.1); color: var(--pink); }
.stat-card:nth-child(2) .stat-icon { background: rgba(0,188,212,0.1); color: var(--teal); }
.stat-num { font-family: 'Baloo 2', cursive; font-size: 1.3rem; font-weight: 800; color: var(--purple); }
.stat-label { font-size: 0.75rem; color: var(--text-gray); font-weight: 600; }

/* ---- SECTIONS COMMON ---- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(91,45,142,0.08);
    color: var(--purple);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}
.section-header h2 span { color: var(--pink); }
.section-header p {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--yellow));
    border-radius: 4px;
    margin: 12px auto 0;
}

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--off-white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.why-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(91,45,142,0.1), rgba(233,30,140,0.1));
    color: var(--purple);
    transition: all 0.3s;
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--purple), var(--pink)); color: white; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-dark); }
.why-card p { color: var(--text-gray); font-size: 0.92rem; line-height: 1.6; }

/* ---- PROGRAMS PREVIEW ---- */
.programs-section { background: white; }
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.program-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    background: white;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.program-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.program-card:hover .program-card-img img { transform: scale(1.06); }
.program-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: white;
    color: var(--purple);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}
.program-card-body { padding: 22px; }
.program-card-body h3 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 6px; }
.program-card-body .age { font-size: 0.8rem; color: var(--pink); font-weight: 700; margin-bottom: 10px; }
.program-card-body p { color: var(--text-gray); font-size: 0.88rem; line-height: 1.5; margin-bottom: 16px; }
.program-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--purple); font-weight: 700; font-size: 0.88rem;
}
.program-link:hover { color: var(--pink); gap: 10px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: white;
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='2'/%3E%3C/svg%3E") repeat;
}
.testimonials-section .section-tag { background: rgba(255,255,255,0.1); color: var(--yellow); }
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .section-header p { color: rgba(255,255,255,0.7); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.3s, background 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.12); }
.quote-icon { font-size: 2.5rem; color: var(--yellow); margin-bottom: 16px; opacity: 0.8; }
.testimonial-card p { color: rgba(255,255,255,0.85); line-height: 1.7; font-size: 0.95rem; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; color: white;
}
.author-info strong { display: block; font-size: 0.95rem; }
.author-info span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.stars { color: var(--yellow); font-size: 0.8rem; margin-top: 3px; }

/* ---- CTA STRIP ---- */
.cta-strip {
    background: linear-gradient(135deg, var(--pink), #c2185b);
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '🌟 🎨 📚 🎵 🏃 🌈';
    position: absolute;
    top: 10px;
    left: 0; right: 0;
    font-size: 1.5rem;
    opacity: 0.15;
    letter-spacing: 20px;
}
.cta-strip h2 { font-size: 2.2rem; margin-bottom: 10px; }
.cta-strip p { opacity: 0.9; margin-bottom: 28px; font-size: 1.05rem; }
.cta-strip .btn-primary { background: white; color: var(--pink); }
.cta-strip .btn-primary:hover { background: var(--yellow); color: var(--purple-dark); }

/* ---- ABOUT PAGE ---- */
.page-hero {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 50px;
    background: var(--off-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { font-size: 3rem; margin-bottom: 14px; }
.page-hero p { font-size: 1.1rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 0.9rem; opacity: 0.8;
}
.breadcrumb a { opacity: 0.7; }
.breadcrumb a:hover { opacity: 1; }

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.about-img-badge {
    position: absolute;
    bottom: -16px; right: -16px;
    background: var(--yellow);
    color: var(--purple-dark);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    text-align: center;
    font-family: 'Baloo 2', cursive;
    box-shadow: var(--shadow);
}
.about-img-badge .num { font-size: 2rem; font-weight: 800; display: block; }
.about-img-badge .label { font-size: 0.8rem; font-weight: 700; }
.about-text { }
.about-text h2 { font-size: 2.2rem; margin-bottom: 18px; }
.about-text p { color: var(--text-gray); line-height: 1.8; margin-bottom: 16px; font-size: 0.98rem; }

.quotes-section { background: white; padding: 80px 0; }
.quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.quote-card {
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
}
.quote-card:nth-child(odd) { background: linear-gradient(135deg, var(--purple), var(--purple-light)); color: white; }
.quote-card:nth-child(even) { background: linear-gradient(135deg, #fff8e1, #fff3e0); }
.quote-card::before {
    content: '\201C';
    position: absolute;
    top: -20px; left: 20px;
    font-size: 8rem;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}
.quote-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
}
.quote-card cite { font-size: 0.85rem; font-weight: 700; opacity: 0.8; }
.quote-card:nth-child(even) blockquote { color: var(--purple-dark); }
.quote-card:nth-child(even) cite { color: var(--pink); }

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 80px 0;
}
.vm-card {
    border-radius: var(--radius);
    padding: 40px;
    background: white;
    box-shadow: var(--shadow);
    text-align: center;
}
.vm-card .vm-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}
.vm-card:nth-child(1) .vm-icon { background: linear-gradient(135deg, var(--purple), var(--pink)); color: white; }
.vm-card:nth-child(2) .vm-icon { background: linear-gradient(135deg, var(--teal), var(--yellow)); color: white; }
.vm-card h3 { font-size: 1.5rem; margin-bottom: 14px; color: var(--text-dark); }
.vm-card p { color: var(--text-gray); line-height: 1.7; }

.team-section { background: var(--off-white); padding: 80px 0; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.value-item {
    text-align: center;
    background: white;
    border-radius: var(--radius-sm);
    padding: 28px 20px;
    box-shadow: 0 4px 20px rgba(91,45,142,0.08);
    transition: transform 0.3s;
}
.value-item:hover { transform: translateY(-5px); }
.value-emoji { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.value-item h4 { font-size: 1rem; color: var(--purple); margin-bottom: 6px; }
.value-item p { font-size: 0.85rem; color: var(--text-gray); line-height: 1.5; }

/* ---- PROGRAMS PAGE ---- */
.program-detail {
    padding: 70px 0;
    border-bottom: 1px solid rgba(91,45,142,0.1);
}
.program-detail:last-child { border-bottom: none; }
.program-detail:nth-child(even) .program-detail-grid { direction: rtl; }
.program-detail:nth-child(even) .program-detail-grid > * { direction: ltr; }
.program-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.program-detail-img img {
    border-radius: var(--radius);
    width: 100%;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 380px;
}
.program-color-1 { --prog-color: var(--pink); }
.program-color-2 { --prog-color: var(--teal); }
.program-color-3 { --prog-color: var(--purple); }
.program-color-4 { --prog-color: #FF7043; }
.program-detail-tag {
    display: inline-block;
    background: rgba(0,0,0,0.05);
    color: var(--prog-color);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid var(--prog-color);
}
.program-detail-content h2 { font-size: 2rem; margin-bottom: 8px; }
.age-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--off-white);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 18px;
}
.program-detail-content p { color: var(--text-gray); line-height: 1.8; margin-bottom: 14px; }
.program-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0 26px;
}
.program-features li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 0.9rem; font-weight: 600; color: var(--text-dark);
}
.program-features li i { color: var(--prog-color); margin-top: 2px; font-size: 0.85rem; }
.inquiry-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 0.95rem;
    background: var(--prog-color);
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
    border: none; cursor: pointer;
}
.inquiry-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); opacity: 0.9; }

/* ---- INQUIRY PAGE ---- */
.inquiry-section { padding: 80px 0; }
.inquiry-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 12px 28px;
    border-radius: 40px;
    border: 2px solid var(--purple);
    background: white;
    color: var(--purple);
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex; align-items: center; gap: 8px;
    font-family: 'Nunito', sans-serif;
}
.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white; border-color: transparent;
    box-shadow: 0 6px 20px rgba(91,45,142,0.3);
    transform: translateY(-2px);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeInUp 0.4s ease; }
.inquiry-form-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--pink);
}
.inquiry-form-wrap h3 { font-size: 1.6rem; margin-bottom: 6px; color: var(--text-dark); }
.inquiry-form-wrap .sub { color: var(--text-gray); font-size: 0.92rem; margin-bottom: 32px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 7px;
}
.form-group label span { color: var(--pink); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(91,45,142,0.15);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--off-white);
    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: var(--purple);
    box-shadow: 0 0 0 3px rgba(91,45,142,0.1);
    background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.rating-group label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 10px; }
.star-rating { display: flex; gap: 8px; }
.star-rating input[type="radio"] { display: none; }
.star-rating label {
    font-size: 2rem;
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label { color: var(--yellow); }
.star-rating { flex-direction: row-reverse; }
.star-rating label:hover, .star-rating label:hover ~ label { color: var(--yellow); }

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    border: none;
    border-radius: 40px;
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(91,45,142,0.3);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(91,45,142,0.4); }
.success-msg, .error-msg {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
}
.success-msg { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.error-msg { background: #ffebee; color: #c62828; border-left: 4px solid #ef5350; }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 14px; }
.contact-info p { color: var(--text-gray); line-height: 1.7; margin-bottom: 32px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(91,45,142,0.06);
    transition: transform 0.3s;
}
.contact-item:hover { transform: translateX(5px); }
.contact-item-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.ci-purple { background: rgba(91,45,142,0.1); color: var(--purple); }
.ci-pink { background: rgba(233,30,140,0.1); color: var(--pink); }
.ci-teal { background: rgba(0,188,212,0.1); color: var(--teal); }
.ci-yellow { background: rgba(255,214,0,0.15); color: #f57f17; }
.contact-item-body strong { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 4px; }
.contact-item-body span, .contact-item-body a {
    font-size: 0.9rem; color: var(--text-gray);
}
.contact-item-body a:hover { color: var(--purple); }
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
}
.map-wrap iframe { width: 100%; height: 300px; border: none; }
.contact-form-card {
    background: white;
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--teal);
}
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-card p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 30px; }

/* ---- ADMIN ---- */
.admin-body { background: #f0f2f8; min-height: 100vh; }
.admin-login-wrap {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
}
.admin-login-card {
    background: white;
    border-radius: var(--radius);
    padding: 50px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    text-align: center;
}
.admin-login-card img { height: 70px; margin-bottom: 24px; }
.admin-login-card h2 { font-size: 1.6rem; margin-bottom: 6px; color: var(--text-dark); }
.admin-login-card p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 32px; }
.admin-nav {
    background: white;
    border-bottom: 1px solid rgba(91,45,142,0.1);
    padding: 14px 30px;
    display: flex; align-items: center; justify-content: space-between;
}
.admin-nav img { height: 50px; }
.admin-nav-links { display: flex; gap: 12px; align-items: center; }
.admin-nav-links a { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); padding: 6px 14px; border-radius: 20px; }
.admin-nav-links a:hover { background: rgba(91,45,142,0.08); color: var(--purple); }
.admin-nav-links a.logout { color: var(--pink); }
.admin-container { max-width: 1200px; margin: 30px auto; padding: 0 20px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.admin-stat-card {
    background: white;
    border-radius: var(--radius-sm);
    padding: 24px;
    box-shadow: 0 4px 15px rgba(91,45,142,0.08);
    display: flex; align-items: center; gap: 16px;
    border-left: 4px solid var(--purple);
}
.admin-stat-card:nth-child(2) { border-color: var(--pink); }
.admin-stat-card:nth-child(3) { border-color: var(--teal); }
.admin-stat-card:nth-child(4) { border-color: var(--yellow); }
.admin-stat-icon { font-size: 1.8rem; }
.admin-stat-num { font-family: 'Baloo 2', cursive; font-size: 1.8rem; font-weight: 800; color: var(--text-dark); }
.admin-stat-label { font-size: 0.82rem; color: var(--text-gray); font-weight: 600; }
.admin-table-card {
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(91,45,142,0.08);
    overflow: hidden;
    margin-bottom: 30px;
}
.admin-table-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(91,45,142,0.08);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.admin-table-header h3 { font-size: 1.1rem; color: var(--text-dark); }
.filter-tabs { display: flex; gap: 8px; }
.filter-tab {
    padding: 6px 14px; border-radius: 20px;
    border: 1px solid rgba(91,45,142,0.2);
    background: white; font-size: 0.82rem; font-weight: 700;
    cursor: pointer; color: var(--text-gray);
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
}
.filter-tab.active, .filter-tab:hover { background: var(--purple); color: white; border-color: var(--purple); }
table { width: 100%; border-collapse: collapse; }
thead th {
    background: var(--off-white);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(91,45,142,0.08);
}
tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(91,45,142,0.05);
    font-size: 0.88rem;
    color: var(--text-dark);
    vertical-align: middle;
}
tbody tr:hover { background: rgba(91,45,142,0.02); }
tbody tr:last-child td { border-bottom: none; }
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}
.badge-new { background: rgba(233,30,140,0.1); color: var(--pink); }
.badge-read { background: rgba(0,188,212,0.1); color: var(--teal); }
.badge-resolved { background: rgba(76,175,80,0.1); color: #2e7d32; }
.type-badge { background: rgba(91,45,142,0.08); color: var(--purple); }

/* ---- FOOTER ---- */
.site-footer { background: white; }
.footer-waves svg { display: block; }
.footer-main { background: #1a0a4a; padding: 60px 0 30px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-logo { height: 60px; margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.9rem;
    transition: all 0.3s;
}
.social-links a:hover { background: var(--pink); transform: translateY(-3px); }
.footer-col h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,214,0,0.3);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.3s;
}
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-col ul li a i { font-size: 0.7rem; color: var(--pink); }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    margin-bottom: 14px;
    line-height: 1.5;
}
.footer-contact-item i { color: var(--yellow); margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
    background: #10042e;
    padding: 18px 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}
.footer-bottom i { color: var(--pink); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.8); }
    70% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-image-wrap { order: -1; }
    .hero h1 { font-size: 2.4rem; }
    .hero-btns { justify-content: center; }
    .hero-stat-cards { left: 0; flex-direction: row; bottom: -20px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .vision-mission { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .program-detail-grid { grid-template-columns: 1fr; }
    .program-detail:nth-child(even) .program-detail-grid { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .quotes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-bar-content { font-size: 0.75rem; gap: 12px; }
    .hamburger { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: white;
        padding: 80px 30px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.2);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav ul li a { display: block; border-radius: var(--radius-sm); }
    .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; background: rgba(91,45,142,0.04); margin-top: 4px; }
    .why-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .inquiry-form-wrap { padding: 30px 20px; }
    .contact-form-card { padding: 30px 20px; }
    .hero h1 { font-size: 2rem; }
    .page-hero h1 { font-size: 2rem; }
}
    