/*
Theme Name: Fsms-2026
Theme URI: https://example.com/fsms-2026
Author: Fsms Team
Author URI: https://example.com
Description: Fsms-2026 is a vibrant, kid-friendly Montessori / pre-school WordPress theme with full Customizer support, ACF compatibility, Contact Form 7 ready, custom page templates (Home, About, Services, Contact, Blog, 404), responsive layout and rich illustrative animations.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
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: fsms-2026
Tags: education, blog, custom-logo, custom-menu, custom-colors, featured-images, threaded-comments, translation-ready, full-width-template, theme-options, two-columns, right-sidebar
*/

/* ================================================================
   Fsms-2026 — Core Styles (Montessori theme)
   ================================================================ */

:root {
    --purple: #5b4a9d;
    --purple-deep: #4b3d84;
    --purple-soft: #c5b8e6;
    --cream: #f7ead0;
    --cream-deep: #f1dfb4;
    --orange: #f4a45d;
    --orange-soft: #f7b779;
    --green: #8cc54a;
    --green-leaf: #6faf3a;
    --green-field: #7aa850;
    --pink: #f4a3b8;
    --yellow: #f8d96b;
    --sky: #6fb7d6;
    --text: #2c2550;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Quicksand', ui-sans-serif, system-ui, sans-serif;
    font-weight: 500;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }

.display { font-family: 'Fredoka', 'Quicksand', sans-serif; font-weight: 600; letter-spacing: -0.01em; }
.text-white { color: #fff !important; }
.text-center { text-align: center; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 26px; font-weight: 600; font-size: 15px; border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.btn-pill:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18); }
.btn-pill:active { transform: translateY(-1px); }
.btn-primary { background: var(--purple-deep); color: #fff; }
.btn-primary:hover { background: var(--purple); }
.btn-green { background: var(--green); color: #fff; padding: 14px 30px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }
.btn-green:hover { background: var(--green-leaf); }
.btn-outline { border: 2px solid rgba(255, 255, 255, 0.8); color: #fff; background: transparent; padding: 12px 28px; }
.btn-outline:hover { background: #fff; color: var(--purple-deep); }
.btn-orange { background: var(--orange); color: #fff; padding: 14px 30px; }
.btn-orange:hover { background: var(--orange-soft); }

/* ============ NAVBAR ============ */
.navbar-wrap {
    position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
    z-index: 50; width: min(1200px, 94%);
}
.navbar {
    background: #efe9f7; border-radius: 28px; padding: 12px 20px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 10px 30px rgba(60, 30, 120, 0.18);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { display: grid; place-items: center; overflow: hidden; }
.brand-logo img { width: 100px; height: auto; }
.brand-name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 18px; color: var(--purple-deep); line-height: 1; }
.brand-name span { color: var(--orange); }
.brand-tag { font-size: 9px; letter-spacing: 0.22em; color: rgba(75, 61, 132, 0.8); font-weight: 600; margin-top: 3px; }

.nav-links { display: none; gap: 28px; font-size: 15px; color: var(--purple-deep); font-weight: 600; }
.nav-links a { position: relative; transition: color 0.2s ease; }
.nav-links a::after { content: ''; position: absolute; left: 50%; bottom: -6px; width: 0; height: 3px; background: var(--orange); border-radius: 2px; transition: width 0.25s ease, left 0.25s ease; }
.nav-links a:hover::after,
.nav-links li.current-menu-item > a::after { width: 80%; left: 10%; }
.nav-links li { display: inline-flex; }

.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-right .btn { padding: 10px 20px; }
.nav-toggle { width: 44px; height: 44px; border-radius: 14px; background: #fff; display: flex; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2.5px; background: var(--purple-deep); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    display: none; flex-direction: column; gap: 12px; margin-top: 8px; padding: 16px;
    background: #efe9f7; border-radius: 20px; box-shadow: 0 10px 30px rgba(60, 30, 120, 0.18);
}
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.btn-primary) { padding: 10px 6px; color: var(--purple-deep); font-weight: 600; }
.mobile-menu .btn { width: 100%; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }

@media (min-width: 1024px) {
    .nav-links { display: flex; }
    .nav-toggle { display: none; }
}
@media (max-width: 639px) { .nav-right .btn { display: none; } }

/* ============ WAVE DIVIDERS ============ */
.wave-bottom-cream, .wave-bottom-green, .wave-bottom-orange, .wave-bottom-purple { position: relative; }
.wave-bottom-cream::after, .wave-bottom-green::after, .wave-bottom-orange::after, .wave-bottom-purple::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
    -webkit-mask: center/100% 100% no-repeat; mask: center/100% 100% no-repeat;
}
.wave-bottom-cream::after {
    background: var(--cream) !important;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'><path d='M0,60 C240,0 480,100 720,50 C960,0 1200,100 1440,40 L1440,90 L0,90 Z' fill='black'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'><path d='M0,60 C240,0 480,100 720,50 C960,0 1200,100 1440,40 L1440,90 L0,90 Z' fill='black'/></svg>");
}
.wave-bottom-green::after {
    height: 80px; background: var(--green-field) !important;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,40 C240,0 480,80 720,40 C960,0 1200,80 1440,30 L1440,80 L0,80 Z' fill='black'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,40 C240,0 480,80 720,40 C960,0 1200,80 1440,30 L1440,80 L0,80 Z' fill='black'/></svg>");
}
.wave-bottom-olive::after {
    height: 80px; background-color: #4d7f6d !important;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,40 C240,0 480,80 720,40 C960,0 1200,80 1440,30 L1440,80 L0,80 Z' fill='black'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,40 C240,0 480,80 720,40 C960,0 1200,80 1440,30 L1440,80 L0,80 Z' fill='black'/></svg>");
}
.wave-bottom-orange::after {
    height: 80px; background: var(--orange) !important;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,50 L1440,80 L0,80 Z' fill='black'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,50 L1440,80 L0,80 Z' fill='black'/></svg>");
}
.water-imgg {bottom: 3%;
    position: absolute;
    z-index: 4;}
/* ============ PEBBLES ============ */
.pebble { border-radius: 58% 42% 55% 45% / 50% 55% 45% 50%; }
.pebble-2 { border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%; }
.pebble-3 { border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%; }

/* ============ ANIMATIONS ============ */
@keyframes float-slow { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes float-med  { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }
@keyframes sway       { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
@keyframes spin-slow  { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes fly-bee    {
    0%   { transform: translate(0,0) rotate(0); }
    25%  { transform: translate(40px,-20px) rotate(10deg); }
    50%  { transform: translate(90px,5px) rotate(-5deg); }
    75%  { transform: translate(50px,25px) rotate(8deg); }
    100% { transform: translate(0,0) rotate(0); }
}
@keyframes wiggle { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }

.float-slow { animation: float-slow 6s ease-in-out infinite; }
.float-med { animation: float-med 4s ease-in-out infinite; }
.sway { animation: sway 3s ease-in-out infinite; transform-origin: top center; }
.spin-slow { animation: spin-slow 20s linear infinite; }
.fly-bee { animation: fly-bee 8s ease-in-out infinite; }
.wiggle { animation: wiggle 2.5s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0);z-index:6 }
.dashed-path { stroke-dasharray: 4 6; stroke-linecap: round; }
section[id] { scroll-margin-top: 90px; }

/* ============ HERO ============ */
.hero { background: var(--purple); color: #fff; padding: 150px 0 170px; position: relative; overflow: hidden; }
.hero-sun { position: absolute; top: 64px; right: 40px; width: 80px; height: 80px; opacity: 0.9; }
.hero-chips { position: absolute; right: 24px; top: 180px; display: flex; flex-direction: column; gap: 8px; z-index: 10; }
.hero-chips span { width: 28px; height: 28px; border-radius: 8px; display: block; }
@media (max-width: 767px) { .hero-chips { display: none; } }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; position: relative; z-index: 10; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-title { font-size: clamp(34px, 5vw, 64px); line-height: 1.08; }
.hero-title .accent { color: var(--orange); }
.hero-sub { margin-top: 24px; max-width: 560px; color: rgba(255,255,255,0.85); font-size: clamp(15px, 1.2vw, 18px); }
.hero-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero-lion { position: relative; display: flex; justify-content: center; }
.lion-blob { position: absolute; inset: 24px; background: rgba(197, 184, 230, 0.6); border-radius: 58% 42% 55% 45% / 50% 55% 45% 50%; }
.hero-lion img { position: relative; width: 300px; max-width: 80%; height: auto; filter: drop-shadow(0 14px 24px rgba(0,0,0,0.2)); }
@media (min-width: 640px) { .hero-lion img { width: 340px; } }

.hero-flight { position: absolute; left: 48px; bottom: 64px; width: 288px; height: 96px; opacity: 0.8; z-index: 1; }
.hero-bee-1 { position: absolute; left: 40px; bottom: 48px; width: 56px; height: auto; z-index: 10; }
.hero-bee-2 { position: absolute; left: 160px; bottom: 96px; width: 40px; height: auto; z-index: 10; animation-delay: 1.5s; }
@media (max-width: 639px) { .hero-flight, .hero-bee-2 { display: none; } }

/* ============ ABOUT ============ */
.about { background: var(--cream); padding: 96px 0 112px; position: relative; overflow: hidden; }
.about-tree-l { position: absolute; left: -30px; top: 96px; width: 160px; }
.about-tree-r { position: absolute; right: -40px; top: 64px; width: 176px; }
.about-owl { position: absolute; left: 64px; top: 260px; width: 80px; }
@media (max-width: 767px) { .about-tree-l, .about-tree-r, .about-owl { display: none; } }

.section-title { font-size: clamp(30px, 4vw, 48px) !important; color: var(--purple-deep); !important }
.section-title-sm { font-size: clamp(26px, 3.2vw, 38px); color: var(--purple-deep); margin-top: 64px; }
.about-text { margin-top: 24px; font-size: clamp(15px, 1.2vw, 18px); color: rgba(44,37,80,0.85); max-width: 720px; margin-left: auto; margin-right: auto; }

.programs { margin-top: 48px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
@media (min-width: 1024px) { .programs { grid-template-columns: repeat(4, 1fr); } }
.program-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.program-tag { font-size: 15px; font-weight: 600; color: var(--purple-deep); }
.program-pebble {
    width: 170px; height: 120px; display: grid; place-items: center; text-align: center;
    color: #fff; box-shadow: 0 12px 28px rgba(60,30,120,0.2); transition: transform 0.3s ease;
}
.program-pebble:hover { transform: scale(1.05); }
.program-pebble .display { font-size: 22px; line-height: 1.1; }
.program-age { font-size: 15px; font-weight: 500; opacity: 0.95; margin-top: 4px; }

/* ============ LEARNING APPROACH ============ */
.learning { background: var(--purple); color: #fff; padding: 96px 0 150px; position: relative; overflow: hidden; }
.learning-tree { position: absolute;
    right: -40px;
    bottom: 80px;
    width: 275px;}
@media (max-width: 767px) { .learning-tree { display: none; } }
.learning-head { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: end; margin-bottom: 48px; }
@media (min-width: 768px) { .learning-head { grid-template-columns: 1fr 1fr; gap: 24px; } }

.approach-cards { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 880px; }
@media (min-width: 768px) { .approach-cards { grid-template-columns: 1fr 1fr; gap: 28px; } }
.approach-card {
    border-radius: 28px; padding: 20px; display: flex; align-items: flex-start; gap: 16px;
    box-shadow: 0 12px 30px rgba(30,20,70,0.25); transition: transform 0.3s ease;
}
.approach-card:hover { transform: translateY(-4px); }
.approach-icon {
    width: 48px; height: 48px; border-radius: 50%; background: #fff; display: grid; place-items: center;
    flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.approach-icon img { width: 28px; height: 28px; }
.approach-card h4 { font-size: 22px; color: var(--purple-deep); line-height: 1.2; }
.approach-card p { font-size: 15px; color: var(--purple-deep); opacity: 0.9; margin-top: 4px; font-weight: 500; }

.learning-footer-scene { position: relative; margin-top: 48px; height: 112px; }
.school-sign { position: absolute; 
    left: 52%;
    transform: translateX(-50%);
    bottom: -70px;
    width: 15%; }
.bunny-small { position: absolute; 
    left: 82%;
    bottom: 338px;
    width: 20%; }
.bee-flight-r { position: absolute; right: 64px; bottom: 32px; width: 256px; height: 80px; }
.bee-float-1 { position: absolute; right: 80px; bottom: 24px; width: 40px; }
.bee-float-2 { position: absolute; right: 160px; bottom: 40px; width: 32px; }
@media (max-width: 767px) { .school-sign, .bunny-small, .bee-flight-r, .bee-float-1, .bee-float-2 { display: none; } }

/* ============ WHY CHOOSE ============ */
.why { background: #7aa850; color: #fff; padding: 80px 0 130px; position: relative; overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: clamp(16px, 1.3vw, 20px); font-weight: 600; }
.why-list li img { width: 32px; height: 24px; flex-shrink: 0; }

.trusted h3 { font-size: clamp(26px, 2.8vw, 38px); margin-bottom: 32px; }
.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.stat {
    width: 170px; height: 170px; display: grid; place-items: center; text-align: center;
    box-shadow: 0 16px 32px rgba(0,0,0,0.18); transition: transform 0.3s ease;
}
.stat:hover { transform: scale(1.05); }
.stat > div { padding: 0 16px; }
.stat-value { font-size: 36px; color: var(--purple-deep); line-height: 1; }
.stat-label { font-size: 15px; color: var(--purple-deep); font-weight: 600; margin-top: 6px; line-height: 1.15; }

/* ============ CAROUSEL ============ */
.carousel-section { background: var(--orange); padding: 96px 0 130px; position: relative; overflow: hidden; }
.carousel-tree { position: absolute; left: -48px; top: 32px; width: 220px; }
.carousel-dog { position: absolute;     right: 32px;
    bottom: 30px;
    width: 100px; }
@media (max-width: 767px) { .carousel-tree, .carousel-dog { display: none; } }

.carousel-wrap { position: relative; }
.branch { position: absolute; left: 0; right: 0; top: 32px; height: 8px; background: #6b4226; border-radius: 4px; opacity: 0.9; }
.leaves { position: absolute; left: 40px; right: 40px; top: 24px; display: flex; justify-content: space-between; }
.leaves span { width: 12px; height: 12px; background: var(--green); border-radius: 50%; }

.carousel-track-viewport { overflow: hidden; padding-top: 64px; }
.carousel-track { display: flex; gap: 40px; width: max-content; will-change: transform; }
.carousel-item { flex-shrink: 0; position: relative; }
.swing-rope { width: 4px; height: 40px; background: #6b4226; border-radius: 2px; margin: 0 auto; }
.photo-frame {
    width: 200px; height: 200px;
    border: 6px solid #f4d98d;
    border-radius: 50% 50% 48% 52% / 60% 60% 40% 40%;
    box-shadow: 0 10px 24px rgba(60,30,10,0.25);
    overflow: hidden; background: #f4d98d;
    animation: sway 3s ease-in-out infinite;
    transform-origin: top center;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 640px) { .photo-frame { width: 224px; height: 224px; } }

/* ============ HAPPENINGS ============ */
.happenings { background: var(--cream); padding: 64px 0 96px; position: relative; overflow: hidden; }
.deer { position: absolute; left: 16px; bottom: 40px; width: 112px; }
@media (max-width: 767px) { .deer { display: none; } }

.events-wrap { position: relative; margin-top: 64px; }
.events-line { position: absolute; left: 0; right: 0; top: 48px; width: 100%; height: 64px; pointer-events: none; display: none; }
@media (min-width: 1024px) { .events-line { display: block; } }

.events { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 640px) { .events { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .events { grid-template-columns: repeat(4, 1fr); } }

.event-card { display: flex; flex-direction: column; align-items: center; }

.flower { position: relative; width: 144px; height: 150px; display: grid; place-items: center; transition: transform 0.3s ease; }
.flower:hover { transform: scale(1.05); }
.flower::before, .flower::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 110px; height: 110px; border-radius: 50%;
    background: inherit; transform: translate(-50%, -50%);
}
.flower-inner {
    position: relative; z-index: 2;
    width: 88px; height: 88px; border-radius: 50%;
    background: inherit; display: grid; place-items: center; text-align: center;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.1);
}
.flower-purple { background: var(--purple); }
.flower-light { background: var(--purple-soft); }
.flower::before {
    box-shadow:
        0 -44px 0 -8px, 0 44px 0 -8px,
        44px 0 0 -8px, -44px 0 0 -8px,
        31px -31px 0 -8px, -31px 31px 0 -8px,
        31px 31px 0 -8px, -31px -31px 0 -8px;
    width: 64px; height: 64px;
}
.flower::after { display: none; }

.day { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 30px; line-height: 1; }
.flower-light .day { color: var(--purple-deep); }
.month { font-family: 'Fredoka', sans-serif; font-size: 13px; margin-top: 4px; color: var(--purple-deep); }
.flower-purple .month, .flower-purple .year { color: #fff; }
.year { font-family: 'Fredoka', sans-serif; font-size: 11px; opacity: 0.9; color: var(--purple-deep); }

.event-card h4 { margin-top: 20px; font-size: 18px; color: var(--purple-deep); }
.event-card p { margin-top: 8px; font-size: 14px; color: rgba(44,37,80,0.8); max-width: 240px; line-height: 1.4; text-align: center; }

/* ============ FOOTER ============ */
.site-footer { background: var(--purple-deep); color: #fff; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer h4 { font-size: 20px; margin-bottom: 16px; font-family: 'Fredoka', sans-serif; }
.site-footer ul li { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 8px; transition: color 0.2s; }
.site-footer ul li a:hover { color: var(--orange); }
.site-footer a { color: inherit; }
.contact-info li { line-height: 1.5; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); text-align: center; font-size: 14px; color: rgba(255,255,255,0.75); }

/* ============ MODAL ============ */
.modal-backdrop {
    position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center; padding: 20px;
    animation: fadeIn 0.2s ease;
}
.modal-backdrop[hidden] { display: none !important; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
    background: var(--cream); border-radius: 24px; padding: 32px;
    max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative;
    animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 20px; width: 36px; height: 36px; font-size: 28px; line-height: 1; color: var(--purple-deep); display: grid; place-items: center; border-radius: 50%; }
.modal-close:hover { background: rgba(0,0,0,0.05); }
.modal h3 { font-size: 26px; color: var(--purple-deep); margin-bottom: 8px; font-family: 'Fredoka', sans-serif; }
.modal-desc { font-size: 14px; color: rgba(75,61,132,0.8); margin-bottom: 20px; }

.form { display: grid; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: var(--purple-deep); }
.form input, .form textarea {
    padding: 12px 14px; border: 1px solid rgba(75,61,132,0.2); border-radius: 12px;
    background: #fff; font-family: inherit; font-size: 15px; color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,74,157,0.15); }
.form textarea { resize: vertical; min-height: 90px; }
.form .row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 500px) { .form .row { grid-template-columns: 1fr 1fr; } }
.form button[type="submit"] { justify-self: end; margin-top: 8px; }

/* ============ TOAST ============ */
.toast {
    position: fixed; top: 24px; left: 50%;
    transform: translateX(-50%) translateY(-80px);
    background: var(--green); color: #fff;
    padding: 14px 24px; border-radius: 999px; font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 200; opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.error { background: #e05a5a; }

/* ============ INNER PAGES / BLOG ============ */
.page-hero {
    background: var(--purple); color: #fff; padding: 160px 0 80px; text-align: center;
    position: relative; overflow: hidden;
}
.page-hero h1 { font-family: 'Fredoka', sans-serif; font-size: clamp(32px, 4vw, 56px); }
.page-hero .breadcrumb { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb a:hover { color: var(--orange); }

.content-area { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .content-grid.has-sidebar { grid-template-columns: 2fr 1fr; gap: 56px; } }

.entry-card {
    background: #fff; border-radius: 24px; padding: 28px; margin-bottom: 32px;
    box-shadow: 0 10px 28px rgba(60,30,120,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.entry-card:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(60,30,120,0.14); }
.entry-thumb { border-radius: 18px; overflow: hidden; margin-bottom: 18px; }
.entry-thumb img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.entry-card:hover .entry-thumb img { transform: scale(1.04); }
.entry-meta { font-size: 13px; color: rgba(75,61,132,0.7); margin-bottom: 10px; display: flex; gap: 14px; flex-wrap: wrap; }
.entry-meta a { color: var(--purple); font-weight: 600; }
.entry-meta a:hover { color: var(--orange); }
.entry-title { font-family: 'Fredoka', sans-serif; font-size: 24px; color: var(--purple-deep); margin-bottom: 10px; line-height: 1.2; }
.entry-title a:hover { color: var(--orange); }
.entry-excerpt { font-size: 15px; color: rgba(44,37,80,0.85); margin-bottom: 16px; }
.entry-readmore { display: inline-flex; align-items: center; gap: 6px; color: var(--purple); font-weight: 600; font-size: 14px; }
.entry-readmore:hover { color: var(--orange); }

.entry-content { font-size: 16px; line-height: 1.7; color: var(--text); }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 {
    font-family: 'Fredoka', sans-serif; color: var(--purple-deep); margin: 1.4em 0 0.6em;
}
.entry-content h2 { font-size: 30px; }
.entry-content h3 { font-size: 24px; }
.entry-content h4 { font-size: 20px; }
.entry-content p { margin: 0 0 1em; }
.entry-content ul, .entry-content ol { margin: 0 0 1em 1.4em; }
.entry-content ul li, .entry-content ol li { margin-bottom: 0.4em; }
.entry-content a { color: var(--purple); text-decoration: underline; }
.entry-content a:hover { color: var(--orange); }
.entry-content blockquote {
    border-left: 4px solid var(--orange); padding: 12px 20px; margin: 20px 0;
    background: #fff7e6; border-radius: 0 14px 14px 0; color: var(--purple-deep); font-style: italic;
}
.entry-content img { border-radius: 14px; margin: 1.2em 0; }
.entry-content pre { background: #1c1738; color: #f7ead0; padding: 18px; border-radius: 12px; overflow-x: auto; }
.entry-content code { background: rgba(91,74,157,0.1); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }

.pagination, .post-navigation { margin-top: 40px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers, .post-navigation a {
    padding: 10px 16px; border-radius: 999px; background: #fff; color: var(--purple-deep);
    font-weight: 600; box-shadow: 0 4px 12px rgba(60,30,120,0.08); transition: all 0.2s;
}
.pagination .page-numbers:hover, .pagination .current, .post-navigation a:hover {
    background: var(--purple-deep); color: #fff;
}

.sidebar { display: flex; flex-direction: column; gap: 28px; }
.widget {
    background: #fff; border-radius: 20px; padding: 24px;
    box-shadow: 0 8px 22px rgba(60,30,120,0.08);
}
.widget-title { font-family: 'Fredoka', sans-serif; font-size: 20px; color: var(--purple-deep); margin-bottom: 14px; }
.widget ul { display: flex; flex-direction: column; gap: 8px; }
.widget ul li a { color: var(--purple-deep); font-weight: 500; transition: color 0.2s; }
.widget ul li a:hover { color: var(--orange); }
.widget input[type="search"], .widget input[type="text"] {
    width: 100%; padding: 10px 14px; border: 1px solid rgba(75,61,132,0.2);
    border-radius: 999px; font-family: inherit; font-size: 14px;
}
.widget input[type="search"]:focus { outline: none; border-color: var(--purple); }

/* Comments */
.comments-area { margin-top: 48px; background: #fff; border-radius: 24px; padding: 32px; box-shadow: 0 10px 28px rgba(60,30,120,0.08); }
.comments-title { font-family: 'Fredoka', sans-serif; font-size: 24px; color: var(--purple-deep); margin-bottom: 20px; }
.comment-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 28px; }
.comment-list li { list-style: none; }
.comment-body { padding: 18px; background: #faf6ec; border-radius: 16px; }
.comment-author { font-weight: 700; color: var(--purple-deep); }
.comment-meta { font-size: 12px; color: rgba(75,61,132,0.6); margin-bottom: 8px; }
.comment-respond { margin-top: 18px; }
.comment-form label { display: block; font-weight: 600; color: var(--purple-deep); margin-bottom: 6px; font-size: 14px; }
.comment-form input, .comment-form textarea {
    width: 100%; padding: 12px 14px; border: 1px solid rgba(75,61,132,0.2);
    border-radius: 12px; font-family: inherit; font-size: 15px; margin-bottom: 14px;
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--purple); }
.comment-form .form-submit input { width: auto; background: var(--purple-deep); color: #fff; border: none; border-radius: 999px; padding: 12px 28px; font-weight: 600; cursor: pointer; }
.comment-form .form-submit input:hover { background: var(--purple); }

/* 404 */
.error-404 { text-align: center; padding: 120px 0; background: var(--cream); }
.error-404 .big { font-family: 'Fredoka', sans-serif; font-size: clamp(80px, 15vw, 180px); color: var(--purple-deep); line-height: 1; }
.error-404 h2 { font-family: 'Fredoka', sans-serif; font-size: 28px; color: var(--purple-deep); margin: 12px 0 18px; }
.error-404 p { color: rgba(44,37,80,0.8); max-width: 500px; margin: 0 auto 24px; }

/* Services / About / Contact templates */
.services-grid { display: grid; gap: 28px; grid-template-columns: 1fr; margin-top: 40px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
    background: #fff; border-radius: 22px; padding: 30px; box-shadow: 0 10px 26px rgba(60,30,120,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(60,30,120,0.14); }
.service-icon {
    width: 64px; height: 64px; border-radius: 50%; background: var(--cream);
    display: grid; place-items: center; margin-bottom: 16px;
}
.service-icon img { width: 36px; height: 36px; }
.service-card h3 { font-family: 'Fredoka', sans-serif; font-size: 22px; color: var(--purple-deep); margin-bottom: 8px; }
.service-card p { font-size: 15px; color: rgba(44,37,80,0.85); }

.about-page { padding: 80px 0; }
.about-page-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 768px) { .about-page-grid { grid-template-columns: 1fr 1fr; } }
.about-page-grid img { border-radius: 24px; box-shadow: 0 14px 36px rgba(60,30,120,0.18); }

.contact-page { padding: 80px 0; }
.contact-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.3fr 1fr; } }
.contact-info-card {
    background: #fff; border-radius: 22px; padding: 30px;
    box-shadow: 0 10px 26px rgba(60,30,120,0.08);
}
.contact-info-card h3 { font-family: 'Fredoka', sans-serif; color: var(--purple-deep); margin-bottom: 14px; }
.contact-info-card p { margin-bottom: 12px; color: rgba(44,37,80,0.85); }
.contact-info-card a { color: var(--purple); font-weight: 600; }
.contact-info-card a:hover { color: var(--orange); }
.contact-form-wrap { background: #fff; border-radius: 22px; padding: 30px; box-shadow: 0 10px 26px rgba(60,30,120,0.08); }
.contact-form-wrap .wpcf7 p {margin-top: 20px;}
.contact-form-wrap .wpcf7 { width: 100%; }
.contact-form-wrap input[type="text"], .contact-form-wrap input[type="email"], .contact-form-wrap input[type="tel"], .contact-form-wrap textarea {
    width: 100%; padding: 12px 14px; margin-top: 6px; border: 1px solid rgba(75,61,132,0.2);
    border-radius: 12px; font-family: inherit; font-size: 15px;
}
.contact-form-wrap input:focus, .contact-form-wrap textarea:focus { outline: none; border-color: var(--purple); }
.contact-form-wrap input[type="submit"] {
    background: var(--purple-deep); color: #fff; border: none; padding: 12px 28px;
    border-radius: 999px; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.contact-form-wrap input[type="submit"]:hover { background: var(--purple); }

/* ============ ELEMENTOR / PAGE BUILDER SUPPORT ============ */
.fsms-fullwidth { max-width: none !important; padding: 0 !important; }
.fsms-fullwidth .entry-content { max-width: none; padding: 0; }
.fsms-elementor-area { background: var(--cream); }
.fsms-elementor-area > article { margin: 0; }
.fsms-canvas .navbar-wrap, .fsms-canvas .site-footer, .fsms-canvas .modal-backdrop, .fsms-canvas .toast { display: none !important; }
body.elementor-page .navbar-wrap { z-index: 49; }
body.elementor-editor-active #site-content { padding-top: 0; }

/* Make Elementor sections that follow our fixed navbar breathe */
body.elementor-page .fsms-elementor-area > article > .entry-content > .elementor { padding-top: 0; }

/* Alignment helpers (Gutenberg) */
.alignleft { float: left; margin: 0.4em 1.4em 1em 0; }
.alignright { float: right; margin: 0.4em 0 1em 1.4em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide, .alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: rgba(44,37,80,0.7); text-align: center; margin-top: 6px; }
.sticky { position: relative; }
.bypostauthor { }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.gallery .gallery-item { margin: 0 !important; }
@keyframes float-y {
  0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); }
  50%     { transform: translateY(-14px) rotate(var(--rot,0deg)); }
}
.float-y { animation: float-y 6s ease-in-out infinite; }
/* Cards */
.card-soft {
  background: #fff; border-radius: 28px; padding: 28px;
  box-shadow: 0 12px 30px rgba(75,63,142,.08), 0 2px 0 rgba(75,63,142,.05);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.card-soft:hover { transform: translateY(-8px) rotate(-.5deg) !important; box-shadow: 0 24px 50px rgba(75,63,142,.18); }
.page-hero {padding: 90px 0 70px !important;}
/* Cute cloud bg pattern */
.dots-bg {
  background-image: radial-gradient(rgb(255 255 255 / 9%) 2px, transparent 2px);
  background-size: 48px 48px;
}
.stars-bg {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.5) 1.5px, transparent 2px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,.4) 1.5px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.5) 1.5px, transparent 2px);
  background-size: 80px 80px, 120px 120px, 100px 100px;
}
.font-display { font-family: 'Fraunces', 'Quicksand', serif; letter-spacing: -0.5px; }
.crayon-underline { position: relative; display: inline-block; }
.p-7 {
    padding: 1.75rem;
}
.border-white10 {
    border-color: rgb(255 255 255 / 0.1);
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
@keyframes wiggle {
  0%,100% { transform: rotate(-3deg); }
  50%     { transform: rotate(3deg); }
}
.wiggle { animation: wiggle 4s ease-in-out infinite; transform-origin: center; }

.eael-testimonial-text{font-family: 'Quicksand';
    color: #ffe9a3 !important;
    letter-spacing: 0.045rem;}
.crayon-underline::after {
  content: ''; position: absolute; left: 8%; right: 8%; bottom: -10px; height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'><path d='M2 8 Q 50 0, 100 6 T 198 6' stroke='%23f5a65b' stroke-width='5' fill='none' stroke-linecap='round'/></svg>") no-repeat center/100% 100%;
}
/* Wavy section dividers */
.wave-bottom { position: relative; }
.wave-bottom::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 70px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'><path d='M0,40 C320,80 720,0 1440,50 L1440,70 L0,70 Z' fill='%23fdf3dc'/></svg>") no-repeat bottom/cover;
}
.wave-bottom-cream::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'><path d='M0,40 C320,80 720,0 1440,50 L1440,70 L0,70 Z' fill='%234b3f8e'/></svg>") no-repeat bottom/cover;
}
.wave-bottom-purple::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'><path d='M0,40 C320,80 720,0 1440,50 L1440,70 L0,70 Z' fill='%238fcb55'/></svg>") no-repeat bottom/cover;
}
.wave-bottom-green::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'><path d='M0,40 C320,80 720,0 1440,50 L1440,70 L0,70 Z' fill='%23f5a65b'/></svg>") no-repeat bottom/cover;
}
.wave-bottom-olive::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'><path d='M0,40 C320,80 720,0 1440,50 L1440,70 L0,70 Z' fill='%23f5a65b'/></svg>") no-repeat bottom/cover;
}
.wave-bottom-orange::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'><path d='M0,40 C320,80 720,0 1440,50 L1440,70 L0,70 Z' fill='%23fdf3dc'/></svg>") no-repeat bottom/cover;
}
.eael-elements-flip-box-icon-image{display:none !important}




/* ============ MILESTONES (zigzag) ============ */
.fsms-mt { padding: 80px 0; background: #fff; font-family: 'Quicksand', sans-serif; }
.fsms-mt-wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; position: relative; }

.fsms-mt-head { text-align: center; margin-bottom: 64px; }
.fsms-mt-eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.3em; color: #3a2f72; text-transform: uppercase; margin-bottom: 12px; }
.fsms-mt-title { font-family: 'Fredoka', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 48px); color: #1f2a12; line-height: 1.15; }

.fsms-mt-track { position: relative; }
.fsms-mt-line { position: absolute; left: 14px; top: 0; bottom: 0; width: 3px; background: repeating-linear-gradient(to bottom, #ffd3a8 0 8px, transparent 8px 14px); }

.fsms-mt-list { display: flex; flex-direction: column; gap: 48px; }

.fsms-mt-item { position: relative; padding-left: 56px; }

/* dot */
.fsms-mt-dot { position: absolute; left: 0; top: 24px; width: 28px; height: 28px; border-radius: 50%; background: #f5a65b; border: 4px solid #fff; box-shadow: 0 6px 18px rgba(245, 166, 91, 0.45); }

/* card */
.fsms-mt-card { display: inline-block; max-width: 480px; text-align: left; background: #fff7ec; border-radius: 18px; padding: 22px 26px; box-shadow: 0 10px 28px rgba(60, 30, 120, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.fsms-mt-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(60, 30, 120, 0.14); }
.fsms-mt-year { font-family: 'Fredoka', sans-serif; font-weight: 800; font-size: 30px; color: #f5a65b; line-height: 1; }
.fsms-mt-name { font-weight: 700; font-size: 20px; color: #4b3d84; margin-top: 4px; }
.fsms-mt-desc { color: rgba(58, 47, 114, 0.8); margin-top: 8px; font-size: 15px; line-height: 1.6; }

/* ===== Desktop zigzag ===== */
@media (min-width: 768px) {
    .fsms-mt-line { left: 50%; transform: translateX(-50%); }
    .fsms-mt-list { gap: 56px; }

    .fsms-mt-item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-left: 0; align-items: center; }

    .fsms-mt-dot { left: 50%; transform: translateX(-50%); top: 50%; margin-top: -14px; }

    /* left side card */
    .fsms-mt-left .fsms-mt-side { grid-column: 1; text-align: right; padding-right: 48px; }
    .fsms-mt-left .fsms-mt-side::after { content: ''; display: block; height: 0; } /* second column kept empty */

    /* right side card */
    .fsms-mt-right .fsms-mt-side { grid-column: 2; text-align: left; padding-left: 48px; }

    .fsms-mt-card { text-align: left; } /* card content always left-aligned */
}



/* ============ PARENTS' VOICE (TESTIMONIALS) ============ */
.fsms-pv {
    padding: 90px 0;
    background: #f7ead0;          /* cream */
    position: relative;
    overflow: hidden;
    font-family: 'Quicksand', sans-serif;
}
.fsms-pv-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

.fsms-pv-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.fsms-pv-eyebrow {
    font-size: 14px; font-weight: 700; letter-spacing: 0.3em;
    color: #3a2f72; text-transform: uppercase; margin-bottom: 12px;
}
.fsms-pv-title {
    font-family: 'Fredoka', sans-serif; font-weight: 800;
    font-size: clamp(28px, 4vw, 48px); color: #1f2a12; line-height: 1.15;
}
.fsms-pv-sub { margin-top: 14px; color: rgba(58, 47, 114, 0.78); font-size: 16px; }

.fsms-pv-grid {
    display: grid; gap: 28px; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .fsms-pv-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .fsms-pv-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

/* re-use .card-soft if defined; styles below ensure it stands alone too */
.card-soft.fsms-pv-card {
    background: #fff7ec;
    border-radius: 22px;
    padding: 32px 28px 28px;
    box-shadow: 0 10px 28px rgba(60, 30, 120, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.card-soft.fsms-pv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(60, 30, 120, 0.16);
}

/* big decorative quote mark */
.fsms-pv-quote {
    position: absolute; top: 18px; right: 22px;
    width: 44px; height: 44px;
    fill: #f5a65b;
    opacity: 0.18;
}

.fsms-pv-stars { display: inline-flex; gap: 2px; font-size: 16px; line-height: 1; letter-spacing: 1px; }
.fsms-pv-stars .on { color: #f8d96b; }
.fsms-pv-stars .off { color: rgba(75, 61, 132, 0.18); }

.fsms-pv-text {
    font-size: 15.5px; line-height: 1.7; color: #2c2550;
    flex-grow: 1;
}

.fsms-pv-person {
    display: flex; align-items: center; gap: 14px;
    padding-top: 16px;
    border-top: 1px dashed rgba(75, 61, 132, 0.18);
}
.fsms-pv-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    background: #efe9f7;
    border: 3px solid #fff;
    box-shadow: 0 6px 16px rgba(60, 30, 120, 0.18);
}
.fsms-pv-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fsms-pv-name { font-family: 'Fredoka', sans-serif; font-weight: 700; color: #4b3d84; font-size: 16px; }
.fsms-pv-role { color: rgba(58, 47, 114, 0.7); font-size: 13px; margin-top: 2px; }

/* subtle background flourishes */
.fsms-pv::before, .fsms-pv::after {
    content: ''; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; pointer-events: none;
}
.fsms-pv::before { width: 320px; height: 320px; background: #f5a65b; top: -120px; right: -100px; }
.fsms-pv::after  { width: 280px; height: 280px; background: #c5b8e6; bottom: -120px; left: -90px; }
.text-center{text-align:center; margin:auto}
.pebble {
    border-radius: 58% 42% 55% 45% / 50% 55% 45% 50% !important;
}
.float-slow {
    animation: float 6s ease-in-out infinite;
}

Action: file_editor str_replace /app/wp-theme/fsms-2026/style.css --old-str "/* ============ ADMISSIONS PAGE ============ */" --new-str "/* ============ CURRICULUM PAGE ============ */
.cur-intro { background: var(--cream); padding: 90px 0 80px; position: relative; overflow: hidden; }
.cur-features {
    margin-top: 50px;
    display: grid; gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) { .cur-features { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (min-width: 1024px) { .cur-features { grid-template-columns: repeat(4, 1fr); } }
.cur-feature {
    display: flex; align-items: center; gap: 14px;
    background: #fff; border-radius: 18px; padding: 18px 20px;
    box-shadow: 0 8px 22px rgba(60,30,120,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.cur-feature:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(60,30,120,.14); }
.cur-feature-icon {
    width: 44px; height: 44px; border-radius: 14px;
    background: var(--cream-deep); display: grid; place-items: center;
    font-size: 22px; flex-shrink: 0;
}
.cur-feature-text { font-size: 14px; font-weight: 600; color: var(--purple-deep); line-height: 1.4; }

.cur-philo { background: var(--purple); color: #fff; padding: 90px 0 130px; position: relative; overflow: hidden; }

.cur-areas { background: var(--cream); padding: 100px 0 90px; position: relative; overflow: hidden; }
.cur-grid {
    display: grid; gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) { .cur-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .cur-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.cur-card {
    border-radius: 24px;
    padding: 28px 26px;
    box-shadow: 0 12px 30px rgba(30,20,70,.12);
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex; flex-direction: column; gap: 12px;
    position: relative;
    overflow: hidden;
	background:#eeeaff;
}
.cur-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(30,20,70,.20); }
.cur-card-icon {
    width: 56px; height: 56px; border-radius: 18px;
    background: rgba(255,255,255,0.7);
    display: grid; place-items: center;
    font-size: 28px;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.cur-card h3 {
    font-size: 22px; color: var(--purple-deep); line-height: 1.2;
    font-family: 'Fredoka', sans-serif;
}
.cur-card p {
    font-size: 14.5px;
    color: var(--purple-deep);
    opacity: 0.92;
    line-height: 1.6;
    font-weight: 500;
}

.cur-cta { background: #8fcb55; padding: 80px 0 50px; position: relative; overflow: hidden; text-align: center; }
.m-40{margin-top:40px}

.location-wrap{
    margin-top:55px;
}

.map-card{
    background:#fff;
    border-radius:22px;
    padding:14px;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    border:1px solid #ececec;
    overflow:hidden;
}

.map-card iframe{
    width:100%;
    height:540px;
    border:0;
    border-radius:18px;
}

@media(max-width:991px){
    .map-card iframe{
        height:420px;
    }
}

@media(max-width:600px){
    .map-card iframe{
        height:340px;
    }
}