/* Jojo's Childcare - polished responsive design */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

:root{
    --sage:#8fae84;
    --sage-dark:#4f7353;
    --sage-light:#eef6ea;
    --cream:#fffaf0;
    --pink:#ff6fae;
    --pink-soft:#ffe7f1;
    --purple:#7762c8;
    --blue:#dff5ff;
    --text:#26364a;
    --muted:#64706b;
    --white:#ffffff;
    --shadow:0 20px 55px rgba(46,64,56,.12);
    --radius:30px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
    font-family:'Nunito',Arial,sans-serif;
    color:var(--text);
    background:#fbfdf8;
    line-height:1.7;
    overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit}
.container{width:min(1180px,92%);margin:0 auto}

/* Header used by the homepage */
.top-header,
.site-header{
    background:rgba(255,255,255,.96);
    position:relative;
    z-index:10;
    box-shadow:0 8px 25px rgba(48,75,55,.06);
}
.header-top,
.site-header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    padding:18px 0;
}
.logo-area img{width:min(420px,48vw)}
.logo img{width:230px;max-height:110px;object-fit:contain}
.contact-area{display:flex;align-items:center;gap:18px;flex-wrap:wrap;justify-content:flex-end}
.contact-item{display:flex;align-items:center;gap:10px;font-size:.92rem;color:var(--muted)}
.contact-item .icon{width:44px;height:44px;border-radius:999px;background:var(--pink-soft);display:flex;align-items:center;justify-content:center}
.contact-item strong{color:var(--text)}
.ofsted-badge{background:var(--sage-dark);color:#fff;border-radius:22px;padding:12px 16px;text-align:center;font-weight:800;line-height:1.25;box-shadow:var(--shadow)}

.nav-wrapper{padding:0 0 18px}
nav,.navigation{display:flex;justify-content:center}
nav ul,.navigation ul{display:flex;gap:8px;list-style:none;align-items:center;flex-wrap:wrap;justify-content:center;background:#fff;border-radius:999px;padding:10px;box-shadow:0 12px 35px rgba(46,64,56,.08)}
nav a,.navigation a{text-decoration:none;font-weight:800;color:var(--text);padding:10px 15px;border-radius:999px;transition:.25s}
nav a:hover,.navigation a:hover,nav a.active,.navigation a.active{background:var(--pink-soft);color:#c83075;border-bottom:0}

.button,.btn,.btn-pink,.btn-white,.btn-green{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    padding:15px 28px;border-radius:999px;border:0;text-decoration:none;font-weight:800;cursor:pointer;transition:.25s;box-shadow:0 14px 30px rgba(46,64,56,.12)
}
.button,.btn-pink{background:var(--pink);color:#fff}
.btn-white{background:#fff;color:var(--sage-dark)}
.btn-green{background:var(--sage-dark);color:#fff}
.button:hover,.btn:hover,.btn-pink:hover,.btn-white:hover,.btn-green:hover{transform:translateY(-4px)}

/* Hero */
.hero{position:relative;overflow:hidden;background:linear-gradient(180deg,#eaf8ff 0%,#f9fff5 82%,#fff 100%);padding:90px 0 130px}
.hero:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 12% 18%,rgba(255,255,255,.9) 0 55px,transparent 56px),radial-gradient(circle at 82% 25%,rgba(255,255,255,.65) 0 70px,transparent 71px);opacity:.65}
.hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:58px;align-items:center}
.hero-text h1,.hero-content h1{font-family:'Baloo 2',cursive;font-size:clamp(2.8rem,6vw,5rem);line-height:1.02;color:var(--text);letter-spacing:-1px;margin-bottom:18px}
.hero-text h1 span,.hero-content h1 span{color:var(--pink)}
.hero-text h2,.hero-content .welcome{font-size:1.55rem;color:var(--sage-dark);font-weight:800;margin-bottom:18px}
.hero-text p,.hero-content .intro,.hero-text .intro{font-size:1.15rem;color:var(--muted);max-width:610px;margin-bottom:30px}
.hero-buttons{display:flex;gap:16px;flex-wrap:wrap}
.hero-image img{width:min(560px,100%);border-radius:44px;box-shadow:var(--shadow);object-fit:cover;aspect-ratio:1/1;animation:float 6s ease-in-out infinite;background:#fff}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.hero-bottom{position:absolute;left:-5%;right:-5%;bottom:-60px;height:150px;background:var(--sage-light);border-radius:50% 50% 0 0/100% 100% 0 0}

/* Headings */
.section-heading,.section-title{text-align:center;max-width:760px;margin:0 auto 50px}
.section-label,.section-heading span,.section-title span,.section-tag{display:inline-block;background:var(--pink-soft);color:#c83075;border-radius:999px;padding:8px 18px;text-transform:uppercase;letter-spacing:1.2px;font-weight:900;font-size:.78rem;margin-bottom:14px}
h2,.section-heading h2,.section-title h2{font-family:'Baloo 2',cursive;font-size:clamp(2rem,4vw,3.2rem);line-height:1.1;color:var(--sage-dark);margin-bottom:15px}
.section-heading p,.section-title p{color:var(--muted)}

/* Cards and sections */
.why-us,.features,.welcome,.school-highlight,.about-preview,.gallery-preview,.testimonials,.reviews,.contact-section{padding:80px 0}
.why-us,.gallery-preview{background:#fff}
.features{margin-top:-70px;position:relative;z-index:2;padding-top:0}
.features .container,.feature-grid,.why-grid,.testimonial-grid,.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.why-grid{grid-template-columns:repeat(4,1fr)}
.feature-card,.why-card,.testimonial,.review-card{background:#fff;border-radius:var(--radius);padding:34px 28px;text-align:center;box-shadow:var(--shadow);border:1px solid rgba(143,174,132,.18);transition:.25s;min-height:100%}
.feature-card:hover,.why-card:hover,.testimonial:hover,.review-card:hover{transform:translateY(-7px)}
.feature-icon,.why-icon{width:76px;height:76px;border-radius:24px;margin:0 auto 20px;background:var(--sage-light);display:flex;align-items:center;justify-content:center;font-size:2.1rem}
.feature-card h3,.why-card h3{font-size:1.25rem;color:var(--sage-dark);margin-bottom:10px}
.feature-card p,.why-card p,.testimonial p,.review-card p{color:var(--muted)}

.welcome{background:linear-gradient(135deg,#f3f9ef,#fffaf5)}
.welcome-grid,.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.welcome-image img,.about-photo img,.about-image img{border-radius:42px;box-shadow:var(--shadow);width:100%;object-fit:cover;max-height:560px}
.welcome-text p,.about-content p,.about-text p{color:var(--muted);margin-bottom:18px;font-size:1.05rem}

.school-highlight{background:#f7fbf2}
.school-box{display:grid;grid-template-columns:105px 1fr;gap:30px;background:#fff;border-radius:38px;padding:42px;box-shadow:var(--shadow);align-items:start}
.school-icon{width:90px;height:90px;border-radius:28px;background:var(--sage-dark);color:#fff;display:flex;align-items:center;justify-content:center;font-size:2.5rem}
.school-content p{color:var(--muted);margin-bottom:22px}

.about-preview{background:linear-gradient(135deg,var(--sage-dark),#7aa06c);color:#fff}
.about-preview h2,.about-preview p,.about-preview .section-tag{color:#fff}
.about-preview .section-tag{background:rgba(255,255,255,.18)}
.about-image img{background:#fff;padding:25px;object-fit:contain}

.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.gallery-item{border-radius:28px;overflow:hidden;box-shadow:var(--shadow);background:#fff;min-height:220px}
.gallery-item img{width:100%;height:100%;min-height:220px;object-fit:cover;transition:.3s}
.gallery-item:hover img{transform:scale(1.04)}

.testimonials,.reviews{background:#fff7fb}
.stars{color:#f7a600;font-size:1.2rem;margin-bottom:12px;letter-spacing:2px}
.testimonial strong,.review-card strong{display:block;margin-top:15px;color:var(--sage-dark)}

.cta,.call-to-action{padding:80px 0;background:linear-gradient(135deg,var(--pink),#f59fbe);text-align:center;color:#fff}
.cta h2,.call-to-action h2{color:#fff;font-family:'Baloo 2',cursive;font-size:clamp(2rem,4vw,3.2rem);margin-bottom:12px}
.cta p,.call-to-action p{max-width:680px;margin:0 auto 28px;font-size:1.1rem}
.cta .btn-pink,.call-to-action .button{background:#fff;color:#c83075}

.contact-section form{background:#fff;border-radius:30px;padding:34px;box-shadow:var(--shadow)}
.contact-section label{display:block;font-weight:800;color:var(--sage-dark);margin:16px 0 6px}
.contact-section input,.contact-section textarea{width:100%;padding:14px 16px;border-radius:16px;border:1px solid #d9e5d4;font:inherit}
.contact-section textarea{min-height:150px}

footer{background:#2f4133;color:#eef8ec;padding:62px 0 0}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:42px}
.footer-logo{width:260px;max-height:130px;object-fit:contain;background:#fff;border-radius:18px;padding:8px;margin-bottom:18px}
footer h3{font-size:1.2rem;margin-bottom:15px;color:#fff}
footer ul{list-style:none}
footer li{margin:8px 0}
footer a{text-decoration:none;color:#eef8ec}
footer p{margin-bottom:8px;color:#dcebdd}
.copyright{text-align:center;margin-top:45px;padding:20px;background:rgba(0,0,0,.16);color:#dcebdd;font-size:.92rem}

@media (max-width:1000px){
    .header-top,.site-header .container{flex-direction:column;text-align:center}
    .contact-area{justify-content:center}
    .hero-grid,.welcome-grid,.about-grid{grid-template-columns:1fr;text-align:center}
    .hero-text p,.hero-content .intro{margin-left:auto;margin-right:auto}
    .hero-buttons{justify-content:center}
    .hero-image img{margin:0 auto;max-width:520px}
    .why-grid{grid-template-columns:repeat(2,1fr)}
    .features .container,.feature-grid,.testimonial-grid,.review-grid{grid-template-columns:repeat(2,1fr)}
    .footer-grid{grid-template-columns:1fr 1fr}
}

@media (max-width:700px){
    .container{width:min(94%,560px)}
    .logo-area img{width:320px;max-width:90vw}
    .contact-item{display:none}
    .ofsted-badge{font-size:.9rem;padding:10px 14px}
    nav ul,.navigation ul{gap:4px;border-radius:24px;padding:8px}
    nav a,.navigation a{font-size:.9rem;padding:8px 10px}
    .hero{padding:54px 0 95px}
    .hero-text h1,.hero-content h1{font-size:2.65rem}
    .hero-text h2,.hero-content .welcome{font-size:1.22rem}
    .hero-image img{border-radius:30px;animation:none}
    .why-us,.features,.welcome,.school-highlight,.about-preview,.gallery-preview,.testimonials,.reviews,.contact-section{padding:55px 0}
    .features{margin-top:-38px;padding-top:0}
    .why-grid,.features .container,.feature-grid,.testimonial-grid,.review-grid,.gallery-grid,.footer-grid{grid-template-columns:1fr}
    .feature-card,.why-card,.testimonial,.review-card{padding:28px 22px}
    .school-box{grid-template-columns:1fr;text-align:center;padding:30px 22px}
    .school-icon{margin:0 auto}
    footer{text-align:center}
    .footer-logo{margin-left:auto;margin-right:auto}
}


/* Phase 3 inner page polish */
.logo-area a{display:inline-block}
.page-hero{position:relative;overflow:hidden;background:linear-gradient(180deg,#eaf8ff 0%,#f9fff5 82%,#fff 100%);padding:78px 0 100px}
.page-hero:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 14% 20%,rgba(255,255,255,.85) 0 55px,transparent 56px),radial-gradient(circle at 84% 18%,rgba(255,255,255,.65) 0 70px,transparent 71px);opacity:.7}
.content-section{padding:80px 0;background:#fff}
.soft-bg{background:linear-gradient(135deg,#f3f9ef,#fffaf5)}
.card-text,.contact-card{background:#fff;border-radius:30px;padding:34px;box-shadow:var(--shadow);border:1px solid rgba(143,174,132,.18)}
.badge-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.info-badge{background:#fff;border-radius:999px;padding:16px 20px;font-weight:900;color:var(--sage-dark);box-shadow:0 12px 30px rgba(46,64,56,.08);text-align:center;border:1px solid rgba(143,174,132,.2)}
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.service-card{background:#fff;border-radius:var(--radius);padding:34px 28px;text-align:center;box-shadow:var(--shadow);border:1px solid rgba(143,174,132,.18);transition:.25s}
.service-card:hover{transform:translateY(-7px)}
.page-features{margin-top:0;padding-top:80px;background:#fff}
.contact-card h3{color:var(--sage-dark);margin-top:8px;margin-bottom:4px}
.contact-card a{color:var(--sage-dark);font-weight:800;text-decoration:none}
.contact-section form .button{text-align:center;width:fit-content}
@media (max-width:1000px){.badge-grid,.service-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:700px){.page-hero{padding:54px 0 80px}.content-section{padding:55px 0}.badge-grid,.service-grid{grid-template-columns:1fr}.card-text,.contact-card{padding:26px 20px}.page-features{padding-top:55px}}

/* Phase 4 contact page improvements */
.contact-details-card{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.contact-detail-row{
    display:grid;
    grid-template-columns:54px 1fr;
    gap:14px;
    align-items:flex-start;
    padding:16px 0;
    border-bottom:1px solid rgba(143,174,132,.18);
}
.contact-detail-row:last-child{border-bottom:0}
.contact-detail-icon{
    width:48px;
    height:48px;
    border-radius:999px;
    background:var(--pink-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.25rem;
}
.contact-detail-row h3{margin-top:0}
.contact-detail-row p{margin:4px 0 0}
.small-note{font-size:.92rem;font-style:italic;color:var(--muted)}
@media (max-width:700px){.contact-detail-row{grid-template-columns:46px 1fr}.contact-detail-icon{width:42px;height:42px}}

/* Phase 5 mock-up inspired homepage changes */
.hero-mockup-style{
    background:
        radial-gradient(circle at 8% 30%, rgba(255,111,174,.13), transparent 130px),
        radial-gradient(circle at 88% 16%, rgba(143,174,132,.18), transparent 160px),
        linear-gradient(180deg,#effbff 0%,#fffdf7 72%,#fff 100%);
    padding:70px 0 115px;
}
.hero-mockup-style .hero-grid{
    grid-template-columns:minmax(360px,.9fr) minmax(520px,1.25fr);
    gap:32px;
}
.hero-mockup-style .hero-text{
    background:rgba(255,255,255,.72);
    backdrop-filter:blur(3px);
    border-radius:34px;
    padding:34px 28px;
    box-shadow:0 18px 45px rgba(46,64,56,.08);
}
.hero-mockup-style .hero-text h1 span:first-child{color:#f20873}
.hero-mockup-style .hero-text h1 span:last-child{color:#159ddb}
.hero-mockup-style .hero-text h2{
    font-family:'Baloo 2',cursive;
    color:#ef3b8f;
    font-size:clamp(1.35rem,2.8vw,2.1rem);
}
.hero-scene img{
    width:100%;
    aspect-ratio:16/10;
    border-radius:44px;
    object-fit:cover;
    object-position:center;
    box-shadow:0 24px 60px rgba(37,65,79,.18);
    animation:none;
}
.hero-scene{
    position:relative;
}
.hero-scene:after{
    content:"";
    position:absolute;
    left:-20px;
    right:-20px;
    bottom:-16px;
    height:44px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 -12px 25px rgba(255,255,255,.7);
}
.flower{
    position:absolute;
    z-index:2;
    pointer-events:none;
    filter:drop-shadow(0 6px 8px rgba(46,64,56,.12));
    animation:flowerFloat 7s ease-in-out infinite;
}
.flower-1{left:2%;top:24%;font-size:2.1rem}
.flower-2{left:7%;bottom:17%;font-size:1.6rem;animation-delay:.6s}
.flower-3{right:2%;top:28%;font-size:2rem;animation-delay:1.1s}
.flower-4{left:39%;top:20%;font-size:2.2rem;animation-delay:1.5s}
.flower-5{right:4%;bottom:22%;font-size:2.3rem;animation-delay:2s}
.flower-6{left:49%;bottom:18%;font-size:1.6rem;animation-delay:2.4s}
.flower-section{position:relative;overflow:hidden}
.flower-7{left:3%;top:18%;font-size:2rem}
.flower-8{right:5%;top:12%;font-size:1.8rem;animation-delay:1.2s}
.flower-9{left:18%;bottom:12%;font-size:1.6rem;animation-delay:2.2s}
@keyframes flowerFloat{0%,100%{transform:translateY(0) rotate(-4deg)}50%{transform:translateY(-12px) rotate(5deg)}}
.why-us{background:linear-gradient(180deg,#fff 0%,#fffaf3 100%)}
.why-card:nth-child(1) .why-icon{background:#ffe1ee;color:#ec1c79}
.why-card:nth-child(2) .why-icon{background:#fff0ca;color:#ff9e00}
.why-card:nth-child(3) .why-icon{background:#e2f2d5;color:#58a833}
.why-card:nth-child(4) .why-icon{background:#dff5ff;color:#0c97d5}
@media (max-width:1000px){
    .hero-mockup-style .hero-grid{grid-template-columns:1fr;gap:26px}
    .hero-mockup-style .hero-text{max-width:760px;margin:0 auto;text-align:center}
    .hero-scene img{max-width:760px;margin:0 auto}
}
@media (max-width:700px){
    .hero-mockup-style{padding:42px 0 80px}
    .hero-mockup-style .hero-text{padding:24px 18px;border-radius:26px}
    .hero-scene img{border-radius:28px;aspect-ratio:4/3}
    .flower{font-size:1.25rem!important;opacity:.85}
    .flower-4,.flower-6{display:none}
}

/* ======================================================
   CLEAN MOCKUP-STYLE HOMEPAGE REBUILD
   ====================================================== */
.home-page{background:#fffaf2;overflow-x:hidden}.new-home-header{background:#fffdf9}.new-home-header .header-top{align-items:center}.new-home-header .logo-area img{max-width:430px;width:100%;height:auto}.new-home-header .ofsted-badge{display:none}.built-hero{position:relative;overflow:hidden;padding:38px 0 54px;background:linear-gradient(180deg,#fffdf8 0%,#eaf9ff 42%,#fff8ef 100%)}.built-hero:before{content:"";position:absolute;left:-5%;right:-5%;top:-48px;height:120px;background:#fffdf9;border-radius:0 0 50% 50%;z-index:0}.built-hero:after{content:"";position:absolute;left:-5%;right:-5%;bottom:-54px;height:115px;background:#fff;border-radius:50% 50% 0 0;z-index:0}.built-hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:0.9fr 1.25fr;align-items:center;gap:34px}.built-hero-text{background:rgba(255,255,255,.62);backdrop-filter:blur(4px);padding:38px;border-radius:34px;box-shadow:0 22px 55px rgba(41,73,83,.11)}.built-hero-text h1{margin:0;color:#071a3d;font-size:clamp(2.4rem,5.2vw,5.6rem);line-height:1.05;font-weight:900;letter-spacing:-.04em}.built-hero-text .pink{color:#ec1975}.built-hero-text .blue{color:#0798d8}.hero-script{margin:18px 0 16px;color:#ec1975;font-size:clamp(1.55rem,2.8vw,2.8rem);font-weight:800;font-family:cursive;line-height:1.1}.hero-copy{max-width:620px;font-size:1.18rem;line-height:1.6;color:#11264a;font-weight:600}.built-hero-picture{position:relative}.built-hero-picture img{width:100%;display:block;border-radius:42px;object-fit:cover;box-shadow:0 28px 70px rgba(0,69,94,.18)}.built-hero-picture:after{content:"";position:absolute;left:-28px;right:-28px;bottom:-22px;height:52px;background:#fff;border-radius:50%;box-shadow:0 -12px 25px rgba(255,255,255,.8)}.deco{position:absolute;z-index:3;pointer-events:none;filter:drop-shadow(0 8px 8px rgba(47,73,61,.14));animation:newFloat 7s ease-in-out infinite}.d1{left:2%;top:25%;font-size:2.1rem}.d2{left:39%;top:18%;font-size:2.3rem;animation-delay:.7s}.d3{left:48%;bottom:16%;font-size:1.7rem;animation-delay:1.5s}.d4{right:2%;top:31%;font-size:2.3rem;animation-delay:1.1s}.d5{right:21%;top:21%;font-size:2.1rem;animation-delay:2s}.d6{right:6%;bottom:23%;font-size:2rem;animation-delay:2.5s}@keyframes newFloat{0%,100%{transform:translateY(0) rotate(-5deg)}50%{transform:translateY(-14px) rotate(6deg)}}.choice-cards{position:relative;padding:54px 0 64px;background:#fff}.choice-cards h2{text-align:center;color:#ec1975;font-size:clamp(1.8rem,3vw,2.7rem);margin:0 0 34px}.cards-row{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}.choice-card{background:#fff;border-radius:24px;padding:28px;box-shadow:0 16px 45px rgba(45,55,72,.12);border:1px solid rgba(255,255,255,.9);min-height:230px}.circle-icon{width:88px;height:88px;border-radius:50%;display:grid;place-items:center;font-size:2.6rem;margin-bottom:18px}.pink-bg{background:#ffe0ee}.yellow-bg{background:#fff0bf}.green-bg{background:#dff0d2}.blue-bg{background:#dff4ff}.choice-card h3{margin:0 0 10px;font-size:1.25rem}.choice-card:nth-child(1) h3{color:#ec1975}.choice-card:nth-child(2) h3{color:#f58b00}.choice-card:nth-child(3) h3{color:#338b26}.choice-card:nth-child(4) h3{color:#087cc0}.choice-card p{margin:0;color:#1e2d43;line-height:1.6}.d7{left:3%;top:14%;font-size:2rem}.d8{right:5%;bottom:10%;font-size:1.7rem}.d9{left:16%;bottom:12%;font-size:1.6rem}.home-welcome-new{position:relative;padding:58px 0;background:linear-gradient(180deg,#fff 0%,#edf9df 100%);overflow:hidden}.welcome-new-grid{display:grid;grid-template-columns:260px 1fr 1.4fr;align-items:center;gap:34px}.welcome-photo img{width:250px;height:250px;border-radius:50%;object-fit:cover;border:12px solid #a9cf6c;box-shadow:0 18px 45px rgba(64,91,50,.18)}.welcome-new-text h2{font-size:clamp(2rem,3.6vw,3.6rem);color:#ec1975;font-family:cursive;margin:2px 0 10px}.welcome-new-text p{font-size:1.05rem;line-height:1.65;color:#18314f}.qual-strip{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;text-align:center}.qual-strip div{padding:16px 10px;border-left:1px dashed #9aba62;color:#3d841d;font-size:2rem}.qual-strip strong{display:block;color:#17223c;font-size:.98rem;line-height:1.25;margin-top:8px}.btn-green{display:inline-block;background:#4f9b20;color:#fff;padding:13px 24px;border-radius:999px;text-decoration:none;font-weight:800;box-shadow:0 12px 25px rgba(47,111,17,.2)}.d10{left:2%;bottom:10%;font-size:2.4rem}.d11{right:3%;top:16%;font-size:2rem}.school-highlight{background:#fffaf2}.school-box{border-radius:30px!important;box-shadow:0 18px 50px rgba(45,55,72,.1)}.cta{background:linear-gradient(135deg,#ec1975,#ff83b3)!important}.cta h2,.cta p{color:#fff!important}
@media (max-width:1100px){.built-hero-grid{grid-template-columns:1fr}.built-hero-text{text-align:center;max-width:850px;margin:0 auto}.hero-copy{margin-left:auto;margin-right:auto}.built-hero-picture img{max-height:560px}.cards-row{grid-template-columns:repeat(2,1fr)}.welcome-new-grid{grid-template-columns:1fr;text-align:center}.welcome-photo img{margin:auto}.qual-strip{grid-template-columns:repeat(5,1fr)}}
@media (max-width:760px){.new-home-header .logo-area img{max-width:300px}.built-hero{padding-top:20px}.built-hero-text{padding:25px 18px;border-radius:26px}.built-hero-text h1{font-size:3rem}.hero-script{font-size:1.6rem}.hero-copy{font-size:1rem}.hero-buttons{justify-content:center;gap:12px}.built-hero-picture img{border-radius:28px;min-height:280px}.cards-row{grid-template-columns:1fr}.choice-card{min-height:auto}.qual-strip{grid-template-columns:1fr 1fr}.qual-strip div{border-left:0;border-top:1px dashed #9aba62}.deco{font-size:1.2rem!important;opacity:.8}.d2,.d3,.d5{display:none}.contact-area{gap:10px}}


/* ======================================================
   THEME CARRIED THROUGH INNER PAGES
   ====================================================== */
.inner-theme{
    background:#fffaf2;
}
.inner-header{
    background:#fffdf9;
    border-bottom:0;
}
.inner-header .header-top{padding:12px 0 8px;}
.inner-header .logo-area img{max-width:360px;width:100%;filter:drop-shadow(0 8px 16px rgba(20,36,70,.06));}
.inner-header .ofsted-badge{display:none;}
.inner-header .contact-item .icon{
    background:#fff;
    color:#ec1975;
    border:2px solid #ffd6e7;
    box-shadow:0 10px 25px rgba(236,25,117,.08);
}
.inner-header .contact-item strong{color:#071a3d;}
.inner-header nav ul{
    background:rgba(255,255,255,.92);
    box-shadow:0 14px 34px rgba(20,36,70,.12);
    border:1px solid rgba(255,255,255,.85);
}
.inner-header nav a.active,
.inner-header nav a:hover{
    background:#ec1975;
    color:#fff;
}
.page-decor{position:relative;z-index:2;pointer-events:none;}
.deco-page{position:absolute;font-size:2rem;filter:drop-shadow(0 8px 9px rgba(47,73,61,.13));animation:newFloat 7s ease-in-out infinite;}
.dp1{left:2%;top:60px}.dp2{left:42%;top:100px;animation-delay:.8s}.dp3{right:4%;top:150px;animation-delay:1.5s}.dp4{right:12%;top:55px;animation-delay:2.2s}
.inner-mock-hero{
    position:relative;
    overflow:hidden;
    padding:70px 0 90px;
    background:linear-gradient(180deg,#fffdf8 0%,#effbff 55%,#fffaf2 100%);
}
.inner-mock-hero:before{
    content:"";
    position:absolute;
    left:-5%;right:-5%;top:-70px;height:125px;
    background:#fffdf9;
    border-radius:0 0 50% 50%;
}
.inner-mock-hero:after{
    content:"";
    position:absolute;
    left:-5%;right:-5%;bottom:-58px;height:120px;
    background:#fffaf2;
    border-radius:50% 50% 0 0;
}
.inner-mock-hero .container{position:relative;z-index:1;}
.inner-mock-hero .hero-grid{grid-template-columns:minmax(340px,.85fr) minmax(300px,1fr);}
.inner-mock-hero .hero-content{
    background:rgba(255,255,255,.78);
    border-radius:34px;
    padding:36px;
    box-shadow:0 22px 55px rgba(41,73,83,.11);
    backdrop-filter:blur(3px);
}
.inner-mock-hero .welcome,
.inner-mock-hero .section-tag{
    background:#ffe0ee!important;
    color:#ec1975!important;
    border-radius:999px;
    padding:8px 16px;
    display:inline-block;
}
.inner-mock-hero h1{
    color:#071a3d;
    font-size:clamp(2.4rem,5vw,4.7rem);
}
.inner-mock-hero h1::first-letter{color:#ec1975;}
.inner-mock-hero .intro{color:#11264a;font-weight:700;}
.inner-mock-hero .hero-image img{
    border-radius:34px;
    box-shadow:0 22px 60px rgba(0,69,94,.18);
    aspect-ratio:16/10;
    object-fit:cover;
}
.inner-theme .content-section,
.inner-theme .features,
.inner-theme .page-features{
    background:#fffaf2;
    position:relative;
}
.inner-theme .soft-bg{
    background:linear-gradient(180deg,#fff 0%,#edf9df 100%);
}
.inner-theme .section-heading h2,
.inner-theme .section-title h2{
    color:#ec1975;
    font-family:'Baloo 2',cursive;
    font-size:clamp(2rem,3.3vw,3.2rem);
}
.inner-theme .card-text,
.inner-theme .feature-card,
.inner-theme .service-card,
.inner-theme .testimonial-card,
.inner-theme .contact-card,
.inner-theme .gallery-card,
.inner-theme .school-box,
.inner-theme .info-badge{
    border-radius:26px;
    background:#fff;
    border:1px solid rgba(255,255,255,.9);
    box-shadow:0 16px 45px rgba(45,55,72,.11);
}
.inner-theme .feature-card:nth-child(1) .feature-icon,
.inner-theme .service-card:nth-child(1) .service-icon{background:#ffe0ee;color:#ec1975;}
.inner-theme .feature-card:nth-child(2) .feature-icon,
.inner-theme .service-card:nth-child(2) .service-icon{background:#fff0bf;color:#f58b00;}
.inner-theme .feature-card:nth-child(3) .feature-icon,
.inner-theme .service-card:nth-child(3) .service-icon{background:#dff0d2;color:#338b26;}
.inner-theme .feature-card:nth-child(4) .feature-icon,
.inner-theme .service-card:nth-child(4) .service-icon{background:#dff4ff;color:#087cc0;}
.inner-theme .about-photo img,
.inner-theme .gallery-card img,
.inner-theme .contact-image img{
    border-radius:34px;
    box-shadow:0 20px 50px rgba(20,36,70,.12);
}
.inner-theme .cta,
.inner-theme .theme-footer{
    background:linear-gradient(135deg,#ec1975,#ff83b3)!important;
    color:#fff;
}
.inner-theme .theme-footer a,
.inner-theme .theme-footer p,
.inner-theme .theme-footer h3,
.inner-theme .theme-footer .copyright{color:#fff;}
.inner-theme .footer-logo{background:#fff;border-radius:22px;padding:8px;}
.inner-theme .copyright{background:rgba(0,0,0,.08);}
@media (max-width:900px){
    .inner-mock-hero{background:linear-gradient(180deg,#effbff 0%,#fffaf2 100%);padding:46px 0 72px;}
    .inner-mock-hero .hero-grid{grid-template-columns:1fr;}
    .inner-mock-hero .hero-content{text-align:center;padding:26px 18px;}
    .inner-mock-hero .hero-image img{max-height:340px;}
    .deco-page{font-size:1.25rem;}
}

/* Logo consistency update */
.inner-header .logo-area img,
.footer-logo{
    object-fit: contain;
}
.inner-header .logo-area img{
    max-width: 430px;
}

/* Final inner-page cleanup: no faded/hero background image on inner pages */
.inner-theme .inner-mock-hero .hero-image{
    display:none !important;
}
.inner-theme .inner-mock-hero .hero-grid{
    grid-template-columns:1fr !important;
    max-width:900px;
}
.inner-theme .inner-mock-hero .hero-content{
    max-width:820px;
    margin:0 auto;
    text-align:center;
}

/* Sky, clouds and flower background for all inner pages only */
body.inner-theme{
    background:#e8f9ff url('../images/inner-sky-clouds-flowers.png') center top / cover fixed no-repeat !important;
}
body.inner-theme::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background:linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,.48) 62%,rgba(255,250,242,.76));
    z-index:-1;
}
.inner-theme .inner-mock-hero,
.inner-theme .content-section,
.inner-theme .features,
.inner-theme .page-features,
.inner-theme .soft-bg,
.inner-theme .contact-section,
.inner-theme .reviews,
.inner-theme .testimonials{
    background:transparent !important;
}
.inner-theme .inner-mock-hero:before{
    background:rgba(255,253,249,.96) !important;
}
.inner-theme .inner-mock-hero:after{
    background:rgba(255,255,255,.55) !important;
}
.inner-theme .content-section .container,
.inner-theme .page-features .container,
.inner-theme .features .container{
    position:relative;
    z-index:1;
}
.inner-theme .card-text,
.inner-theme .feature-card,
.inner-theme .service-card,
.inner-theme .testimonial,
.inner-theme .review-card,
.inner-theme .contact-card,
.inner-theme .gallery-item,
.inner-theme .info-badge,
.inner-theme .school-box,
.inner-theme form{
    background:rgba(255,255,255,.92) !important;
    backdrop-filter:blur(3px);
}
.inner-theme .page-decor::before{
    content:"🌺   🌼   🌸   🦋   🌷";
    position:fixed;
    left:18px;
    bottom:24px;
    font-size:1.85rem;
    letter-spacing:14px;
    pointer-events:none;
    z-index:1;
    filter:drop-shadow(0 6px 8px rgba(47,73,61,.13));
}
.inner-theme .page-decor::after{
    content:"🌷   🦋   🌸   🌼   🌺";
    position:fixed;
    right:18px;
    bottom:24px;
    font-size:1.85rem;
    letter-spacing:14px;
    pointer-events:none;
    z-index:1;
    filter:drop-shadow(0 6px 8px rgba(47,73,61,.13));
}
@media (max-width:760px){
    body.inner-theme{background-attachment:scroll !important;background-size:auto 100%;}
    .inner-theme .page-decor::before,.inner-theme .page-decor::after{font-size:1.15rem;letter-spacing:6px;bottom:12px;opacity:.75;}
}


/* Final professional polish: page-by-page character, softer movement and mobile finishing */
:root{
    --flower-shadow:0 8px 16px rgba(46,64,56,.13);
}
.inner-theme .site-header{
    position:relative;
    z-index:5;
}
.inner-theme .page-hero.inner-mock-hero{
    padding-top:64px;
    padding-bottom:82px;
}
.inner-theme .inner-mock-hero .hero-content{
    background:rgba(255,255,255,.94);
    border-radius:34px;
    padding:36px 34px;
    box-shadow:0 20px 54px rgba(20,36,70,.11);
    border:1px solid rgba(255,255,255,.9);
}
.inner-theme .inner-mock-hero .welcome{
    color:#ec1975;
    font-weight:900;
    letter-spacing:1px;
}
.inner-theme .inner-mock-hero h1{
    color:#1497d3;
    text-shadow:0 2px 0 rgba(255,255,255,.85);
}
.inner-theme .inner-mock-hero .intro{
    color:#35515f;
}
.inner-theme .card-text,
.inner-theme .feature-card,
.inner-theme .service-card,
.inner-theme .testimonial,
.inner-theme .review-card,
.inner-theme .contact-card,
.inner-theme .gallery-item,
.inner-theme .info-badge,
.inner-theme .school-box,
.inner-theme form{
    transition:transform .25s ease, box-shadow .25s ease;
}
.inner-theme .feature-card:hover,
.inner-theme .service-card:hover,
.inner-theme .testimonial:hover,
.inner-theme .review-card:hover,
.inner-theme .gallery-item:hover,
.inner-theme .contact-card:hover,
.inner-theme .info-badge:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 60px rgba(20,36,70,.14) !important;
}
.btn-pink,
.button,
.pill-button{
    transition:transform .22s ease, filter .22s ease, box-shadow .22s ease;
}
.btn-pink:hover,
.button:hover,
.pill-button:hover{
    transform:translateY(-3px);
    filter:brightness(1.04);
}
.gallery-item img,
.gallery-item-more img,
.about-photo img,
.welcome-image-more img{
    transition:transform .35s ease;
}
.gallery-item:hover img,
.gallery-item-more:hover img{
    transform:scale(1.045);
}
.inner-theme .about-photo img:hover,
.welcome-image-more img:hover{
    transform:scale(1.015);
}

/* Different decorations on each internal page */
.inner-theme.page-about .page-decor::before{content:"🌼   🦋   🌼   🌸";}
.inner-theme.page-about .page-decor::after{content:"🦋   🌸   🌼   🦋";}
.inner-theme.page-services .page-decor::before{content:"🌷   ☁️   🌸   🦋";}
.inner-theme.page-services .page-decor::after{content:"🌼   🌷   🦋   🌸";}
.inner-theme.page-gallery .page-decor::before{content:"🦋   🌺   🦋   🌼";}
.inner-theme.page-gallery .page-decor::after{content:"🌸   🦋   🌺   🦋";}
.inner-theme.page-testimonials .page-decor::before{content:"🌸   💛   🌼   🦋";}
.inner-theme.page-testimonials .page-decor::after{content:"🦋   🌸   💛   🌺";}
.inner-theme.page-contact .page-decor::before{content:"🌷   🌼   ☀️   🌸";}
.inner-theme.page-contact .page-decor::after{content:"🌸   ☀️   🌼   🌷";}

/* Gentle cloud and flower movement */
body.inner-theme::after{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    opacity:.32;
    background:
        radial-gradient(ellipse at 8% 18%, rgba(255,255,255,.9) 0 7%, transparent 8%),
        radial-gradient(ellipse at 22% 13%, rgba(255,255,255,.8) 0 6%, transparent 7%),
        radial-gradient(ellipse at 78% 20%, rgba(255,255,255,.9) 0 8%, transparent 9%),
        radial-gradient(ellipse at 92% 15%, rgba(255,255,255,.76) 0 6%, transparent 7%);
    animation:cloudDrift 38s ease-in-out infinite alternate;
}
.inner-theme .page-decor::before,
.inner-theme .page-decor::after{
    animation:flowerFloat 5.5s ease-in-out infinite alternate;
}
.inner-theme .page-decor::after{animation-delay:1.2s;}
@keyframes cloudDrift{
    from{transform:translateX(-14px)}
    to{transform:translateX(18px)}
}
@keyframes flowerFloat{
    from{transform:translateY(0)}
    to{transform:translateY(-8px)}
}

/* More consistent image/card crop and page spacing */
.inner-theme .about-photo img,
.inner-theme .contact-image img,
.inner-theme .gallery-item img{
    object-fit:cover;
}
.inner-theme .about-photo img{aspect-ratio:4/3;}
.inner-theme .content-section:last-of-type{padding-bottom:90px;}
.inner-theme .service-icon,
.inner-theme .feature-icon,
.inner-theme .why-icon,
.inner-theme .contact-detail-icon{
    box-shadow:inset 0 -4px 0 rgba(0,0,0,.04);
}
.inner-theme .theme-footer{
    border-top:8px solid rgba(255,255,255,.45);
}

@media (prefers-reduced-motion: reduce){
    *,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important;}
}
@media (max-width:760px){
    .inner-theme .inner-mock-hero .hero-content{padding:28px 20px;border-radius:26px;}
    .inner-theme .inner-mock-hero h1{font-size:2.45rem;}
    .inner-theme .page-hero.inner-mock-hero{padding-top:44px;padding-bottom:64px;}
    .inner-theme .card-text,
    .inner-theme .feature-card,
    .inner-theme .service-card,
    .inner-theme .testimonial,
    .inner-theme .review-card,
    .inner-theme .contact-card,
    .inner-theme form{border-radius:22px;}
}

/* Final button consistency: match the homepage pill button style across every page */
.btn,
.btn-pink,
.button,
.pill-button,
input[type="submit"],
button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:10px;
    background:#ec197b !important;
    color:#ffffff !important;
    text-decoration:none !important;
    padding:15px 26px !important;
    border-radius:999px !important;
    border:0 !important;
    font-weight:800 !important;
    line-height:1.2;
    box-shadow:0 10px 20px rgba(236,25,123,.25) !important;
    cursor:pointer;
    transition:transform .22s ease, filter .22s ease, box-shadow .22s ease;
}
.btn:hover,
.btn-pink:hover,
.button:hover,
.pill-button:hover,
input[type="submit"]:hover,
button:hover{
    transform:translateY(-3px);
    filter:brightness(1.04);
    box-shadow:0 14px 26px rgba(236,25,123,.30) !important;
}
.cta .btn,
.cta .btn-pink,
.cta .button,
.cta .pill-button,
.call-to-action .btn,
.call-to-action .btn-pink,
.call-to-action .button,
.call-to-action .pill-button,
.cta-card-more .pill-button{
    background:#ffffff !important;
    color:#ec197b !important;
    box-shadow:none !important;
}

/* Match inner-page navigation to the homepage header style */
.inner-header .nav-wrapper{
    padding:0 0 22px;
}
.inner-header nav ul{
    background:transparent !important;
    box-shadow:none !important;
    border:0 !important;
    border-radius:0 !important;
    padding:0 !important;
    gap:34px !important;
}
.inner-header nav a{
    position:relative;
    background:transparent !important;
    color:#071a3d !important;
    border-radius:0 !important;
    padding:8px 0 14px !important;
    font-weight:900;
    box-shadow:none !important;
}
.inner-header nav a::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:3px;
    background:#ec1975;
    border-radius:999px;
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .22s ease;
}
.inner-header nav a.active,
.inner-header nav a:hover{
    color:#ec1975 !important;
    background:transparent !important;
}
.inner-header nav a.active::after,
.inner-header nav a:hover::after{
    transform:scaleX(1);
}
.inner-header nav a[href="index.html"]{
    color:#ec1975 !important;
}
@media (max-width:760px){
    .inner-header nav ul{gap:12px !important; padding:0 12px !important;}
    .inner-header nav a{font-size:.9rem; padding:7px 0 10px !important;}
}


/* FINAL FIX: inner-page navigation must match the homepage navigation style */
body.inner-theme header.inner-header .nav-wrapper{
    padding:0 0 24px !important;
}
body.inner-theme header.inner-header nav ul{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex-wrap:wrap !important;
    gap:34px !important;
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
    background:transparent !important;
    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
}
body.inner-theme header.inner-header nav li{
    margin:0 !important;
    padding:0 !important;
}
body.inner-theme header.inner-header nav a,
body.inner-theme header.inner-header nav a:visited{
    position:relative !important;
    display:inline-block !important;
    padding:8px 0 14px !important;
    margin:0 !important;
    background:transparent !important;
    color:#071a3d !important;
    border:0 !important;
    border-radius:0 !important;
    box-shadow:none !important;
    text-decoration:none !important;
    font-weight:900 !important;
    line-height:1.2 !important;
}
body.inner-theme header.inner-header nav a::after{
    content:"" !important;
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    height:3px !important;
    background:#ec1975 !important;
    border-radius:999px !important;
    transform:scaleX(0) !important;
    transform-origin:center !important;
    transition:transform .2s ease !important;
}
body.inner-theme header.inner-header nav a.active,
body.inner-theme header.inner-header nav a:hover{
    background:transparent !important;
    color:#ec1975 !important;
    border:0 !important;
    box-shadow:none !important;
}
body.inner-theme header.inner-header nav a.active::after,
body.inner-theme header.inner-header nav a:hover::after{
    transform:scaleX(1) !important;
}
@media (max-width:760px){
    body.inner-theme header.inner-header nav ul{gap:14px !important; padding:0 14px !important;}
    body.inner-theme header.inner-header nav a{font-size:.9rem !important; padding:7px 0 10px !important;}
}


/* Polished footer launch update */
.polished-footer .footer-brand p{max-width:330px;}
.polished-footer .footer-logo{background:rgba(255,255,255,.96)!important;border-radius:24px!important;padding:8px!important;box-shadow:0 14px 34px rgba(0,0,0,.10);}
.polished-footer a{color:#fff;text-decoration:none;font-weight:700;}
.polished-footer a:hover{text-decoration:underline;}
.polished-footer .footer-ofsted{display:inline-block;margin-top:8px;padding:9px 14px;border-radius:999px;background:rgba(255,255,255,.18);}
.polished-footer .copyright{text-align:center;padding:16px 20px;margin-top:34px;background:rgba(0,0,0,.08);font-weight:700;}
@media (max-width:760px){.polished-footer .footer-grid{text-align:center;}.polished-footer .footer-brand p{margin-left:auto;margin-right:auto;}}
