/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 .process_step .processtep-list::before {
    content: '';
    width: 6px;
    height: 27px;
    background-color: #88BD2D;
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    border-radius: 0 0 100px 0;
}

:root {
    --primary-color: #0E4171;
    --primary-dark: #0a2d4f;
    --primary-light: #1a5a8f;
    --secondary-color: #88BD2D;
    --pastel-blue: #E8F4F8;
    --pastel-green: #F0F8E8;
    --pastel-lavender: #F5F0F8;
    --pastel-peach: #FFF5F0;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-border: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-lavender) 50%, var(--pastel-peach) 100%);
    min-height: 100vh;
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Progress Bar */
.progress-bar-container {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(14, 65, 113, 0.1);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Barre de progression fixée en mobile lors du scroll */
@media (max-width: 768px) {
    .progress-bar-container.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: 8px;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        animation: slideDownProgress 0.3s ease-out;
    }

    .progress-bar-container.fixed .progress-bar-fill {
        height: 8px;
    }

    @keyframes slideDownProgress {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Ajouter un padding en haut du form quand la barre est fixée */
    .form-container.progress-fixed {
        padding-top: 20px;
    }
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    width: 20%; /* 1/5 slides */
    transition: width 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(136, 189, 45, 0.5);
}

/* Mobile Header */
.mobile-header {
    display: none;
    background: var(--white);
    padding: 18px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(14, 65, 113, 0.08);
    border-bottom: 2px solid var(--pastel-blue);
}

.mobile-logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.mobile-title {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

/* Main Container */
.container-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.main-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    max-height: calc(100vh - 30px);
}

/* Left Panel */
.left-panel {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-dark);
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--primary-color);
    overflow-y: auto;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 180px;
    height: auto;
}

/* Desktop header au-dessus du form */
.desktop-header {
    margin-bottom: 15px;
    text-align: center;
}

.desktop-title {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.info-section h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
}

.benefits {
    margin-bottom: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background: rgba(14, 65, 113, 0.05);
    border-radius: 10px;
    transition: var(--transition);
    border-left: 2px solid transparent;
}

.benefit-item:hover {
    background: linear-gradient(90deg, var(--pastel-blue), var(--pastel-green));
    border-left-color: var(--primary-color);
    transform: translateX(3px);
}

.benefit-item .emoji {
    font-size: 20px;
    margin-right: 12px;
    min-width: 25px;
}

.benefit-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    color: #0e4182;
    font-weight: bold;
    }

.testimonials {
    margin-top: auto;
}

.testimonials h3 {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial {
    background: rgba(136, 189, 45, 0.08);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid var(--secondary-color);
}

.testimonial p {
    margin-bottom: 8px;
    font-style: italic;
    font-size: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.testimonial span {
    font-size: 11px;
    opacity: 0.7;
    color: var(--text-light);
}

/* Trustpilot Slider */
.testimonials-slider {
    background: var(--white);
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gray-border);
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 2px;
}

.tp-stars {
    color: #00b67a;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.tp-text {
    color: #00b67a;
    font-weight: 700;
    font-size: 12px;
}

.tp-score {
    color: var(--text-light);
    font-size: 9px;
}

.testimonials-container {
    position: relative;
    min-height: 50px;
    max-height: 50px;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 3px 2px;
    animation: fadeInSlide 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-stars {
    color: #00b67a;
    font-size: 10px;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.testimonial-text {
    font-size: 10px;
    color: var(--text-dark);
    line-height: 1.3;
    font-style: italic;
    margin-bottom: 3px;
}

.testimonial-author {
    display: block;
    font-size: 9px;
    color: var(--text-light);
    font-weight: 600;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00b67a;
    width: 18px;
    border-radius: 3px;
}

.dot:hover {
    background: #00b67a;
    opacity: 0.7;
}

/* Right Panel - Form */
.right-panel {
    padding: 30px 30px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-y: auto;
    max-height: calc(100vh - 30px);
}

.processtep-list{
      font-size: 13px;
  color: #0E4171;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 19px;
  position: relative;list-style: none;
  padding-left: 26px;
      list-style: none;
}

.form-container {
    width: 100%;
    max-width: 500px;
    position: relative;
    min-height: 450px;
}

/* Form Slides */
.form-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
}

.form-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: opacity 0.5s ease-in-out, visibility 0s linear 0s;
}

.form-slide.exit {
    opacity: 0;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}

.form-slide h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.slide-description {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

/* Form Groups */
.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #666;
    font-weight: 500;
    font-size: 13px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--gray-border);
    border-radius: 10px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 30, 111, 0.1);
}

/* Button Grid */
.button-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    text-align: left;
    width: 100%;
}

.option-btn:hover {
    border-color: var(--primary-color);
    background: var(--pastel-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.option-btn.selected {
    border-color: var(--secondary-color);
    background: var(--pastel-blue);
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(136, 189, 45, 0.1);
}

.option-btn .emoji {
    font-size: 26px;
    min-width: 32px;
}

/* Navigation Buttons */
.navigation-buttons {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.nav-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
}

.next-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.next-btn.animate-submit {
    animation: pulseGradient 2s ease-in-out infinite, scaleButton 0.6s ease-out;
    box-shadow: 0 0 0 0 rgba(136, 189, 45, 0.7);
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.prev-btn {
    background: var(--gray-light);
    color: var(--text-dark);
}

.prev-btn:hover {
    background: var(--gray-border);
}

.cta-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.cta-btn.animate-validation {
    animation: pulseGradient 2s ease-in-out infinite, scaleButton 0.6s ease-out;
    box-shadow: 0 0 0 0 rgba(136, 189, 45, 0.7);
}

@keyframes pulseGradient {
    0%, 100% {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        box-shadow: 0 0 0 0 rgba(136, 189, 45, 0.7);
    }
    50% {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        box-shadow: 0 0 0 15px rgba(136, 189, 45, 0);
    }
}

@keyframes scaleButton {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Submit Button in Form */
.form-submit-btn-container {
    margin-top: 20px;
    margin-bottom: 10px;
}

.submit-form-btn {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(136, 189, 45, 0.3);
}

.submit-form-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(136, 189, 45, 0.4);
}

.submit-form-btn:active {
    transform: translateY(-1px);
}

/* Styles mobile pour les labels */
@media (max-width: 480px) {
    .form-group label {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 13px;
        padding: 0;
        margin-bottom: 6px;
        display: block;
    }
}

/* RGPD Checkbox */
.rgpd-check {
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.rgpd-check input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.rgpd-check label {
    font-size: 10px;
    color: var(--text-light);
    line-height: 1.3;
}

.rgpd-check a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Animation de surlignage pour RGPD */
.rgpd-check.highlight {
    animation: pulseRgpd 2s ease-in-out infinite;
    background-color: rgba(136, 189, 45, 0.1);
    padding: 12px;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(14, 65, 113, 0.3);
    transition: all 0.3s ease;
}

@keyframes pulseRgpd {
    0%, 100% {
        box-shadow: 0 0 20px rgba(14, 65, 113, 0.3);
        border-color: var(--secondary-color);
    }
    50% {
        box-shadow: 0 0 30px rgba(136, 189, 45, 0.6);
        border-color: var(--primary-color);
    }
}

/* Success Slide */
.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    margin: 0 auto 20px;
}

/* Privacy Footer */
.privacy-footer {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-border);
    text-align: center;
    font-size: 9px;
    color: var(--text-light);
}

.privacy-footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.privacy-footer a:hover {
    color: var(--primary-color);
}

.privacy-footer span {
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        display: flex;
        flex-direction: column;
    }

    /* Afficher le header mobile */
    .mobile-header {
        display: block;
    }

    /* Cacher le titre desktop sur mobile */
    .desktop-header {
        display: none;
    }

    /* Mettre le formulaire en premier sur tablette/mobile */
    .right-panel {
        order: 1;
    }

    .left-panel {
        order: 2;
        padding: 40px 30px;
    }

    .testimonials {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 6px;
    }

    .container-wrapper {
        padding: 10px;
        min-height: auto;
        align-items: flex-start;
    }

    .main-container {
        border-radius: 15px;
        min-height: auto;
        max-height: none;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    /* Formulaire en premier sur mobile */
    .right-panel {
        order: 1;
    }

    /* Info service en bas sur mobile */
    .left-panel {
        order: 2;
        padding: 30px 20px;
    }

    /* Cacher le logo dans info panel sur mobile */
    .left-panel .logo-container {
        display: none;
    }

    .info-section h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .benefit-item {
        padding: 12px;
        margin-bottom: 15px;
    }

    .benefit-item .emoji {
        font-size: 20px;
    }

    .benefit-item p {
        font-size: 14px;
    }

    .right-panel {
        padding: 30px 20px ; /* Extra padding for fixed button */
    }

    .form-slide h2 {
        font-size: 26px;
    }

    .slide-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* Fixed Navigation on Mobile */
    .navigation-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 15px 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
        margin-top: 0;
    }

    .nav-btn {
        padding: 18px 25px;
        font-size: 15px;
    }

    .option-btn {
        padding: 16px;
    }

    .option-btn .emoji {
        font-size: 28px;
        min-width: 35px;
    }

    .form-slide h4 {
        font-size: 17px;
    }


}

@media (max-width: 480px) {
    .mobile-title {
        font-size: 20px;
    }

    .form-slide h2 {
        font-size: 24px;
        color: var(--primary-color);
    }

    .form-slide h4 {
        font-size: 18px;
        color: var(--primary-color);
        padding: 0 0 10px 0;
        margin-bottom: 15px;
        border-bottom: 2px solid var(--pastel-blue);
        font-weight: 600;
    }

    .form-slide {
        background: rgba(255, 255, 255, 0.6);
        padding: 20px;
        border-radius: 15px;
        border: 1px solid rgba(232, 244, 248, 0.8);
        box-shadow: 0 2px 10px rgba(14, 65, 113, 0.05);
    }

    .option-btn {
        font-size: 16px;
        padding: 16px;
        background: var(--white);
        border: 2px solid #E8F4F8;
    }

    .option-btn .emoji {
        font-size: 26px;
        min-width: 32px;
    }

    .option-btn:hover {
        background: var(--pastel-blue);
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .option-btn.selected {
        background: var(--pastel-blue);
        border: 2px solid var(--secondary-color);
        box-shadow: 0 0 0 3px rgba(136, 189, 45, 0.15);
        font-weight: 600;
    }

    .nav-btn {
        padding: 18px 22px;
        font-size: 16px;
    }

    .next-btn {
        background: var(--secondary-color);
        box-shadow: 0 3px 10px rgba(136, 189, 45, 0.3);
        border: 2px solid transparent;
    }

    .next-btn:hover {
        background: var(--primary-color);
        border-color: var(--secondary-color);
    }

    .form-group input:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 3px rgba(136, 189, 45, 0.1);
        background: var(--white);
    }

    .form-group input {
        border: 2px solid #E8F4F8;
        background: var(--white);
        font-size: 16px;
    }

    /* Bouton de navigation fixé en bas sur mobile */
    .navigation-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 15px 20px;
        box-shadow: 0 -4px 15px rgba(14, 65, 113, 0.1);
        margin: 0;
        z-index: 100;
        border-top: 2px solid var(--pastel-blue);
    }

    /* Ajouter de l'espace en bas du formulaire pour le bouton fixé */
    .form-container {
        padding-bottom: 100px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 20px;
    }

    /* Progress bar colorée sur mobile */
    .progress-bar-container {
        background: linear-gradient(90deg, var(--pastel-lavender), var(--pastel-peach));
        height: 8px;
    }

    /* Emojis plus grands et animés */
    .form-slide h4 .emoji {
        font-size: 28px;
        display: inline-block;
        animation: bounceEmoji 2s ease-in-out infinite;
    }

    @keyframes bounceEmoji {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

.form-slide.animate-in {
    animation: slideInRight 0.4s ease forwards;
}

.form-slide.animate-out {
    animation: slideOutLeft 0.4s ease forwards;
}

/* Error States */
input.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* Loading State */
.nav-btn.loading {
    position: relative;
    color: transparent;
}

.nav-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pac Container Google Autocomplete */
.pac-container {
    position: absolute;
    top: 100%;
    left: 0;
    float: left;
    min-width: 10rem;
    margin: 0.125rem 0 0;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.pac-item {
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    color: var(--primary-color);
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    cursor: pointer;
    transition: var(--transition);
}

.pac-item:hover,
.pac-item:focus {
    color: var(--white);
    background-color: var(--primary-color);
}

.pac-icon {
    display: none;
}

.pac-item-query {
    font-size: 15px;
    color: inherit;
    font-weight: 600;
}
/* Error Messages */
.error-message {
    display: none;
    color: #8B0000;
    background: linear-gradient(135deg, #FFE8E8, #FFF0F0);
    font-size: 13px;
    margin-top: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 500;
    border-left: 4px solid #D32F2F;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.1);
}

.error-message.show {
    display: block;
    animation: slideInError 0.3s ease-out;
}

@keyframes slideInError {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

input.has-error {
    border-color: #D32F2F !important;
    background: linear-gradient(135deg, #FFF5F5, #FFE8E8) !important;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15) !important;
}

/* Modal RGPD */
.modal-rgpd {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-rgpd.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-rgpd-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s ease;
}

.modal-rgpd-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
}

.modal-rgpd-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.modal-rgpd-content p {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center;
}

.modal-rgpd-content p strong {
    color: var(--primary-color);
}

.modal-rgpd-checkbox {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid var(--gray-border);
    transition: var(--transition);
}

.modal-rgpd-checkbox input[type="checkbox"]:checked + label {
    color: var(--primary-color);
}

.modal-rgpd-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modal-rgpd-checkbox label {
    font-size: 12px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.modal-rgpd-checkbox label a {
    color: var(--primary-color);
    text-decoration: underline;
    margin-left: 4px;
}

.modal-rgpd-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.modal-btn-cancel,
.modal-btn-accept {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn-cancel {
    background: var(--gray-light);
    color: var(--text-dark);
}

.modal-btn-cancel:hover {
    background: #e0e0e0;
}

.modal-btn-accept {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
}

.modal-btn-accept:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-btn-accept:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 65, 113, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-rgpd-content {
        padding: 30px 20px;
        max-width: 95%;
    }

    .modal-rgpd-content h3 {
        font-size: 20px;
    }

    .modal-rgpd-content p {
        font-size: 14px;
    }

    .modal-rgpd-buttons {
        flex-direction: column;
    }

    .modal-btn-cancel,
    .modal-btn-accept {
        width: 100%;
    }
}


/* Trustpilot Slider */
.testimonials-slider {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.trustpilot-header {
    text-align: center;

    border-bottom: 1px solid var(--gray-border);
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.tp-stars {
    color: #00b67a;
    font-size: 24px;
    letter-spacing: 2px;
}

.tp-text {
    color: #00b67a;
    font-weight: 700;
    font-size: 20px;
}

.tp-score {
    color: var(--text-light);
    font-size: 13px;
}

.testimonials-container {
    position: relative;
    min-height: 120px;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 10px 5px;
    animation: fadeInSlide 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-stars {
    color: #00b67a;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00b67a;
    width: 24px;
    border-radius: 4px;
}

.dot:hover {
    background: #00b67a;
    opacity: 0.7;
}
