/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Playfair', sans-serif;
    color: #ffffff;
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Sidebar fixe */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 100vh;
    background-color: #1b1b1c !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: width 0.5s;
    z-index: 1000;
    border-right: 1px solid #52c500;
}

@media (min-width: 768px) {
.sidebar:hover {
    width: 200px;
}
}

.sidebar ul {
    list-style: none;
    width: 100%;
    margin-top: 20px;
}

.sidebar li {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    color: #ffffff !important;
    transition: background 0.2s;
    width: 100%;
    position: relative;
    margin-left: -25px;
}

.sidebar li:hover {
    background-color: #52c500;
}

/* Icon fixée avec décalage de 10px */
.sidebar .icon {
    font-size: 24px;
    flex-shrink: 0;
}

/* Texte qui apparaît au survol de la sidebar */
.sidebar .text {
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    margin-left: 15px;
    transition: opacity 0.3s;
}

.sidebar:hover .text {
    opacity: 1;
}

/* Highlight onglet actif */
.sidebar li.active {
    background-color: #52c500;
}

/* Contenu */
.content {
    margin-left: 60px; /* laisse place à la sidebar */
    width: calc(100vw - 60px);
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* Scrollbar invisible mais fonctionnelle */
.content::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
.content {
    -ms-overflow-style: none; /* IE & Edge */
    scrollbar-width: none; /* Firefox */
}

.tab {
    width: 100%;
    height: 100vh;
    padding: 50px;
    background-color: #303030;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    scroll-snap-align: start;
}

h1, h2 {
    margin-bottom: 20px;
}

p, li {
    font-size: 18px;
    margin-bottom: 10px;
}

ul {
    list-style: disc;
    margin-left: 20px;
}

/*------------------Onglet Acceuil-------------------*/
#accueil {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#accueil::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("Logo/Image 1.png") center/cover no-repeat;
    z-index: 0;
    filter: blur(2px);
}

.titre {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: white;
    font-weight: bold;
    display: block;          
    width: 750px;             
    text-align: center;
    padding: 12px 25px;
    background: #00000059;
    border-radius: 120px;
    z-index: 2;
}

.description {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: bold;
    display: block;           
    width: 750px;             
    text-align: center;
    padding: 12px 25px;
    z-index: 2;
}

.logo-gauche {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

#Imge {
    width: 220px;
    height: auto;
}

.droite {
    position: absolute;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 40px;
    z-index: 2;
    color: white;
}

.service-container,
.rdv-container {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    width: 420px; 
    border-radius: 20px;
    backdrop-filter: blur(12px);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
.service-container:hover,
.rdv-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    margin-top: 15px;
    background: linear-gradient(135deg, #ffffff5e, #52c50077);
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px #52c50040;
    color: white;
}

.btn:hover {
    box-shadow: 0 6px 18px #52c50040;
}

.btn.rdv {
    background: linear-gradient(135deg, #52c50077, #ffffff5e);
    box-shadow: 0 4px 12px #52c50040;
}

.btn.rdv:hover {
    box-shadow: 0 6px 18px #52c50040;
}

/* Widget d'avis */
.widget-avis {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 3px;
    width: 190px;
    background: #00000059;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 140px;
    text-align: center;
    z-index: 500;
}

.etoiles {
    font-size: 24px;
    color: #ffcc00;
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: -8px;
}

.etoile {
    transition: transform 0.2s ease;
}

.etoile:hover {
    transform: scale(1.15);
}

.nombre-avis {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #00000000;
    padding: 6px 0px;
    border-radius: 8px;
    display: inline-block;
}

/*------------------Onglet Horaires-------------------*/

#horaires {
    background: linear-gradient(90deg, #373737 0%, #252525 100%);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.horaires-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: flex-start;
}

/* Colonne gauche - Titre et statut */
.horaires-left {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.horaires-left h2 {
    font-size: 3rem;
    color: #52c500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

.horaires-description {
    color: #dcdcdc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Statut Ouvert/Fermé simplifié */
.status-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.status-badge.ouvert {
    background: linear-gradient(135deg, #52c500, #3a8d00);
    color: white;
    border: 2px solid #6ee000;
}

.status-badge.ferme {
    background: linear-gradient(135deg, #dc3545, #a82634);
    color: white;
    border: 2px solid #ff4d5e;
}

/* Colonne droite - Horaires simplifiés */
.horaires-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* Chaque petit bloc horaire */
.horaire-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 1rem;
    color: #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
.horaire-row:hover {
    background: #52c5001a;
}
}

.horaire-jour {
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
}

.horaire-heure {
    font-weight: 500;
    color: #dcdcdc;
}

/* Jour actuel highlight */
.horaire-row.today {
    background: rgba(82, 197, 0, 0.2);
}

/* Badge double statut Ouvert/Fermé */
.status-double {
    display: flex;
    width: 220px;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.statut-ouvert, .statut-ferme {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.statut-ouvert {
    background: #6c757d; /* Gris quand inactif */
    color: #dcdcdc;
}

.statut-ferme {
    background: #6c757d; /* Gris quand inactif */
    color: #dcdcdc;
}

.statut-ouvert.actif {
    background: linear-gradient(135deg, #52c500, #3a8d00);
    color: white;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    z-index: 1;
}

.statut-ferme.actif {
    background: linear-gradient(135deg, #dc3545, #a82634);
    color: white;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    z-index: 1;
}

/* Icônes dans le badge */
.statut-ouvert i, .statut-ferme i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Jour actuel highlight (garder le fond) */
.horaire-row.today {
    background: rgba(82, 197, 0, 0.15);
}

/*------------------Onglet Contact-------------------*/
#contact {
    background: linear-gradient(135deg, #373737 0%, #252525 100%);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Colonne gauche - Titre et description */
.contact-left {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-left h2 {
    font-size: 3.5rem;
    color: #52c500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    line-height: 1.2;
}

.contact-description {
    color: #dcdcdc;
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 300;
}

.contact-cta {
    margin-top: 20px;
}

.contact-btn-rdv {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background-color: #64646469 ;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    cursor: pointer !important;
}

@media (min-width: 768px) {
.contact-btn-rdv:hover {
    transform: translateY(-5px) scale(1.05);
}
}

.contact-btn-rdv i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
.contact-btn-rdv:hover i {
    transform: rotate(15deg);
}
}

/* Colonne droite - Informations de contact */
.contact-info-container {
    flex: 1;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

@media (min-width: 768px) {
.contact-item:hover {
    background: rgba(82, 197, 0, 0.1);
    border-color: rgba(82, 197, 0, 0.3);
    transform: translateX(10px);
}
}

.contact-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #52c500, #3a8d00);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(82, 197, 0, 0.3);
}

.contact-icon i {
    font-size: 1.4rem;
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
}

.contact-value a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer !important;
}

.contact-value a:hover {
    color: #52c500;
}

/* Section réseaux sociaux */
.contact-social {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(82, 197, 0, 0.2);
}

.contact-social-title {
    font-size: 1.1rem;
    color: #52c500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.contact-social-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
    cursor: pointer !important;
}

@media (min-width: 768px) {
.social-link:hover {
    transform: translateY(-8px) rotate(360deg);
    border-color: #52c500;
    background: linear-gradient(135deg, #52c500, #3a8d00);
    box-shadow: 0 10px 25px rgba(82, 197, 0, 0.4);
}
}

/* Styles spécifiques par réseau social */
@media (min-width: 768px) {
.social-link.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: #e1306c; }
.social-link.twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.social-link.linkedin:hover { background: #0077b5; border-color: #0077b5; }
.social-link.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-link.tiktok:hover { background: #000000; border-color: #69c9d0; }
.social-link.snapchat:hover { background: #fffc00; border-color: #fffc00; color: #000; }
.social-link.pinterest:hover { background: #e60023; border-color: #e60023; }
}

/*------------------Onglet Présentation-------------------*/
#presentation {
    background: linear-gradient(90deg, #373737 0%, #252525 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

#presentation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #52c50040, transparent);
}

/* HEADER : TITRE (GAUCHE) + TEXTE (DROITE) */
.presentation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

/* Titre à gauche */
.pres-title {
    color: #52c500;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 10px;
    flex-shrink: 0;
}

.pres-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #52c500, transparent);
}

.pres-meta {
    max-width: 60%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: -80px;
}

.meta-line {
    color: #e5e5e5;
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 300;
    padding: 12px 15px;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid rgba(82,197,0,0.3);
    border-radius: 8px;
}

/* ---- IMAGES EN BAS ---- */
.presentation-body {
    display: flex;
    justify-content: center;    /* centre le groupe */
    align-items: center;
    gap: 20px;                  /* espace égal entre les 3 images */
    margin-top: 70px;
    width: 100%;
}

/* --- Cartes d'image --- */
.img-card {
    position: relative;
    width: 430px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(82, 197, 0, 0.15);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: 0.3s ease;
}

/* Effet au survol */
@media (min-width: 768px) {
.img-card:hover {
    transform: translateY(-5px);
    border-color: rgba(82, 197, 0, 0.4);
}
}

/* Images */
.main-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* --- LOGO AU CENTRE --- */
#card-center .main-img {
    height: 230px;
    object-fit: contain;       /* pas déformé */
    padding: 10px;             /* petit espace autour */
    background: transparent;
}

/* --- FLÈCHES À GAUCHE ET DROITE (uniquement pour les images normales) --- */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(82, 197, 0, 0.4);
    color: #52c500;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

@media (min-width: 768px) {
.img-card:hover .arrow {
    opacity: 1;
    visibility: visible;
}
}

.arrow.left { left: 12px; }
.arrow.right { right: 12px; }

@media (min-width: 768px) {
.arrow:hover {
    background: #52c500;
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.1);
}
}

/*------------------Onglet RDV-------------------*/
#rdv {
    padding: 20px;
    background: linear-gradient(90deg, #373737 0%, #252525 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* En-tête avec titre et légende */
.rdv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

#rdv-bloc {
    height: 100%;
    width: 100%;
}

/* Titre à gauche */
#rdv h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Légende compacte */
.legend-small {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: #dcdcdc;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
}

.legend-small span {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.legend-small .available,
.legend-small .busy,
.legend-small .disabled {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-small .available {
    background: #28a745;
}

.legend-small .busy {
    background: #dc3545;
}

.legend-small .disabled {
    background: #6c757d;
}

/* Navigation de semaine */
.week-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 20px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.week-nav-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 768px) {
.week-nav-btn:hover {
    background: rgba(52, 152, 0, 0.2);
    border-color: #52c500;
    transform: translateY(-1px);
}
}

.week-display {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

#weekRange {
    color: #52c500;
    font-weight: 700;
}

/* Boutons des jours - Grid compact */
#dayButtons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 20px;
}

#dayButtons button {
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
}

@media (min-width: 768px) {
#dayButtons button:hover {
    background: rgba(52, 152, 0, 0.15);
    border-color: #52c500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 0, 0.2);
}
}

#dayButtons button.active {
    background: linear-gradient(90deg, #505050, #404040);
    color: white;
    border-color: #52c500;
}

.day-name {
    font-size: 0.95rem;
    font-weight: 700;
}

.day-date {
    font-size: 0.8rem;
    opacity: 0.8;
}

.day-today {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff6b6b;
    color: white;
    font-size: 0.6rem;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
}

/* Messages d'état pour les jours */
.day-blocked {
    display: block;
    font-size: 0.7rem;
    color: #ff6b6b;
    margin-top: 5px;
    font-weight: 600;
}

.closed-message {
    text-align: center;
    color: #ff6b6b;
    font-weight: 600;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Amélioration des boutons jours */
#dayButtons button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
#dayButtons button[disabled]:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
}
}

#dayButtons button.day-disabled {
    position: relative;
    overflow: hidden;
}

#dayButtons button.day-disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Container horaires - compact */
#dayContainer {
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    width: 100%;
    max-width: 1400px;
}

/* Cacher la légende dans dayContainer */
#dayContainer .legend {
    display: none;
}

/* Liste horaires en 2 lignes de 10 */
#dayContainer ul {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 10 colonnes fixes */
    grid-auto-rows: auto;                   /* hauteur auto */
    grid-auto-flow: row;                    /* remplit ligne par ligne */
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    height: auto;        /* pas de scroll */
    max-height: none;    /* retire la limitation précédente */
    overflow: visible;   /* on laisse tout visible */
}

#dayContainer ul::-webkit-scrollbar {
    width: 8px;
}

#dayContainer ul::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

#dayContainer ul::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

#dayContainer ul::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
}

#dayContainer ul li {
    margin: 0;
}

/* Boutons horaires */
.slotBtn {
    width: 100%;
    padding: 10px 8px;
    border: 1px solid;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 0.9rem;
    color: white;
}

.slotBtn.available { 
    background: #28a745; 
    border-color: rgba(40, 167, 69, 0.5);
}

.slotBtn.busy { 
    background: #6c757d; 
    cursor: not-allowed;
    border-color: rgba(108, 117, 125, 0.5);
    opacity: 0.6;
}

.slotBtn.disabled { 
    background: #6c757d; 
    cursor: not-allowed;
    border-color: rgba(108, 117, 125, 0.5);
    opacity: 0.6;
}

.slotBtn.available:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(40, 167, 69, 0.4);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    backdrop-filter: blur(5px);
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: #2d2d2d;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #52c500;
    transform: rotate(90deg);
}

.modal-content h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.4em;
    text-align: center;
    border-bottom: 2px solid #52c500;
    padding-bottom: 10px;
}

/* Form styles */
#chooseServiceForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#chooseServiceForm label {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

#chooseServiceForm input[type="text"],
#chooseServiceForm input[type="number"],
#chooseServiceForm select {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#chooseServiceForm input:focus,
#chooseServiceForm select:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

#chooseServiceForm select option {
    background: #2d2d2d;
    color: #fff;
}

#chooseServiceForm > div {
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#chooseServiceForm > div:hover {
    background: rgba(82, 197, 0, 0.05);
    border-color: rgba(82, 197, 0, 0.4);
}

#chooseServiceForm input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.1);
    accent-color: #52c500;
}

#chooseServiceForm button[type="submit"] {
    background: linear-gradient(135deg, #52c500, #3a8d00);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

#chooseServiceForm button[type="submit"]:hover {
    background: linear-gradient(135deg, #3a8d00, #2d6b00);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 197, 0, 0.3);
}

.success {
    color: #52c500;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    background: rgba(82, 197, 0, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(82, 197, 0, 0.3);
    margin-top: 10px;
}

.error {
    color: #ff6b6b;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    margin-top: 10px;
}

.rdv-info {
    position: block;
    margin-top: 60px;       
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;     
    color: #808080;
    background: #ffffff00; 
    padding: 8px 0;
    backdrop-filter: blur(4px);
    z-index: 2;     
}

/*------------------Onglet Services-------------------*/
#services {
    background: linear-gradient(90deg, #373737 0%, #252525 100%);
    padding: 30px 25px; /* Réduit le padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto; /* Enlève la hauteur fixe */
    height: 100vh; /* Garde la hauteur d'écran mais sans débordement */
    overflow: hidden; /* Empêche le débordement */
}

#services h2 {
    color: #52c500;
    font-size: 2.2rem; /* Plus petit */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px; /* Réduit */
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    width: 100%;
}

#services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; /* Plus court */
    height: 2px; /* Plus fin */
    background: linear-gradient(90deg, transparent, #52c500, transparent);
    border-radius: 2px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px; /* Espacement réduit */
    width: 100%;
    max-width: 1200px; /* Plus étroit */
    margin: 0 auto;
    height: calc(100vh - 150px); /* Hauteur calculée */
    overflow: hidden;
}

.service-column {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(82, 197, 0, 0.2);
    border-radius: 12px; /* Arrondi plus petit */
    padding: 15px; /* Padding réduit */
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
.service-column:hover {
    border-color: rgba(82, 197, 0, 0.4);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
}

.service-column h3 {
    color: #52c500;
    font-size: 1.2rem; /* Plus petit */
    font-weight: 700;
    margin-bottom: 15px; /* Réduit */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(82, 197, 0, 0.3);
}

.service-column h3 i {
    font-size: 1rem; /* Plus petit */
}

/* Couleurs spécifiques par catégorie */
.service-column.coiffure h3 {
    color: #52c500;
}

.service-column.manucure h3 {
    color: #ff6b9d;
}

.service-column.tatouage h3 {
    color: #ffa500;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto; /* Ajout du défilement si nécessaire */
    max-height: calc(100% - 40px); /* Limite la hauteur de la liste */
}

.service-list li {
    padding: 8px 0; /* Padding réduit */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Plus discret */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem; /* Plus petit */
    line-height: 1.3;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-name {
    flex: 1;
    padding-right: 10px;
    font-size: 0.9rem;
}

.service-details {
    display: flex;
    gap: 8px; /* Espacement réduit */
    align-items: center;
    white-space: nowrap;
}

.duration {
    color: #aaa;
    font-size: 0.8rem; /* Plus petit */
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px; /* Padding réduit */
    border-radius: 3px;
}

.price {
    color: #fff;
    font-weight: 600;
    background: rgba(82, 197, 0, 0.2);
    padding: 4px 10px; /* Padding réduit */
    border-radius: 15px; /* Arrondi plus petit */
    min-width: 50px; /* Largeur réduite */
    text-align: center;
    font-size: 0.9rem; /* Plus petit */
}

.no-service {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 15px 0; /* Réduit */
    justify-content: center;
    font-size: 0.9rem;
}

/* Personnaliser la scrollbar */
.service-list::-webkit-scrollbar {
    width: 4px;
}

.service-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
}

.service-list::-webkit-scrollbar-thumb {
    background: rgba(82, 197, 0, 0);
    border-radius: 2px;
}

.service-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0);
}

/*------------------Onglet Avis-------------------*/
#avis {
    background: linear-gradient(90deg, #373737 0%, #252525 100%);
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-left: 0;
}

.avis-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    position: relative;
}

/* En-tête avec titre centré */
.avis-header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.avis-header-section h2 {
    font-size: 3.5rem;
    color: #52c500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}

.avis-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.avis-cta .btn {
    background: linear-gradient(135deg, #52c500, #3a8d00);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(82, 197, 0, 0.3);
}

.avis-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(82, 197, 0, 0.4);
}

.avis-cta .btn i {
    font-size: 1.2rem;
}

.avis-info {
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Container des avis avec navigation */
.avis-main-container {
    width: 100%;
    position: relative;
    height: calc(100vh - 300px);
    overflow: hidden;
}

/* Wrapper qui va glisser */
.avis-container {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(0);
}

/* Chaque carte prend 1/3 de la largeur */
.avis-card {
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
}

/* Carte individuelle */
.avis-card {
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    overflow: hidden;
}

/* Boutons de navigation */
.avis-nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.avis-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(82, 197, 0, 0.5);
    border-radius: 50%;
    color: #52c500;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avis-nav-btn:hover:not(:disabled) {
    background: #52c500;
    color: #1a1a1a;
    border-color: #52c500;
    transform: scale(1.1);
}

.avis-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.3);
}

.avis-nav-buttons.left {
    left: 3px;
}

.avis-nav-buttons.right {
    right: 7px;
}

/* En-tête de la carte */
.avis-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.avis-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.avis-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #52c500, #3a8d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(82, 197, 0, 0.3);
}

.avis-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.avis-meta strong {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.avis-date {
    color: #aaa;
    font-size: 0.85rem;
}

/* Notation étoiles */
.avis-rating {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.avis-rating .fa-star {
    font-size: 1rem;
}

.avis-rating .fa-star.filled {
    color: #ffc107;
}

.avis-rating .fa-star.empty {
    color: rgba(255, 255, 255, 0.15);
}

/* Badge service */
.avis-service {
    background: rgba(82, 197, 0, 0.15);
    border: 1px solid rgba(82, 197, 0, 0.3);
    border-radius: 20px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #52c500;
    align-self: flex-start;
}

.avis-service i {
    font-size: 0.9rem;
}

/* Commentaire */
.avis-comment {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* Message aucun avis */
.no-avis {
    width: 100%;
    text-align: center;
    padding: 60px 40px;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 100%;
}

.no-avis i {
    font-size: 4rem;
    color: rgba(82, 197, 0, 0.3);
}

.no-avis p {
    font-size: 1.2rem;
    margin: 0;
}

/* Modal pour formulaire d'avis */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
    padding: 20px;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: #2d2d2d;
    color: #fff;
    padding: 35px;
    border-radius: 15px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(82, 197, 0, 0.2);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(82, 197, 0, 0.5);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(82, 197, 0, 0.7);
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    transform: rotate(90deg);
}

.modal-content h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.6rem;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #52c500;
}

.modal-info {
    color: #aaa;
    margin-bottom: 25px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Formulaire */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #52c500;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(82, 197, 0, 0.1);
}

.form-group select option {
    background: #2d2d2d;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* Étoiles de notation */
.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 8px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #ffc107;
    transform: scale(1.1);
}

/* Case à cocher */
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox input[type="checkbox"] {
    margin-top: 4px;
    accent-color: #52c500;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    color: #dcdcdc;
}

/* Bouton submit */
.btn-submit {
    background: linear-gradient(135deg, #52c500, #3a8d00);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #3a8d00, #2d6b00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(82, 197, 0, 0.4);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-submit i {
    font-size: 1.1rem;
}

/* Messages succès/erreur */
.success-message, .error-message {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background: rgba(82, 197, 0, 0.15);
    border: 1px solid rgba(82, 197, 0, 0.4);
    color: #52c500;
}

.error-message {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #ff6b6b;
}

.success-message i, .error-message i {
    font-size: 1.3rem;
}

.success-message p, .error-message p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ---------- Styles pour le modal RDV ---------- */
.modal-subtitle {
    color: #aaa;
    margin-bottom: 25px;
    text-align: center;
    font-size: 0.95rem;
}

.form-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.form-section h4 {
    color: #52c500;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(82, 197, 0, 0.3);
    padding-bottom: 8px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #52c500;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(82, 197, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.hint {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Options de service */
.service-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-option:hover {
    background: rgba(82, 197, 0, 0.1);
    border-color: rgba(82, 197, 0, 0.3);
}

.service-option input[type="radio"] {
    margin-right: 10px;
    accent-color: #52c500;
    transform: scale(1.1);
}

.service-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0;
    font-weight: normal;
}

.service-name {
    font-weight: 600;
    color: #fff;
}

.service-info {
    color: #52c500;
    font-size: 0.9rem;
}

/* Bouton de soumission */
.form-submit {
    text-align: center;
    margin-top: 25px;
}

.btn-submit-large {
    background: linear-gradient(135deg, #52c500, #3a8d00);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-large:hover:not(:disabled) {
    background: linear-gradient(135deg, #3a8d00, #2d6b00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(82, 197, 0, 0.4);
}

.btn-submit-large:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-info {
    color: #aaa;
    font-size: 0.85rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Modal de succès */
.success-modal {
    text-align: center;
    padding: 30px;
    animation: fadeIn 0.5s ease;
}

.success-modal.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    font-size: 4rem;
    color: #52c500;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.confirmation-code {
    background: rgba(82, 197, 0, 0.1);
    border: 2px solid rgba(82, 197, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.code-label {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.code-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #52c500;
    letter-spacing: 3px;
    font-family: monospace;
    margin: 15px 0;
    text-shadow: 0 2px 10px rgba(82, 197, 0, 0.3);
}

.confirmation-code small {
    color: #888;
    font-size: 0.8rem;
}

.btn-close-modal {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Messages d'erreur dans le formulaire */
#chooseServiceForm .error-message {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #ff6b6b;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

#chooseServiceForm .error-message i {
    font-size: 1.2rem;
}

#chooseServiceForm .error-message p {
    margin: 0;
    font-size: 0.9rem;
}