* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
}
.audio-pulse {
  display: inline-block;
  font-size: 5.5rem;
  color: #bf8970; /* couleur EMYE */
  text-shadow: 0 0 5px #bf8970, 0 0 10px #e6c3ad;
  animation: glow-pulse 1.2s infinite alternate;
}

@keyframes glow-pulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 5px #bf8970, 0 0 10px #e6c3ad;
  }
  50% {
    transform: scale(1.2);
    text-shadow: 0 0 15px #bf8970, 0 0 25px #e6c3ad;
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 5px #bf8970, 0 0 10px #e6c3ad;
  }
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: #1a1d21;
}

.logo img {
  height: 100px;
}

.nav a, .lang {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;     /* 🔑 clé */
  inset: 0;
  width: 100%;
  height: 100vh;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-corner-image {
  bottom: 40px;
  right: 60px;
  max-width: 150px; 
  opacity: 0.85;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.25));
}

.hero-corner-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.hero-corner-image {
  animation: floatVoice 6s ease-in-out infinite;
}

@keyframes floatVoice {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
/* TITRE GLOBAL */
.hero-title {
  text-align: center;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.15),
    2px 2px 0 rgba(0,0,0,0.12),
    3px 3px 0 rgba(0,0,0,0.1),
    4px 4px 10px rgba(0,0,0,0.25);
}

/* LIGNE "BIENVENUE CHEZ" */
/* LIGNE "BIENVENUE CHEZ" */
.hero-line {
  display: block;
  font-size: clamp(1rem, 3vw, 2rem);
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 0.8em;

  /* Multi-couches pour 3D + reflets */
  text-shadow:
    1px 1px 0 #d1d1d1,
    2px 2px 0 #b5b5b5,
    3px 3px 0 #999999,
    4px 4px 0 #7f7f7f,
    5px 5px 2px rgba(0,0,0,0.35),
    6px 6px 6px rgba(0,0,0,0.3),
    0 -1px 2px rgba(255,255,255,0.2),
    0 -2px 4px rgba(255,255,255,0.15);
}

/* MARQUE EMYE */
.hero-brand {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: #bf8970;
  letter-spacing: 2px;

  text-shadow:
    1px 1px 0 #cfa18c,
    2px 2px 0 #b5846d,
    3px 3px 0 #9e6d52,
    4px 4px 0 #86513a,
    5px 5px 0 #6a3a26,
    6px 6px 2px rgba(0,0,0,0.4),
    8px 8px 12px rgba(0,0,0,0.45),
    0 -1px 3px rgba(255,230,210,0.25),
    0 -2px 6px rgba(255,240,220,0.15);
}

/* SOUS-TITRE */
.hero-content h3 {
  color: #000;
  font-size: 1.5rem;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.25),
    2px 2px 0 rgba(0,0,0,0.3),
    3px 3px 2px rgba(0,0,0,0.35),
    4px 4px 6px rgba(0,0,0,0.4),
    0 -1px 2px rgba(255,255,255,0.2),
    0 -2px 4px rgba(255,255,255,0.15);
}

.hero-content h1 {
  color: #bf8970;
}
/* PARAGRAPHE */
.hero-content p {
  font-size: 1.5rem;
  max-width: 700px;
  color: #fff;

  text-shadow:
    1px 1px 0 rgba(0,0,0,0.15),
    2px 2px 6px rgba(0,0,0,0.3);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  background-color: #bf8970 ;
  border: none;
  font-size: 1rem;
  padding: 0.4em 0.6em;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, transform 0.2s ease;
}


.hero-arrow-left {
  left: 20px;
}

.hero-arrow-right {
  right: 20px;
}


.hero-audio-player {
  width: 260px;
  height: 36px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
  border-radius: 6px;

}

.lang-btn {
  background: transparent;
  border: none;
  color: white;
  margin-left: 10px;
  cursor: pointer;
  font-weight: 600;
}

.lang-btn.active {
  text-decoration: underline;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #bf8970;
}

/* État actif (sera géré par JS ou scroll) */
.nav a.active {
  color: #bf8970;
  font-weight: 600;
}
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: #bf8970;
  border-radius: 2px;
}
.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
}

.lang-btn.active {
  background: #bf8970;
  border-color: #bf8970;
}

/* =========================
   BURGER MENU
========================= */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* =========================
   MOBILE & TABLETTE
========================= */
@media (max-width: 768px) {

  .header {
    padding: 14px 20px;
  }

  /* Burger visible */
  .burger {
    display: flex;
  }

  /* Menu caché */
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    display: none;
  }

  /* Menu ouvert */
  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 16px;
  }

  /* Pas de soulignement en mobile */
  .nav a.active::after {
    display: none;
  }

  .lang-switch {
    margin-top: 10px;
  }
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
    color:#bf8970 ;
  }
  .hero-slide {
    background-position: center top;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
  .hero-slide {
    background-position: center;
    min-height: 100vh;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}


/* About  */
.about {
  padding: 80px 5%;
  background: #f9f9f9;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* côte à côte */
  gap: 50px;
  align-items: center;
}

/* Card texte */
.about-card {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}

.about-card h2 {
  font-size: 26px;
  color: #bf8970;
  margin-bottom: 20px;
}

.about-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* Image */
.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  opacity: 1;       /* visible par défaut */
  transform: scale(1);
  transition: all 1s ease;
}


.about-image.active img {
  opacity: 1;
  transform: scale(1);
}
.about-box h3 {
  position: relative;
  font-size: 22px;
  margin-bottom: 18px;
  color: #1a1d21;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BARRE */
.about-box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: #bf8970; /* couleur charte */
  border-radius: 4px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr; /* empilé */
  }

  .about-card {
    text-align: center;
  }
}

/* about extra */
.about-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.about-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.about-box h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #bf8970;
}

.about-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  
}

/* Responsive */
@media (max-width: 768px) {
  .about-extra {
    grid-template-columns: 1fr;
  }
}


/* =========================
   SECTION SERVICES
========================= */
.services {
  padding: clamp(70px, 8vw, 110px) 5%;
  background: #ffffff;
  margin-top: -5px;
}

.services-container {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 36px);
}

/* =========================
   SERVICE CARD
========================= */
.service-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  padding: 38px 30px;
  border-radius: 22px;
  border: 1.5px solid rgba(191,137,112,0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.service-card::after {
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.1);
}

/* =========================
   LINE ACCENT
========================= */
.service-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #bf8970, #d9b19c);
  border-radius: 22px 0 0 22px;
}

/* =========================
   IMAGE
========================= */
.service-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid rgba(191,137,112,0.55);
  box-shadow: 0 12px 28px rgba(191,137,112,0.25);
  animation: float 4.5s ease-in-out infinite;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   TITLES & TEXT
========================= */
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #bf8970;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
}

/* =========================
   CTA
========================= */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 22px;
  padding: 11px 22px;
  border: 2px solid #bf8970;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  background: #bf8970;
  color: #fff;
}
.service-line {
  pointer-events: none;
}

/* =========================
   HEADER
========================= */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  color: #bf8970;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    padding: 32px 26px;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 70px 6%;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 300px;
  }

  .service-card {
    padding: 30px 22px;
  }

  .service-image {
    width: 80px;
    height: 80px;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }

  .section-header {
    margin-bottom: 50px;
  }
}


/* =========================
   FLOAT ANIMATION
========================= */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* Animation de base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Quand l’élément est visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Option délai pour cartes */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }


.demo-experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 6rem 0 8rem;
  text-align: center;
  padding: 0 1rem;
}

/* ===== VAGUE AUDIO ===== */
.demo-experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 6rem 0 8rem;
  text-align: center;
}

/* Animation vague sonore */
.demo-wave {
  display: flex;
  gap: 6px;
  height: 30px;
}

.demo-wave span {
  width: 4px;
  background: linear-gradient(to top, #bf8970, #e6c3ad);
  border-radius: 10px;
  animation: wave 1.4s infinite ease-in-out;
}

.demo-wave span:nth-child(2) { animation-delay: 0.1s; }
.demo-wave span:nth-child(3) { animation-delay: 0.2s; }
.demo-wave span:nth-child(4) { animation-delay: 0.3s; }
.demo-wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
  0%, 100% { height: 6px; }
  50% { height: 28px; }
}

/* Phrase */
.demo-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #333;
}

/* Bouton sculpté */
.demo-button-advanced {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  border-radius: 60px;
  text-decoration: none;
  background: linear-gradient(135deg, #bf8970, #d9b29c);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.3),
    inset 0 1px 1px rgba(255,255,255,0.25);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.demo-button-advanced:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 45px rgba(0,0,0,0.4),
    inset 0 1px 2px rgba(255,255,255,0.3);
}

/* Anneau animé */
.demo-ring {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.35);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.2; }
  50% { opacity: 0.6; }
  100% { opacity: 0.2; }
}

.demo-label {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: #fff;
}

.demo-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
}
/* ===== HOVER DEMO ===== */
.demo-wave{
  display:flex;
  gap:6px;
  justify-content:center;
  margin-bottom:15px;
  }
  
  .demo-wave span{
  width:4px;
  height:20px;
  background:#c7a15a;
  border-radius:2px;
  animation:wave 1.2s infinite ease-in-out;
  }
  
  .demo-wave span:nth-child(2){animation-delay:.1s}
  .demo-wave span:nth-child(3){animation-delay:.2s}
  .demo-wave span:nth-child(4){animation-delay:.3s}
  .demo-wave span:nth-child(5){animation-delay:.4s}
  
  @keyframes wave{
  0%,100%{transform:scaleY(.4)}
  50%{transform:scaleY(1.5)}
  }
  .demo-wave span{
    box-shadow:0 0 8px rgba(199,161,90,.6);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .demo-tagline {
    font-size: 1.05rem;
  }

  .demo-button-advanced {
    padding: 1rem 2.4rem;
  }

  .demo-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .demo-experience {
    margin: 4rem 0 6rem;
    gap: 1.5rem;
  }

  .demo-wave {
    height: 22px;
  }

  .demo-wave span {
    width: 3px;
  }

  .demo-button-advanced {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
  }

  .demo-label {
    font-size: 0.75rem;
  }

  .demo-text {
    font-size: 0.95rem;
  }
}


/* pourquoi nous choisit */

.why-us-premium {
  padding: 90px 5%;
  background: linear-gradient(180deg, #f9fafb 0%, #e0f2fe 100%);
}

.why-us-premium-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

/* Bandes avec overlay léger et hover */
.why-premium-band {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-premium-band:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Cercles flottants pour icônes */
.circle-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #1a1d21;
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-premium-band:hover .circle-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Texte */
.band-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #bf8970;
}

.band-text p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
 
}

/* Responsive */
@media (max-width: 768px) {
  .why-premium-band {
    flex-direction: column;
    text-align: center;
    padding: 25px 15px;
  }

  .circle-icon {
    margin-bottom: 15px;
  }
}


/* STATS / CHIFFRES CLÉS */
.stats {
  padding: 80px 5%;
  background: #f9fafb;
}

.stats .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.stats .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #bf8970;
  margin-bottom: 10px;
}

.stats .section-header p {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
 
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}
.stat-icon i {
  font-size: 36px;
  color: #1a1d21; /* adapte à ta charte */
}

.stat-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
  max-width: 250px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2563eb;
}

.stat-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #111827;
}

.stat-content p {
  font-size: 0.95rem;
  color: #555;

}

/* Responsive mobile */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .stat-card {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* footer */
.footer {
  background: #1a1d21;
  color: #f9fafb;
  padding: 50px 5%;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-box {
  flex: 1 1 220px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 15px;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer p, .footer a {
  color: #f9fafb;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer a:hover {
  color: #fb8970;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

/* Container des réseaux sociaux */
.footer-socials {
  margin-top: 15px;
  display: flex;
  gap: 15px; /* espace entre chaque icône */
}

/* Style général des liens */
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;      /* taille carrée */
  height: 40px;
  border-radius: 50%; /* cercle */
  color: #fff;      /* icône blanche */
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Couleur spécifique par réseau directement */
.footer-socials a[aria-label="Facebook"] { background-color: #3b5998; }
.footer-socials a[aria-label="LinkedIn"] { background-color: #0a66c2; }
.footer-socials a[aria-label="TikTok"] { background-color: #000000; }
.footer-socials a[aria-label="YouTube"] {
  background-color: #ff0000; /* rouge YouTube */
}
.footer-socials a[aria-label="WhatsApp"] {
  background-color: #25d366;
  border: 2px solid #fff; /* pour le distinguer des autres */ }
 
  

/* Effet au survol : léger zoom et peut garder la couleur */
.footer-socials a:hover {
  transform: scale(1.1);       /* léger zoom */
  opacity: 0.9;                /* un petit effet subtil */
}
/* Taille spécifique pour WhatsApp */
.footer-socials a[aria-label="WhatsApp"] {
  background-color: #25d366;
  border: 2px solid #fff; /* pour le distinguer */
  width: 45px;   /* un peu plus large */
  height: 45px;  /* un peu plus haut */
  font-size: 20px; /* icône plus grande */
}

/* Ajustement mobile pour WhatsApp */
@media (max-width: 600px) {
  .footer-socials a[aria-label="WhatsApp"] {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Pour mobile */
@media (max-width: 600px) {
  .footer-socials {
    gap: 10px;
  }
  .footer-socials a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}


.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #374151;
  padding-top: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-box {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* CTA */
.contact-cta {
  padding: 90px 20px;
  background: #ddd;
  color: #fff;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: auto;
}

.contact-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #bf8970;
}
.typing-text {
  overflow: hidden;
}

.typing-text span {
  display: inline-block;
  white-space: nowrap;
  border-right: 2px solid #bf8970;
  padding-right: 4px;
  font-family: 'Poppins', sans-serif;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: rgba(255,255,255,0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary {
  background: #fff;
  color: #1a1d21;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #fff;
  width: 100%;
  max-width: 480px;
  padding: 35px;
  border-radius: 18px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  border: none;
  background: none;
  cursor: pointer;
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .contact-cta h2 {
    font-size: 2rem;
  }
}
/* TABLET & MOBILE */
@media (max-width: 768px) {

  .modal-content {
    width: 92%;
    max-width: none;
    padding: 25px 20px;
    border-radius: 16px;
  }

  .modal-close {
    top: 10px;
    right: 14px;
    font-size: 24px;
  }

  .modal-content h3 {
    font-size: 1.4rem;
    text-align: center;
  }

  .quote-form {
    gap: 0.9rem;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 0.9rem;
    padding: 0.8rem 0.9rem;
  }

  .quote-form textarea {
    min-height: 100px;
  }
}
@media (max-width: 480px) {

  .modal-content {
    width: 94%;
    padding: 22px 18px;
    border-radius: 14px;
  }

  .modal-content h3 {
    font-size: 1.25rem;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 0.88rem;
  }

  .btn-primary {
    width: 100%;
    padding: 0.85rem;
  }
}

/*ceo*/
.ceo-card {
  max-width: 1000px;
  margin: 90px auto 0;
  display: flex;
  gap: 10px;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f9fafb, #e5e7eb);
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
 
}

.ceo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 50px 100px rgba(0,0,0,0.18);
}

/* IMAGE + BADGE */
.ceo-card-image {
  position: relative;
  flex: 1;
  min-width: 260px;
  text-align: center;
}

.ceo-card-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.4s ease;
}

.ceo-card:hover .ceo-card-image img {
  transform: scale(1.03);
}

.ceo-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1d21;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* CONTENT */
.ceo-card-content {
  flex: 2;
}

.ceo-card-content h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(15px);
  animation: textFadeUp 0.6s ease forwards;
  
}

.ceo-card-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1d21;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(15px);
  animation: textFadeUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

.ceo-text {
  line-height: 1.7;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: textFadeUp 0.6s ease forwards;
  color: #000;
 
  
}

.ceo-text.delay-1 {
  animation-delay: 0.2s;
}

.ceo-text.delay-2 {
  animation-delay: 0.4s;
}

.ceo-signature {
  margin-top: 18px;
  font-style: italic;
  font-weight: 500;
  color: #6b7280;
  opacity: 0;
  transform: translateY(20px);
  animation: textFadeUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

/* ANIMATION KEYFRAME */
@keyframes textFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ceo-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .ceo-card-image img {
    width: 220px;
    height: 220px;
  }
}

/* ===== MODALE CEO ===== */
.ceoModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

/* ÉTAT ACTIF */
.ceoModal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  color: #000;
  max-width: 700px;
  width: 100%;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  animation: fadeIn 0.3s ease;

  /* ✅ AJOUTS IMPORTANTS */
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
}

/* Texte */
.modal-content p {
  text-align: justify;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.modal-content h3 {
  color: #bf8970;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .ceoModal {
    align-items: flex-start; /* ⬅️ clé */
    padding: 20px;
  }

  .modal-content {
    margin-top: 40px;
    padding: 20px;
  }
}


/* ===== MENU BURGER MOBILE ===== */

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #1a1d21;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav a {
    display: block;
    font-size: 1.6rem;
    color: white;
  }

  .lang-switch {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .lang-btn {
    font-size: 1.2rem;
  }
}

/* Animation burger */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* devis */
.quote-section {
  padding: 4rem 1.5rem;
  background: #f9f9f9;
}

.quote-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 3rem;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.quote-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.quote-form {
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote-form input,
.quote-form textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}

.service-input {
  background: #f3f3f3;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-container {
    padding: 2rem 1.5rem;
  }
}


#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #bf8970, #d9b29c);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0; /* caché par défaut */
  z-index: 999;
}

#back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.45);
}

#back-to-top.show {
  opacity: 1;
}

.audio-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.audio-hint {
  font-size: 1.2rem;
  color: #555;
  font-style: italic;
}
