/* ==========================================
   Tırtıl Yuva - Ana Stil Dosyası
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --green: #7BC67E; --green-dark: #4A9E4E; --green-light: #E8F5E9;
  --yellow: #FFD54F; --yellow-light: #FFF9E6;
  --orange: #FFB74D; --orange-light: #FFF3E0;
  --pink: #F48FB1; --pink-light: #FCE4EC;
  --blue: #64B5F6; --blue-light: #E3F2FD;
  --navy: #1B2A4A; --navy-light: #2C3E6B;
  --text: #2D3436; --text-light: #636E72; --text-muted: #B2BEC3;
  --white: #FFFFFF; --bg: #FAFBFC; --bg-warm: #FFF8F0;
  --border: #E8ECEF; --shadow: 0 4px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.1);
  --radius: 16px; --radius-sm: 10px; --radius-xs: 6px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font: 'Outfit', sans-serif;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

#hakkimizda,
#egitim-programi,
#tasarlanan-alanlar,
.content-preview-target { scroll-margin-top: 100px; }
.content-preview-target:target {
  outline: 4px solid rgba(123,198,126,.42);
  box-shadow: 0 10px 36px rgba(74,158,78,.22);
  animation: preview-focus 1.2s ease-out;
}
@keyframes preview-focus {
  from { outline-color: rgba(255,183,77,.85); transform: translateY(-3px); }
  to { outline-color: rgba(123,198,126,.42); transform: translateY(0); }
}

body {
  font-family: var(--font); color: var(--text); background: var(--bg);
  line-height: 1.7; -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 12px 20px;
}
.nav-logo img { height: 48px; }
.nav-logo span { font-weight: 700; font-size: 1.3rem; color: var(--green-dark); margin-left: 10px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-weight: 500; font-size: .95rem; color: var(--text); position: relative; }
.nav-links a:hover { color: var(--green-dark); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--green); border-radius: 2px; transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--green); color: var(--white); padding: 10px 22px;
  border-radius: 50px; font-weight: 600; font-size: .9rem;
  box-shadow: 0 4px 15px rgba(123,198,126,.3);
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-2px); color: var(--white); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* === HERO SLIDER === */
.hero { margin-top: 72px; position: relative; overflow: hidden; height: 85vh; min-height: 500px; max-height: 800px; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,42,74,.7) 0%, rgba(74,158,78,.4) 100%); }
.hero-content {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center; padding: 20px;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 800; color: var(--white);
  margin-bottom: 16px; line-height: 1.2; text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem); color: rgba(255,255,255,.9);
  margin-bottom: 32px; max-width: 600px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  border-radius: 50px; font-weight: 600; font-size: 1rem; border: none;
  cursor: pointer; transition: var(--transition); font-family: var(--font);
}
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 4px 15px rgba(123,198,126,.4); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(123,198,126,.5); color: var(--white); }
.btn-secondary { background: rgba(255,255,255,.2); color: var(--white); border: 2px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); color: var(--white); }
.btn-phone { background: var(--orange); color: var(--white); }
.btn-phone:hover { background: #F09940; transform: translateY(-2px); color: var(--white); }
.btn-outline { background: transparent; color: var(--green-dark); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.hero-quick { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; justify-content: center; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.hero-dots span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: var(--transition); }
.hero-dots span.active { background: var(--white); transform: scale(1.2); }

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-warm { background: var(--bg-warm); }
.section-green { background: var(--green-light); }
.section-title {
  text-align: center; margin-bottom: 50px;
}
.section-title h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; color: var(--navy);
  margin-bottom: 12px; position: relative; display: inline-block;
}
.section-title h2::after {
  content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px; background: linear-gradient(90deg, var(--green), var(--yellow));
  border-radius: 4px;
}
.section-title p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 16px auto 0; }

/* === TRUST CARDS === */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.trust-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  box-shadow: var(--shadow); transition: var(--transition); text-align: center;
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.trust-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trust-card:hover::before { transform: scaleX(1); }
.trust-card .icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.trust-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.trust-card p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }
.icon-green { background: var(--green-light); color: var(--green-dark); }
.icon-yellow { background: var(--yellow-light); color: #F9A825; }
.icon-orange { background: var(--orange-light); color: #EF6C00; }
.icon-pink { background: var(--pink-light); color: #C2185B; }
.icon-blue { background: var(--blue-light); color: #1565C0; }

/* === YENILENEN PROGRAM === */
.renewal-strip { background: var(--navy); color: var(--white); padding: 16px 0; }
.renewal-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.renewal-strip strong { color: var(--yellow); }
.renewal-strip span { opacity: .9; }
.program-intro { max-width: 820px; margin: -18px auto 36px; text-align: center; color: var(--text-light); line-height: 1.8; }
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.program-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); }
.program-badge { display: inline-flex; min-width: 58px; min-height: 34px; align-items: center; justify-content: center; padding: 6px 12px; border-radius: 99px; background: var(--green-light); color: var(--green-dark); font-weight: 800; margin-bottom: 18px; }
.program-card h3 { color: var(--navy); font-size: 1.16rem; margin-bottom: 8px; }
.program-card .program-subtitle { color: var(--green-dark); font-weight: 600; margin-bottom: 12px; }
.program-card p { color: var(--text-light); line-height: 1.7; font-size: .92rem; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.detail-card { display: flex; gap: 18px; padding: 25px; border-radius: var(--radius); background: rgba(255,255,255,.82); border: 1px solid rgba(123,198,126,.3); }
.detail-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; flex: 0 0 46px; border-radius: 50%; background: var(--white); color: var(--green-dark); font-weight: 800; box-shadow: var(--shadow); }
.detail-card h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 8px; }
.detail-card p { color: var(--text-light); line-height: 1.7; font-size: .93rem; }
.facility-section .why-list { max-width: none; }

/* === CLASS CARDS === */
.class-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.class-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border);
}
.class-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.class-card-img { height: 200px; background: var(--green-light); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.class-card-img img { width: 100%; height: 100%; object-fit: cover; }
.class-card-body { padding: 24px; }
.class-card-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.class-card-body .age { font-size: .85rem; color: var(--green-dark); font-weight: 600; margin-bottom: 10px; display: inline-block; background: var(--green-light); padding: 4px 12px; border-radius: 20px; }
.class-card-body p { font-size: .9rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.class-link { display: inline-flex; align-items: center; gap: 7px; color: var(--green-dark); font-weight: 700; }
.class-link:hover { gap: 11px; color: var(--navy); }
.class-age-pill { display: inline-flex; padding: 7px 15px; margin-bottom: 14px; border-radius: 99px; background: rgba(255,255,255,.18); color: var(--white); font-weight: 700; }
.class-description { font-size: 1.05rem; line-height: 1.9; color: var(--text); }
.class-description h2, .class-description h3, .class-description h4 { color: var(--navy); margin: 34px 0 14px; line-height: 1.3; }
.class-description p { margin: 0 0 20px; }
.class-description strong, .class-description b { font-weight: 700; color: var(--navy); }
.class-description em, .class-description i { font-style: italic; }
.class-description ul, .class-description ol { margin: 0 0 22px 24px; }
.class-description figure, .class-description .wp-block-image { margin: 28px auto; }
.class-description img { display: block; max-width: 100%; height: auto; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.class-description .aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
.class-description .alignleft { float: left; margin: 8px 24px 18px 0; }
.class-description .alignright { float: right; margin: 8px 0 18px 24px; }
.class-description figcaption, .class-description .wp-caption-text { margin-top: 9px; color: var(--text-muted); font-size: .85rem; text-align: center; }
.class-description::after { content: ''; display: block; clear: both; }
.class-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.class-gallery .gallery-item { min-height: 260px; background: var(--white); }
.class-gallery .gallery-item img { height: 260px; }
.class-gallery figcaption { padding: 12px 14px; color: var(--navy); font-weight: 600; background: var(--white); }

/* === FORM === */
.form-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 80px 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-info { color: var(--white); }
.form-info h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.form-info p { opacity: .85; margin-bottom: 24px; line-height: 1.8; }
.form-box {
  background: var(--white); border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-box h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; text-align: center; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 6px; font-size: .9rem; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: .95rem;
  transition: var(--transition); background: var(--bg);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(123,198,126,.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-check { display: flex; align-items: start; gap: 10px; margin-bottom: 18px; }
.form-check input[type="checkbox"] { margin-top: 4px; accent-color: var(--green); width: 18px; height: 18px; }
.form-check label { font-size: .85rem; color: var(--text-light); line-height: 1.5; }
.form-success {
  display: none; text-align: center; padding: 40px; background: var(--green-light);
  border-radius: var(--radius); border: 2px solid var(--green);
}
.form-success.show { display: block; }
.form-success h3 { color: var(--green-dark); margin-bottom: 8px; }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm); margin-bottom: 12px;
  border: 1px solid var(--border); overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--green); box-shadow: 0 4px 15px rgba(123,198,126,.1); }
.faq-question {
  padding: 18px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--navy); gap: 12px;
}
.faq-question::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--green); transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 18px; }
.faq-answer p { color: var(--text-light); line-height: 1.7; font-size: .95rem; }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  position: relative; aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '🔍'; position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; background: rgba(0,0,0,.3); opacity: 0; transition: var(--transition);
  font-size: 2rem;
}
.gallery-item:hover::after { opacity: 1; }

/* === LIGHTBOX === */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.9);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 2rem; color: var(--white); cursor: pointer; background: none; border: none; }

/* === TESTIMONIALS === */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.testimonial-card .stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { color: var(--text-light); font-style: italic; line-height: 1.7; margin-bottom: 16px; font-size: .95rem; }
.testimonial-card .author { font-weight: 600; color: var(--navy); }

/* === MEALS & ACTIVITIES === */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.info-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.info-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.meal-row { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; gap: 12px; }
.meal-row:last-child { border: none; }
.meal-label { font-weight: 600; color: var(--green-dark); min-width: 90px; font-size: .9rem; }
.meal-value { color: var(--text-light); font-size: .9rem; }
.activity-item { padding: 12px 0; border-bottom: 1px solid var(--border); }
.activity-item:last-child { border: none; }
.activity-item h4 { font-size: .95rem; font-weight: 600; color: var(--navy); }
.activity-item .meta { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }
.activity-item p { font-size: .85rem; color: var(--text-light); margin-top: 4px; }
.month-card h3 {
  justify-content: space-between;
  flex-wrap: wrap;
}
.month-card h3 span {
  margin-left: auto;
  color: var(--green-dark);
  background: var(--green-light);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .78rem;
  font-weight: 700;
}
.month-list {
  display: grid;
  gap: 12px;
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}
.month-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
}
.month-item time {
  color: var(--navy);
  font-weight: 700;
  font-size: .88rem;
}
.meal-stack {
  display: grid;
  gap: 8px;
}
.meal-stack p {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  color: var(--text-light);
  font-size: .9rem;
}
.meal-stack strong {
  color: var(--green-dark);
}
.activity-month-item h4 {
  margin: 0;
  color: var(--navy);
  font-size: .98rem;
}
.activity-month-item .meta {
  margin-top: 2px;
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 700;
}
.activity-month-item p {
  margin-top: 6px;
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.55;
}

/* === FOOTER === */
.footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 60px 0 100px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 18px; font-weight: 600; }
.footer p, .footer a { font-size: .9rem; line-height: 1.8; }
.footer a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; margin-top: 40px; text-align: center; font-size: .85rem; }

/* === STICKY CTA BAR (MOBILE) === */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1); padding: 8px 0;
}
.sticky-cta-inner { display: flex; justify-content: space-around; align-items: center; max-width: 560px; margin: 0 auto; }
.sticky-cta a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  flex: 1 1 20%; min-width: 0; font-size: .66rem; font-weight: 600; color: var(--text); padding: 6px 3px;
}
.sticky-cta a .icon-cta { font-size: 1.3rem; }
.sticky-cta .brand-icon { display: inline-flex; width: 23px; height: 23px; }
.sticky-cta .brand-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sticky-cta .brand-icon svg path + path { fill: currentColor; stroke: none; }
.sticky-cta .brand-icon .ig-dot { fill: currentColor; stroke: none; }
.sticky-cta a.cta-call { color: var(--orange); }
.sticky-cta a.cta-whatsapp { color: #25D366; }
.sticky-cta a.cta-instagram { color: #E4405F; }
.sticky-cta a.cta-register { color: var(--green-dark); }
.sticky-cta a.cta-directions { color: var(--blue); }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-item { display: flex; gap: 14px; align-items: start; margin-bottom: 20px; }
.contact-info-item .ci-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: .9rem; font-weight: 600; color: var(--navy); }
.contact-info-item p { font-size: .85rem; color: var(--text-light); }
.map-container { border-radius: var(--radius); overflow: hidden; height: 350px; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.location-content > p { color: var(--text-light); line-height: 1.8; }
.direction-steps { list-style: none; margin: 28px 0; padding: 0; display: grid; gap: 14px; }
.direction-steps li { display: flex; align-items: flex-start; gap: 14px; padding: 17px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); }
.direction-steps li > span { display: flex; width: 32px; height: 32px; align-items: center; justify-content: center; flex: 0 0 32px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 800; }
.direction-steps p { margin: 3px 0 0; color: var(--text); line-height: 1.6; }
.location-visual { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-lg); }
.location-visual img { display: block; width: 100%; height: auto; }
.location-visual figcaption { padding: 13px 16px; color: var(--text-muted); text-align: center; }
.location-map { height: 430px; }
.location-map iframe { width: 100%; height: 100%; border: 0; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; background: var(--green-light); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.blog-card-body p { font-size: .9rem; color: var(--text-light); margin-bottom: 12px; }
.blog-card-body .date { font-size: .8rem; color: var(--text-muted); }

/* === PAGINATION === */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  padding: 8px 16px; border-radius: var(--radius-xs); font-size: .9rem; font-weight: 500;
  border: 1px solid var(--border); color: var(--text);
}
.pagination a:hover { background: var(--green-light); border-color: var(--green); }
.pagination .active { background: var(--green); color: var(--white); border-color: var(--green); }

/* === NEDEN BIZ === */
.why-list { max-width: 700px; margin: 0 auto; }
.why-item { display: flex; gap: 16px; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.why-item:last-child { border: none; }
.why-item .check { width: 32px; height: 32px; border-radius: 50%; background: var(--green-light); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.why-item p { font-size: .95rem; color: var(--text); line-height: 1.6; }

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--white); padding: 20px;
    box-shadow: var(--shadow-lg); gap: 16px;
  }
  .hero { height: 70vh; min-height: 450px; }
  .form-grid { grid-template-columns: 1fr; gap: 32px; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .hero { height: 80vh; margin-top: 64px; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; padding: 0 20px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .class-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .renewal-strip-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .footer { padding-bottom: 80px; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .class-actions .btn { width: 100%; justify-content: center; }
  .program-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero { height: 90vh; }
  .container { padding: 0 16px; }
  .month-item,
  .meal-stack p {
    grid-template-columns: 1fr;
  }
  .month-card h3 span {
    margin-left: 0;
  }
}

/* === PROJECT ADDITIONS === */
.flash {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.flash.success { background: var(--green-light); color: var(--green-dark); border: 1px solid var(--green); }
.flash.error { background: #FDECEC; color: #B73333; border: 1px solid #F2B6B6; }
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.section-title.left { text-align: left; margin-bottom: 24px; }
.section-title.left h2::after { left: 0; transform: none; }
.feature-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.feature-photo img,
.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dark-card {
  margin-top: 28px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.dark-card h3,
.dark-card label { color: var(--white); }
.dark-card input,
.dark-card textarea { background: rgba(255,255,255,.96); }
.quick-contact-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.center { text-align: center; }
.mt { margin-top: 26px; }
.page-hero {
  margin-top: 72px;
  padding: 92px 0 64px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(27,42,74,.82), rgba(74,158,78,.62)),
    url('../images/hero-preschool.png') center/cover;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero p { max-width: 660px; color: rgba(255,255,255,.9); font-size: 1.12rem; }
.narrow { max-width: 1080px; }
.article h1 {
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
.article .date { color: var(--text-muted); margin-bottom: 20px; }
.article-image {
  max-height: 430px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px 0 28px;
}
.article-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  font-size: 1.02rem;
}
@media (min-width: 901px) {
  .article-content { padding: 38px 44px; }
}
.article-content p { margin: 0 0 1.15em; }
.article-content h2,
.article-content h3 { color: var(--navy); line-height: 1.3; margin: 1.7em 0 .65em; }
.article-content figure { margin: 28px 0; }
.article-content figcaption { color: var(--text-muted); font-size: .9rem; margin-top: 8px; text-align: center; }
.article-content .wp-block-embed__wrapper { aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; background: #111; }
.article-content iframe { display: block; width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
}
