
/* ============================
   Définition des couleurs globales
   ============================ */
:root {
  --primary-color: #d4aa37;
  --secondary-color: #000000;
  --text-color: #000000; /* Texte en noir par défaut */
  --background-color: #ffffff;
  --accent-color: #f5f5f5;

  /* Variables supplémentaires nécessaires pour ton style.css */
  --header-footer-bg: #000000; /* fond noir pour header et footer */
  --hover-color: #b9912d; /* couleur plus foncée au survol des boutons */
}


/* ============================
   Style global et sections spécifiques
   ============================ */
/* Variables de couleurs */
:root {
  --background-color: #ffffff;
  --text-color: #000000;
  --gold: #d4aa37;
  --gold-dark: #b38b2f;
  --black: #000000;
  --white: #ffffff;
}

/* Style global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
}

.custom-dropdown button {
  background: black;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.dropdown-list {
  position: absolute;
  background: black;  /* Fond noir */
  color: #d4aa37;     /* Texte doré */
  border: 1px solid #ccc;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 200px;
  z-index: 1000;
}

.dropdown-list li {
  padding: 8px;
  cursor: pointer;
}

.dropdown-list li:hover {
  background: #333;
}

.flag-icon {
  margin-right: 8px;
}


/* Fond de la page */
body {
  background: url('../img/body.png') no-repeat center center fixed;  /* Image défile avec le contenu */
  background-size: cover;  /* L'image couvre toute la page sans distorsion */
  background-attachment: scroll;  /* L'image défile avec le contenu */
  color: var(--text-color);
  line-height: 1.6;
  height: 100%; /* Assure que le fond couvre toute la hauteur de la page */
}

h1, h2, h3 {
  color: var(--gold);
}

/* Header */
header {
  /* background: url('../img/header.png') no-repeat top center fixed; */
  background-color: #111 !important; /* Sombre */
  background-size: auto 100%;  /* L'image conserve ses proportions avec une hauteur de 100% */
  background-position: center top;  /* L'image reste centrée */
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 250px;  /* Ajuste la hauteur du header pour correspondre à l'image */
  width: 100%;  /* Le header prend toute la largeur */
}

header img {
  max-height: 250px;
  width: auto;
  z-index: 2; /* Assure que l'image de logo soit au-dessus du fond */
}

nav {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  margin: 0;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  display: block;
}

/* Section Accueil */
#accueil h2,
#accueil p {
  color: var(--gold); /* Applique la couleur dorée */
}

/* Section Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.hero h1 {
  background: none;
  padding: 0;
  color: var(--gold);
}

.hero a {
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.hero a:hover {
  background: var(--gold-dark);
}

/* Section générique */
.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Animation AOS */
[data-aos="fade-up"] {
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Services */
.service {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.service:hover {
  transform: translateY(-5px);
}

.service h3, .service i {
  color: var(--gold);
  margin-bottom: 1rem;
}

.service i {
  font-size: 2rem;
  display: block;
}

/* Grille responsive */
.grid {
  display: grid;
  gap: 2rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  width: 100%;
}

/* Formulaire */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
  background-color: transparent; /* Retirer le fond noir */
  padding: 2rem;
  border: 2px solid var(--gold); /* Garder l'encadré doré */
  border-radius: 12px;
  color: var(--white);
  text-align: left;
}

form h2 {
  text-align: center;
  font-size: 1.25rem;
  margin-top: 1rem;
}

label {
  font-weight: bold;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

input[type="email"].invalid {
  border-color: red;
}

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

button {
  padding: 0.75rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: var(--gold-dark);
}

/* Messages d’erreur */
#error-message,
#telephone-error {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: none;
  padding: 0.25rem;
  border: 1px solid red;
  border-radius: 4px;
}

/* Page FAQ */
/* Appliquer le fond noir et le texte blanc à toute la page FAQ */
body.faq-page {
  background-color: #000;
  color: #fff;
}

/* Titres dorés */
body.faq-page h2,
body.faq-page h3 {
  color: #d4aa37;
}

/* Alignement du menu à droite dans le header */
body.faq-page header {
  display: flex;
  justify-content: space-between; /* Le logo et le menu sont espacés */
  align-items: center;
  padding: 1.5rem 2rem; /* Ajuste l'espace autour des éléments du header */
}

body.faq-page header nav {
  margin-left: auto;  /* Pousse le menu vers la droite */
}

body.faq-page .menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
}

body.faq-page .menu li {
  margin: 0;
}

body.faq-page .menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

/* Page FAQ */
/* Appliquer le fond noir et le texte blanc à toute la page FAQ */
body.faq-page {
  background-color: #000;
  color: #fff;
}

/* Titres dorés */
body.faq-page h2,
body.faq-page h3 {
  color: #d4aa37;
}

/* Alignement du menu à droite dans le header */
body.faq-page header {
  display: flex;
  justify-content: space-between; /* Le logo et le menu sont espacés */
  align-items: center;
  padding: 1.5rem 2rem; /* Ajuste l'espace autour des éléments du header */
  position: relative; /* Nécessaire pour positionner la droplist en absolu */
}

body.faq-page header nav {
  margin-left: auto;  /* Pousse le menu vers la droite */
}

body.faq-page .menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
}

body.faq-page .menu li {
  margin: 0;
}

body.faq-page .menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

/* Droplist de langue en haut à droite */
.language-selector {
    right: 20px;
  position: absolute;
  top: 20px; /* Positionne la droplist un peu en dessous du bord supérieur */
   /* Place la droplist à droite */
  background-color: #333; /* Fond sombre pour la droplist */
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

/* Section FAQ */
.faq-section {
  background: transparent;  /* Fond blanc pour les sections */
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 12px;  /* Coins arrondis */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);  /* Ombre douce pour l'effet de carte */
}

.faq-section h2,
.faq-section h3 {
  color: var(--gold); /* Titres dorés */
}

.faq-item {
  background: #f9f9f9;  /* Fond gris clair pour chaque item */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  transition: transform 0.3s ease-in-out;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-item h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.faq-item p {
  color: #333;
  font-size: 1rem;
}

/* Animation AOS */
[data-aos="fade-up"] {
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}


/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 2rem 2rem 1rem;  /* Ajouter un peu d'espace en bas pour le copyright */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  min-height: 150px;  /* Augmenter légèrement la hauteur minimale pour laisser de l'espace */
}

.footer-logo img {
  max-height: 100px;
  width: auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  display: block;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-section .contact-link {
  border: 2px solid var(--gold); /* Encadrer le texte "Contact-us" en doré */
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--gold); /* Couleur du texte doré */
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.footer-section .contact-link:hover {
  background-color: var(--gold); /* Fond doré au survol */
  color: var(--black); /* Texte noir au survol */
}

/* Icônes des réseaux sociaux */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-icons a {
  font-size: 1.5rem;
  color: var(--gold);  /* Icônes en doré */
  transition: color 0.3s;
}

.footer-icons a:hover {
  color: var(--white); /* Change la couleur au survol */
}

/* Copyright centré avant la fin du footer */
.footer-bottom {
  width: 100%;
  text-align: center;
  color: var(--gold);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  margin-top: 1rem; /* Espacement entre les autres sections et le bas */
}

/* Section FAQ */
body.faq-page {
  background-color: #000;
  color: #fff;
}

body.faq-page h2,
body.faq-page h3 {
  color: #d4aa37;
}

body.faq-page .faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: auto;
}

body.faq-page .faq-container .question {
  cursor: pointer;
  padding: 1rem;
  background: var(--black);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

body.faq-page .faq-container .question:hover {
  background: var(--gold);
  color: var(--black);
}

body.faq-page .faq-container .answer {
  display: none;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem;
  background-color: #222;
}

body.faq-page .faq-container .question.open .answer {
  display: block;
}

/* Animation de transition de langue */
.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    form {
        width: 100%;
        padding: 1rem;
    }
}


/* Dark Theme */
body.dark-theme {
  background-color: var(--background-color-dark);
  color: var(--text-color-dark);
}

body.dark-theme .section,
body.dark-theme .service,
body.dark-theme form {
  background-color: var(--section-bg-dark);
  color: var(--text-color-dark);
}

body.dark-theme input,
body.dark-theme textarea {
  background-color: var(--input-bg-dark);
  color: var(--text-color-dark);
  border-color: var(--border-color-dark);
}

body.dark-theme header,
body.dark-theme footer {
  background-color: var(--header-footer-bg-dark);
  border-color: var(--border-color-dark);
}

body.dark-theme .cta-button {
  background-color: var(--cta-bg-dark);
  color: var(--cta-text-dark);
}

body.dark-theme .cta-button:hover {
  background-color: var(--cta-hover-bg-dark);
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #ffffff;
    }
    form {
        background-color: #1e1e1e;
        border-color: #bb86fc;
    }
    input, textarea {
        background-color: #2c2c2c;
        color: #ffffff;
    }
    button {
        background-color: #bb86fc;
        color: #000000;
    }
}

/* Chatbot */
#chatbot {
    position: fixed;
    
    
    z-index: 1000;
}

/* Animation */
#animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
    opacity: 0.5;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    
    
    padding: 10px 20px;
    background-color: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--gold);
    z-index: 1000;
}


/* Dark Theme */
body.dark-theme {
  background-color: var(--background-color-dark);
  color: var(--text-color-dark);
}

body.dark-theme .section,
body.dark-theme .service,
body.dark-theme form {
  background-color: var(--section-bg-dark);
  color: var(--text-color-dark);
}

body.dark-theme input,
body.dark-theme textarea {
  background-color: var(--input-bg-dark);
  color: var(--text-color-dark);
  border-color: var(--border-color-dark);
}

body.dark-theme header,
body.dark-theme footer {
  background-color: var(--header-footer-bg-dark);
  border-color: var(--border-color-dark);
}

body.dark-theme .cta-button {
  background-color: var(--cta-bg-dark);
  color: var(--cta-text-dark);
}

body.dark-theme .cta-button:hover {
  background-color: var(--cta-hover-bg-dark);
}

body.dark-theme {
    background-color: #121212;
    color: #ffffff;
}

body.dark-theme .theme-toggle {
    background-color: #bb86fc;
    color: #000000;
}

body.dark-theme .scroll-progress {
    background-color: #bb86fc;
}

/* Dégradés dorés subtils */
h1:not(.hero h1), h2, h3 {
  background: linear-gradient(90deg, #d4aa37, #fff8dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Effet de lumière sur les blocs FAQ */
.faq-item:hover {
  box-shadow: 0 0 15px rgba(212, 170, 55, 0.6);
  transform: translateY(-8px);
}

/* Animation de survol sur les liens */
.menu li a {
  position: relative;
  overflow: hidden;
}

.menu li a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--gold);
  bottom: 0;
  left: -100%;
  transition: left 0.3s ease;
}

.menu li a:hover::after {
  left: 0;
}

/* Animation de fond subtile */
#animation {
  background: url('https://example.com/particles.gif') no-repeat center center;
  background-size: cover;
  opacity: 0.2;
}

/* Dégradé noir pour le fond du body */
body {
  background: linear-gradient(to bottom, #000000, #1a1a1a);
}

/* Header sombre avec bordure dorée */
header {
  background-color: #111 !important; /* Sombre */
  border-bottom: 3px solid var(--gold);
}

/* Footer assorti avec bordure dorée */
footer {
  background-color: #111 !important; /* Sombre */
  border-top: 3px solid var(--gold);
}

#theme-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 1000;
}
 {   position: fixed;
    top: 20px;
    left: 20px;
    bottom: auto;
    right: auto;
  position: fixed;
}

{
  padding: 10px 20px;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;
}

body.dark-theme #theme-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 1000;
}
  background-color: #bb86fc;
  color: #000000;
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#contact-form.pop-animation {
  animation: popIn 0.6s ease-out forwards;
}

/* White hover effect on the submit button */
button[type="submit"]:hover {
    background-color: white;
    color: black;
}

/* Loading animation */
button.loading {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Sparkles effect */
.sparkles {
    width: 5px;
    height: 5px;
    background-color: gold;
    border-radius: 50%;
    position: absolute;
    animation: sparkle 0.6s ease-out;
}

@keyframes sparkle {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Espacement global */
body {
    line-height: 1.8; /* Augmente l'espacement entre les lignes */
    margin: 0;
    padding: 0;
}

/* Espacement des paragraphes */
p {
    line-height: 1.8; /* Augmente l'espacement entre les lignes */
    margin-bottom: 1rem; /* Ajoute de l'espace après chaque paragraphe */
}

/* Espacement des titres */
h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Espacement des blocs de texte dans les sections */
.section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Espacement du texte dans le formulaire de contact */
form label,
form input,
form textarea {
    margin-bottom: 1rem;
}

/* Animation de confirmation */
#confirmation-message {
  animation: fadeInScale 0.6s ease-out forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Ajout d’un effet de survol sur les champs du formulaire */
input:hover, textarea:hover {
  border-color: var(--gold);
  box-shadow: 0 0 5px var(--gold);
  transition: all 0.3s ease-in-out;
}

/* Animation de chargement sur le bouton "Envoyer" */
button.loading {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Style doré avec dégradé et bords arrondis pour les champs de formulaire */
form {
  border: 2px solid transparent;
  border-radius: 16px;
  background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(90deg, #d4aa37, #fff8dc);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 2rem;
}

input, textarea {
  border: 2px solid transparent;
  border-radius: 12px;
  background-image: linear-gradient(#000, #000), linear-gradient(90deg, #d4aa37, #fff8dc);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: white;
}

input:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(212, 170, 55, 0.8);
}

/* Force the intl-tel-input input field to have a black background and white text */
.intl-tel-input input {
    background-color: black !important;
    color: white !important;
}

/* Force the intl-tel-input input field to have a black background, no background-image, and white text */
.intl-tel-input input {
    background-color: black !important;
    background-image: none !important;
    color: white !important;
}

/* Liste déroulante des pays */
.iti__country-list {
    background-color: black !important;
    color: white !important;
    border: 1px solid #d4aa37 !important;
}

/* Chaque pays dans la liste */
.iti__country {
    background-color: black !important;
    color: white !important;
}

/* Pays survolé */
.iti__country:hover,
.iti__country.iti__highlight {
    background-color: #333 !important;
    color: #d4aa37 !important;
}


/* Dark Theme */
body.dark-theme {
  background-color: #121212;
  color: #ffffff;
}

body.dark-theme .section,
body.dark-theme .service,
body.dark-theme form,
body.dark-theme .animated-block {
  background-color: #1e1e1e;
  color: #ffffff;
}

body.dark-theme input,
body.dark-theme textarea {
  background-color: #2c2c2c;
  color: #ffffff;
  border-color: #444;
}

body.dark-theme header,
body.dark-theme footer {
  background-color: #111;
  border-color: #bb86fc;
}

body.dark-theme .cta-button {
  background-color: #bb86fc;
  color: #000;
}

body.dark-theme .cta-button:hover {
  background-color: #9a6de0;
}

body.dark-theme h1, 
body.dark-theme h2, 
body.dark-theme h3, 
body.dark-theme .gold-text {
  color: #bb86fc;
}

body.dark-theme p,
body.dark-theme li,
body.dark-theme span,
body.dark-theme a:not(.cta-button) {
  color: #ffffff !important;
}

body.dark-theme .faq-section {
  background-color: #111;
  color: #ffffff;
  border-color: #bb86fc;
}

body.dark-theme .faq-item {
  background-color: #1e1e1e;
  color: #ffffff;
  border: 1px solid #bb86fc;
}

body.dark-theme .faq-item h2 {
  color: #bb86fc;
}

body.dark-theme .faq-item p {
  color: #ffffff;
}


select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: black;
  color: white;
}
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 5px var(--gold);
  outline: none;
}

select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: black;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
}

select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 5px var(--gold);
  outline: none;
}

option {
  padding: 0.5rem;
  background-color: black;
  color: white;
}

option:hover {
  background-color: #333;
}

/* Amélioration du style de la liste déroulante */
option:hover {
  background-color: #333;
  color: var(--gold);
}

/* Ajustement de la largeur des champs */
select,
textarea {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

/* Style du bouton de soumission */
form button[type="submit"] {
  display: block;
  margin: 2rem auto 0 auto; /* centré avec un espace au-dessus */
  width: fit-content; /* ou fixe, ex: 200px */
}

option {
    color: white; /* Texte blanc par défaut */
}

option:hover {
    color: var(--gold); /* Texte doré au survol */
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-float {
  animation: pulsate 

/* ============================
   Définition des couleurs globales
   ============================ */
:root {
  --primary-color: #d4aa37;
  --secondary-color: #000000;
  --text-color: #000000; /* Texte en noir par défaut */
  --background-color: #ffffff;
  --accent-color: #f5f5f5;

  /* Variables supplémentaires nécessaires pour ton style.css */
  --header-footer-bg: #000000; /* fond noir pour header et footer */
  --hover-color: #b9912d; /* couleur plus foncée au survol des boutons */
}


/* ============================
   Style global et sections spécifiques
   ============================ */
/* Variables de couleurs */
:root {
  --background-color: #ffffff;
  --text-color: #000000;
  --gold: #d4aa37;
  --gold-dark: #b38b2f;
  --black: #000000;
  --white: #ffffff;
}

/* Style global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
}

.custom-dropdown button {
  background: black;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.dropdown-list {
  position: absolute;
  background: black;  /* Fond noir */
  color: #d4aa37;     /* Texte doré */
  border: 1px solid #ccc;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 200px;
  z-index: 1000;
}

.dropdown-list li {
  padding: 8px;
  cursor: pointer;
}

.dropdown-list li:hover {
  background: #333;
}

.flag-icon {
  margin-right: 8px;
}


/* Fond de la page */
body {
  background: url('../img/body.png') no-repeat center center fixed;  /* Image défile avec le contenu */
  background-size: cover;  /* L'image couvre toute la page sans distorsion */
  background-attachment: scroll;  /* L'image défile avec le contenu */
  color: var(--text-color);
  line-height: 1.6;
  height: 100%; /* Assure que le fond couvre toute la hauteur de la page */
}

h1, h2, h3 {
  color: var(--gold);
}

/* Header */
header {
  /* background: url('../img/header.png') no-repeat top center fixed; */
  background-color: #111 !important; /* Sombre */
  background-size: auto 100%;  /* L'image conserve ses proportions avec une hauteur de 100% */
  background-position: center top;  /* L'image reste centrée */
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 250px;  /* Ajuste la hauteur du header pour correspondre à l'image */
  width: 100%;  /* Le header prend toute la largeur */
}

header img {
  max-height: 250px;
  width: auto;
  z-index: 2; /* Assure que l'image de logo soit au-dessus du fond */
}

nav {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  margin: 0;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  display: block;
}

/* Section Accueil */
#accueil h2,
#accueil p {
  color: var(--gold); /* Applique la couleur dorée */
}

/* Section Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.hero h1 {
  background: none;
  padding: 0;
  color: var(--gold);
}

.hero a {
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.hero a:hover {
  background: var(--gold-dark);
}

/* Section générique */
.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Animation AOS */
[data-aos="fade-up"] {
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Services */
.service {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.service:hover {
  transform: translateY(-5px);
}

.service h3, .service i {
  color: var(--gold);
  margin-bottom: 1rem;
}

.service i {
  font-size: 2rem;
  display: block;
}

/* Grille responsive */
.grid {
  display: grid;
  gap: 2rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  width: 100%;
}

/* Formulaire */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
  background-color: transparent; /* Retirer le fond noir */
  padding: 2rem;
  border: 2px solid var(--gold); /* Garder l'encadré doré */
  border-radius: 12px;
  color: var(--white);
  text-align: left;
}

form h2 {
  text-align: center;
  font-size: 1.25rem;
  margin-top: 1rem;
}

label {
  font-weight: bold;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

input[type="email"].invalid {
  border-color: red;
}

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

button {
  padding: 0.75rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: var(--gold-dark);
}

/* Messages d’erreur */
#error-message,
#telephone-error {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: none;
  padding: 0.25rem;
  border: 1px solid red;
  border-radius: 4px;
}

/* Page FAQ */
/* Appliquer le fond noir et le texte blanc à toute la page FAQ */
body.faq-page {
  background-color: #000;
  color: #fff;
}

/* Titres dorés */
body.faq-page h2,
body.faq-page h3 {
  color: #d4aa37;
}

/* Alignement du menu à droite dans le header */
body.faq-page header {
  display: flex;
  justify-content: space-between; /* Le logo et le menu sont espacés */
  align-items: center;
  padding: 1.5rem 2rem; /* Ajuste l'espace autour des éléments du header */
}

body.faq-page header nav {
  margin-left: auto;  /* Pousse le menu vers la droite */
}

body.faq-page .menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
}

body.faq-page .menu li {
  margin: 0;
}

body.faq-page .menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

/* Page FAQ */
/* Appliquer le fond noir et le texte blanc à toute la page FAQ */
body.faq-page {
  background-color: #000;
  color: #fff;
}

/* Titres dorés */
body.faq-page h2,
body.faq-page h3 {
  color: #d4aa37;
}

/* Alignement du menu à droite dans le header */
body.faq-page header {
  display: flex;
  justify-content: space-between; /* Le logo et le menu sont espacés */
  align-items: center;
  padding: 1.5rem 2rem; /* Ajuste l'espace autour des éléments du header */
  position: relative; /* Nécessaire pour positionner la droplist en absolu */
}

body.faq-page header nav {
  margin-left: auto;  /* Pousse le menu vers la droite */
}

body.faq-page .menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
}

body.faq-page .menu li {
  margin: 0;
}

body.faq-page .menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

/* Droplist de langue en haut à droite */
.language-selector {
    right: 20px;
  position: absolute;
  top: 20px; /* Positionne la droplist un peu en dessous du bord supérieur */
   /* Place la droplist à droite */
  background-color: #333; /* Fond sombre pour la droplist */
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

/* Section FAQ */
.faq-section {
  background: transparent;  /* Fond blanc pour les sections */
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 12px;  /* Coins arrondis */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);  /* Ombre douce pour l'effet de carte */
}

.faq-section h2,
.faq-section h3 {
  color: var(--gold); /* Titres dorés */
}

.faq-item {
  background: #f9f9f9;  /* Fond gris clair pour chaque item */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  transition: transform 0.3s ease-in-out;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-item h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.faq-item p {
  color: #333;
  font-size: 1rem;
}

/* Animation AOS */
[data-aos="fade-up"] {
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}


/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 2rem 2rem 1rem;  /* Ajouter un peu d'espace en bas pour le copyright */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  min-height: 150px;  /* Augmenter légèrement la hauteur minimale pour laisser de l'espace */
}

.footer-logo img {
  max-height: 100px;
  width: auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  display: block;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-section .contact-link {
  border: 2px solid var(--gold); /* Encadrer le texte "Contact-us" en doré */
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--gold); /* Couleur du texte doré */
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.footer-section .contact-link:hover {
  background-color: var(--gold); /* Fond doré au survol */
  color: var(--black); /* Texte noir au survol */
}

/* Icônes des réseaux sociaux */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-icons a {
  font-size: 1.5rem;
  color: var(--gold);  /* Icônes en doré */
  transition: color 0.3s;
}

.footer-icons a:hover {
  color: var(--white); /* Change la couleur au survol */
}

/* Copyright centré avant la fin du footer */
.footer-bottom {
  width: 100%;
  text-align: center;
  color: var(--gold);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  margin-top: 1rem; /* Espacement entre les autres sections et le bas */
}

/* Section FAQ */
body.faq-page {
  background-color: #000;
  color: #fff;
}

body.faq-page h2,
body.faq-page h3 {
  color: #d4aa37;
}

body.faq-page .faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: auto;
}

body.faq-page .faq-container .question {
  cursor: pointer;
  padding: 1rem;
  background: var(--black);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

body.faq-page .faq-container .question:hover {
  background: var(--gold);
  color: var(--black);
}

body.faq-page .faq-container .answer {
  display: none;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem;
  background-color: #222;
}

body.faq-page .faq-container .question.open .answer {
  display: block;
}

/* Animation de transition de langue */
.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    form {
        width: 100%;
        padding: 1rem;
    }
}


/* Dark Theme */
body.dark-theme {
  background-color: var(--background-color-dark);
  color: var(--text-color-dark);
}

body.dark-theme .section,
body.dark-theme .service,
body.dark-theme form {
  background-color: var(--section-bg-dark);
  color: var(--text-color-dark);
}

body.dark-theme input,
body.dark-theme textarea {
  background-color: var(--input-bg-dark);
  color: var(--text-color-dark);
  border-color: var(--border-color-dark);
}

body.dark-theme header,
body.dark-theme footer {
  background-color: var(--header-footer-bg-dark);
  border-color: var(--border-color-dark);
}

body.dark-theme .cta-button {
  background-color: var(--cta-bg-dark);
  color: var(--cta-text-dark);
}

body.dark-theme .cta-button:hover {
  background-color: var(--cta-hover-bg-dark);
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #ffffff;
    }
    form {
        background-color: #1e1e1e;
        border-color: #bb86fc;
    }
    input, textarea {
        background-color: #2c2c2c;
        color: #ffffff;
    }
    button {
        background-color: #bb86fc;
        color: #000000;
    }
}

/* Chatbot */
#chatbot {
    position: fixed;
    
    
    z-index: 1000;
}

/* Animation */
#animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
    opacity: 0.5;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    
    
    padding: 10px 20px;
    background-color: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--gold);
    z-index: 1000;
}


/* Dark Theme */
body.dark-theme {
  background-color: var(--background-color-dark);
  color: var(--text-color-dark);
}

body.dark-theme .section,
body.dark-theme .service,
body.dark-theme form {
  background-color: var(--section-bg-dark);
  color: var(--text-color-dark);
}

body.dark-theme input,
body.dark-theme textarea {
  background-color: var(--input-bg-dark);
  color: var(--text-color-dark);
  border-color: var(--border-color-dark);
}

body.dark-theme header,
body.dark-theme footer {
  background-color: var(--header-footer-bg-dark);
  border-color: var(--border-color-dark);
}

body.dark-theme .cta-button {
  background-color: var(--cta-bg-dark);
  color: var(--cta-text-dark);
}

body.dark-theme .cta-button:hover {
  background-color: var(--cta-hover-bg-dark);
}

body.dark-theme {
    background-color: #121212;
    color: #ffffff;
}

body.dark-theme .theme-toggle {
    background-color: #bb86fc;
    color: #000000;
}

body.dark-theme .scroll-progress {
    background-color: #bb86fc;
}

/* Dégradés dorés subtils */
h1:not(.hero h1), h2, h3 {
  background: linear-gradient(90deg, #d4aa37, #fff8dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Effet de lumière sur les blocs FAQ */
.faq-item:hover {
  box-shadow: 0 0 15px rgba(212, 170, 55, 0.6);
  transform: translateY(-8px);
}

/* Animation de survol sur les liens */
.menu li a {
  position: relative;
  overflow: hidden;
}

.menu li a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--gold);
  bottom: 0;
  left: -100%;
  transition: left 0.3s ease;
}

.menu li a:hover::after {
  left: 0;
}

/* Animation de fond subtile */
#animation {
  background: url('https://example.com/particles.gif') no-repeat center center;
  background-size: cover;
  opacity: 0.2;
}

/* Dégradé noir pour le fond du body */
body {
  background: linear-gradient(to bottom, #000000, #1a1a1a);
}

/* Header sombre avec bordure dorée */
header {
  background-color: #111 !important; /* Sombre */
  border-bottom: 3px solid var(--gold);
}

/* Footer assorti avec bordure dorée */
footer {
  background-color: #111 !important; /* Sombre */
  border-top: 3px solid var(--gold);
}

#theme-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 1000;
}
 {   position: fixed;
    top: 20px;
    left: 20px;
    bottom: auto;
    right: auto;
  position: fixed;
}

{
  padding: 10px 20px;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;
}

body.dark-theme #theme-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 1000;
}
  background-color: #bb86fc;
  color: #000000;
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#contact-form.pop-animation {
  animation: popIn 0.6s ease-out forwards;
}

/* White hover effect on the submit button */
button[type="submit"]:hover {
    background-color: white;
    color: black;
}

/* Loading animation */
button.loading {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Sparkles effect */
.sparkles {
    width: 5px;
    height: 5px;
    background-color: gold;
    border-radius: 50%;
    position: absolute;
    animation: sparkle 0.6s ease-out;
}

@keyframes sparkle {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Espacement global */
body {
    line-height: 1.8; /* Augmente l'espacement entre les lignes */
    margin: 0;
    padding: 0;
}

/* Espacement des paragraphes */
p {
    line-height: 1.8; /* Augmente l'espacement entre les lignes */
    margin-bottom: 1rem; /* Ajoute de l'espace après chaque paragraphe */
}

/* Espacement des titres */
h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Espacement des blocs de texte dans les sections */
.section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Espacement du texte dans le formulaire de contact */
form label,
form input,
form textarea {
    margin-bottom: 1rem;
}

/* Animation de confirmation */
#confirmation-message {
  animation: fadeInScale 0.6s ease-out forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Ajout d’un effet de survol sur les champs du formulaire */
input:hover, textarea:hover {
  border-color: var(--gold);
  box-shadow: 0 0 5px var(--gold);
  transition: all 0.3s ease-in-out;
}

/* Animation de chargement sur le bouton "Envoyer" */
button.loading {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Style doré avec dégradé et bords arrondis pour les champs de formulaire */
form {
  border: 2px solid transparent;
  border-radius: 16px;
  background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(90deg, #d4aa37, #fff8dc);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 2rem;
}

input, textarea {
  border: 2px solid transparent;
  border-radius: 12px;
  background-image: linear-gradient(#000, #000), linear-gradient(90deg, #d4aa37, #fff8dc);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: white;
}

input:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(212, 170, 55, 0.8);
}

/* Force the intl-tel-input input field to have a black background and white text */
.intl-tel-input input {
    background-color: black !important;
    color: white !important;
}

/* Force the intl-tel-input input field to have a black background, no background-image, and white text */
.intl-tel-input input {
    background-color: black !important;
    background-image: none !important;
    color: white !important;
}

/* Liste déroulante des pays */
.iti__country-list {
    background-color: black !important;
    color: white !important;
    border: 1px solid #d4aa37 !important;
}

/* Chaque pays dans la liste */
.iti__country {
    background-color: black !important;
    color: white !important;
}

/* Pays survolé */
.iti__country:hover,
.iti__country.iti__highlight {
    background-color: #333 !important;
    color: #d4aa37 !important;
}


/* Dark Theme */
body.dark-theme {
  background-color: #121212;
  color: #ffffff;
}

body.dark-theme .section,
body.dark-theme .service,
body.dark-theme form,
body.dark-theme .animated-block {
  background-color: #1e1e1e;
  color: #ffffff;
}

body.dark-theme input,
body.dark-theme textarea {
  background-color: #2c2c2c;
  color: #ffffff;
  border-color: #444;
}

body.dark-theme header,
body.dark-theme footer {
  background-color: #111;
  border-color: #bb86fc;
}

body.dark-theme .cta-button {
  background-color: #bb86fc;
  color: #000;
}

body.dark-theme .cta-button:hover {
  background-color: #9a6de0;
}

body.dark-theme h1, 
body.dark-theme h2, 
body.dark-theme h3, 
body.dark-theme .gold-text {
  color: #bb86fc;
}

body.dark-theme p,
body.dark-theme li,
body.dark-theme span,
body.dark-theme a:not(.cta-button) {
  color: #ffffff !important;
}

body.dark-theme .faq-section {
  background-color: #111;
  color: #ffffff;
  border-color: #bb86fc;
}

body.dark-theme .faq-item {
  background-color: #1e1e1e;
  color: #ffffff;
  border: 1px solid #bb86fc;
}

body.dark-theme .faq-item h2 {
  color: #bb86fc;
}

body.dark-theme .faq-item p {
  color: #ffffff;
}


select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: black;
  color: white;
}
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 5px var(--gold);
  outline: none;
}

select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: black;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
}

select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 5px var(--gold);
  outline: none;
}

option {
  padding: 0.5rem;
  background-color: black;
  color: white;
}

option:hover {
  background-color: #333;
}

/* Amélioration du style de la liste déroulante */
option:hover {
  background-color: #333;
  color: var(--gold);
}

/* Ajustement de la largeur des champs */
select,
textarea {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

/* Style du bouton de soumission */
form button[type="submit"] {
  display: block;
  margin: 2rem auto 0 auto; /* centré avec un espace au-dessus */
  width: fit-content; /* ou fixe, ex: 200px */
}

option {
    color: white; /* Texte blanc par défaut */
}

option:hover {
    color: var(--gold); /* Texte doré au survol */
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-float {
  animation: pulsate 
/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        padding: 10px;
    }

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .hero {
        padding: 2rem 1rem;
    }

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

    .hero a {
        width: 100%;
        font-size: 1.2rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .service {
        margin-bottom: 2rem;
    }

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

    form {
        width: 100%;
        padding: 1rem;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 3rem 2rem;
    }

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

    .hero a {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 2rem;
    }

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

    form {
        width: 80%;
        padding: 2rem;
    }
}
