/* Variables de couleurs */
:root {
    --primary: #C99383;     /* Couleur principale, utilisée pour les éléments importants */
    --primary-dark: #ba745f; /* Version plus foncée pour les hovers et accents */
    --primary-light: #d8b2a7; /* Version plus claire pour les backgrounds subtils */
    --primary-lighter: #e8d1ca; /* Version très claire pour les fonds délicats */
    --white: #ffffff;       /* Blanc pur pour les contrastes */
    --gray-light: #e6e6e6;  /* Gris clair pour les sections alternatives */
    
    /* Couleurs complémentaires dérivées */
    --text-dark: #4a3831;   /* Texte principal, brun foncé dérivé du primary */
    --text-light: #7c6159;  /* Texte secondaire, plus clair */
    --shadow: rgba(201, 147, 131, 0.1); /* Ombre dérivée du primary */
    
    /* Variables d'espacement */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Variables supplémentaires */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --box-shadow-hover: 0 10px 20px rgba(201, 147, 131, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    padding-top: 105px;
    margin: 0;
    min-height: 100vh;
}

/* Container général */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    margin-top: 0;
    padding-top: 105px;
    background: linear-gradient(
        rgba(186, 116, 95, 0.95),
        rgba(201, 147, 131, 0.85)
    ),
    url('../images/hero-pattern.svg') center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--white);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--white) 100%);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(201, 147, 131, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 147, 131, 0.15);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.about-quote {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0;
    font-style: italic;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-lighter);
    border-radius: 12px;
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-content {
        padding: 2rem;
    }

    .hero {
        padding-top: 85px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

.feature-card, .testimonial-card {
    animation: fadeIn 0.6s ease-out forwards;
}



.logo-img {
    height: 40px;
    width: auto;
}


/* Formulaires */
.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-lighter);
}

/* Boutons */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Cards modernes */
.modern-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow);
}

/* Sections avec fond alterné */
.section-alternate {
    background: var(--primary-lighter);
    position: relative;
}

.section-alternate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, var(--white) 49%, transparent 51%);
}

/* Animations personnalisées */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Style des listes */
.custom-list {
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* Badges et tags */
.badge {
    background: var(--primary-lighter);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
}

.footer-content {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Footer Logo */
.footer-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.footer-img img {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-img img:hover {
    transform: scale(1.05);
}

/* Responsive Footer Logo */
@media screen and (max-width: 768px) {
    .footer-img {
        margin: 1.5rem 0;
    }

    .footer-img img {
        width: 100px;
    }
}

.social-media a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-media a:hover {
    opacity: 1;
    color: var(--primary-light);
}

/* Styles du header et footer */
/* Header Styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Menu Burger */
.burger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Animation du menu burger */
.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle span:nth-child(2) {
    opacity: 0;
}

.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* Footer Styles */
.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 0;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-lg);
    padding: 0 var(--spacing-md);
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.footer-description {
    color: var(--gray-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a img {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}


.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-light);
}

.contact-info a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-light);
}


/* Formulaire */
/* Centrage de la page */
.login-container {
    max-width: 400px;
    margin: 200px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Style des champs */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Bouton de connexion */
.btn {
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--primary-dark);
}

/* Lien "Mot de passe oublié" */
.forgot-password {
    display: block;
    margin-top: 15px;
    text-decoration: none;
    color: var(--white);   
    background-color: #d8b2a7; 
    border-radius: 5px;
    margin:  5 px auto;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Styles de la page Services */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Styles pour les cartes de mise en avant */
.features-highlight {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-highlight-card {
    flex: 1 1 0;
    max-width: 370px;
    min-width: 260px;
    padding: 1.5rem 1.2rem;
    margin: 0;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(169, 122, 106, 0.08);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}

.feature-icon {
    background: #f3e3de;
    color: #a97a6a;
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    font-size: 2rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-highlight-card h2 {
    font-size: 1.15em;
    margin-bottom: 0.5rem;
}

.feature-body p, .feature-body ul {
    font-size: 0.98em;
}

.feature-body ul {
    margin: 0.5em 0 0.5em 1.2em;
    padding: 0;
}

.feature-body li {
    margin-bottom: 0.3em;
}

@media (max-width: 1100px) {
    .features-highlight {
        flex-wrap: wrap;
        gap: 1.2rem;
    }
    .feature-highlight-card {
        flex: 1 1 45%;
        max-width: 98vw;
        min-width: unset;
        margin: 0;
    }
}
@media (max-width: 700px) {
    .features-highlight {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 1.2rem;
        align-items: center;
    }
    .feature-highlight-card {
        max-width: 98vw;
        min-width: unset;
        margin: 0;
    }
}

/* Animation on scroll */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

/* Styles de la page Boutique */
.boutique-container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
}

.filters {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.filters select {
    padding: 0.5rem;
    border-radius: 5px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.add-to-cart {
    margin-top: 15px;
    background: var(--secondary-color);
    color: white;
    background-color: #C99383;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #7c6159;
} 

/* Styles de la page Rendez-vous */
.rdv-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.rdv-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-title {
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.rdv-progress {
    margin-bottom: 3rem;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-lighter);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary);
    color: var(--white);
}

.step-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.step.active .step-label {
    color: var(--primary-dark);
    font-weight: 500;
}

.step-line {
    width: 100px;
    height: 2px;
    background: var(--primary-lighter);
    position: relative;
}

.appointment-form {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--primary-lighter);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.section-header h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin: 0;
}

.form-group {
    margin-bottom: 2.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.required {
    color: var(--primary);
    margin-left: 0.2rem;
}

.input-with-icon {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
}
.input-with-icon i {
    position: absolute;
    left: -1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2em;
    background: none;
    pointer-events: none;
    z-index: 2;
}
.input-with-icon input {
    width: 100%;
    display: block;
    padding: 0.8rem 1rem 0.8rem 2.7rem;
    border: 2px solid var(--primary-lighter);
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    color: var(--text-dark);
    outline: none;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
}
.input-with-icon input::placeholder {
    color: #bfa59a;
    opacity: 1;
}

.form-group input:not([type="radio"]):not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--primary-lighter);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-lighter);
}

.select-wrapper {
    position: relative;
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.radio-option,
.checkbox-option {
    position: relative;
}

.radio-option label,
.checkbox-option label {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: var(--primary-lighter);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(201,147,131,0.05);
    margin-bottom: 0.5rem;
    position: relative;
}

.radio-option label:hover,
.checkbox-option label:hover {
    background: var(--primary-light);
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.radio-option input[type="radio"]:checked + label,
.checkbox-option input[type="checkbox"]:checked + label {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(201,147,131,0.12);
}

.radio-option input[type="radio"]:focus + label,
.checkbox-option input[type="checkbox"]:focus + label {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.info-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--primary-lighter);
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .rdv-container {
        margin: 1rem auto;
    }

    .page-title {
        font-size: 2rem;
    }

    .appointment-form {
        padding: 1.5rem;
    }

    .radio-group,
    .checkbox-group {
        flex-direction: column;
        gap: 0.7rem;
    }

    .radio-option label, .checkbox-option label {
        min-width: unset;
        width: 100%;
    }

    .modal-content {
        width: 95%;
        margin: 1rem auto;
        padding: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Ajustement pour l'announcement bar */
@media screen and (min-width: 769px) {
    .hero {
        padding-top: calc(70px + 40px);
    }
} 
/* Conteneur principal */
.admin-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10vh;
    width: 100%;
}

/* Carte de connexion */
.admin-login-card {
    background: var(--primary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
}

/* Titre */
.admin-title {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Message d'erreur */
.error-message {
    background: var(--error);
    color: var(--text-light);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Champs du formulaire */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

/* Labels */
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Champs avec icônes */
.input-with-icon {
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 10px;
}

.input-with-icon i {
    color: var(--accent);
    margin-right: 10px;
}

.input-with-icon input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-light);
    font-size: 1rem;
}

.input-with-icon input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Bouton de connexion */
.admin-submit-btn {
    background: var(--accent);
    color: var(--text-light);
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.admin-submit-btn:hover {
    background: #7c6159;
    color: var(--white);
}

/* Responsive */
@media (max-width: 400px) {
    .admin-login-card {
        width: 90%;
        padding: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .features {
        padding: var(--spacing-lg) 0;
    }

    .features h2 {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }

    .benefits-grid {
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Section Notre Histoire */
.about-section {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-section h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section h3{
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.about-section p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.history-section, .partners-section, .stats-section, .approach-section, .quote-section, .future-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.partner-card {
    padding: 1.5rem;
    background: var(--primary-lighter);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.partner-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.partner-icon img{
    width: 30px;
    height: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-lighter);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}
.stat-card p{
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quote-section blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-dark);
    text-align: center;
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    background: var(--primary-lighter);
    border-radius: 0 10px 10px 0;
}

@media (max-width: 768px) {
    .partner-cards {
        grid-template-columns: 1fr;
    }
}

/* Ajout pour les tooltips des services */
.info-icon {
    cursor: pointer;
    margin-left: 5px;
    color: var(--primary-dark);
    font-size: 0.9em;
}

.tooltip {
    display: none;
    position: relative;
    background: var(--primary-lighter);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tooltip.active {
    display: block;
}

.tooltip ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.tooltip li:last-child {
    margin-bottom: 0;
}

.conditions-list.hidden {
    display: none;
}

.conditions-toggle {
    background: var(--primary-lighter);
    color: var(--primary-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.conditions-toggle:hover {
    background: var(--primary-light);
}

.conditions-toggle.active {
    background: var(--primary);
    color: var(--white);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 8px var(--primary-light);
}

.timeline-content {
    position: relative;
    width: calc(50% - 30px);
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.timeline-content h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.timeline-details {
    color: var(--text-dark);
    line-height: 1.6;
}

.timeline-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.timeline-stats .stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    flex: 1;
    max-width: 250px;
}

.timeline-stats .stat-card:hover {
    transform: translateY(-5px);
}

.timeline-stats .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.timeline-stats h4 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item::before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .timeline-stats {
        flex-direction: column;
        align-items: center;
    }

    .timeline-stats .stat-card {
        width: 100%;
        max-width: 300px;
    }
}

.approach-section {
    margin: 4rem auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.approach-section h3 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.approach-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.approach-section p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-section p:last-of-type {
    margin-bottom: 0;
    font-style: italic;
    color: var(--primary);
}

.approach-section .emoji-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.approach-section .emoji-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-lighter);
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.approach-section .emoji-item:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .approach-section {
        padding: 2rem;
        margin: 2rem auto;
    }

    .approach-section h3 {
        font-size: 1.8rem;
    }

    .approach-section p {
        font-size: 1rem;
    }

    .approach-section .emoji-list {
        flex-direction: column;
        align-items: center;
    }
}

/* Style pour les préférences de disponibilités */
.availability-preferences {
    background: var(--primary-lighter);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.availability-preferences h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.availability-preferences .checkbox-group {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Responsive pour le formulaire */
@media (max-width: 768px) {
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }

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

    .availability-preferences {
        padding: 1rem;
    }
}

.partners-section {
    margin: 4rem auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.partners-section h3 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.partners-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 2rem;
        margin: 2rem auto;
    }

    .partners-section h3 {
        font-size: 1.8rem;
    }

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

.rgpd-group {
  display: flex;
  align-items: center;
  background: #ead1c9;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  gap: 1rem;
}
.rgpd-group input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #c99383;
  margin-right: 0.7rem;
}
.rgpd-group label {
  font-size: 1.05em;
  color: #7c6159;
  cursor: pointer;
}
.rgpd-group.error {
  border: 2px solid #b00020;
  background: #ffeaea;
}
.rgpd-error {
  color: #b00020;
  font-size: 0.98em;
  margin-left: 2.5rem;
  margin-top: 0.3rem;
}

/* Styles de la page de confirmation */
.confirmation-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.confirmation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.confirmation-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.confirmation-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--primary-lighter);
}

.confirmation-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-item .label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.info-item .value {
    color: var(--text-dark);
    font-weight: 500;
}

.comment-box {
    background: var(--primary-lighter);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.preferences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.preference-item {
    background: var(--primary-lighter);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.confirmation-actions form {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .confirmation-card {
        padding: 1.5rem;
    }

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

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

    .confirmation-actions form {
        flex-direction: column;
    }

    .confirmation-actions .btn-primary,
    .confirmation-actions .btn-secondary {
        width: 100%;
    }
}

/* Styles pour la grille des services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card:hover::before {
    height: 6px;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details {
    position: relative;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-lighter);
}

.price-tag {
    position: relative;
    background: var(--primary-lighter);
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1rem 0;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover .price-tag {
    background: var(--primary);
    transform: translateY(-3px);
}

.starting-from {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-card:hover .starting-from {
    color: var(--white);
}

.base-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

.service-card:hover .base-price {
    color: var(--white);
}

.info-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.3rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.6;
    z-index: 10;
}

.info-button:hover {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.1);
}

.learn-more-service-btn {
    width: 100%;
    background: var(--primary-lighter);
    color: var(--primary-dark);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.learn-more-service-btn i {
    transition: transform 0.3s ease;
}

.learn-more-service-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.learn-more-service-btn:hover i {
    transform: translateX(5px);
}

.tooltip {
    display: none;
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 20;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.tooltip.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.tooltip ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tooltip li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tooltip li:last-child {
    margin-bottom: 0;
}

.tooltip li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .base-price {
        font-size: 1.5rem;
    }

    .tooltip {
        position: relative;
        margin-top: 1rem;
        width: 100%;
    }
}

/* Styles du questionnaire de satisfaction */
.questionnaire-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.questionnaire-header {
    text-align: center;
    margin-bottom: 3rem;
}

.questionnaire-form {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2.5rem;
}

.section-description {
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* Responsive pour le questionnaire */
@media (max-width: 768px) {
    .questionnaire-container {
        margin: 1rem auto;
    }

    .questionnaire-form {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }
}

/* Barre de progression questionnaire */
.progress-bar-container {
    width: 100%;
    background: var(--primary-lighter);
    border-radius: 8px;
    margin-bottom: 2rem;
    height: 18px;
    position: relative;
}
.progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 8px;
    width: 0;
    transition: width 0.3s;
}
.progress-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1rem;
    line-height: 18px;
}

/* Feedback erreur validation */
.form-group.error label {
    color: #b00020;
}
.form-group.error {
    border-left: 4px solid #b00020;
    background: #ffeaea;
}

/* --- Correction affichage checkbox et label --- */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    min-width: unset;
    margin: 0;
    accent-color: var(--primary);
}

.checkbox-group label {
    display: inline;
    font-weight: 500;
    margin: 0;
    background: none;
    padding: 0;
    border: none;
    color: var(--text-dark);
}

.form-group.error .checkbox-group {
    border-left: 4px solid #b00020;
    background: #ffeaea;
    padding-left: 0.5rem;
    border-radius: 6px;
}

/* Style boutons pour les checkbox multiples dans le questionnaire */
.checkbox-group .checkbox-option {
    margin-bottom: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    display: none;
}

.checkbox-group label {
    display: inline-block;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: var(--primary-lighter);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    min-width: 180px;
    text-align: center;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.checkbox-group input[type="checkbox"]:checked + label {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(201,147,131,0.12);
}

.checkbox-group input[type="checkbox"]:focus + label {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

/* ---- Cards services modernes (v_services) ---- */
.card-service {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(169, 122, 106, 0.08);
  padding: 32px 24px 24px 24px;
  max-width: 340px;
  margin: 24px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.2s;
}
.card-service:hover {
  box-shadow: 0 8px 32px rgba(169, 122, 106, 0.16);
}
.card-header {
  text-align: center;
  margin-bottom: 18px;
}
.card-icon {
  font-size: 38px;
  color: #a97a6a;
  margin-bottom: 8px;
}
.card-header h2 {
  font-size: 1.35em;
  color: #a97a6a;
  margin: 0 0 6px 0;
  font-weight: 700;
}
.card-header h2 small {
  font-size: 0.7em;
  color: #bfa59a;
  font-weight: 400;
}
.card-desc {
  color: #a97a6a;
  font-size: 1em;
  margin-bottom: 0;
}
.card-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  position: relative;
}
.card-price-label {
  color: #a97a6a;
  font-size: 1em;
}
.card-price {
  font-size: 1.5em;
  font-weight: bold;
  color: #a97a6a;
  margin-left: 6px;
}
.info-icon {
  position: relative;
  display: inline-block;
  margin-left: 6px;
  color: #a97a6a;
  cursor: pointer;
  font-size: 1.1em;
  outline: none;
}
.info-icon i {
  vertical-align: middle;
}
.tooltip {
  display: none;
  position: absolute;
  left: 50%;
  top: 120%;
  transform: translateX(-50%);
  background: #fff;
  color: #a97a6a;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(169, 122, 106, 0.12);
  padding: 14px 18px;
  min-width: 220px;
  font-size: 0.98em;
  z-index: 10;
  text-align: left;
  white-space: normal;
}
.info-icon:hover .tooltip,
.info-icon:focus .tooltip {
  display: block;
}
.btn-more {
  margin-top: 10px;
  background: #e9d5ce;
  color: #a97a6a;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-more:hover, .btn-more:focus {
  background: #a97a6a;
  color: #fff;
}
@media (max-width: 500px) {
  .card-service {
    max-width: 98vw;
    padding: 18px 6vw;
  }
  .tooltip {
    min-width: 160px;
    font-size: 0.95em;
  }
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

/* Correction affichage tooltips cards services */
.card-service,
.card-price-row {
  overflow: visible !important;
}

.tooltip {
  z-index: 10000 !important;
  position: absolute;
  left: 50%;
  top: 120%;
  transform: translateX(-50%);
  display: none;
  background: #fff;
  color: #a97a6a;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(169, 122, 106, 0.12);
  padding: 14px 18px;
  min-width: 220px;
  font-size: 0.98em;
  text-align: left;
  white-space: normal;
}
.tooltip.open {
  display: block;
}

/* Accordion cards services (v_services) */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
  width: 100%;
}
.accordion-content.open {
  max-height: 300px; /* Ajuste selon la taille de ton contenu */
  margin-top: 10px;
}
.accordion-details {
  background: #fff7f4;
  color: #a97a6a;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(169, 122, 106, 0.08);
  padding: 14px 18px;
  font-size: 0.98em;
  text-align: left;
}
.accordion-toggle {
  cursor: pointer;
  user-select: none;
}
.accordion-toggle:focus {
  outline: 2px solid #a97a6a;
}
.info-icon {
  margin-left: 8px;
  color: #a97a6a;
  font-size: 1.1em;
  vertical-align: middle;
}

.feature-footer {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #f3e3de;
    width: 100%;
    display: flex;
    align-items: center;
}
.learn-more-btn {
    background: transparent;
    border: none;
    color: #a97a6a;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s, color 0.2s;
}
.learn-more-btn i {
    transition: transform 0.2s;
}
.learn-more-btn:hover, .learn-more-btn:focus {
    background: #f3e3de;
    color: #7c6159;
}
.learn-more-btn:hover i, .learn-more-btn:focus i {
    transform: translateX(4px);
}

.feature-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    margin-bottom: 0;
}
.feature-highlight-card.open .feature-details {
    max-height: 600px; /* Ajuste selon le contenu */
    opacity: 1;
    margin-bottom: 1rem;
}