/* ================================
   LADYBIRD CHILDCARE — styles.css
   ================================ */

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

:root {
    --gold:   #FFD700;
    --cream:  #FAF7F2;
    --dark:   #1A1A1A;
    --body:   #555;
    --white:  #ffffff;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    line-height: 1.15;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* SVG waves sit flush, no gaps */
svg.wave {
    display: block;
    width: 100%;
    height: 70px;
    margin-bottom: -1px;
}

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

/* ================================
   BUTTONS
   ================================ */
.btn-dark {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

/* ================================
   NAV
   ================================ */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 78px;
    gap: 36px;
}
.nav-logo img { height: 66px; width: auto; }
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
}
.nav-links a {
    color: var(--body);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: #a88800; }
.nav-cta {
    background: var(--dark);
    color: var(--white);
    padding: 11px 24px;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background 0.2s;
}
.nav-cta:hover { background: #333; }
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}
.hamburger span { display: block; width: 25px; height: 3px; background: var(--dark); border-radius: 3px; }

/* ================================
   HERO
   ================================ */
.hero {
    background: var(--cream);
    padding: 52px 40px 0;
}

.hero-headline {
    max-width: 1200px;
    margin: 0 auto 36px;
    text-align: center;
}
.hero-headline h1 {
    font-size: clamp(2.6rem, 5.2vw, 5rem);
    color: var(--dark);
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-stage {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.hero-left {
    flex-shrink: 0;
    width: 210px;
    padding-bottom: 90px;
    text-align: center;
}
.hero-desc {
    font-size: 1rem;
    color: var(--body);
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Bubble cluster */
.hero-bubbles {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.bubble-cluster {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.bubble {
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
    position: relative;
}
.b1 { width: 270px; height: 270px; margin-right: -55px; z-index: 1; }
.b2 { width: 420px; height: 420px; z-index: 3; }
.b3 { width: 285px; height: 285px; margin-left: -55px; z-index: 2; }
.bubble img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.hero-badge {
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 10;
    background: var(--gold);
    color: var(--dark);
    width: 106px;
    height: 106px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    line-height: 1.3;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}

.squiggle {
    position: absolute;
    bottom: 16px;
    right: -10px;
    width: 115px;
    z-index: 5;
    pointer-events: none;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testi-section {
    background: var(--white);
    padding: 60px 40px 70px;
}
.testi-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 36px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.testi-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.testi-card { }
.stars { color: #c8a800; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-card p { font-size: 0.95rem; color: var(--body); line-height: 1.7; font-style: italic; margin-bottom: 12px; }
.author { font-size: 0.88rem; font-weight: 700; color: var(--dark); }

/* ================================
   ABOUT
   ================================ */
.about-section {
    background: var(--gold);
    padding: 60px 40px 80px;
}
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Blob images */
.about-imgs {
    position: relative;
    height: 440px;
}
.blob-main {
    position: absolute;
    top: 0; left: 0;
    width: 285px; height: 320px;
    border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}
.blob-main img { width: 100%; height: 100%; object-fit: cover; }
.blob-sec {
    position: absolute;
    bottom: 10px; right: 0;
    width: 225px; height: 245px;
    border-radius: 44% 56% 60% 40% / 54% 38% 62% 46%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 14px 36px rgba(0,0,0,0.14);
}
.blob-sec img { width: 100%; height: 100%; object-fit: cover; }

/* About text */
.about-text .label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dark);
    opacity: 0.6;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
}
.about-text h2 { font-size: clamp(1.8rem, 2.6vw, 2.5rem); margin-bottom: 16px; }
.about-text > p {
    font-size: 0.98rem;
    color: var(--dark);
    opacity: 0.82;
    line-height: 1.75;
    margin-bottom: 18px;
}
.about-text ul {
    list-style: none;
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.about-text ul li {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    padding-left: 20px;
    position: relative;
}
.about-text ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    background: var(--dark);
    border-radius: 50%;
}

/* ================================
   HIGHLIGHTS
   ================================ */
.highlights-section {
    background: var(--cream);
    padding: 60px 40px 80px;
}
.highlights-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.hl-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.hl-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.hl-card:hover .hl-img { transform: scale(1.03); }
.hl-img img { width: 100%; height: 100%; object-fit: cover; }
.hl-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.hl-card p { font-size: 0.92rem; color: var(--body); line-height: 1.65; }

/* ================================
   CONTACT
   ================================ */
.contact-section { background: var(--gold); }
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}
.contact-form {
    padding: 60px 55px 70px;
}
.contact-form h2 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); margin-bottom: 6px; }
.contact-sub { font-size: 0.93rem; color: var(--dark); opacity: 0.7; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.form-group label span { font-weight: 400; opacity: 0.55; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 13px;
    border: 2px solid rgba(0,0,0,0.16);
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.94rem;
    background: rgba(255,255,255,0.65);
    color: var(--dark);
    transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--dark); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 92px; }
.check-label { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; font-weight: 600; cursor: pointer; }
.check-label input { width: auto; accent-color: var(--dark); }
.check-label a { color: var(--dark); text-decoration: underline; }

.contact-map iframe { width: 100%; height: 100%; min-height: 480px; border: none; display: block; }

/* ================================
   PRIVACY
   ================================ */
.privacy-section { background: var(--white); padding: 60px 40px 80px; }
.privacy-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.privacy-intro { max-width: 1200px; margin: 0 auto 32px; font-size: 0.97rem; color: var(--body); line-height: 1.7; }
.priv-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.priv-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 24px 20px;
    border-left: 5px solid var(--gold);
    transition: transform 0.2s, box-shadow 0.2s;
}
.priv-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0,0,0,0.08); }
.priv-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.priv-card p { font-size: 0.87rem; color: var(--body); line-height: 1.65; }

/* ================================
   FOOTER
   ================================ */
footer { background: var(--dark); color: var(--white); }
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px 40px 28px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 44px;
}
.footer-brand img { height: 50px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.48); line-height: 1.65; max-width: 220px; }
.footer-col h4 { font-size: 0.98rem; color: var(--white); margin-bottom: 13px; font-family: 'Fredoka One', cursive; }
.footer-col p, .footer-col a { display: block; font-size: 0.87rem; color: rgba(255,255,255,0.48); margin-bottom: 7px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 18px 40px; font-size: 0.82rem; color: rgba(255,255,255,0.28); text-align: center; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: var(--gold); }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .priv-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .b1 { width: 210px; height: 210px; }
    .b2 { width: 340px; height: 340px; }
    .b3 { width: 225px; height: 225px; }
}

@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 78px; left: 0; right: 0;
        background: var(--white);
        padding: 20px 40px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        gap: 14px;
        z-index: 999;
    }
    .hero-stage { flex-direction: column; align-items: center; gap: 24px; }
    .hero-left { width: 100%; padding-bottom: 0; text-align: center; }
    .hero-headline h1 { font-size: clamp(2.1rem, 7vw, 3.4rem); }
    .b1 { width: 170px; height: 170px; margin-right: -32px; }
    .b2 { width: 270px; height: 270px; }
    .b3 { width: 180px; height: 180px; margin-left: -32px; }
    .hero-badge { width: 78px; height: 78px; font-size: 0.82rem; }
    .testi-grid { grid-template-columns: 1fr; gap: 22px; }
    .about-inner { grid-template-columns: 1fr; gap: 36px; }
    .about-imgs { height: 280px; }
    .blob-main { width: 200px; height: 240px; }
    .blob-sec { width: 165px; height: 180px; }
    .hl-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .contact-split { grid-template-columns: 1fr; }
    .contact-map iframe { min-height: 320px; }
}

@media (max-width: 640px) {
    .hl-grid { grid-template-columns: 1fr; }
    .priv-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 44px 28px 52px; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 420px) {
    .hero { padding: 36px 20px 0; }
    .priv-grid { grid-template-columns: 1fr; }
    .b1 { width: 130px; height: 130px; margin-right: -24px; }
    .b2 { width: 200px; height: 200px; }
    .b3 { width: 140px; height: 140px; margin-left: -24px; }
}