/* ==========================================================================
   template1.css — Style "Moderne" (bleu, épuré, façon SmileCraft)
   ========================================================================== */

body { background: #ffffff; }

/* ---------- Header ---------- */
.t1-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eef1f6;
}
.t1-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.t1-logo { display: flex; align-items: center; gap: 10px; }
.t1-logo i { font-size: 28px; color: var(--primary-color); }
.t1-logo-text { line-height: 1.1; }
.t1-logo-text strong { font-size: 19px; color: var(--text-dark); }
.t1-logo-text strong span { color: var(--primary-color); }
.t1-logo-text small { font-size: 10px; letter-spacing: 1.5px; color: var(--text-muted); display: block; }

.t1-nav { display: flex; gap: 28px; align-items: center; }
.t1-nav a { color: var(--text-dark); font-size: 14.5px; font-weight: 500; }
.t1-nav a.active { color: var(--primary-color); }
.t1-nav a:hover { color: var(--primary-color); }

.t1-btn-book {
  background: var(--primary-color);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.t1-btn-book:hover { background: var(--primary-dark); }

.t1-menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--text-dark); cursor: pointer; }

/* ---------- Hero ---------- */
.t1-hero {
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  padding: 60px 0 40px;
  overflow: hidden;
}
.t1-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.t1-hero-content h1 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--text-dark);
}
.t1-hero-content h1 .accent { color: var(--primary-color); }
.t1-hero-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}
.t1-hero-actions { display: flex; gap: 14px; margin-bottom: 40px; }
.t1-btn-outline {
  border: 1.5px solid #d7dfec;
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
}
.t1-hero-content .t1-btn-book { padding: 14px 26px; font-size: 15px; }

#hero-badges-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hero-badge { display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-dark); }
.hero-badge-icon { color: var(--primary-color); font-size: 20px; }

.t1-hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3.6;
}
.t1-hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Services ---------- */
.t1-section { padding: 80px 0; }
.t1-section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.t1-eyebrow {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.t1-section-head h2 { font-size: 32px; font-weight: 800; margin: 0; }

#services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  border: 1px solid #eef1f6;
  border-radius: 18px;
  padding: 30px 26px;
  transition: transform .2s, box-shadow .2s;
  background: #fff;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(37,99,235,0.12); border-color: transparent; }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: #eaf0ff;
  color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 18px; margin: 0 0 10px; }
.service-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; }
.service-link { color: var(--primary-color); font-weight: 600; font-size: 14px; }

.t1-view-all { text-align: center; margin-top: 40px; }
.t1-view-all a {
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
}

/* ---------- About ---------- */
.t1-about { background: #f9fafc; }
.t1-about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.t1-about-image { border-radius: 20px; overflow: hidden; }
.t1-about-content .t1-eyebrow { margin-bottom: 6px; }
.t1-about-content h2 { font-size: 30px; font-weight: 800; margin: 0 0 16px; }
.t1-about-content > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

#why-points-container { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
#why-points-container li { color: var(--text-dark); font-size: 14.5px; font-weight: 500; }
#why-points-container li i { color: var(--primary-color); margin-right: 10px; }

#info-cards-container { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.info-card { display: flex; gap: 12px; align-items: flex-start; }
.info-card-icon { color: var(--primary-color); font-size: 18px; margin-top: 3px; }
.info-card h4 { font-size: 14.5px; margin: 0 0 4px; }
.info-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ---------- Testimonial ---------- */
.t1-testimonial {
  background: #eaf0ff;
  padding: 60px 0;
  text-align: center;
}
.t1-testimonial i.quote { font-size: 26px; color: var(--primary-color); opacity: .5; }
.t1-testimonial blockquote {
  font-size: 20px;
  font-weight: 500;
  max-width: 720px;
  margin: 14px auto;
  color: var(--text-dark);
  line-height: 1.6;
}
.t1-testimonial cite { color: var(--text-muted); font-size: 14px; font-style: normal; }

/* ---------- CTA ---------- */
.t1-cta {
  background: var(--primary-color);
  border-radius: 24px;
  margin: 0 24px 60px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  max-width: 1152px;
  margin-inline: auto;
}
.t1-cta-left { display: flex; align-items: center; gap: 18px; }
.t1-cta-icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.t1-cta h3 { margin: 0 0 6px; font-size: 22px; }
.t1-cta p { margin: 0; opacity: .9; font-size: 14.5px; }
.t1-cta .t1-btn-book { background: #fff; color: var(--primary-color); flex-shrink: 0; }
.t1-cta .t1-btn-book:hover { background: #f1f5ff; }

/* ---------- Footer ---------- */
.t1-footer { background: #0b1436; color: #cbd5e1; padding: 60px 0 24px; }
.t1-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.t1-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.t1-footer-logo i { font-size: 24px; color: #fff; }
.t1-footer-logo strong { color: #fff; font-size: 18px; }
.t1-footer p { font-size: 14px; line-height: 1.6; color: #94a3b8; }
.t1-footer h4 { color: #fff; font-size: 15px; margin: 0 0 16px; }
.t1-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.t1-footer ul li a { color: #94a3b8; font-size: 14px; }
.t1-footer ul li a:hover { color: #fff; }
.t1-footer .contact-item { display: flex; gap: 10px; font-size: 14px; margin-bottom: 12px; color: #94a3b8; }
.t1-footer .contact-item i { color: var(--primary-color); margin-top: 3px; }
.t1-social { display: flex; gap: 10px; margin-top: 16px; }
.t1-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; }
.t1-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; color: #64748b; flex-wrap: wrap; gap: 10px; }
.t1-footer-bottom a { color: #64748b; margin-left: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .t1-nav { display: none; }
  .t1-menu-toggle { display: block; }
  .t1-hero-grid, .t1-about-grid { grid-template-columns: 1fr; }
  .t1-hero-content h1 { font-size: 34px; }
  #services-container { grid-template-columns: 1fr 1fr; }
  #hero-badges-container { grid-template-columns: 1fr 1fr; }
  .t1-footer-grid { grid-template-columns: 1fr 1fr; }
  .t1-cta { flex-direction: column; text-align: center; padding: 30px; }
}
@media (max-width: 600px) {
  #services-container { grid-template-columns: 1fr; }
  #info-cards-container { grid-template-columns: 1fr; }
  .t1-footer-grid { grid-template-columns: 1fr; }
  .t1-hero-content h1 { font-size: 28px; }
}
