/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', Lato, sans-serif; color: #333; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --blue: #0C6DA3;
  --yellow: #F4C430;
  --green: #4CAF50;
  --orange: #F47C20;
  --brown: #8B5A2B;
  --white: #fff;
  --light: #f8f9fa;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Poppins', Montserrat, sans-serif; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* ===== HEADER ===== */
header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  padding: 0 2rem;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.header-logo-img { height: 52px; width: auto; display: block; object-fit: contain; }
nav ul { display: flex; gap: 1.8rem; align-items: center; }
nav a { font-weight: 600; font-size: 0.9rem; color: #444; transition: color var(--transition); position: relative; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); transition: width var(--transition); }
nav a:hover, nav a.active { color: var(--blue); }
nav a:hover::after, nav a.active::after { width: 100%; }
.btn { display: inline-block; padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all var(--transition); border: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #0a5a8a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(12,109,163,0.3); }
.btn-secondary { background: var(--yellow); color: #333; }
.btn-secondary:hover { background: #e0b020; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #3d9140; transform: translateY(-2px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: #333; border-radius: 2px; transition: all var(--transition); }

/* ===== FOOTER ===== */
footer { background: #0a2540; color: #ccc; padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: var(--yellow); }
.footer-brand p { margin-top: 0.8rem; font-size: 0.88rem; color: #aaa; }
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
footer ul li { margin-bottom: 0.5rem; font-size: 0.88rem; }
footer ul li a { color: #aaa; transition: color var(--transition); }
footer ul li a:hover { color: var(--yellow); }
footer address { font-style: normal; font-size: 0.88rem; line-height: 1.8; color: #aaa; }
footer address a { color: #aaa; }
footer address a:hover { color: var(--yellow); }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 1rem; border-top: 1px solid #1e3a5f; text-align: center; font-size: 0.82rem; color: #666; }

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; background: rgba(12,109,163,0.1); color: var(--blue); font-size: 0.8rem; font-weight: 600; padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.section-title { margin-bottom: 1rem; color: #1a1a2e; }
.section-subtitle { color: #666; max-width: 600px; margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== CARDS ===== */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.8rem; transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.card-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; color: #1a1a2e; }
.card p { font-size: 0.9rem; color: #666; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

/* ===== HERO – Banner Style ===== */
.hero {
  background: #fff;
  padding: 0;
  overflow: hidden;
  border-bottom: 3px solid #f0f0f0;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  align-items: center;
  min-height: 220px;
  padding: 1.5rem 2rem;
  gap: 1rem;
}

/* LEFT col – bird illustration */
.hero-logo-col { display: flex; align-items: center; justify-content: center; }
.hero-bird-logo { width: 170px; height: 170px; flex-shrink: 0; }
.hero-bird-logo svg { width: 100%; height: 100%; }

/* CENTER col – text */
.hero-center-col { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.hero-school-name { display: flex; flex-direction: column; line-height: 1.1; margin-bottom: 0.4rem; }
.hero-name-riddle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0C6DA3;
  letter-spacing: -0.5px;
}
.hero-name-school {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #8B5A2B;
  letter-spacing: 4px;
}
.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: #444;
  letter-spacing: 1px;
  margin-top: 0.2rem;
}
.hero-pill {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.45rem 1.4rem;
  border-radius: 6px;
  margin: 0.4rem 0;
}
.hero-location {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 1px;
  margin-top: 0.2rem;
}
.hero-phones {
  display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--orange);
}
.hero-phones a { color: var(--orange); text-decoration: none; }
.hero-phones a:hover { text-decoration: underline; }
.phone-sep { color: #888; font-weight: 400; }
.hero-address {
  font-size: 0.82rem;
  color: #555;
  margin-top: 0.2rem;
}

/* RIGHT col – photo with orange shape */
.hero-photo-col {
  position: relative;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-orange-shape {
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 220px;
  background: var(--orange);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  border-radius: 0 0 0 0;
  z-index: 0;
}
.hero-photo-placeholder {
  position: relative; z-index: 1;
  width: 180px; height: 210px;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-photo-inner { width: 100%; height: 100%; }
.hero-photo-inner svg { width: 100%; height: 100%; }

/* Responsive hero */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 160px 1fr; min-height: auto; }
  .hero-photo-col { display: none; }
}
@media (max-width: 560px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 1.5rem 1rem; }
  .hero-logo-col { justify-content: center; }
  .hero-center-col { align-items: center; }
  .hero-bird-logo { width: 120px; height: 120px; }
}

/* ===== ABOUT PREVIEW ===== */
.about-preview { background: var(--light); }
.about-preview-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-visual { border-radius: 20px; overflow: hidden; min-height: 300px; }
.checklist { margin-top: 1.5rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.7rem; font-size: 0.95rem; color: #444; }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ===== PROGRAMS ===== */
.program-card .card-icon { background: rgba(12,109,163,0.1); }
.program-card .age { font-size: 0.8rem; color: var(--orange); font-weight: 600; margin-bottom: 0.3rem; }
.program-card .btn { margin-top: 1rem; font-size: 0.82rem; padding: 0.4rem 1rem; }

/* ===== DAYCARE PREVIEW ===== */
.daycare-preview { background: linear-gradient(135deg, #fff8ee, #fff); }
.daycare-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.daycare-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.daycare-feat { background: #fff; border-radius: 10px; padding: 1rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; font-weight: 600; color: #444; }
.daycare-feat span:first-child { font-size: 1.4rem; }
.daycare-visual { border-radius: 20px; overflow: hidden; min-height: 300px; }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .facilities-grid, .gallery-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .facilities-grid, .gallery-grid, .grid-3 { grid-template-columns: 1fr; }
}

/* ===== FACILITY ITEMS ===== */
.facility-item { display: flex; align-items: center; gap: 1rem; background: #fff; border-radius: 10px; padding: 1.2rem 1.5rem; box-shadow: var(--shadow); transition: transform var(--transition); }
.facility-item:hover { transform: translateX(6px); }
.facility-item .fi-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(12,109,163,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.facility-item p { font-weight: 600; color: #333; font-size: 0.95rem; }

/* ===== GALLERY ===== */
.gallery { background: var(--light); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, #e8f4fd, #d0e8f5); display: flex; align-items: center; justify-content: center; font-size: 3rem; cursor: pointer; transition: transform var(--transition); position: relative; }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #fff8e1, #ffeaa0); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, #e0f2f1, #b2dfdb); }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.5); color: #fff; font-size: 0.78rem; padding: 0.4rem 0.8rem; font-family: 'Poppins', sans-serif; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #fff; }
.testimonial-card { background: var(--light); border-radius: var(--radius); padding: 2rem; border-left: 4px solid var(--blue); }
.testimonial-card .stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 0.8rem; }
.testimonial-card p { font-style: italic; color: #555; font-size: 0.95rem; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; }
.author-info strong { display: block; font-size: 0.9rem; color: #333; }
.author-info span { font-size: 0.8rem; color: #888; }

/* ===== ADMISSIONS ===== */
.admissions { background: linear-gradient(135deg, #f0f8ff, #e8f4fd); }
.admission-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.step { text-align: center; padding: 1.5rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-family: 'Poppins', sans-serif; }
.step h3 { font-size: 0.95rem; color: #333; }
.admission-note { background: var(--yellow); color: #333; padding: 1rem 1.5rem; border-radius: 10px; font-weight: 600; text-align: center; margin-top: 1.5rem; font-size: 0.95rem; }

/* ===== FRANCHISE ===== */
.franchise { background: linear-gradient(135deg, #0a2540, #0C6DA3); color: #fff; }
.franchise .section-title { color: #fff; }
.franchise .section-subtitle { color: rgba(255,255,255,0.8); }
.franchise-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.franchise-benefits li { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.8rem; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.franchise-benefits li::before { content: '★'; color: var(--yellow); flex-shrink: 0; }
.franchise-partners { background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(255,255,255,0.2); }
.franchise-partners h3 { color: var(--yellow); margin-bottom: 1rem; }
.franchise-partners p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 1.5rem; }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--yellow); text-align: center; padding: 4rem 2rem; }
.final-cta h2 { color: #1a1a2e; margin-bottom: 1.5rem; }
.final-cta .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, #0a2540, #0C6DA3); color: #fff; padding: 4rem 2rem; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.8rem; }
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== ABOUT PAGE ===== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text p { color: #555; margin-bottom: 1rem; font-size: 0.95rem; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.mv-card { padding: 2rem; border-radius: var(--radius); }
.mv-card.mission { background: linear-gradient(135deg, #e8f4fd, #d0e8f5); border-left: 4px solid var(--blue); }
.mv-card.vision { background: linear-gradient(135deg, #fff8e1, #ffeaa0); border-left: 4px solid var(--yellow); }
.mv-card h3 { margin-bottom: 0.5rem; color: #1a1a2e; }
.mv-card p { font-size: 0.9rem; color: #555; }

/* ===== PROGRAMS PAGE ===== */
.program-detail { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.program-detail:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.program-header { padding: 1.5rem; color: #fff; }
.program-header.blue { background: linear-gradient(135deg, var(--blue), #1a8fd1); }
.program-header.green { background: linear-gradient(135deg, var(--green), #66bb6a); }
.program-header.orange { background: linear-gradient(135deg, var(--orange), #f9a05a); }
.program-header.yellow { background: linear-gradient(135deg, #e6b800, var(--yellow)); }
.program-header.brown { background: linear-gradient(135deg, var(--brown), #a0714a); }
.program-header .emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.program-header h3 { color: #fff; font-size: 1.2rem; }
.program-header .age-badge { display: inline-block; background: rgba(255,255,255,0.25); padding: 0.2rem 0.8rem; border-radius: 50px; font-size: 0.78rem; margin-top: 0.3rem; }
.program-body { padding: 1.5rem; }
.program-body p { font-size: 0.9rem; color: #555; }

/* ===== DAYCARE PAGE ===== */
.daycare-hero-visual { background: linear-gradient(135deg, var(--orange), #f9a05a); border-radius: 20px; padding: 3rem; text-align: center; color: #fff; }
.daycare-hero-visual .big-emoji { font-size: 6rem; }
.daycare-hero-visual h3 { font-size: 1.3rem; margin-top: 1rem; }
.feature-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; text-align: center; transition: transform var(--transition); }
.feature-card:hover { transform: translateY(-5px); }
.feature-card .emoji { font-size: 2.5rem; margin-bottom: 0.8rem; }
.feature-card h3 { font-size: 1rem; color: #1a1a2e; margin-bottom: 0.3rem; }
.feature-card p { font-size: 0.85rem; color: #666; }

/* ===== FACILITIES PAGE ===== */
.facility-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; text-align: center; transition: transform var(--transition); }
.facility-card:hover { transform: translateY(-6px); }
.facility-card .emoji { font-size: 3rem; margin-bottom: 1rem; }
.facility-card h3 { color: #1a1a2e; margin-bottom: 0.5rem; }
.facility-card p { font-size: 0.88rem; color: #666; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.contact-info-card { background: linear-gradient(135deg, #0a2540, #0C6DA3); color: #fff; border-radius: var(--radius); padding: 2.5rem; }
.contact-info-card h2 { color: #fff; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-item .ci-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h4 { color: var(--yellow); font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.contact-form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.5rem; }
.contact-form-card h2 { margin-bottom: 1.5rem; color: #1a1a2e; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #444; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #e0e0e0; border-radius: 8px;
  font-family: inherit; font-size: 0.9rem; color: #333; transition: border-color var(--transition);
  background: #fafafa;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.map-section { background: var(--light); }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { position: absolute; top: 70px; left: 0; right: 0; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.1); padding: 1rem 2rem; display: none; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li { border-bottom: 1px solid #f0f0f0; }
  nav a { display: block; padding: 0.8rem 0; }
  nav a::after { display: none; }
  .nav-cta { margin-top: 1rem; }
  header { position: relative; }
  header.sticky { position: sticky; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-preview-inner, .daycare-inner, .about-content, .franchise-inner, .contact-grid { grid-template-columns: 1fr; }
  .about-visual, .daycare-visual { display: none; }
}
@media (max-width: 600px) {
  section { padding: 3rem 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .daycare-features { grid-template-columns: 1fr; }
  .hero { padding: 4rem 1.2rem; }
  .page-hero { padding: 3rem 1.2rem; }
}
