body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #f8f3ff, #e6ecf0);
    color: #333;
    padding: 5px;
    text-align: center;
}

/* 💫 Titre principal */
h2,h4 {
    font-size: 22px;
    color: #6a1b9a;
    margin-bottom: 10px;
}

/* 🧘 Consultation Cards */
.consultation-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.consultation-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 230px;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.consultation-card img {
    width: 90%;
    border-radius: 10px;
    margin-bottom: -15px;
}

/* ✨ Modale */
.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 90px;
    max-width: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    text-align: left;
}

/* ❌ Bouton de fermeture */
.modal-content .close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 40px;
    color: #ff5252;
    background: none;
    border: none;
    cursor: pointer;
}

/* 🧾 Formulaire */
form label {
    display: block;
    margin-top: 5px;
    font-weight: bold;
    color: #6a1b9a;
}





form input,
form select,
form textarea {
    width: 90%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 13px;
    box-sizing: border-box;
}

form textarea {
    min-height: 50px;
    resize: vertical;
}





/* ✅ Bouton submit */
form .btn {
    display: block;
    margin-top: 10px;
    width: 100%;
    background-color: #6a1b9a;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form .btn:hover {
    background-color: #4a126c;
}

/* 💸 Montant affiché */
.montant {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #2e7d32;
    margin-top: 5px;
}

/* ✅ Confirmation */
#contenuRécapitulatif h3 {
    margin-top: 5px;
    font-size: 10px;
    color: #4a148c;
}

#contenuRécapitulatif p {
    margin: 10px 0;
    font-size: 13px;
}

/* 🌈 Responsive */
@media screen and (max-width: 480px) {
    .consultation-options {
        flex-direction: column;
        align-items: center;
    }

    .modal-content {
        width: 90%;
        padding: 20px;
    }
}






/* Conteneur principal du champ WhatsApp */
.whatsapp-container {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 5px;
}

/* Bloc sélection pays */
.whatsapp-container .code-pays {
  flex: 1;
  display: flex;                                                                                                                               flex-direction: column;
}

/* Label */
.whatsapp-container label {
  font-size: 0.9em;
  margin-bottom: 6px;
  font-weight: 600;
  color: #6a1b9a;;
}

/* Sélecteur de pays */
.whatsapp-container select {
  padding: 8px 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1em;
  cursor: pointer;
  background-color: #fff;
  transition: border-color 0.3s;
}

.whatsapp-container select:hover,
.whatsapp-container select:focus {
  border-color: #6a1b9a; /* violet doux */
  outline: none;
}

/* Bloc numéro */
.whatsapp-container .numero {
  flex: 2;
  display: flex;
  flex-direction: column;
}

/* Champ numéro */
.whatsapp-container input[type="tel"] {
  padding: 10px 12px;
  font-size: 1em;
  border-radius: 11px;
    border: 1px solid #ccc;

  transition: border-color 0.3s;
  width: 80% !important;

}

.whatsapp-container input[type="tel"]:focus {
  border-color: #6a1b9a;
  outline: none;
}




