﻿/* === HOME — Accueil uniquement === */
/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .25;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-shape svg { display: block; }

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 160px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,.15);
  border: 1px solid rgba(232,160,32,.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge i { font-size: .7rem; }

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title .gold { color: var(--gold); }

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 48px;
}
.hero-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  display: block;
}

.hero-card {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
.hero-photo-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-light) 0%, #0d1b35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-bg i {
  font-size: 5rem;
  color: rgba(255,255,255,.2);
}

.hero-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 12px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 90px;
}
.hero-photo-badge strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}
.hero-photo-badge span {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  margin-bottom: 3px;
  text-align: center;
  width: 100%;
}

/* ---------- ABOUT PREVIEW (home) ---------- */

/* ---------- ABOUT PREVIEW (home) ---------- */
.about-preview {
  background: var(--white);
  overflow: hidden;
}
.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.about-img-main img { width:100%; height:100%; object-fit:cover; }
.about-img-main .img-placeholder {
  width:100%; height:100%;
  background: linear-gradient(135deg,#e0e8f0,#c8d8e8);
  display:flex; align-items:center; justify-content:center;
}
.about-img-main .img-placeholder i { font-size:4rem; color:rgba(27,43,75,.2); }

.about-img-badge {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-img-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.about-img-badge span { font-size: .75rem; opacity: .8; }

.about-img-chip {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-img-chip i { font-size: 1.2rem; }
.about-img-chip div strong { display: block; font-size: .85rem; font-weight: 700; }
.about-img-chip div span { font-size: .72rem; }

.about-content .section-label { margin-bottom: 8px; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }
.about-content p strong { color: var(--navy); }

.about-checks {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
}
.about-checks li i {
  width: 24px;
  height: 24px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}


/* ---------- PROCESS ---------- */
.process { background: var(--gray-light); }
.process .container { text-align: center; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 0;
}
.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.process-number {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}
.process-card h3 { color: var(--gold); margin-bottom: 12px; font-size: 1.05rem; }
.process-card p { color: var(--text-muted); font-size: .9rem; }


/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--gray-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  line-height: .8;
  color: var(--gold);
  opacity: .3;
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: Georgia, serif;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-info strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
}
.testimonial-info span {
  font-size: .78rem;
  color: var(--text-muted);
}

.testimonials-cta {
  text-align: center;
  margin-top: 44px;
}
.testimonials-cta .btn i { font-size: .9rem; }

