@charset "utf-8";

/* ── DAYCARES PAGE STYLES ── */
/* Matches site design system */

/* ── HERO ── */
.dc-hero {
  background-image: linear-gradient(180deg, #779eab 0%, #ffffff 70%);
  padding: 44px 20px 50px;
  text-align: center;
}
.dc-hero-inner { max-width: 680px; margin: 0 auto; }
.dc-eyebrow {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2b3a4b;
  margin-bottom: 8px;
}
.dc-eyebrow-center { text-align: center; }
.dc-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #2b3a4b;
  margin-bottom: 12px;
  line-height: 1.15;
}
.dc-hero p {
  font-size: 1rem;
  color: #2b3a4b;
  font-weight: bold;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.dc-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── INFO BAR ── */
.dc-info-bar {
  background: #2b3a4b;
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.dc-info-link {
  color: #f9a525;
  font-weight: bold;
  text-decoration: none;
  margin-left: 4px;
}
.dc-info-link:hover { text-decoration: underline; }

/* ── SHARED ── */
.dc-section { padding: 50px 20px; background: #ffffff; }
.dc-section-alt { background: #f7f7f8; }
.dc-section-inner { max-width: 960px; margin: 0 auto; }
.dc-divider { height: 1px; background: #d0e4ea; border: none; margin: 0; }
.dc-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #2b3a4b;
  font-weight: bold;
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.2;
}
.dc-intro-p {
  text-align: center;
  color: #555;
  font-size: 0.97rem;
  margin-bottom: 20px;
  line-height: 1.75;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FAQ LIST ── */
.dc-faq-list { display: flex; flex-direction: column; gap: 20px; }
.dc-faq-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  border: 1px solid #d0e4ea;
  border-radius: 10px;
  padding: 24px;
  box-shadow: rgba(0,0,0,0.05) 0px 3px 10px;
}
.dc-faq-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #eef4f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dc-faq-content { flex: 1; }
.dc-faq-content h3 {
  font-size: 1.05rem;
  font-weight: bold;
  color: #2b3a4b;
  margin-bottom: 10px;
  line-height: 1.3;
}
.dc-faq-content p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 8px;
}
.dc-faq-content p:last-child { margin-bottom: 0; }

/* ── BENEFITS GRID ── */
.dc-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.dc-benefit-card {
  background: #ffffff;
  border: 1px solid #d0e4ea;
  border-radius: 10px;
  padding: 24px 20px;
  width: 100%;
  max-width: 280px;
  text-align: center;
  box-shadow: rgba(0,0,0,0.05) 0px 3px 10px;
  position: relative;
}
.dc-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #779eab;
  border-radius: 10px 10px 0 0;
}
.dc-benefit-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.dc-benefit-card h4 {
  font-size: 0.97rem;
  font-weight: bold;
  color: #2b3a4b;
  margin-bottom: 8px;
}
.dc-benefit-card p { font-size: 0.85rem; color: #666; line-height: 1.65; }

/* ── CTA BAND ── */
.dc-cta-band {
  background-image: linear-gradient(135deg, #779eab 0%, #5c8d9d 100%);
  color: #ffffff;
  padding: 50px 20px;
}
.dc-cta-h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.2);
}
.dc-cta-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.75;
}
.dc-cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 8px;
}
.dc-cta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 14px 20px;
}
.dc-cta-icon { font-size: 1.4rem; }
.dc-cta-item strong { display: block; color: #2b3a4b; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.dc-cta-item a { color: #2b3a4b; font-weight: bold; font-size: 0.97rem; text-decoration: none; }
.dc-cta-item a:hover { text-decoration: underline; }

/* ── BUTTONS ── */
.btn-dc-primary {
  display: inline-block;
  background: #f9a525;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.97rem;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
  box-shadow: rgba(0,0,0,0.15) 0px 4px 12px;
  transition: background 0.18s, transform 0.15s;
}
.btn-dc-primary:hover { background: #e0941a; transform: translateY(-1px); }
.btn-dc-ghost {
  display: inline-block;
  background: transparent;
  color: #2b3a4b;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid rgba(43,58,75,0.35);
  text-decoration: none;
  transition: border-color 0.18s;
}
.btn-dc-ghost:hover { border-color: rgba(43,58,75,0.65); }
.btn-dc-ghost-light {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}
.btn-dc-ghost-light:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); }

/* ── RESPONSIVE ── */
@media screen and (max-width: 700px) {
  .dc-faq-item { flex-direction: column; gap: 12px; }
  .dc-faq-icon { width: 36px; height: 36px; font-size: 1.2rem; }
  .dc-benefit-card { max-width: 100%; }
  .dc-cta-item { width: 100%; }
}
