/*
Theme Name: Isabel GONCALVES Coach - Design Minimaliste TEST MODIF texte
Description: Thème personnalisé minimaliste pour Isabel GONCALVES - Coach Certifiée & Hypnocoach
Version: 2.0
Author: Thème Personnalisé
*/

:root {
  --rose-300: #f8d7ff;
  --rose-500: #e4a7f5;
  --rose-700: #c47dd9;
  --pastel-pink: #ffd6f7;
  --pastel-lavender: #e6d7ff;
  --pastel-violet: #d4a5e8;
  --neutral-bg: #f3f1f7;
  --text-dark: #2d1b3d;
  --text-light: #6b5b73;
  --white: #ffffff;
  --shadow-soft: 0 4px 20px rgba(196, 125, 217, 0.1);
  --shadow-medium: 0 8px 30px rgba(196, 125, 217, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ====================================
   BARRE CTA MINIMALISTE
   ==================================== */

.top-alert {
  background: linear-gradient(135deg, var(--rose-700) 0%, var(--rose-500) 100%);
  color: white;
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.top-alert::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.alert-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.alert-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-alert {
  background: white;
  color: var(--rose-700);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-alert:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ====================================
   HEADER ÉPURÉ
   ==================================== */

.header {
  background: var(--white);
  border-bottom: 1px solid var(--rose-300);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo épuré */
.logo-circle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose-700);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--rose-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Navigation minimaliste */
.nav-toggle {
  background: none;
  border: none;
  color: var(--rose-700);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.nav-toggle:hover {
  background: var(--rose-300);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--rose-300);
  display: none;
  padding: 1rem 0;
  box-shadow: var(--shadow-soft);
}

.nav-menu.active {
  display: block;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  border-bottom: 1px solid var(--rose-300);
}

.nav-menu li:last-child {
  border-bottom: none;
}

.nav-menu a {
  display: block;
  padding: 1rem 2rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  background: var(--rose-300);
  color: var(--rose-700);
  padding-left: 2.5rem;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--rose-500);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-menu a:hover::before {
  opacity: 1;
}

.header-cta {
  display: none;
}

/* ====================================
   HERO SECTION UNIFORME - IMAGE BIEN VISIBLE
   ==================================== */

/* SECTION HERO GLOBALE */
.hero-floating {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  /* L'image de fond sera maintenant la même partout */
}

/* IMAGE DE FOND UNIVERSELLE - TRÈS VISIBLE */
.hero-floating::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9; /* Très visible - augmenté de 0.6 à 0.9 */
  z-index: 0;
}

/* OVERLAY RÉDUIT pour laisser passer l'image */
.hero-floating::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(230, 215, 255, 0.2)); /* Très réduit */
  z-index: 1;
  pointer-events: none;
}

/* WRAPPER POUR LE CONTENU */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  justify-content: center;
}

/* SUPPRIMER LES ANCIENS CONTENEURS D'IMAGES */
.hero-background-desktop,
.hero-background-mobile {
  display: none !important;
}

/* IMAGE DE PROFIL MOBILE - Repositionnée */
.mobile-profile-section {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
}

.mobile-profile-container {
  display: inline-block;
  position: relative;
}

.mobile-profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 8px 30px rgba(196, 125, 217, 0.4);
}

/* Effet de bordure animée pour mobile */
.mobile-profile-container::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: linear-gradient(45deg, var(--rose-500), var(--rose-700), var(--pastel-violet), var(--rose-500));
  border-radius: 50%;
  z-index: -1;
  animation: rotate-border 3s linear infinite;
  opacity: 0.8;
}

@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* CONTENU TEXTE - CONTRASTE RENFORCÉ */
.intro-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(248, 215, 255, 0.95); /* Plus opaque */
  color: var(--rose-700);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700; /* Plus gras */
  margin: 0 auto 2rem;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(196, 125, 217, 0.4);
  border: 1px solid rgba(196, 125, 217, 0.3); /* Bordure pour plus de définition */
}

.profile-info h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 3px 6px rgba(255, 255, 255, 0.9); /* Ombre plus forte */
}

.profile-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark); /* Plus sombre pour le contraste */
  margin-bottom: 2rem;
  font-weight: 500; /* Plus gras */
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.intro-text {
  font-size: 1rem;
  color: var(--text-dark); /* Plus sombre pour le contraste */
  margin-bottom: 3rem;
  max-width: 500px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
  font-weight: 500; /* Plus gras pour la lisibilité */
}

/* BOUTONS HERO - CONTRASTE RENFORCÉ */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-main {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(196, 125, 217, 0.6); /* Ombre plus forte */
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  justify-content: center;
}

.cta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196, 125, 217, 0.7);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95); /* Plus opaque */
  color: var(--text-dark);
  border: 2px solid var(--rose-500); /* Bordure plus marquée */
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5); /* Ombre plus forte */
}

.btn-secondary:hover {
  background: var(--rose-300);
  color: var(--rose-700);
  transform: translateY(-2px);
}

/* IMAGE DE PROFIL DESKTOP - Masquée sur mobile */
.hero-right {
  display: none;
}

/* Ancien style supprimé - remplacé par hero-profile-container-simple */

.hero-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-right .hero-profile-container-simple .hero-profile-placeholder {
  width: 100% !important;
  height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  border-radius: 0 !important;
}

.hero-right .hero-profile-container-simple .hero-profile-placeholder svg {
  width: 100% !important;
  height: 100% !important;
}

/* Effet de bordure animée supprimé - remplacé par hero-profile-container-simple */

/* GESTION DYNAMIQUE DE L'IMAGE DE FOND */
.hero-floating.has-bg-image::before {
  opacity: 0.9; /* Plus visible */
}

.hero-floating.no-bg-image::before {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  opacity: 0.4; /* Légèrement plus visible aussi */
}

/* ====================================
   SERVICES EN BLOCS CLIQUABLES - 4 SERVICES
   ==================================== */

.services-section {
  padding: 4rem 1.5rem;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
}

/* GRILLE SERVICES - ADAPTÉE POUR 4 SERVICES */
.services-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr; /* 1 colonne sur mobile par défaut */
}

.service-card {
  background: var(--white);
  border: 2px solid var(--rose-300);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-link {
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose-500), var(--rose-700));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--rose-500);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--rose-300);
  color: var(--rose-700);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--rose-700);
  color: white;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-arrow {
  font-size: 1.5rem;
  color: var(--rose-500);
  font-weight: bold;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--rose-700);
}

/* ====================================
   SECTION "POURQUOI ME CHOISIR"
   ==================================== */

.why-choose-section {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  padding: 4rem 1.5rem;
  position: relative;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.why-choose-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  position: relative;
  z-index: 2;
}

.why-choose-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-choose-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

/* ====================================
   TÉMOIGNAGES ÉPURÉS
   ==================================== */

.testimonials-section {
  background: var(--white);
  position: relative;
  padding: 4rem 1.5rem;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--rose-300);
  position: relative;
}

.testimonial-content {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.author-title {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ====================================
   CTA APRÈS TÉMOIGNAGES
   ==================================== */

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--neutral-bg), var(--pastel-lavender));
  border-radius: 20px;
  border: 2px solid var(--rose-300);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-cta-text {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.testimonials-cta-button {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.testimonials-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.testimonials-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.testimonials-cta-button:hover::before {
  left: 100%;
}

.testimonials-cta-button:active {
  transform: translateY(0);
}

/* ====================================
   CTA FINALE MINIMALISTE
   ==================================== */

.cta-section {
  background: var(--white);
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500));
  color: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-button {
  background: white;
  color: var(--rose-700);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ====================================
   ANIMATION LIBELLULE SIMPLIFIÉE
   ==================================== */

.dragonfly {
  position: fixed;
  width: 150px;
  height: 90px;
  top: calc(100vh - 80px);
  left: calc(100vw - 150px);
  z-index: 99999;
  opacity: 0.7;
  animation: fly-path 10s ease-in-out forwards;
  animation-delay: 1.5s;
  pointer-events: none;
}

@keyframes fly-path {
  0% { 
    transform: rotate(45deg);
    top: calc(100vh - 80px);
    left: calc(100vw - 150px);
    opacity: 0.3;
  }
  25% { 
    transform: rotate(0deg);
    top: 60vh;
    left: 70vw;
    opacity: 0.6;
  }
  50% { 
    transform: rotate(-20deg);
    top: 40vh;
    left: 40vw;
    opacity: 0.8;
  }
  75% { 
    transform: rotate(-10deg);
    top: 20vh;
    left: 20vw;
    opacity: 1;
  }
  100% { 
    transform: rotate(0deg) scale(0.3);
    top: 1.5rem;
    left: 1rem;
    opacity: 0;
  }
}

/* ====================================
   MODAL MINIMALISTE
   ==================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45, 27, 61, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--rose-300);
  color: var(--rose-700);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 2rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-input {
  padding: 1rem;
  border: 2px solid var(--rose-300);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--rose-500);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.form-note {
  background: var(--rose-300);
  color: var(--rose-700);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

.form-submit {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 125, 217, 0.4);
}

/* ====================================
   STYLES POUR LES PAGES DE SERVICES
   ==================================== */

.page-header {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500));
  color: white;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-header .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
}

.content-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  border-radius: 2px;
}

.content-section p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.benefit-card {
  background: var(--white);
  border: 2px solid var(--rose-300);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--rose-500);
  box-shadow: var(--shadow-medium);
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-card .benefit-icon {
  font-size: 1.5rem;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.process-steps {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  border-radius: 16px;
  padding: 3rem 2rem;
  margin: 3rem 0;
}

.process-steps h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.steps-list {
  display: grid;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  background: var(--rose-700);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-light);
  margin: 0;
  font-size: 1rem;
}

.cta-service {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500));
  color: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 4rem 0;
}

.cta-service h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-service p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-service .btn-cta {
  background: white;
  color: var(--rose-700);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-service .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ====================================
   RESPONSIVE DESIGN - GRILLE 4 SERVICES
   ==================================== */

/* Mobile First (défaut - jusqu'à 767px) */
@media (max-width: 767px) {
  /* HEADER MOBILE */
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rose-300);
    display: none;
    padding: 1rem 0;
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    display: block;
  }

  .nav-menu li {
    border-bottom: 1px solid var(--rose-300);
  }

  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
  }

  /* HERO MOBILE - OVERLAY ENCORE PLUS LÉGER */
  .hero-floating {
    min-height: 80vh;
  }
  
  .hero-content-wrapper {
    min-height: 80vh;
    padding: 2rem 1.5rem;
  }
  
  /* Overlay encore plus léger sur mobile */
  .hero-floating::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(230, 215, 255, 0.15));
  }
  
  .mobile-profile-section {
    display: block;
    order: 1;
  }
  
  .intro-card {
    order: 2;
  }
  
  .hero-right {
    display: none;
  }
  
  /* Texte encore plus contrasté sur mobile */
  .profile-info h1 {
    font-size: 2rem;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-weight: 900; /* Encore plus gras sur mobile */
  }
  
  .profile-subtitle,
  .intro-text {
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-weight: 600;
  }
  
  .profile-subtitle {
    font-size: 1rem;
  }
  
  .intro-text {
    font-size: 0.95rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-main,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  /* GRILLES MOBILE - 4 SERVICES */
  .services-grid {
    grid-template-columns: 1fr; /* 1 colonne sur mobile */
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-cta {
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .testimonials-cta-text {
    font-size: 1.1rem;
  }

  .testimonials-cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* SECTIONS MOBILE */
  .services-section,
  .testimonials-section,
  .cta-section {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* MODAL MOBILE */
  .modal-content {
    width: 95%;
    padding: 2rem;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  /* PAGES SERVICES MOBILE */
  .page-header {
    padding: 3rem 1.5rem 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header .subtitle {
    font-size: 1rem;
  }

  .page-content {
    padding: 3rem 1.5rem;
  }

  .process-steps {
    padding: 2rem 1.5rem;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin-bottom: 1rem;
  }
}

/* Tablette (768px à 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  /* HEADER TABLETTE */
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: block !important;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .nav-menu ul {
    display: flex;
    gap: 1.5rem;
  }

  .nav-menu li {
    border: none;
  }

  .nav-menu a {
    padding: 0.5rem 0;
  }

  .nav-menu a:hover {
    background: none;
    padding-left: 0;
    color: var(--rose-700);
  }

  .nav-menu a::before {
    display: none;
  }

  .header-cta {
    display: block;
  }

  .header-cta button {
    background: var(--rose-700);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .header-cta button:hover {
    background: var(--rose-500);
    transform: translateY(-1px);
  }

  /* HERO TABLETTE */
  .hero-floating {
    min-height: 75vh;
  }
  
  .hero-content-wrapper {
    min-height: 75vh;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 2rem;
  }
  
  .mobile-profile-section {
    display: none;
  }
  
  .intro-card {
    flex: 1;
    text-align: left;
    order: 1;
  }
  
  .hero-right {
    display: flex !important;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    order: 2;
    padding-top: 2rem;
  }

  .hero-badge {
    margin: 0 0 2rem 0;
  }
  
  .intro-text {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
  }
  
  .profile-info h1 {
    font-size: 3rem;
  }
  
  /* Ancien hero-profile-container supprimé */

  /* GRILLES TABLETTE - 4 SERVICES */
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .testimonials-cta {
    margin-top: 2.5rem;
    padding: 1.8rem;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop (1200px et plus) */
@media (min-width: 1200px) {
  /* HEADER DESKTOP */
  .header-container {
    max-width: 1400px;
  }

  /* HERO DESKTOP */
  .hero-floating {
    min-height: 85vh;
  }
  
  .hero-content-wrapper {
    min-height: 85vh;
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    padding: 4rem 2rem;
  }
  
  .mobile-profile-section {
    display: none;
  }
  
  .intro-card {
    flex: 1;
    text-align: left;
    order: 1;
  }
  
  .hero-right {
    display: flex !important;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    order: 2;
    padding-top: 2rem;
  }

  .hero-badge {
    margin: 0 0 2rem 0;
  }
  
  .intro-text {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
  }
  
  .profile-info h1 {
    font-size: 4rem;
  }
  
  .profile-subtitle {
    font-size: 1.3rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  /* Ancien hero-profile-container supprimé */

  /* GRILLES DESKTOP - 4 SERVICES */
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 sur desktop standard */
    gap: 2.5rem;
    max-width: 1000px; /* Plus étroit pour de belles proportions */
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* SECTIONS DESKTOP */
  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }
}

/* Très large écran (1400px et plus) - Option pour 4 colonnes */
@media (min-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes sur très large écran */
    max-width: 1400px;
    gap: 2rem;
  }
}

/* ====================================
   ANIMATIONS ET EFFETS
   ==================================== */

/* Animation d'apparition */
.mobile-profile-image,
.hero-profile-image {
  animation: fadeInImage 0.8s ease-out forwards;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Effet hover sur les images de profil */
.mobile-profile-image:hover,
.hero-profile-image:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* ====================================
   SUPPRESSION GLOBALE DES ANIMATIONS GÊNANTES
   ==================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .dragonfly {
    display: none;
  }
  
  .mobile-profile-container::before {
    animation: none;
  }
  
  .hero-profile-image:hover,
  .mobile-profile-image:hover {
    transform: none;
  }
}

/* ====================================
   OPTIMISATIONS PERFORMANCE
   ==================================== */

/* Optimisation pour les écrans haute résolution */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-profile-image,
  .mobile-profile-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* ====================================
   STYLES GLOBAUX POUR COHÉRENCE
   ==================================== */

/* Assurer que les images ne débordent pas */
.hero-floating img {
  max-width: 100%;
  height: auto;
}

/* Placeholder SVG responsive */
.hero-profile-placeholder svg {
  max-width: 100%;
  height: auto;
}

/* ====================================
   ADMIN BAR RESPONSIVE
   ==================================== */

body.admin-bar .top-alert {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .top-alert {
    top: 46px;
  }
}

/* ====================================
   WORDPRESS SPECIFIC STYLES
   ==================================== */

.wp-block-group {
  margin: 0;
}

.site-header, .site-footer {
  z-index: 100;
}


/* ====================================
   IMAGES DE PROFIL SANS ANIMATION
   ==================================== */

/* Container mobile sans animation */
.mobile-profile-container-simple {
  display: inline-block;
  position: relative;
}

.mobile-profile-container-simple .mobile-profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 8px 30px rgba(196, 125, 217, 0.4);
  /* Suppression de l'animation de rotation */
  /* animation: none; */
}

/* Container desktop sans animation - LARGEUR RÉDUITE DE MOITIÉ */
.hero-right .hero-profile-container-simple {
  width: 300px !important;
  height: 400px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  position: relative;
  box-shadow: 0 12px 40px rgba(196, 125, 217, 0.4);
  border: 5px solid white;
  /* FORCE RECTANGULAIRE */
  aspect-ratio: 3/4 !important;
  /* Suppression de l'animation de rotation */
  /* animation: none; */
}

.hero-right .hero-profile-container-simple .hero-profile-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
  /* FORCE RECTANGULAIRE */
  border-radius: 0 !important;
  /* Suppression de l'effet hover */
  transition: none;
}

.hero-profile-container-simple .hero-profile-image:hover {
  transform: none;
}

/* Suppression complète des effets ::before pour les bordures animées */
.mobile-profile-container-simple::before,
.hero-profile-container-simple::before {
  display: none;
}

/* Responsive pour les containers sans animation - LARGEUR RÉDUITE DE MOITIÉ */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-right .hero-profile-container-simple {
    width: 300px !important;
    height: 400px !important;
    border-radius: 16px !important;
    aspect-ratio: 3/4 !important;
  }
}

@media (min-width: 1200px) {
  .hero-right .hero-profile-container-simple {
    width: 350px !important;
    height: 460px !important;
    border-radius: 16px !important;
    aspect-ratio: 3/4 !important;
  }
}
