/* GOOGLE FONTS */

/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Styles globaux */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}


/* CONTENEUR CENTRAL */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* HEADER PREMIUM */
header.header {
  background-color: #ffffff;
  padding-top: 15px;
  padding-bottom: 5px; /* espace réduit mais suffisant sous le menu */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* LOGO + TITRE SUR LA MEME LIGNE */
.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px; /* espace joli entre H1 et menu */
}

.logo-title .logo {
  width: 100px;
  height: auto;
}

.logo-title h1 {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;

  /* Dégradé sur le texte */
  background: linear-gradient(135deg, #1a73e8 0%, #00bcd4 100%);
  background-clip: text;           /* standard */
  -webkit-background-clip: text;   /* Chrome/Safari */
  color: transparent;              /* fallback */
  -webkit-text-fill-color: transparent; /* Chrome/Safari */

  /* Ombre subtile pour relief */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15), 2px 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

/* Ligne fine en dessous */
.logo-title h1::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 35%;
  background-color: #00bcd4;
  bottom: -6px;
  left: 0;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Hover subtil */
.logo-title h1:hover {
  transform: translateY(-2px) scale(1.02);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2), 2px 2px 6px rgba(0,0,0,0.15);
}




/* MENU SOUS LE TITRE */
header nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; /* aligne verticalement tous les liens */
  gap: 20px;
  margin-top: 0; /* supprime grand espace blanc */
  margin-bottom: 5px; /* petit espace sous le menu */
}

header nav ul li a {
  display: inline-block; 
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 8px 15px; /* uniforme pour tous les liens */
  border-radius: 5px;
  transition: all 0.3s ease;
}

header nav ul li a:hover {
  color: #1a73e8;
  background-color: rgba(26, 115, 232, 0.1);
}

/* BOUTON CONTACT DANS LE MENU */
header nav ul li:last-child a {
  padding: 8px 20px; /* un peu plus large que les autres */
  border-radius: 30px;
  background-color: #ff7a59;
  color: #fff;
}

header nav ul li:last-child a:hover {
  background-color: #e95f3f;
}




/* HERO PREMIUM — version corrigée mobile-friendly */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh; /* remplace height */
  color: #fff;
  background: linear-gradient(-45deg, #00bcd4, #0066cc, #00bcd4, #004c99);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  overflow: hidden;
  padding: 100px 1rem 80px; /* espace haut/bas pour respirer */
  box-sizing: border-box;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.hero .keyword {
  display: block;
  margin-top: 0.3em;
  color: #ff9c4a;
  font-weight: 800;
  font-size: 1.4em;
  text-align: center;
}

/* --- Adaptation mobile --- */
@media (max-width: 768px) {
  .hero {
    min-height: 85vh; /* occupe presque tout l’écran mobile */
    padding: 120px 1.2rem 100px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero .keyword {
    font-size: 1.2rem;
  }
}


/* HERO SUBTITLE & TAGLINE */
.hero-subtitle {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}


@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,127,50,0.4); }
  50% { box-shadow: 0 0 35px rgba(255,127,50,0.7); transform: scale(1.02); }
}

/* BANDEAU D'IMAGES */
.bandeau-images {
  overflow: hidden;
  margin: 30px 0;
  background-color: #f9f9f9;
  padding: 20px 0;
}

.image-slider {
  display: flex;
  gap: 20px;
  animation: slide 30s linear infinite;
}

.image-slider img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTIONS */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Style H2 sections */
section h2 {
  display: inline-block;          /* largeur du texte seulement */
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1a73e8;
  line-height: 1.2;
  margin-bottom: 40px;
  position: relative;
  text-align: left;               /* pour le trait sous le texte */

   /* Dégradé bleu → turquoise */
  background: linear-gradient(135deg, #1a73e8 0%, #00bcd4 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

/* Propriété standard pour compatibilité */
background-clip: text;
color: transparent;


  /* Ombre subtile pour relief */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1), 2px 2px 4px rgba(0,0,0,0.05);

  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* Petit trait décoratif sous le début du H2 */
section h2::after {
  content: "";
  display: block;                 
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #1a73e8 0%, #00bcd4 100%);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  margin-top: 0.5rem;
}


/* Optionnel : effet hover sur H2 pour dynamiser le site */
section h2:hover {
  transform: translateY(-3px);
  color: #00bcd4;
}



/* LAYOUT MODERNE : TEXTE + IMAGE */
.section-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.section-content:nth-child(even) {
  flex-direction: row-reverse;
}

.section-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
}

.section-content .text {
  flex: 1;
}

.section-content .text p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

/* LISTES */
ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding-left: 0;
}

ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

ul li::before {
  content: "✓";
  color: #ff7a59;
  position: absolute;
  left: 0;
}

/* Témoignages stylés */
.temoignages .subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Grille des témoignages */
.temoignages .temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: stretch;
}

/* Cartes individuelles */
.temoignages .temoignage {
  background-color: #f1f5f9;
  padding: 25px 20px;
  border-radius: 15px;
  border: 2px solid; /* trait stylé */
  border-image: linear-gradient(135deg, #ff7a59, #1a73e8) 1; /* orange → bleu */
  box-shadow: 2px 2px 10px rgba(0,0,0,0.05), 0 4px 8px rgba(0,0,0,0.05); /* relief subtil */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effet */
.temoignages .temoignage:hover {
  transform: translateY(-5px);
  box-shadow: 4px 4px 15px rgba(0,0,0,0.1), 0 8px 15px rgba(0,0,0,0.1);
}

/* Citation */
.temoignages blockquote {
  font-style: italic;
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
  position: relative;
}

/* Nom de l’auteur */
.temoignages figcaption {
  font-weight: 600;
  color: #1a73e8;
}


/* FOOTER */
footer {
  background-color: #1a73e8;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}


/* BOUTON REMONTER EN HAUT PREMIUM */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px; /* bas à droite */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, #00bcd4, #0066cc, #00bcd4, #004c99);
  background-size: 400% 400%;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0,188,212,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  animation: glowGradient 3s linear infinite, pulse 2s infinite;
  cursor: pointer;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 0 40px rgba(0,188,212,0.8);
}

/* Afficher le bouton lorsqu’on scroll */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Animation du glow dégradé */
@keyframes glowGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Légère pulsation */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* FORMES FLOTTANTES HERO */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
  animation: float 20s linear infinite;
}

.shape1 { width: 120px; height: 120px; background-color: #ffffff; top: 10%; left: 5%; animation-duration: 25s; }
.shape2 { width: 80px; height: 80px; background-color: #ff9c4a; top: 50%; right: 10%; animation-duration: 30s; }
.shape3 { width: 100px; height: 100px; background-color: #00bcd4; bottom: 15%; left: 30%; animation-duration: 35s; }

@keyframes float {
  0% { transform: translateY(0) translateX(0) rotate(0deg); }
  50% { transform: translateY(-20px) translateX(15px) rotate(45deg); }
  100% { transform: translateY(0) translateX(0) rotate(0deg); }
}

/* SECTION PRÉSENTATION */
.presentation {
  background-color: #fff; /* fond clair pour contraste avec le body */
  padding: 80px 0; /* vertical spacing */
}

.presentation p {
  max-width: 900px;
  margin: 0 auto 20px auto; /* centré et espacement entre les paragraphes */
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}
/* Centrer uniquement le texte de la section Présentation / Qui sommes-nous ? */
.presentation {
  text-align: center;
}

/* Fond clair pour certaines sections */
.section-light {
  background-color: #ffffff;
  padding: 60px 0; /* garde le padding existant */
}

/* Fond gris par défaut pour les autres sections */
section:not(.section-light) {
  background-color: #f9f9f9;
}

/* Sous-titres H3 */
.cours h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #1565c0;
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
}

/* Accent léger sous H3 */
.cours h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #1a73e8 0%, #00bcd4 100%);
  border-radius: 2px;
  margin-top: 5px;
}

/* Listes avec puces personnalisées */
.cours ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.cours ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #333;
}

.cours ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff7a59;
  font-weight: bold;
}

/* SECTION NOS TARIFS */
.tarifs {
  padding: 60px 0;
  background-color: #ffffff; /* fond clair pour contraste */
  text-align: left; /* le texte principal à gauche pour lisibilité */
}

/* H3 dans la section tarifs */
.tarifs h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1565c0;
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
}

/* Petit trait décoratif sous les H3 */
.tarifs h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #1a73e8 0%, #00bcd4 100%);
  border-radius: 2px;
  margin-top: 0.3rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Listes tarifs et formules */
.tarifs ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.tarifs ul li {
  padding-left: 25px;
  margin-bottom: 12px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Petit check décoratif */
.tarifs ul li::before {
  content: "✓";
  color: #ff7a59;
  position: absolute;
  left: 0;
  top: 0;
}

.price-old {
  position: relative;
  color: #000000; /* texte noir */
  font-weight: 600;
  display: inline-block;
}

.price-old::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px; /* épaisseur du trait */
  background: linear-gradient(135deg, #ff9800 0%, #00bcd4 100%); /* orange → bleu turquoise */
  border-radius: 2px;
  transform: rotate(-3deg); /* légère inclinaison pour effet dynamique */
  box-shadow: 0 1px 3px rgba(0,0,0,0.2); /* petit relief */
}

/* SECTION COMMENT ÇA MARCHE */
.comment-ca-marche {
  background-color: #f9fafc;
  padding: 80px 0;
  text-align: center;
}

.steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 900px;
  margin: 60px auto 0;
}

/* Une carte par étape */
.step {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 25px 30px;
  border-radius: 18px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Le rond avec le numéro */
.step-number {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #1a73e8 0%, #00bcd4 100%);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  margin-right: 20px;
}

/* Le texte */
.step-text {
  text-align: left;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

.step-text strong {
  color: #1a73e8;
  font-weight: 700;
}

/* =============================
   FORMULAIRE CONTACT - STYLE PREMIUM
   ============================= */

/* Section Contact */
.section-contact {
  padding: 60px 20px;
  text-align: center;
}

.section-contact h2 {
  font-size: 2.4rem;
  color: #007bff; /* couleur accent du site */
  margin-bottom: 10px;
}

.section-contact p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Formulaire */
.contactForm {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 0 auto;
}

.contactForm label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

.contactForm input[type="text"],
.contactForm input[type="tel"],
.contactForm textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: 0.3s;
}

.contactForm input:focus,
.contactForm textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
  outline: none;
}

/* Checkbox */
/* Checkbox corrigé */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px; /* réduit l'espacement horizontal et vertical */
}

.checkbox-group label {
  display: flex;
  align-items: center; /* aligne la case avec le texte */
  gap: 8px; /* espace entre checkbox et texte */
  margin-right: 15px; /* petit espace entre les paires */
  font-weight: 500;
}

.checkbox-group input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #007bff;
  margin: 0; /* supprime les marges par défaut qui créaient trop d'espace */
}


/* Message envoyé */
.status-msg {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #28a745; /* vert pour succès */
}

/* MESSAGE DE CONFIRMATION FORMULAIRE */
.status-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 165, 0, 0.15);
  color: #ff9800;
  font-weight: 600;
  border: 2px solid #ff9800;
  border-radius: 12px;
  padding: 12px 18px;
  margin-top: 20px;
  animation: fadeIn 0.6s ease forwards;
}

.checkmark {
  font-size: 1.5rem;
  color: #ff9800;
  animation: pop 0.4s ease;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
  0% { transform: scale(0.5); opacity: 0; }
  80% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

/* =========================
   TYPO ADAPTATIVE
========================= */
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 2rem); }
p, li, label { font-size: clamp(0.95rem, 2.5vw, 1.1rem); line-height: 1.5; }


/* =========================
   RESPONSIVE TABLETTE / MOBILE
========================= */

/* --- 1024px --- */
@media (max-width: 1024px) {
  .section .section-content {
    flex-direction: column; 
    gap: 30px;
  }
  .logo-title .logo { width: 80px; }
  .logo-title h1 { font-size: 3rem; }
  .hero h1 { font-size: 2.5rem; }
  .image-slider img { width: 200px; height: 120px; }
}

/* --- 768px --- */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  .hero { height: 55vh; }
  .hero h1 { font-size: 2rem; }
  .hero .keyword { font-size: 1em; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-tagline { font-size: 0.9rem; }

  header nav ul { flex-direction: column; gap: 10px; }

  .logo-title { flex-direction: row; gap: 15px; }
  .logo-title .logo { width: 60px; }
  .logo-title h1 { font-size: 1.8rem; }

  .image-slider img { width: 150px; height: 90px; }

  section { padding: 40px 15px; }

  .grid, .temoignages-grid { grid-template-columns: 1fr; }

  .contactForm { padding: 20px; }

  .checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
  }
  .checkbox-group label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
  }
  .checkbox-group input[type="checkbox"] {
    accent-color: #ff9c4a;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  /* MENU BURGER */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 3001;
  }
  .burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ff9c4a;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  nav ul {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #007bff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    padding-top: 90px;
    margin: 0;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    z-index: 3000;
  }
  nav ul.open { transform: translateY(0); }

  nav ul li { list-style: none; }
  nav ul li a { color: #fff; font-size: 1.3rem; font-weight: 600; text-decoration: none; transition: color 0.3s ease; }
  nav ul li a:hover { color: #ffb46a; }
}
  
/* --- 700px --- */
@media (max-width: 700px) {
  .step { flex-direction: column; align-items: flex-start; text-align: left; }
  .step-number { margin-right: 0; margin-bottom: 10px; }
}

/* =============================
   FORMULAIRE CONTACT - STYLE PREMIUM
   ============================= */

/* Section Contact */
.section-contact {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.section-contact h2 {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.section-contact p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Formulaire */
.contactForm {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}

/* Lignes de champs côte-à-côte */
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row label {
  flex-basis: 100%;
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

.form-row input[type="text"],
.form-row input[type="tel"] {
  flex: 1 1 48%;
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-row input:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0,123,255,0.25);
  outline: none;
}

/* Texte libre */
.contactForm textarea {
  width: 100%;
  padding: 16px 16px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  min-height: 160px;
  resize: vertical;
  transition: all 0.3s ease;
}

.contactForm textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0,123,255,0.25);
  outline: none;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-top: 5px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #007bff;
  margin: 0;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .form-row input[type="text"],
  .form-row input[type="tel"] {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .contactForm {
    padding: 30px;
  }
  .checkbox-group {
    gap: 10px 15px;
  }
}

/* =======================
   BOUTONS PRINCIPAUX
======================= */

/* Bouton général */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a59 0%, #ff9c4a 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255,127,50,0.4);
  cursor: pointer;
}

/* Hover général */
.btn:hover {
  background: linear-gradient(135deg, #ff9c4a 0%, #ff7a59 100%);
  box-shadow: 0 0 30px rgba(255,127,50,0.7);
  transform: translateY(-3px) scale(1.02);
}

/* Bouton premium héro */
.btn-glow {
  display: inline-block;
  background: linear-gradient(135deg, #ff7f32 0%, #ff9c4a 100%);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255,127,50,0.4);
  transition: all 0.3s ease;
  animation: btnPulse 2s infinite;
}

.btn-glow:hover {
  background: linear-gradient(135deg, #ff9c4a 0%, #ff7f32 100%);
  box-shadow: 0 0 35px rgba(255,127,50,0.8);
  transform: translateY(-4px) scale(1.05);
}

/* Animation pulsante */
@keyframes btnPulse {
  0% { box-shadow: 0 0 20px rgba(255,127,50,0.4); }
  50% { box-shadow: 0 0 35px rgba(255,127,50,0.6); }
  100% { box-shadow: 0 0 20px rgba(255,127,50,0.4); }
}

/* Bouton CTA Header */
.btn-cta-header {
  background: #ff9c4a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn-cta-header:hover {
  background: #ffa95c;
}

/* Bouton WhatsApp */
.btn-whatsapp {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a59 0%, #ff9c4a 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255,127,50,0.4);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #ff9c4a 0%, #ff7a59 100%);
  box-shadow: 0 0 30px rgba(255,127,50,0.7);
  transform: translateY(-3px) scale(1.02);
}

/* Boutons pleine largeur sur mobile */
@media (max-width: 480px) {
  .btn, .btn-whatsapp, .btn-glow, .btn-cta-header {
    width: 100%;
    text-align: center;
  }
}
/* Bouton Envoyer du formulaire */
.contactForm .submitBtn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a59 0%, #ff9c4a 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255,127,50,0.4);
}

.contactForm .submitBtn:hover {
  background: linear-gradient(135deg, #ff9c4a 0%, #ff7a59 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(255,127,50,0.7);
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
