/* ============================================================
   Styles spécifiques à la page d'accueil
   ============================================================ */

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #f4f8fb 0%, #e8f0f7 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(91, 139, 181, 0.15) 0%, transparent 70%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(74, 107, 77, 0.1) 0%, transparent 70%);
  z-index: 0;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 12rem);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bleu-medium);
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--bleu-medium);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1.05;
  color: var(--bleu-profond);
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--bleu-medium);
}
.hero-text {
  font-size: 1.1rem;
  color: var(--texte-doux);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-info {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(21, 33, 49, 0.1);
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-info-item small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-bottom: 0.4rem;
}
.hero-info-item strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--bleu-profond);
}

/* Hero visual avec vraie photo */
.hero-visual {
  position: relative;
  height: 620px;
  animation: fadeIn 1.2s ease 0.5s both;
}
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 80%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-stat {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  padding: 1.8rem;
  background: white;
  border: 1px solid var(--bordure);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.hero-card-stat .num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 3rem;
  color: var(--bleu-profond);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-card-stat .num em {
  color: var(--vert-botanique);
  font-style: italic;
}
.hero-card-stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-doux);
}
.hero-card-badge {
  position: absolute;
  top: 2rem;
  left: 0;
  background: white;
  padding: 0.9rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 100px;
  border: 1px solid var(--bordure);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.hero-card-badge .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-card-badge span {
  font-size: 0.82rem;
  color: var(--texte);
  font-weight: 500;
}

/* ============ CABINET ============ */
.cabinet { background: white; }
.cabinet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.cabinet-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
}
.cabinet-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cabinet-visual-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 1.8rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.cabinet-visual-tag small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-bottom: 0.4rem;
}
.cabinet-visual-tag strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--bleu-profond);
}
.cabinet-content > p {
  color: var(--texte-doux);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.cabinet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.cabinet-feature {
  padding: 1.2rem 0;
  border-top: 1px solid var(--bordure);
}
.cabinet-feature .num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--bleu-medium);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.cabinet-feature .label {
  font-size: 0.85rem;
  color: var(--texte-doux);
  line-height: 1.4;
}

/* ============ PRATICIENS ============ */
.praticiens {
  background: var(--bleu-tres-pale);
  position: relative;
}
.praticiens-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.praticien-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--bordure);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: block;
}
.praticien-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--bleu-clair);
}
.praticien-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--bordure);
}
.praticien-avatar {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bleu-medium), var(--bleu-profond));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.praticien-info { flex: 1; }
.praticien-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--bleu-profond);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.praticien-role {
  font-size: 0.88rem;
  color: var(--bleu-medium);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.praticien-details { display: grid; gap: 0.9rem; }
.praticien-detail {
  display: flex;
  gap: 1rem;
  font-size: 0.92rem;
}
.praticien-detail .label {
  color: var(--texte-doux);
  min-width: 110px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 2px;
}
.praticien-detail .value {
  color: var(--texte);
  flex: 1;
  line-height: 1.5;
}
.praticien-link {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--bleu-medium);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.praticien-card:hover .praticien-link { gap: 0.7rem; }
.praticien-tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 3.5rem;
  color: var(--bleu-pale);
  line-height: 1;
}

/* ============ SOINS ============ */
.soins-home { background: white; }
.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bordure);
  border: 1px solid var(--bordure);
  border-radius: 16px;
  overflow: hidden;
}
.soin {
  background: white;
  padding: 2.8rem 2.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: block;
}
.soin:hover { background: var(--bleu-tres-pale); }
.soin .arrow {
  position: absolute;
  top: 2.8rem;
  right: 2.2rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bleu-pale);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.soin:hover .arrow { opacity: 1; transform: translateX(0); }
.soin .arrow svg { width: 12px; height: 12px; stroke: var(--bleu-profond); fill: none; stroke-width: 2; }
.soin-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bleu-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.soin:hover .soin-icon { background: var(--bleu-profond); }
.soin-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--bleu-profond);
  fill: none;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}
.soin:hover .soin-icon svg { stroke: white; }
.soin h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--bleu-profond);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.soin p {
  color: var(--texte-doux);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ============ APPROCHE ============ */
.approche {
  background: var(--bleu-profond);
  color: white;
  position: relative;
  overflow: hidden;
}
.approche::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(91, 139, 181, 0.2) 0%, transparent 60%);
}
.approche::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(135, 160, 133, 0.12) 0%, transparent 60%);
}
.approche .container { position: relative; z-index: 1; }
.approche .eyebrow { color: #a8c4dc; }
.approche .eyebrow::before { background: #a8c4dc; }
.approche .section-title { color: white; }
.approche .section-title em { color: var(--vert-sauge); }
.approche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.approche-item .num {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: 3rem;
  color: var(--vert-sauge);
  line-height: 1;
  margin-bottom: 1rem;
}
.approche-item h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: white;
}
.approche-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============ AVIS ============ */
.avis { background: var(--blanc-casse); }
.avis-google-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: white;
  border: 1px solid var(--bordure);
  border-radius: 16px;
  margin-bottom: 2.5rem;
}
.avis-rating-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.avis-google-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #4285F4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.avis-google-logo span:nth-child(2) { color: #EA4335; }
.avis-google-logo span:nth-child(3) { color: #FBBC05; }
.avis-google-logo span:nth-child(4) { color: #4285F4; }
.avis-google-logo span:nth-child(5) { color: #34A853; }
.avis-google-logo span:nth-child(6) { color: #EA4335; }
.avis-rating .rating-number {
  font-family: var(--display);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--bleu-profond);
  line-height: 1;
}
.avis-rating .stars {
  color: #fbbc05;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin: 0.3rem 0;
}
.avis-rating .count {
  font-size: 0.85rem;
  color: var(--texte-doux);
}
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.avis-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--bordure);
  position: relative;
}
.avis-card .quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 3rem;
  color: var(--bleu-pale);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.avis-card .stars {
  color: #fbbc05;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.avis-card p {
  color: var(--texte);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.avis-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--bordure);
}
.avis-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bleu-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bleu-profond);
  font-weight: 600;
  font-size: 0.85rem;
}
.avis-author-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--texte);
  font-weight: 500;
}
.avis-author-info small {
  font-size: 0.78rem;
  color: var(--texte-clair);
}

/* ============ INFOS PRATIQUES ============ */
.infos { background: white; }
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.infos-card {
  background: var(--blanc-casse);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--bordure);
}
.infos-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--bleu-profond);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bordure);
}
.horaires { display: grid; gap: 1rem; }
.horaire-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.95rem;
}
.horaire-row .jour { color: var(--texte); font-weight: 500; }
.horaire-row .heures {
  color: var(--texte-doux);
  font-family: var(--display);
  font-weight: 400;
}
.horaire-row.weekend .heures {
  color: var(--texte-doux);
  font-style: italic;
}
.horaire-secretariat {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--bordure);
}
.horaire-secretariat small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bleu-medium);
  margin-bottom: 0.6rem;
}
.horaire-secretariat p {
  font-size: 0.92rem;
  color: var(--texte-doux);
  line-height: 1.6;
}
.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--bordure);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--bleu-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--bleu-profond);
  fill: none;
  stroke-width: 1.5;
}
.contact-detail small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-bottom: 0.3rem;
}
.contact-detail strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--bleu-profond);
  display: block;
}
.contact-detail a:hover { color: var(--bleu-medium); }

/* ============ ESPACE PATIENTS HOME ============ */
.espace-patients-home {
  background: var(--vert-pale);
  position: relative;
}
.espace-patients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.ep-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--bordure);
  transition: all 0.3s ease;
  display: block;
}
.ep-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--vert-sauge);
}
.ep-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--vert-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.ep-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--vert-botanique);
  fill: none;
  stroke-width: 1.5;
}
.ep-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--bleu-profond);
  margin-bottom: 0.5rem;
}
.ep-card p {
  font-size: 0.88rem;
  color: var(--texte-doux);
  line-height: 1.5;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 480px; max-width: 540px; margin: 0 auto; width: 100%; }
  .cabinet-grid { grid-template-columns: 1fr; gap: 3rem; }
  .praticiens-grid { grid-template-columns: 1fr; }
  .soins-grid { grid-template-columns: repeat(2, 1fr); }
  .approche-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .infos-grid { grid-template-columns: 1fr; gap: 2rem; }
  .avis-grid { grid-template-columns: 1fr; }
  .espace-patients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-info { flex-direction: column; gap: 1rem; }
  .soins-grid { grid-template-columns: 1fr; }
  .approche-grid { grid-template-columns: 1fr; }
  .cabinet-features { grid-template-columns: 1fr; }
  .infos-card { padding: 2rem; }
  .praticien-card { padding: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .espace-patients-grid { grid-template-columns: 1fr; }
  .avis-google-header { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
}
