/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE A-PROPOS ================= */
/*
/*===========================================================*/

/* ===== ANIMATIONS GLOBALES ===== */
.scroll-animate {
    opacity: 0;
    transition: none;
}

.scroll-animate.animated {
    opacity: 1;
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-right {
    animation: fadeRight 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-left {
    animation: fadeLeft 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-zoom-in {
    animation: zoomIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* ===== IMAGES ===== */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ===== CARTES OFFRES ===== */
.offer-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(199, 162, 90, 0.3);
    border-color: var(--main-color);
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon {
    transform: scale(1.1) rotate(5deg);
}

.offer-icon i {
    font-size: 32px;
    color: #fff;
}

.offer-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.offer-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== SUPPORT VISUAL ===== */
.support-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-card {
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(199, 162, 90, 0.3);
    max-width: 400px;
}

.support-card i {
    font-size: 80px;
    color: #fff;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.support-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== SUPPORT FEATURE CARDS ===== */
.support-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    text-align: center;
}

.support-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(199, 162, 90, 0.3);
    border-color: var(--main-color);
}

.feature-icon-wrapper {
    width:60px;
    height: 60px;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.support-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper i {
    font-size: 36px;
    color: #fff;
}

.support-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.support-feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== SUPPORT CTA BOX ===== */
.support-cta-box {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.1) 0%, rgba(199, 162, 90, 0.05) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid rgba(199, 162, 90, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-cta-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 162, 90, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

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

.cta-icon {
    width: 70px;
    height: 70px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.cta-icon i {
    font-size: 32px;
    color: #fff;
}

.support-cta-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
    position: relative;
    z-index: 1;
}

.support-cta-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.support-cta-box .btn {
    position: relative;
    z-index: 1;
}

/* ===== FAQ MODERNE ===== */
.faq-modern-area {
    background: #fff;
}

.faq-visual-wrapper {
    position: relative;
}

.faq-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.faq-image-card img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.faq-image-card:hover img {
    transform: scale(1.05);
}

.faq-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.4);
}

.faq-badge i {
    font-size: 20px;
    color: #fff;
}

.faq-badge span {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--heading-font);
}

.faq-stats {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.faq-stats .stat-item {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.2);
}

.faq-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 5px;
    font-family: var(--heading-font);
}

.faq-stats .stat-item p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion-wrapper {
    position: relative;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.2);
    border-color: var(--main-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-question:not(.collapsed) {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.1) 0%, rgba(199, 162, 90, 0.05) 100%);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-question:not(.collapsed) .faq-icon {
    transform: scale(1.1);
}

.faq-icon i {
    font-size: 20px;
    color: #fff;
}

.faq-question h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: var(--heading-font);
    flex: 1;
    line-height: 1.4;
}

.faq-arrow {
    font-size: 14px;
    color: var(--main-color);
    transition: transform 0.3s ease;
}

.faq-question:not(.collapsed) .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px 100px;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== FAQ CONTACT BOX ===== */
.faq-contact-box {
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.3);
}

.faq-contact-box i {
    font-size: 50px;
    color: #fff;
    flex-shrink: 0;
}

.faq-contact-box h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.faq-contact-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.faq-contact-box .btn {
    background: #fff;
    color: var(--main-color);
    border: 2px solid #fff;
}

.faq-contact-box .btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* ===== FEATURE HIGHLIGHT ===== */
.feature-highlight {
    background: rgba(199, 162, 90, 0.05);
    padding: 25px;
    border-radius: 10px;
}

.text-main-color {
    color: var(--main-color);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .offer-card {
        padding: 30px 20px;
    }
    
    .support-card {
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .support-card i {
        font-size: 60px;
    }
    
    .support-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .about-section-1,
    .about-section-2,
    .about-section-3,
    .about-section-4 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
    }
    
    .offer-icon i {
        font-size: 28px;
    }
    
    .offer-card h4 {
        font-size: 1.1rem;
    }
    
    .support-item {
        padding: 15px;
    }
    
    .support-item i {
        font-size: 24px;
        margin-right: 15px;
    }
    
    .cta-box {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .support-card {
        padding: 30px 20px;
    }
    
    .support-card i {
        font-size: 50px;
    }
    
    .support-card h3 {
        font-size: 1.3rem;
    }
    
    .support-card p {
        font-size: 1rem;
    }
}


/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE ABONNEMENT ================= */
/*
/*===========================================================*/

/* ===== VARIABLES ===== */
:root {
    --primary-color: #c7a25a;
    --primary-dark: #b08c46;
    --primary-light: #d4b77d;
    --secondary-color: #2c3e50;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e9ecef;
}

/* ===== HERO ===== */
.subscription-hero {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.05) 0%, rgba(199, 162, 90, 0.02) 100%);
}

.hero-content .title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

/* ===== RECAP CARD ===== */
.recap-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-top: 30px;
    overflow: hidden;
    border: 2px solid rgba(199, 162, 90, 0.2);
}

.recap-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.recap-header i {
    font-size: 1.5rem;
}

.recap-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.recap-body {
    padding: 25px 30px;
}

.recap-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.recap-item:last-of-type {
    border-bottom: none;
}

.recap-item .label {
    font-weight: 600;
    color: var(--text-dark);
}

.recap-item .value {
    color: var(--text-light);
    text-align: right;
}

.recap-item.highlight {
    background: rgba(199, 162, 90, 0.1);
    margin: 0 -30px;
    padding: 15px 30px;
}

.recap-item.highlight .value.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.recap-badge {
    background:  #c7a25a;
    color: #fff;
    padding: 12px 20px;
    margin: 15px -30px -25px -30px;
    text-align: center;
    font-weight: 600;
}

/* ===== FORMULAIRE ===== */
.custom-form-wrapper .modern-form {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
}

.form-header {
    text-align: center;
    padding: 40px;
    margin: -40px -40px 40px -40px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    border-bottom: 2px solid rgba(199, 162, 90, 0.2);
    border-radius: 20px 20px 0 0;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    margin: 0;
}

.form-section {
    padding: 25px;
    margin-bottom: 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.form-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(199,162,90,0.2);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h4 i {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all .3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(199,162,90,0.1);
    outline: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%23c7a25a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-position: right 15px center;
    background-repeat: no-repeat;
}

.form-footer {
    margin-top: 30px;
    border-top: 2px solid rgba(199,162,90,0.2);
    padding-top: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    padding: 15px;
    font-weight: 600;
    border: none;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(199,162,90,0.3);
    color: #fff;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(199,162,90,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
    .custom-form-wrapper .modern-form {
        padding: 25px 20px;
    }
    
    .form-header {
        padding: 30px 20px;
        margin: -25px -20px 30px -20px;
    }
    
    .form-section {
        padding: 20px 15px;
    }
    
    .recap-header,
    .recap-body {
        padding: 20px;
    }
    
    .recap-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .recap-item .value {
        text-align: left;
    }
}



/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE ASSISTANCE ================= */
/*
/*===========================================================*/

/* ===== ASSISTANCE STYLES ===== */
.assistance-hero {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.05) 0%, rgba(199, 162, 90, 0.02) 100%);
}

.hero-image-wrapper img {
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

.hero-content .sub-title {
    color: var(--main-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.hero-content .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
    line-height: 1.2;
}

.hero-content .lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(199, 162, 90, 0.1);
    border-radius: 12px;
}

.hero-stats .stat-item i {
    font-size: 35px;
    color: var(--main-color);
}

.hero-stats .stat-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 3px;
    font-family: var(--heading-font);
}

.hero-stats .stat-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Contact Cards */
.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(199, 162, 90, 0.3);
    border-color: var(--main-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    font-size: 35px;
    color: #fff;
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.contact-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: rgba(199, 162, 90, 0.1);
    color: var(--main-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-2px);
}

/* CTA */
.assistance-cta {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.1) 0%, rgba(199, 162, 90, 0.05) 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(199, 162, 90, 0.2);
}

.assistance-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.assistance-cta p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-content .title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-stats {
        flex-direction: column;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .assistance-cta {
        padding: 40px 30px;
    }
    
    .assistance-cta h3 {
        font-size: 1.3rem;
    }
}


/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE AUTRES TARIFS ================= */
/*
/*===========================================================*/

/* ===== HERO ===== */
.pricing-hero {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.05) 0%, rgba(199, 162, 90, 0.02) 100%);
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(199, 162, 90, 0.3);
    border-color: var(--main-color);
}

.pricing-card.popular {
    border: 3px solid var(--main-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Badges */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(199, 162, 90, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.pricing-badge {
    background: rgba(199, 162, 90, 0.1);
    color: var(--main-color);
    text-align: center;
    padding: 8px 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-badge-special {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(32, 201, 151, 0.2));
    color: #28a745;
}

.pricing-badge-gold {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.3), rgba(199, 162, 90, 0.15));
    color: var(--main-color);
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(199, 162, 90, 0.2);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.old-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.old-price span {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.new-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-color);
}

.new-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.new-price .period {
    font-size: 1rem;
    color: #666;
}

.savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.savings-badge-gold {
    background: linear-gradient(135deg, var(--main-color), #a88a4a);
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Features */
.pricing-features {
    flex: 1;
    margin-bottom: 30px;
}

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

.pricing-features ul li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--heading-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li i {
    font-size: 16px;
    color: var(--main-color);
    flex-shrink: 0;
}

.pricing-features ul li.disabled {
    color: #999;
    opacity: 0.6;
}

.pricing-features ul li.disabled i {
    color: #999;
}

/* Footer */
.pricing-footer {
    margin-top: auto;
}

.btn-pricing {
    width: 100%;
    background: var(--heading-color);
    color: #fff;
    border: 2px solid var(--heading-color);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-pricing:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-pricing-popular {
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    border-color: var(--main-color);
}

.btn-pricing-popular:hover {
    background: var(--heading-color);
    border-color: var(--heading-color);
}

/* Back CTA */
.back-cta {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05) 0%, rgba(44, 62, 80, 0.02) 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(44, 62, 80, 0.1);
}

.back-cta h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.back-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767.98px) {
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .new-price .amount {
        font-size: 2.5rem;
    }
    
    .back-cta {
        padding: 40px 30px;
    }
    
    .back-cta h4 {
        font-size: 1.5rem;
    }
}

    /* Styles pour les options Gold */
.gold-option-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.gold-option-card:hover {
    border-color: var(--main-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(199, 162, 90, 0.1);
}

.gold-option-card.selected {
    border-color: var(--main-color);
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.05) 0%, rgba(199, 162, 90, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.15);
}

.gold-option-card.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--main-color);
}

.option-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.option-icon {
    width: 50px;
    height: 50px;
    background: rgba(199, 162, 90, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--main-color);
    font-size: 24px;
}

.option-header h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
    flex: 1;
}

.option-badge {
    background: var(--main-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-badge.flexible {
    background: #6c757d;
}

.option-body {
    margin-bottom: 25px;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.option-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--paragraph-color);
    font-size: 15px;
}

.option-features li i {
    color: var(--main-color);
    margin-right: 10px;
    font-size: 16px;
}

.option-price {
    margin-top: 25px;
    text-align: center;
    padding: 15px;
    background: rgba(199, 162, 90, 0.05);
    border-radius: 10px;
    border: 1px dashed rgba(199, 162, 90, 0.3);
}

.option-price .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--main-color);
    line-height: 1;
}

.option-price .period {
    font-size: 14px;
    color: var(--paragraph-color);
    display: block;
    margin-top: 5px;
}

.total-price {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--paragraph-color);
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.option-selector {
    margin-top: 20px;
}

.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    min-height: 25px;
}

.custom-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.radio-mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.custom-radio input[type="radio"]:checked ~ .radio-mark {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.radio-mark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-radio input[type="radio"]:checked ~ .radio-mark:after {
    display: block;
}

.custom-radio .radio-mark:after {
    top: 7px;
    left: 7px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: white;
}

.option-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    margin-left: 10px;
}

.option-note {
    background: rgba(199, 162, 90, 0.05);
    padding: 15px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: var(--paragraph-color);
}

.option-note i {
    color: var(--main-color);
}

/* Animation de sélection */
@keyframes cardSelect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.gold-option-card.selected {
    animation: cardSelect 0.3s ease;
}

/* Pour les mobiles */
@media (max-width: 768px) {
    .gold-option-card {
        padding: 20px;
    }
    
    .option-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .option-icon {
        margin-bottom: 15px;
    }
    
    .option-header h5 {
        margin-bottom: 10px;
    }
    
    .option-price .price {
        font-size: 28px;
    }
}

/*========= RETOUCHE DE LA PARTIE AVEC LES OPTIONS AVEC OU SANS ENGAGEMENT ==========*/
/* Variables du thème Or Kaki */
:root {
    --gold-primary: #B8860B;      /* Or kaki principal */
    --gold-light: #DAA520;        /* Or plus clair */
    --gold-dark: #8B6914;         /* Or plus foncé */
    --bg-dark: #1A1A1A;           /* Fond sombre */
    --bg-light: #2D2D2D;          /* Fond secondaire */
    --text-light: #FFFFFF;        /* Texte principal */
    --text-muted: #CCCCCC;        /* Texte secondaire */
}

/* Conteneur principal centré */
.promo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    width: 100%;
}

/* Carte promotionnelle */
.promo-card {
    position: relative;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark) 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    width: 100%;
    max-width: 900px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(184, 134, 11, 0.1),
        0 0 30px rgba(184, 134, 11, 0.2);
    border: 2px solid var(--gold-primary);
    overflow: hidden;
}

/* Effet de brillance */
.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(184, 134, 11, 0.1) 50%,
        transparent 70%
    );
    animation: shine 8s infinite linear;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Wrapper de l'icône */
.promo-icon-wrapper {
    margin-bottom: 1.5rem;
}

.promo-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 8px rgba(184, 134, 11, 0.5));
    animation: pulse 2s infinite;
}

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

/* Contenu promotionnel */
.promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Texte promotionnel */
.promo-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.promo-offer {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
    border-radius: 15px;
    box-shadow: 
        0 10px 20px rgba(184, 134, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.promo-months {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-light);
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.promo-offer-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Badge exclusif */
.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c7a25a, var(--gold-primary));
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-5px); }
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .promo-card {
        padding: 2rem;
        max-width: 700px;
    }
    
    .promo-offer {
        font-size: 1.1rem;
    }
    
    .promo-months {
        font-size: 2.2rem;
    }
    
    .promo-offer-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .promo-container {
        padding: 1rem;
    }
    
    .promo-card {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .promo-highlight {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .promo-offer {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .promo-months {
        font-size: 2rem;
    }
    
    .promo-offer-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .promo-icon {
        width: 40px;
        height: 40px;
    }
    
    .promo-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 1rem auto 0;
        transform: rotate(0);
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .promo-card {
        padding: 1.2rem;
        border-width: 1px;
    }
    
    .promo-offer {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .promo-months {
        font-size: 1.7rem;
    }
    
    .promo-offer-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .promo-highlight {
        padding: 0.8rem;
    }
    
    .promo-icon {
        width: 32px;
        height: 32px;
    }
}

/* Animation d'entrée */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.promo-card {
    animation: fadeInLeft 0.8s ease-out;
}

/* Effets au survol */
.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(184, 134, 11, 0.2),
        0 0 40px rgba(184, 134, 11, 0.3);
    transition: all 0.3s ease;
}

/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE CONTACT ================= */
/*
/*===========================================================*/

/* ===== CONTACT STYLES ===== */
.contact-hero {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.05) 0%, rgba(199, 162, 90, 0.02) 100%);
}

.alert-modern {
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Info Cards */
.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(199, 162, 90, 0.3);
    border-color: var(--main-color);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-icon i {
    font-size: 30px;
    color: #fff;
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.info-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.info-card p a {
    color: var(--main-color);
    font-weight: 600;
}

.info-card p a:hover {
    text-decoration: underline;
}

/* Contact Form */
/* ===== FORMULAIRE COLORÉ ===== */
/* ===== VARIABLES COULEURS ===== */
:root {
    --primary-color: #c7a25a;
    --primary-dark: #b08c46;
    --primary-light: #d4b77d;
    --secondary-color: #2c3e50;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e9ecef;
}

/* ===== WRAPPER PRINCIPAL ===== */
.custom-form-wrapper .modern-form {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
}

/* ===== HEADER ===== */
.form-header {
    text-align: center;
    padding: 40px;
    margin: -40px -40px 40px -40px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    border-bottom: 2px solid rgba(199, 162, 90, 0.2);
    border-radius: 20px 20px 0 0;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-header p {
    color: var(--text-light);
}

/* ===== SECTIONS ===== */
.form-section {
    padding: 25px;
    margin-bottom: 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.form-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(199,162,90,0.2);
    padding-bottom: 10px;
}

/* ===== CHAMPS ===== */
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all .3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(199,162,90,0.1);
    outline: none;
}

/* Flèche select */
.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%23c7a25a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-position: right 15px center;
    background-repeat: no-repeat;
}

/* ===== FOOTER ===== */
.form-footer {
    margin-top: 30px;
    border-top: 2px solid rgba(199,162,90,0.2);
    padding-top: 30px;
}

/* ===== BOUTON ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    border: none;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(199,162,90,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(199,162,90,0.4);
}


/* Responsive */
@media (max-width: 767.98px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
}
/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE ESSAI GRATUIT ================= */
/*
/*===========================================================*/

/* ===== COULEURS PRINCIPALES ===== */
:root {
    --primary-color: #c7a25a; /* Or principal */
    --primary-dark: #b08c46;
    --primary-light: #d4b77d;
    --secondary-color: #2c3e50; /* Bleu foncé */
    --accent-color: #e74c3c; /* Rouge accent */
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e9ecef;
}

/* ===== ESSAI HERO ===== */
.essai-hero-section {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.08) 0%, rgba(199, 162, 90, 0.03) 100%);
    border-bottom: 1px solid var(--border-color);
}

.alert-modern {
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.alert-modern.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-modern.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.alert-modern.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

.advantage-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(199, 162, 90, 0.2);
    border-color: var(--primary-color);
}

.advantage-card i {
    font-size: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.advantage-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== FORMULAIRE COLORÉ ===== */
.essai-form-wrapper .modern-form {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(199, 162, 90, 0.2);
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    margin: -40px -40px 40px -40px;
    padding: 40px;
    border-radius: 20px 20px 0 0;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-header p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.form-section {
    margin-bottom: 35px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.form-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(199, 162, 90, 0.2);
}

.form-section h4 i {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(199, 162, 90, 0.1);
    background: #fff;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c7a25a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(199, 162, 90, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(199, 162, 90, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 162, 90, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== SECTION INFORMATIONS EN BAS ===== */
.info-feature-card {
    text-align: center;
}

.info-feature-image img {
    transition: transform 0.5s ease;
}

.info-feature-card:hover .info-feature-image img {
    transform: scale(1.02);
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(199, 162, 90, 0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

.cta-box {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.1) 0%, rgba(199, 162, 90, 0.05) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(199, 162, 90, 0.2);
    text-align: center;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-icon-essai {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cta-content p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: left;
}

/* Responsive */
@media (max-width: 991.98px) {
    .modern-form {
        padding: 30px 20px;
    }
    
    .form-header {
        margin: -30px -20px 30px -20px;
        padding: 30px 20px;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content p {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .advantage-card {
        padding: 25px 15px;
    }
    
    .advantage-card i {
        font-size: 32px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-section h4 {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ===== ANIMATIONS CSS (injectées par JavaScript) ===== */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out both;
}

.animate-fade-down {
    animation: fadeDown 0.8s ease-out both;
}

.animate-fade-left {
    animation: fadeLeft 0.8s ease-out both;
}

.animate-fade-right {
    animation: fadeRight 0.8s ease-out both;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE FAQ ================= */
/*
/*===========================================================*/

/* ===== FAQ MODERNE OPTIMISÉE ===== */
.faq-modern-area {
    background: #fff;
}

/* Image et stats */
.faq-visual-wrapper {
    position: sticky;
    top: 100px;
}

.faq-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
}

.faq-image-card img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.faq-image-card:hover img {
    transform: scale(1.05);
}

.faq-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.4);
}

.faq-badge i {
    font-size: 20px;
    color: #fff;
}

.faq-badge span {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--heading-font);
}

.faq-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.faq-stats .stat-item {
    flex: 1;
    background: #fff;
    padding: 18px 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.2);
}

.faq-stats .stat-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 5px;
    font-family: var(--heading-font);
}

.faq-stats .stat-item p {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0;
}

/* FAQ Cards en grille */
.faq-grid-wrapper {
    position: relative;
}

.faq-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-card:hover {
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.2);
    border-color: var(--main-color);
    transform: translateY(-5px);
}

.faq-card-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-card-header:not(.collapsed) {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.1) 0%, rgba(199, 162, 90, 0.05) 100%);
}

.faq-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-card-header:not(.collapsed) .faq-icon {
    transform: scale(1.1);
}

.faq-icon i {
    font-size: 18px;
    color: #fff;
}

.faq-card-header h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: var(--heading-font);
    line-height: 1.3;
    flex: 1;
}

.faq-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    color: var(--main-color);
    transition: transform 0.3s ease;
}

.faq-card-header:not(.collapsed) .faq-arrow {
    transform: rotate(180deg);
}

.faq-card-body {
    padding: 0 20px 20px 20px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Box */
.faq-contact-box {
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.3);
}

.faq-contact-box i {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
}

.faq-contact-box h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.faq-contact-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-contact-box .btn {
    background: #fff;
    color: var(--main-color);
    border: 2px solid #fff;
    font-size: 0.85rem;
    padding: 8px 20px;
}

.faq-contact-box .btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
    .faq-visual-wrapper {
        position: relative;
        top: 0;
    }
    
    .faq-stats {
        gap: 10px;
    }
    
    .faq-stats .stat-item {
        padding: 15px 10px;
    }
    
    .faq-stats .stat-item h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .faq-card-header h5 {
        font-size: 0.95rem;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
    }
    
    .faq-icon i {
        font-size: 16px;
    }
    
    .faq-card-body {
        font-size: 0.85rem;
    }
}

/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE FONCTIONNALITE ================= */
/*
/*===========================================================*/

/* Animations au scroll */
.scroll-animate {
    opacity: 0;
    transition: none;
}

.scroll-animate.animated {
    opacity: 1;
}

/* Feature Row Spacing */
.feature-row {
    margin-bottom: 60px;
}

.feature-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--main-color) 50%, transparent 100%);
    margin: 80px 0;
    opacity: 0.3;
}


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

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-fade-left {
    animation: fadeLeft 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-fade-right {
    animation: fadeRight 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Responsive */
@media (max-width: 991.98px) {
    .feature-row {
        margin-bottom: 40px;
    }
    
    .feature-separator {
        margin: 50px 0;
    }
    
    .feature-image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .section-title .title {
        font-size: 1.1rem;
    }
    
    .single-list-inner.style-check li {
        font-size: 0.9rem;
    }
}

/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE PARRAINAGE ================= */
/*
/*===========================================================*/

/* ===== HERO SECTION ===== */
.parrainage-hero {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.05) 0%, rgba(199, 162, 90, 0.02) 100%);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

.hero-content .sub-title {
    color: var(--main-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.hero-content .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
    line-height: 1.2;
}

.hero-content .lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-badge {
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    padding: 10px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.3);
    flex: 1;
    min-width: 100px;
}

.stat-badge .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    font-family: var(--heading-font);
}

.stat-badge .label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
}

.stat-badge .reward {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* ===== HOW IT WORKS ===== */
.how-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.how-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(199, 162, 90, 0.3);
    border-color: var(--main-color);
}

.how-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--heading-font);
}

.how-content {
    flex: 1;
}

.how-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.how-content p {
    margin-bottom: 5px;
    font-size: 1rem;
}

.how-content .small-text {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0;
}

.how-icon {
    font-size: 40px;
    color: var(--main-color);
    opacity: 0.2;
}

.important-note {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.1) 0%, rgba(199, 162, 90, 0.05) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.important-note i {
    font-size: 35px;
    color: var(--main-color);
    flex-shrink: 0;
}

.important-note p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== BENEFITS ===== */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 30px;
    color: var(--main-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
    font-family: var(--heading-font);
}

.benefit-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.share-info {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.1) 0%, rgba(199, 162, 90, 0.05) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(199, 162, 90, 0.2);
}

.share-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

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

.share-info ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.share-info ul li i {
    color: var(--main-color);
    font-size: 18px;
}

/* ===== EXAMPLE SECTION ===== */
.example-story {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-step {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
}

.story-step.highlight {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.1) 0%, rgba(199, 162, 90, 0.05) 100%);
    border-left-width: 6px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--heading-font);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 24px;
    color: #fff;
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
    font-family: var(--heading-font);
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===== SUMMARY BOX ===== */
.summary-box {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.1) 0%, rgba(199, 162, 90, 0.05) 100%);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(199, 162, 90, 0.2);
}

.summary-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 40px;
    font-family: var(--heading-font);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.summary-item {
    text-align: center;
}

.summary-item i {
    font-size: 50px;
    color: var(--main-color);
    margin-bottom: 15px;
}

.summary-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.summary-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.cta-content {
    padding-top: 40px;
    border-top: 2px solid rgba(199, 162, 90, 0.2);
}

.cta-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-content .title {
        font-size: 2rem;
    }
    
    .summary-box {
        padding: 40px 30px;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 767.98px) {
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-badge {
        min-width: 100%;
    }
    
    .how-card {
        flex-direction: column;
        text-align: center;
    }
    
    .how-icon {
        display: none;
    }
    
    .summary-box {
        padding: 30px 20px;
    }
    
    .summary-box h3 {
        font-size: 1.3rem;
    }
}



/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE SERVEUR DEDIE ================= */
/*
/*===========================================================*/

/* ===== HERO ===== */
.serveur-hero {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.05) 0%, rgba(199, 162, 90, 0.02) 100%);
}

.hero-image-wrapper img,
.solution-image img,
.accompagnement-image img,
.avantages-image img {
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img,
.solution-image:hover img,
.accompagnement-image:hover img,
.avantages-image:hover img {
    transform: scale(1.05);
}

.hero-content .sub-title {
    color: var(--main-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.hero-content .title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
    line-height: 1.2;
}

.hero-content .lead-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(199, 162, 90, 0.1);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

.highlight-item i {
    color: var(--main-color);
    font-size: 18px;
}

/* ===== AVANTAGES ===== */
.avantages-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.avantage-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.avantage-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.2);
    border-color: var(--main-color);
}

.avantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avantage-icon i {
    font-size: 28px;
    color: #fff;
}

.avantage-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.avantage-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.avantage-content ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.avantage-content ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
}

.avantage-content ul li i {
    color: var(--main-color);
    font-size: 14px;
}

/* ===== SOLUTION ===== */
.solution-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(199, 162, 90, 0.05);
    border-radius: 10px;
}

.solution-item i {
    font-size: 24px;
    color: var(--main-color);
}

.solution-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
}

.pricing-box {
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.3);
}

.pricing-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.pricing-box .price {
    margin-bottom: 15px;
}

.pricing-box .price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--heading-font);
}

.pricing-box .price .period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 5px;
}

.pricing-box p {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.pricing-box p i {
    color: #fff;
    margin-right: 5px;
}

/* ===== ACCOMPAGNEMENT ===== */
.accompagnement-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--heading-font);
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
    font-family: var(--heading-font);
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-content .title,
    .solution-content .title,
    .accompagnement-content .title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-highlights {
        flex-direction: column;
    }
    
    .avantage-card {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-box .price .amount {
        font-size: 2.5rem;
    }
}

/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE TARIFS ================= */
/*
/*===========================================================*/

/* ===== PRICING HERO ===== */
.pricing-hero {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.05) 0%, rgba(199, 162, 90, 0.02) 100%);
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(199, 162, 90, 0.3);
    border-color: var(--main-color);
}

.pricing-card.popular {
    border: 3px solid var(--main-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Badges */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(199, 162, 90, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
}

.pricing-badge {
    background: rgba(199, 162, 90, 0.1);
    color: var(--main-color);
    text-align: center;
    padding: 8px 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-badge-gold {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.2) 0%, rgba(199, 162, 90, 0.1) 100%);
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(199, 162, 90, 0.2);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.pricing-price-secondary {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-color);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.pricing-price-secondary{
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.pricing-price .period , .pricing-price-secondary .period {
    font-size: 1rem;
    color: #666;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Features */
.pricing-features {
    flex: 1;
    margin-bottom: 30px;
}

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

.pricing-features ul li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--heading-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li i {
    font-size: 16px;
    color: var(--main-color);
    flex-shrink: 0;
}

.pricing-features ul li.disabled {
    color: #999;
    opacity: 0.6;
}

.pricing-features ul li.disabled i {
    color: #999;
}

/* Footer */
.pricing-footer {
    margin-top: auto;
}

.btn-pricing {
    width: 100%;
    background: var(--heading-color);
    color: #fff;
    border: 2px solid var(--heading-color);
    padding: 23px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-pricing:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-pricing-popular {
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    border-color: var(--main-color);
}

.btn-pricing-popular:hover {
    background: var(--heading-color);
    border-color: var(--heading-color);
}

/* Other Options CTA */
.other-options-cta {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.1) 0%, rgba(199, 162, 90, 0.05) 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(199, 162, 90, 0.2);
}

.other-options-cta h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.other-options-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767.98px) {
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .pricing-price .amount {
        font-size: 2.5rem;
    }
    
    .other-options-cta {
        padding: 40px 30px;
    }
    
    .other-options-cta h4 {
        font-size: 1.3rem;
    }
}

/*============ code pour cacher les fonctionalités avec voir + ============*/
/* Bouton Voir Plus */
.toggle-features-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: transparent;
    border: 2px solid rgba(199, 162, 90, 0.3);
    border-radius: 8px;
    color: var(--main-color);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-features-btn:hover {
    background: rgba(199, 162, 90, 0.1);
    border-color: var(--main-color);
}

/* Icône de flèche */
.toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Rotation de la flèche quand ouvert */
.toggle-features-btn.active .toggle-icon {
    transform: rotate(180deg);
}

/* Container des fonctionnalités cachées */
.hidden-features {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    max-height: 0;
    opacity: 0;
}

.hidden-features.show {
    max-height: 500px; /* Ajustez selon vos besoins */
    opacity: 1;
}

/* ============================================================ */
/*
/*    =============== CSS DE LA NAV BAR ================= */
/*
/*===========================================================*/

/* Top bar */
.navbar-top.style-3 {
    background: var(--heading-color);
    padding: 12px 0;
    border-bottom: 1px solid rgba(199, 162, 90, 0.25);
}

.navbar-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 28px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    /* Cache le 3ème élément (réseaux sociaux) */
    .contact-info .contact-item:nth-child(3) {
        display: none;
    }
    
    /* Réduit l'espacement entre téléphone et email */
    .contact-info {
        gap: 15px;
        justify-content: center; /* Optionnel : centre les éléments */
    }
}

@media (max-width: 394px) {
    .contact-info {
        gap: 10px;
        flex-wrap: wrap; /* Permet retour à la ligne si nécessaire */
        justify-content: center;
    }
    
    /* Ajuste la taille de la police si trop grand */
    .contact-text.gold-text {
        font-size: 12px;
    }
    
    .contact-icon-nav {
        width: 30px;
        height: 30px;
    }
    
    .contact-icon-nav i {
        font-size: 12px;
    }
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(199,162,90,0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.contact-icon-nav i {
    color: var(--main-color);
    font-size: 14px;
}

.contact-item:hover .contact-icon-nav {
    background: var(--main-color);
}

.contact-item:hover .contact-icon-nav i {
    color: #fff;
}

.contact-text.gold-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
    transition: 0.3s;
}

.contact-item:hover .contact-text {
    color: #fff;
}
                        .mega-footer {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.08) 0%, rgba(199, 162, 90, 0.03) 100%) !important;
    padding: 8px 10px !important;
    text-align: center !important;
    border-top: 1px solid rgba(199, 162, 90, 0.2) !important;
}
    .mega-footer {
        padding: 15px 20px !important;
        background: #fff !important;
        border-radius: 8px !important;
    }

    
.btn-view-all {
    display: inline-block !important;
    text-align: center;
    padding: 12px 25px !important;
    max-height: 50px !important;
    background: var(--main-color) !important;
    color: #fff !important;
    border-radius: 15px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-view-all:hover {
    background: #a88a4a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(199, 162, 90, 0.3) !important;
}

/* Modern CTA button */
.btn-essai-modern {
    background: linear-gradient(135deg, var(--main-color) 0%, #b69752 100%);
    color: #fff;
    padding: 5px 22px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.btn-essai-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.5s;
}

.btn-essai-modern:hover::before {
    left: 100%;
}

.btn-essai-modern:hover {
    background: transparent;
    color: var(--main-color);
    border-color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(199,162,90,0.35);
}

.btn-icon i {
    font-size: 12px;
    transition: 0.3s;
}

.btn-essai-modern:hover .btn-icon i {
    transform: translateX(3px);
}

.desktop-only {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-top-inner {
        justify-content: center;
    }
    .desktop-only {
        display: none !important;
    }
}

/* ----- MEGA MENU REWORK PREMIUM ----- */

.mega-menu-content {
    padding: 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
}

/* Grid premium */
.new-mega {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 30px;
}

.new-mega .mega-col h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
    padding-left: 8px;
}

.new-mega .mega-col ul {
    padding: 0;
    list-style: none;
}

.new-mega .mega-col ul li {
    margin-bottom: 7px;
}

.new-mega .mega-col a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: 0.25s;
    padding-left: 0;
}

.new-mega .mega-col a:hover {
    color: var(--main-color);
    padding-left: 5px;
}

/* Footer zone */
.mega-footer {
    background: #f4f4f4;
    padding: 14px 20px;
    text-align: center;
    border-top: 1px solid #e4e4e4;
}



/* Responsive mega */
@media (max-width: 992px) {
    .new-mega {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .new-mega {
        grid-template-columns: 1fr;
    }
}


/* ===== CORRECTION DU STICKY BACKGROUND (pour TOUS les écrans) ===== */

/* ===== NAVBAR OPTIMISÉE 991px-1200px ===== */
@media (min-width: 991px) and (max-width: 1200px) {
    /* Réduction des polices des liens */
    .navbar-area-3 .navbar-nav li a {
        font-size: 13px !important;
        padding: 10px 6px !important;
        white-space: nowrap;
        transition: color 0.3s ease !important;
    }
    
    /* Réduction spécifique des textes longs */
    .navbar-area-3 .navbar-nav li.mega-menu > a {
        font-size: 12.5px !important;
    }
    
    .navbar-area-3 .navbar-nav li:nth-child(4) a, /* Essai gratuit */
    .navbar-area-3 .navbar-nav li:nth-child(5) a, /* Parrainage */
    .navbar-area-3 .navbar-nav li:nth-child(8) a { /* Assistance */
        font-size: 12.5px !important;
    }
    
    /* Ajustement des espacements */
    .navbar-area-3 .navbar-nav {
        gap: 5px !important;
    }
    
    /* Réduction du logo pour gagner de l'espace */
    .navbar-area-3 .logo img {
        max-width: 100px;
    }
    
    /* Assurer l'alignement vertical */
    .navbar-area-3 .navbar-collapse .navbar-nav {
        align-items: center;
    }
    
    .navbar-area-3 .nav-container {
        border-bottom: 1px solid var(--main-color);
    }
    
    /* ===== CORRECTIONS SPÉCIFIQUES POUR STICKY DANS CETTE TRANCHE ===== */
    .navbar-area-3.sticky-active .navbar-nav li a {
        font-size: 13px !important;
        padding: 10px 6px !important;
    }
    
    .navbar-area-3.sticky-active .navbar-nav li.mega-menu > a {
        font-size: 12.5px !important;
    }
    
    .navbar-area-3.sticky-active .navbar-nav li:nth-child(4) a,
    .navbar-area-3.sticky-active .navbar-nav li:nth-child(5) a,
    .navbar-area-3.sticky-active .navbar-nav li:nth-child(8) a {
        font-size: 12.5px !important;
    }
    
    .navbar-area-3.sticky-active .navbar-nav {
        gap: 5px !important;
    }
    
    .navbar-area-3.sticky-active .logo img {
        max-width: 100px;
    }
    
}

/* Animation pour l'apparition de la navbar sticky (pour tous les écrans) */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================ */
/*     CORRECTION DU HOVER SUR LA NAVBAR AREA-3                */
/* ============================================================ */

/* Désactive le fond au hover sur le li */
.navbar-area-3 .nav-container .navbar-collapse .navbar-nav>li:hover {
    background: transparent !important;
}

/* Désactive le fond au hover sur le li en mode sticky */
.navbar-area-3.sticky-active .nav-container .navbar-collapse .navbar-nav>li:hover {
    background: transparent !important;
}

/* Hover uniquement sur le lien - seulement changement de couleur */
.navbar-area-3 .nav-container .navbar-collapse .navbar-nav>li a:hover {
    color: var(--main-color) !important;
    background: transparent !important;
}

/* Hover en mode sticky */
.navbar-area-3.sticky-active .nav-container .navbar-collapse .navbar-nav>li a:hover {
    color: var(--main-color) !important;
    background: transparent !important;
}

/* ============================================================ */
/*     CORRECTION SPÉCIFIQUE POUR 991px-1200px                 */
/* ============================================================ */
@media (min-width: 991px) and (max-width: 1200px) {
    .navbar-area-3 .nav-container .navbar-collapse .navbar-nav>li:hover {
        background: transparent !important;
    }
    .navbar-area-3.sticky-active {
        background: var(--heading-color) !important;
    }
    
    .navbar-area-3.sticky-active .nav-container .navbar-collapse .navbar-nav>li:hover {
        background: transparent !important;
    }
    
    .navbar-area-3 .nav-container .navbar-collapse .navbar-nav>li a:hover {
        color: var(--main-color) !important;
        background: transparent !important;
    }
    
    .navbar-area-3.sticky-active .nav-container .navbar-collapse .navbar-nav>li a:hover {
        color: var(--main-color) !important;
        background: transparent !important;
    }
}



/* ============================================================ */
/*
/    =============== REFONTE DU HERO ================= */
/*
/===========================================================*/


/* ===== CORRECTION DU HERO SLIDER ===== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Conteneur des backgrounds */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* Images de fond - TOUTES CACHÉES PAR DÉFAUT */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
    z-index: 1;
}

/* Adaptation mobile pour toutes les images */
@media (max-width: 768px) {
    .hero-bg-image {
        background-size: contain;
        background-position: center top;
    }
    
    /* Pour la 2ème image spécifique */
    .hero-bg-image[data-slide="1"] {
        background-size: contain;
        background-position: center center;
    }
}


/* UNE SEULE IMAGE ACTIVE À LA FOIS */
.hero-bg-image.active {
    opacity: 1;
    visibility: visible;
}

/* Les slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    z-index: 10;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Assurez-vous que les autres éléments sont au-dessus des backgrounds */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center, 
        rgba(35,31,32,0.2) 0%,      /* plus transparent */
        rgba(35,31,32,0.4) 50%,     /* intermédiaire */
        rgba(35,31,32,0.6) 100%     /* plus foncé au bord */
    );
    z-index: 2;
}

.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center, 
        transparent 35%, 
        rgba(0,0,0,0.4) 100%
    );
    z-index: 3;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
}

/* ===== STYLES POUR LE SLIDE 1 - IMAGE FIXE AVEC HOVER ===== */

/* Container principal pour contrôler la taille */
.image-showcase-container {
    position: relative;
    margin: 2rem 0 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px; /* Largeur maximale pour éviter qu'elle soit trop grande */
    margin-left: auto;
    margin-right: auto;
    z-index: 5;
}

/* Conteneur pour l'image avec effets */
.device-container {
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
}

/* Image principale */
.device-image {
    width: 100%;
    max-width: 600px; /* Largeur maximale */
    height: auto;
    display: block;
    position: relative;
    z-index: 3;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center bottom;
}

/* Ombre portée sous l'image */
.image-shadow {
    position: absolute;
    bottom: -15px;
    left: 5%;
    width: 90%;
    height: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 2;
    transition: all 0.5s ease;
}

/* Highlight effet de lumière */
.image-highlight {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    border-radius: 16px;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* ===== EFFETS AU SURVOL ===== */
.device-container:hover {
    transform: translateY(-5px);
}

.device-container:hover .device-image {
    transform: scale(1.03);
    filter: drop-shadow(0 15px 40px rgba(199, 162, 90, 0.3)) brightness(1.05);
}

.device-container:hover .image-shadow {
    bottom: -20px;
    width: 95%;
    height: 40px;
    filter: blur(15px);
    background: rgba(199, 162, 90, 0.2);
}

.device-container:hover .image-highlight {
    opacity: 1;
}

.fidelisation{
    padding-top: 115px;
}
/* ===== RESPONSIVE DESIGN ===== */

/* Desktop large (1200px et +) */
@media (min-width: 1200px) {
    .image-showcase-container {
        max-width: 700px;
        margin: 2.5rem 0 3.5rem;
    }
    
    .device-image {
        max-width: 650px;
    }
    
    .cta-row {
        margin-top: 1rem;
    }
}

/* Desktop standard (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .fidelisation{
        padding-top: 130px;
    }

    .image-showcase-container {
        max-width: 600px;
        margin: 2rem 0 3rem;
    }
    
    .device-image {
        max-width: 550px;
    }
}

/* Tablet paysage (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .fidelisation{
        padding-top: 130px;
    }
    .image-showcase-container {
        padding-top: 110px;
        max-width: 500px;
        margin: 1.5rem 0 2.5rem;
    }
    
    .device-image {
        max-width: 450px;
    }
    
    .hero-content {
        padding-top: 80px;
    }
}

/* Tablet portrait (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .fidelisation{
        padding-top: 120px;
    }

    .image-showcase-container {
        padding-top: 120px;
        max-width: 400px;
        margin: 1rem 0 2rem;
    }
    
    .device-image {
        max-width: 350px;
    }
    
    .device-container:hover {
        transform: translateY(-3px);
    }
    
    .device-container:hover .device-image {
        transform: scale(1.02);
    }
}

/* Mobile (jusqu'à 575px) */
@media (max-width: 575px) {
    .fidelisation{
        padding-top: 150px;
    }

    .image-showcase-container {
        padding-top: 130px;
        max-width: 300px;
        margin: 0.5rem 0 1.5rem;
    }
    
    .device-image {
        max-width: 280px;
    }
    
    .image-shadow {
        bottom: -8px;
        height: 15px;
        filter: blur(5px);
    }
    
    /* Réduire les effets hover sur mobile pour éviter les comportements bizarres */
    .device-container:hover {
        transform: none;
    }
    
    .device-container:hover .device-image {
        transform: none;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
    }
    
    .device-container:hover .image-shadow {
        bottom: -8px;
        height: 15px;
        filter: blur(5px);
        background: rgba(0, 0, 0, 0.4);
    }
}

/* Pour les très grands écrans (1600px et +) */
@media (min-width: 1600px) {
    .image-showcase-container {
        max-width: 800px;
        margin: 3rem 0 4rem;
    }
    
    .device-image {
        max-width: 750px;
    }
}

/* Ajustements généraux du contenu */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
}

.hero-title {
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    margin-bottom: 1.5rem;
    max-width: 500px;
    text-align: center;
    font-size: 1.1rem;
}

.cta-row {
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    z-index: 10;
    position: relative;
}

/* S'assurer que les CTA sont toujours visibles */
@media (max-height: 700px) {
    .hero-slide {
        padding-top: 80px !important;
    }
    
    .image-showcase-container {
        margin: 1rem 0 2rem;
    }
    
    .device-image {
        max-width: 400px;
    }
}

/* Option: Ajouter un effet de parallaxe léger au scroll si vous voulez */
 .device-container {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.device-image {
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

.device-container:hover .device-image {
    transform: translateZ(20px);
} 

/* ============================================================ */
/*    =============== TÉMOIGNAGES  ================= */
/* ============================================================ */

/* ===== SECTION GÉNÉRALE ===== */
.testimonials-area {
    position: relative;
    overflow: hidden;
}

/* ===== CARD HORIZONTALE (Page Index) ===== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(199, 162, 90, 0.25);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--main-color), #a88a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 32px;
    color: #fff;
}

.testimonial-author {
    flex: 1;
    min-width: 150px;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 3px;
    font-family: var(--heading-font);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #666;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-body {
    position: relative;
    padding-left: 15px;
}

.quote-icon {
    position: absolute;
    top: -5px;
    left: -5px;
    font-size: 30px;
    color: rgba(199, 162, 90, 0.15);
    z-index: 0;
}

.testimonial-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.testimonial-card:hover .testimonial-avatar,
.testimonial-card-vertical:hover .testimonial-avatar,
.testimonial-card-compact:hover .testimonial-icon {
    animation: float 2s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .testimonials-slider {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 767.98px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card,
    .testimonial-card-vertical,
    .testimonial-card-compact {
        padding: 25px 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author {
        text-align: center;
    }
    
    .testimonial-rating {
        justify-content: center;
    }
}

/* ============================================================ */
/*    =============== CSS POUR LES IMAGES DES FONCTIONNALITÉS DE L'INDEX  ================= */

@media (max-width: 768px) {
    .mobile-fonc{
        height: 350px;
    }

}


/* ============================================================ */
/*
/*    =============== CSS DE LA PAGE COMMENTAIRES ================= */
/*
/*===========================================================*/

/* ===== HERO SECTION ===== */
.comments-hero {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.05) 0%, rgba(199, 162, 90, 0.02) 100%);
    padding: 120px 0 80px;
    position: relative;
}

.comments-hero .hero-content .sub-title {
    color: var(--main-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.comments-hero .hero-content .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
    line-height: 1.2;
    margin-bottom: 20px;
}

.comments-hero .hero-content .lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.comments-hero .hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.comments-hero .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(199, 162, 90, 0.1);
    border-radius: 12px;
}

.comments-hero .stat-item i {
    font-size: 30px;
    color: var(--main-color);
}

.comments-hero .stat-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 3px;
    font-family: var(--heading-font);
}

.comments-hero .stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* ===== FILTRES ET STATISTIQUES ===== */
.comments-filter-bar {
    background: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: #fff;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff !important;
}

.comments-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(199, 162, 90, 0.1);
    border-radius: 10px;
}

.stat-badge i {
    font-size: 18px;
    color: var(--main-color);
}

.stat-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heading-color);
}

/* ===== LISTE DES COMMENTAIRES ===== */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(199, 162, 90, 0.15);
    border-color: var(--main-color);
}

.comment-card.highlight {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.05) 0%, rgba(199, 162, 90, 0.02) 100%);
    border: 2px solid rgba(199, 162, 90, 0.3);
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
}

.comment-author-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
    font-family: var(--heading-font);
}

.comment-author-info .profession {
    font-size: 0.9rem;
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.comment-date {
    font-size: 0.85rem;
    color: #999;
}

.comment-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-rating i {
    font-size: 16px;
    color: #ffc107;
}

.comment-body {
    margin-bottom: 20px;
}

.comment-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

.comment-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(199, 162, 90, 0.1);
    border-radius: 20px;
    color: var(--main-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.comment-action-btn:hover {
    background: var(--main-color);
    color: #fff;
}

.comment-action-btn i {
    font-size: 14px;
}

.comment-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 20px;
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 600;
}

.verified-badge i {
    font-size: 12px;
}

/* ===== FORMULAIRE DE COMMENTAIRE ===== */
.comment-form-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: 50px;
    border: 2px solid rgba(199, 162, 90, 0.2);
}

.comment-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.comment-form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.comment-form-header p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

.rating-input {
    text-align: center;
    margin-bottom: 30px;
}

.rating-input h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    direction: rtl; /* Pour le système de rating inversé */
}

.stars input {
    display: none;
}

.stars label {
    font-size: 40px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.stars label:hover,
.stars label:hover ~ label,
.stars input:checked ~ label {
    color: #ffc107;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(199, 162, 90, 0.1);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-col {
    flex: 1;
    min-width: 250px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.privacy-note {
    font-size: 0.85rem;
    color: #666;
    max-width: 400px;
}

.privacy-note a {
    color: var(--main-color);
    text-decoration: underline;
}

/* ===== PAGINATION ===== */
.comments-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: #fff;
    color: var(--heading-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    background: #fff;
    color: var(--heading-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover,
.page-number.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

/* ===== MODAL DE CONNEXION ===== */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(199, 162, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.modal-close:hover {
    background: var(--main-color);
    color: #fff;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.modal-header p {
    color: #666;
    font-size: 1rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
    color: var(--heading-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: var(--main-color);
    background: rgba(199, 162, 90, 0.05);
}

.social-btn.google i {
    color: #DB4437;
}

.social-btn.facebook i {
    color: #4267B2;
}

.divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #666;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    padding: 0 15px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    width: auto;
}

.remember-me label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

.forgot-password {
    color: var(--main-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

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

.btn-login {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--main-color) 0%, #a88a4a 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 162, 90, 0.3);
}

.register-link {
    text-align: center;
    margin-top: 25px;
    color: #666;
}

.register-link a {
    color: var(--main-color);
    font-weight: 600;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .comments-hero {
        padding: 100px 0 60px;
    }
    
    .comments-hero .title {
        font-size: 2rem;
    }
    
    .comments-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .comments-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .comment-form-wrapper {
        padding: 30px 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-author {
        width: 100%;
    }
    
    .comment-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .comment-card {
        padding: 20px;
    }
    
    .comment-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .comment-form-header h3 {
        font-size: 1.5rem;
    }
    
    .stars label {
        font-size: 30px;
    }
}

/* ===== CORRECTION TÉMOIGNAGES MOBILE ===== */
@media (max-width: 768px) {
    .testimonials-slider {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 20px 0;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .testimonial-card {
        flex: 0 0 85%;
        min-width: 280px;
        scroll-snap-align: start;
        margin: 0;
    }
    
    /* Masquer la scrollbar mais garder la fonctionnalité */
    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }
    
    .testimonials-slider {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* ===== BOUTONS SECTION COMMENTAIRES ===== */
.testimonials-area .testimonials-slider {
    margin-bottom: 30px;
}

/* Container pour les boutons */
.testimonials-area .testimonials-slider + a,
.testimonials-area .testimonials-slider + button {
    display: inline-block;
    margin: 0 8px 15px 8px;
}

/* Wrapper pour centrer les boutons */
.comments-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    padding: 0 15px;
}

@media (max-width: 576px) {
    .comments-buttons-wrapper {
        flex-direction: column;
        width: 100%;
    }
    
    .comments-buttons-wrapper a,
    .comments-buttons-wrapper button {
        width: 100%;
        max-width: 300px;
        margin: 0;
        text-align: center;
        justify-content: center;
    }
    
    .btn-essai-modern {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================================ */
/*    =============== CSS POUR LA PAGE COMMENTAIRES ================= */
/* ============================================================ */
/* Statistiques globales */
.reviews-stats-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stats-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
}

.rating-stars {
    font-size: 24px;
    color: #ffc107;
    margin: 10px 0;
}

.total-reviews {
    color: #666;
    font-size: 14px;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.distribution-row {
    display: grid;
    grid-template-columns: 60px 1fr 50px;
    gap: 12px;
    align-items: center;
}

.star-label {
    font-size: 14px;
    font-weight: 600;
}

.progress-bar-wrapper {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    transition: width 0.3s ease;
}

.count-label {
    text-align: right;
    font-size: 14px;
    color: #666;
}

/* Carte d'accueil utilisateur */
.user-welcome-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}


.welcome-content {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
}

.welcome-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.welcome-icon.success {
    background: linear-gradient(135deg, #f2ca79, #c7a25a);
}

.welcome-text h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #1a1a1a;
}

.welcome-text p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

/* Barre de filtres */
.comments-filter-bar {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-section {
    flex: 1;
    min-width: 300px;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.filter-btn.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-section label {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.sort-section .form-select {
    min-width: 180px;
    border-radius: 8px;
}

/* Carte de commentaire */
.comment-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.comment-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.comment-author {
    display: flex;
    gap: 16px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), #ff6b6b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.comment-author-info h5 {
    margin: 0 0 4px 0;
    font-size: 18px;
}

.profession {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.comment-date {
    font-size: 13px;
    color: #999;
}

.comment-rating {
    color: #ffc107;
    font-size: 18px;
}

.comment-rating span {
    color: #333;
    font-weight: 600;
    margin-left: 8px;
}

.comment-body p {
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.comment-actions {
    display: flex;
    gap: 12px;
}

.comment-action-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-action-btn:hover {
    background: #f5f5f5;
    color: var(--main-color);
}

.comment-action-btn.voted {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
}

.comment-status {
    display: flex;
    gap: 12px;
}

.verified-badge {
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Affichage des infos utilisateur */
.user-info-display {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.05), rgba(199, 162, 90, 0.1));
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 500;
}

.info-item i {
    color: var(--main-color);
    font-size: 16px;
}

/* Formulaire de commentaire */
.comment-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid var(--main-color);
}

.comment-form-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.comment-form-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.close-form-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.close-form-btn:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.rating-input {
    text-align: center;
    margin-bottom: 32px;
}

.stars-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
}

.stars-input input {
    display: none;
}

.stars-input label {
    font-size: 40px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s;
}

.stars-input label:hover,
.stars-input label:hover ~ label,
.stars-input input:checked ~ label {
    color: #ffc107;
    transform: scale(1.1);
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group textarea {
    width: 100%;
    min-height: 150px;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--main-color);
}

.char-count {
    text-align: right;
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

.form-footer {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
}

.no-reviews {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-reviews i {
    font-size: 64px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-header {
        grid-template-columns: 1fr;
    }
    
    .user-welcome-card {
        flex-direction: column;
        text-align: center;
    }
    
    .welcome-content {
        flex-direction: column;
        text-align: center;
    }
    
    .comments-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-section,
    .sort-section {
        width: 100%;
    }
}


/* ==================      CSS POUR LES ALLERTS  =========================== */

/* === ALERTES THÈME MODERNE === */
#theme-alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    width: 100%;
}

.theme-alert {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s ease;
    position: relative;
}

.theme-alert.hiding {
    animation: slideOutRight 0.4s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
}

.alert-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 15px;
}

.alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.theme-alert.success .alert-icon {
    background: rgba(46, 204, 113, 0.1);
    color: #c7a25a;
    border: 2px solid #c7a25a;
}

.theme-alert.error .alert-icon {
    background: rgba(231, 76, 60, 0.1);
    color: #c7a25a;
    border: 2px solid #c7a25a;
}

.theme-alert.warning .alert-icon {
    background: rgba(241, 196, 15, 0.1);
    color: #c7a25a;
    border: 2px solid #c7a25a;
}

.theme-alert.info .alert-icon {
    background: rgba(52, 152, 219, 0.1);
    color: #c7a25a;
    border: 2px solid #c7a25a;
}

.theme-alert.primary .alert-icon {
    background: rgba(199, 162, 90, 0.1);
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.alert-message {
    flex: 1;
    color: var(--heading-color);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.alert-close {
    background: none;
    border: none;
    color: #95a5a6;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.alert-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--heading-color);
    transform: rotate(90deg);
}

/* Barre de progression */
.alert-progress {
    height: 3px;
    background: rgba(199, 162, 90, 0.3);
    width: 100%;
    transform-origin: left;
    animation: progressBar 5s linear forwards;
}

.theme-alert.success .alert-progress {
    background: rgba(46, 204, 113, 0.3);
}

.theme-alert.error .alert-progress {
    background: rgba(231, 76, 60, 0.3);
}

.theme-alert.warning .alert-progress {
    background: rgba(241, 196, 15, 0.3);
}

.theme-alert.info .alert-progress {
    background: rgba(52, 152, 219, 0.3);
}

@keyframes progressBar {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Types d'alertes avec bordure colorée */




/* Effet de survol */
.theme-alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    #theme-alert-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    

    
    .alert-content {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .alert-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .alert-message {
        font-size: 13px;
    }
}

/* Animation de shake pour les erreurs importantes */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.theme-alert.important {
    animation: slideInRight 0.4s ease, shake 0.5s ease 0.4s;
}

/* Overlay */
.logout-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Contenu */
.logout-modal-content {
    background: #fff;
    width: 90%;
    max-width: 360px;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    animation: scaleIn 0.2s ease;
}

.logout-modal-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.logout-modal-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Boutons */
.logout-actions {
    display: flex;
    gap: 12px;
}

.logout-actions button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.btn-cancel {
    background: #eee;
    color: #333;
}

.btn-confirm {
    background: #e53935;
    color: #fff;
}

/* Animation */
@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Styles pour les erreurs de formulaire */
.input-error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05) !important;
}

.input-error:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
}

.field-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    font-family: var(--body-font);
    animation: fadeIn 0.3s ease;
}

/* Animation pour les erreurs */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.input-error {
    animation: shake 0.5s ease;
}

@media (max-width: 575.98px) {
    .mobileText{
        font-size: 4px;
    }
}
