/* ==========================================================================
   Naïssem Isabelle Ngardoum — feuille de style principale
   ========================================================================== */

:root {
  --navy: #10203f;
  --navy-light: #16294f;
  --gold: #cda256;
  --gold-dark: #b3873c;
  --cream: #faf6ef;
  --white: #ffffff;
  --text-dark: #1b2436;
  --text-muted: #5b6472;
  --border-light: #e8e2d6;
  --shadow: 0 15px 35px rgba(16, 32, 63, 0.08);
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', 'Georgia', serif;
  margin: 0;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
.icon { width: 22px; height: 22px; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section-cream { background: var(--cream); }

.section-label {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading .rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(205,162,86,0.35); }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(16, 32, 63, 0.06);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(16, 32, 63, 0.12);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: 44px; }
.brand-text { line-height: 1.2; }
.brand-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 1px;
  display: block;
}
.brand-text .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); }
.nav-links .btn { padding: 11px 20px; }
.nav-links .btn .icon { width: 16px; height: 16px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(120deg, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
  max-width: 1280px;
  padding-top: 40px;
}
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  aspect-ratio: 3/4;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-content .section-label { color: var(--gold); }
.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin: 10px 0 18px;
}
.hero-content h2 {
  font-size: 1.3rem;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-content .role-sub { color: #cdd6e6; margin-bottom: 16px; font-size: 0.98rem; }
.hero-content .tagline { color: #b7c0d4; max-width: 560px; margin-bottom: 30px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px 30px;
}
.hero-stats .stat { display: flex; align-items: center; gap: 12px; }
.hero-stats .stat .value { font-weight: 700; color: var(--white); font-size: 1.05rem; display: block; }
.hero-stats .stat .label { color: #b7c0d4; font-size: 0.82rem; }
.stat-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(205, 162, 86, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 0.9fr;
  gap: 50px;
  align-items: start;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  outline: 1px solid var(--border-light);
}
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.about-text h3 { font-size: 1.7rem; color: var(--navy); margin-bottom: 18px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }

.about-list { display: flex; flex-direction: column; gap: 26px; }
.about-list li { display: flex; gap: 16px; align-items: flex-start; }
.about-list .icon-badge {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.about-list h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.about-list p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   Expertises
   ========================================================================== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.expertise-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.expertise-card:hover { transform: translateY(-6px); }
.expertise-card .icon-badge {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.expertise-card h4 { color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 1.05rem; margin-bottom: 10px; }
.expertise-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   Realisations
   ========================================================================== */
.realisation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.realisation-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
}
.realisation-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.realisation-card:hover img { transform: scale(1.06); }
.realisation-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,32,63,0.92) 10%, rgba(16,32,63,0.15) 60%, transparent 100%);
  display: flex; align-items: flex-end;
  padding: 20px;
}
.realisation-overlay h4 { color: var(--white); font-family: 'Poppins', sans-serif; font-size: 0.98rem; margin-bottom: 6px; }
.realisation-overlay p { color: #cdd6e6; font-size: 0.8rem; margin: 0; }

/* ==========================================================================
   Parcours
   ========================================================================== */
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  position: relative;
}
.timeline-marker { display: flex; flex-direction: column; align-items: center; }
.timeline-marker .dot {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700;
  flex-shrink: 0;
}
.timeline-marker .line { flex: 1; width: 2px; background: var(--border-light); margin: 6px 0; }
.timeline-item:last-child .timeline-marker .line { display: none; }
.timeline-content { padding-bottom: 42px; }
.timeline-content h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.timeline-content p { color: var(--text-muted); margin: 0; }

/* ==========================================================================
   Actualites
   ========================================================================== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease;
}
.news-card:hover { transform: translateY(-4px); }
.news-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.news-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-date { color: var(--gold-dark); font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.news-card h3 { font-size: 1.15rem; color: var(--navy); font-family: 'Playfair Display', serif; }
.news-card p { color: var(--text-muted); font-size: 0.92rem; flex: 1; }
.news-link { color: var(--gold-dark); font-weight: 600; font-size: 0.88rem; }

.article-header { background: var(--navy); color: var(--white); padding: 60px 0 40px; }
.article-header h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 12px; }
.article-body { max-width: 780px; margin: 0 auto; padding: 60px 24px; }
.article-body img { border-radius: var(--radius); margin-bottom: 30px; box-shadow: var(--shadow); }
.article-body p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.02rem; }
.back-link { color: var(--gold-dark); font-weight: 600; display: inline-block; margin-top: 20px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 22px; font-size: 1.3rem; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-item .icon-badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(205,162,86,0.18);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item p, .contact-info-item a { color: #cdd6e6; font-size: 0.92rem; margin: 0; }
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.contact-form { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.alert { padding: 14px 18px; border-radius: 6px; margin-bottom: 20px; font-size: 0.92rem; }
.alert-success { background: #e7f4ea; color: #276b39; border: 1px solid #bfe3c8; }
.alert-error { background: #fbeaea; color: #9b2c2c; border: 1px solid #f3c6c6; }

/* ==========================================================================
   Page header (sections interieures)
   ========================================================================== */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0 60px;
  text-align: center;
}
.page-header .section-label { color: var(--gold); }
.page-header h1 { color: var(--white); font-size: 2.4rem; margin-top: 10px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: #cdd6e6; }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; gap: 40px; }
.footer-quote { display: flex; gap: 18px; }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--gold); line-height: 1; }
.footer-quote p { font-size: 1.05rem; color: var(--white); margin-bottom: 14px; }
.footer-quote .signature { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-size: 1.1rem; }

.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
.footer-contact-item { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; color: #cdd6e6; font-size: 0.92rem; }
.footer-contact-item .icon-badge {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(205,162,86,0.18); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-stats { margin-top: 18px; color: var(--gold); font-size: 0.88rem; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #8b96ac;
}

/* ==========================================================================
   Newsletter (pied de page)
   ========================================================================== */
.newsletter-form { display: flex; gap: 10px; margin-top: 6px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: #93a0b8; }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form .btn { padding: 12px 20px; white-space: nowrap; }
.newsletter-flash { font-size: 0.85rem; margin-top: 10px; }
.newsletter-flash.success { color: #7fd99a; }
.newsletter-flash.error { color: #f19b9b; }

/* ==========================================================================
   Temoignages
   ========================================================================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-quote { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 10px; }
.testimonial-card p { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 20px; }
.testimonial-author { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.testimonial-role { color: var(--gold-dark); font-size: 0.82rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px 24px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold-dark);
  margin-left: 16px;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-muted); margin: 14px 0 0; font-size: 0.92rem; }

/* ==========================================================================
   Wizard — Prise de rendez-vous
   ========================================================================== */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 46px;
  position: relative;
}
.wizard-progress::before {
  content: '';
  position: absolute;
  top: 20px; left: 0; right: 0;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}
.wizard-progress-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.wizard-progress-step .step-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease;
}
.wizard-progress-step .step-label { font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.wizard-progress-step.active .step-circle { background: var(--navy); border-color: var(--navy); color: var(--gold); }
.wizard-progress-step.active .step-label { color: var(--navy); font-weight: 600; }
.wizard-progress-step.done .step-circle { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.wizard-step h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 26px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 20px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--white);
}
.service-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.service-card:hover { border-color: var(--gold); }
.service-card.active { border-color: var(--gold); background: var(--cream); box-shadow: 0 8px 20px rgba(205,162,86,0.18); }
.service-card .icon-badge {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.service-card .service-title { font-weight: 600; color: var(--navy); font-size: 0.96rem; }
.service-card .service-text { color: var(--text-muted); font-size: 0.84rem; }

.creneau-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.creneau-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border: 1.5px solid var(--border-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--white);
}
.creneau-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.creneau-pill:hover { border-color: var(--gold); }
.creneau-pill.active { border-color: var(--gold); background: var(--cream); }
.creneau-pill .icon-badge {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.creneau-pill.active .icon-badge { background: var(--gold); color: var(--navy); }
.creneau-label { display: block; font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.creneau-horaire { display: block; color: var(--text-muted); font-size: 0.78rem; }

.wizard-summary {
  margin-top: 30px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.wizard-summary h4 { color: var(--navy); font-size: 1rem; margin-bottom: 16px; font-family: 'Poppins', sans-serif; }
.wizard-summary dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0; }
.wizard-summary dl > div { display: flex; flex-direction: column; gap: 2px; }
.wizard-summary dt { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.wizard-summary dd { margin: 0; font-weight: 600; color: var(--navy); font-size: 0.94rem; }

.wizard-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; }
.wizard-nav .wizard-next,
.wizard-nav .wizard-submit { margin-left: auto; }

.rdv-success {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 56px 40px;
}
.rdv-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #e7f4ea; color: #276b39;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.rdv-success-icon .icon { width: 30px; height: 30px; }
.rdv-success h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 14px; }
.rdv-success p { color: var(--text-muted); max-width: 520px; margin: 0 auto 28px; }
.rdv-recap {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.rdv-recap div { display: flex; flex-direction: column; gap: 4px; }
.rdv-recap span { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.rdv-recap strong { color: var(--navy); }

/* ==========================================================================
   Animations & transitions
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
  }
  [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
  [data-reveal="fade"] { transform: none; }
  [data-reveal="left"] { transform: translateX(-28px); }
  [data-reveal="left"].is-visible { transform: translateX(0); }
  [data-reveal="right"] { transform: translateX(28px); }
  [data-reveal="right"].is-visible { transform: translateX(0); }
  [data-reveal="zoom"] { transform: scale(0.94); }
  [data-reveal="zoom"].is-visible { transform: scale(1); }

  body { animation: pageFadeIn 0.5s ease; }
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-photo img { transition: transform 0.6s ease; }
.hero-photo:hover img { transform: scale(1.03); }

.about-photo img { transition: transform 0.6s ease; }
.about-photo:hover img { transform: scale(1.03); }

.social-icon, .creneau-pill, .service-card, .faq-item, .testimonial-card, .about-list .icon-badge {
  transition: all 0.25s ease;
}
.about-list li:hover .icon-badge { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(16,32,63,0.12); }
.stat-icon { transition: transform 0.25s ease; }
.hero-stats .stat:hover .stat-icon { transform: scale(1.12); }

.wizard-step {
  animation: stepIn 0.35s ease;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.wizard-progress-step .step-circle,
.creneau-pill .icon-badge {
  transition: all 0.25s ease;
}

/* Bouton retour en haut */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(16,32,63,0.25);
  z-index: 90;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* Spinner generique (boutons IA / Buffer en cours de traitement) */
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-photo { max-width: 380px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 380px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .realisation-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .wizard-summary dl { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-content h1 { font-size: 2.2rem; }
  .expertise-grid { grid-template-columns: 1fr; }
  .realisation-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .creneau-grid { flex-direction: column; }
  .wizard-progress-step .step-label { display: none; }
  .wizard-nav { flex-wrap: wrap; }
  .newsletter-form { flex-direction: column; }
}
