.elementor-1540 .elementor-element.elementor-element-8c6507f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1540 .elementor-element.elementor-element-c42a5b3{--spacer-size:50px;}/* Start custom CSS for html, class: .elementor-element-791127a *//* ============================================== */
/* BLOC CSS POUR ELEMENTOR                        */
/* Ajouter dans Elementor > CSS personnalisé      */
/* ou dans Apparence > Personnaliser > CSS        */
/* ============================================== */

/* ========== RESET ET BASE ========== */
.simulateur-container *,
.price-sticky *,
.price-sticky-mobile *,
.whatsapp-float * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.simulateur-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}


footer#Footer {
    display: none;
}


/* ========== BARRE DE PRIX STICKY DESKTOP ========== */
.price-sticky {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 2px solid #ad3114;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(173, 49, 20, 0.4);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    transition: all 0.4s ease;
    min-width: 280px;
}

.price-sticky.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.price-sticky-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-label {
    font-size: 0.85em;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 2.5em;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.savings-badge {
    background: rgba(173, 49, 20, 0.2);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

/* ========== BARRE DE PRIX MOBILE ========== */
.price-sticky-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border-bottom: 2px solid #ad3114;
    padding: 10px 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.4s ease;
}

.price-sticky-mobile.visible {
    opacity: 1;
    transform: translateY(0);
}

.price-mobile-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.price-mobile-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-mobile-label {
    font-size: 0.7em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.price-mobile-value {
    font-size: 1.8em;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.price-mobile-badge {
    background: rgba(173, 49, 20, 0.2);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.7em;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

/* ========== HEADER ========== */
.simulateur-container .header {
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 40px 30px;
    border-radius: 24px;
}

.simulateur-container .header h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-weight: 700;
    color: #ffffff;
}

.simulateur-container .header p {
    font-size: 1.3em;
    opacity: 0.95;
    font-weight: 400;
    color: #ffffff;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(173, 49, 20, 0.2);
    border: 1px solid rgba(173, 49, 20, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9em;
    backdrop-filter: blur(10px);
}

/* ========== CARD PRINCIPALE ========== */
.simulateur-container .card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

/* ========== PROGRESS BAR ========== */
.progress-container {
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    position: relative;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.progress-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.progress-step.active .progress-step-circle {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.progress-step.completed .progress-step-circle {
    background: #10b981;
    color: #ffffff;
}

.progress-step-label {
    font-size: 0.85em;
    color: #666;
    font-weight: 500;
}

.progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ad3114 0%, #d14228 100%);
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* ========== STEPS ========== */
.simulateur-container .step {
    display: none;
}

.simulateur-container .step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    margin-bottom: 35px;
}

.step-title {
    font-size: 2em;
    color: #ad3114;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-subtitle {
    color: #666;
    font-size: 1.15em;
    line-height: 1.6;
}

/* ========== OPTION CARDS ========== */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.option-card {
    border: 3px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.option-card:hover {
    border-color: #ad3114;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.option-card.selected {
    border-color: #ad3114;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    box-shadow: 0 10px 30px rgba(173, 49, 20, 0.2);
}

.option-card.selected::before {
    content: "✓";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.option-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

.option-card h3 {
    font-size: 1.5em;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
}

.option-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 15px;
}

.price-tag {
    color: #ad3114;
    font-weight: 700;
    font-size: 1.3em;
    display: block;
    margin-top: 15px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ========== INFO ET WARNING BOXES ========== */
.info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0ea5e9;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.info-box h4 {
    color: #0369a1;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box p {
    color: #075985;
    font-size: 0.95em;
    line-height: 1.7;
}

.warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.warning-box h4 {
    color: #92400e;
    margin-bottom: 10px;
    font-weight: 600;
}

.warning-box p {
    color: #78350f;
    font-size: 0.95em;
    line-height: 1.7;
}

/* ========== CHECKBOX OPTIONS ========== */
.checkbox-option {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: start;
    gap: 15px;
    background: white;
}

.checkbox-option:hover {
    border-color: #ad3114;
    background: #f8f9ff;
    transform: translateX(5px);
}

.checkbox-option.selected {
    border-color: #ad3114;
    background: #f8f9ff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.checkbox-option.included {
    border-color: #10b981;
    background: #f0fdf4;
    cursor: default;
}

.checkbox-option input[type="checkbox"] {
    margin-top: 3px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #ad3114;
}

.checkbox-option.included input[type="checkbox"] {
    cursor: default;
}

.checkbox-content {
    flex: 1;
}

.checkbox-content h4 {
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 1.1em;
}

.checkbox-content p {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 8px;
    line-height: 1.6;
}

.checkbox-content .price {
    color: #ad3114;
    font-weight: 700;
    font-size: 1.05em;
}

.checkbox-option.included .price {
    color: #10b981;
}

/* ========== FORMULAIRE ========== */
.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 1.05em;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s;
    font-family: inherit;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #ad3114;
    box-shadow: 0 0 0 3px rgba(173, 49, 20, 0.1);
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========== SLIDER ========== */
.slider-container {
    margin: 30px 0;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.slider-value {
    color: #ad3114;
    font-size: 1.3em;
}

.simulateur-container input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.simulateur-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(173, 49, 20, 0.4);
}

.simulateur-container input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(173, 49, 20, 0.4);
}

/* ========== BOUTONS ========== */
.buttons {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-top: 40px;
}

.simulateur-container button {
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-family: inherit;
}

.simulateur-container button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-next {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #ffffff;
    flex: 1;
    box-shadow: 0 4px 15px rgba(173, 49, 20, 0.3);
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(173, 49, 20, 0.4);
}

.btn-prev {
    background: white;
    color: #ad3114;
    border: 2px solid #ad3114 !important;
}

.btn-prev:hover {
    background: #f8f9ff;
}

/* ========== SUMMARY CARD ========== */
.summary-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #ffffff;
    padding: 35px;
    border-radius: 16px;
    margin: 30px 0;
}

.summary-card h3 {
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: 700;
    color: #ffffff;
}

.price-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 1.05em;
}

.price-line:last-child {
    border-bottom: none;
}

.total-price {
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(255,255,255,0.3);
}

.discount-badge {
    background: #10b981;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75em;
    margin-left: 10px;
    font-weight: 700;
}

.delivery-info {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
}

/* ========== CONFIRMATION ========== */
.confirmation {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    font-size: 5em;
    color: #10b981;
    margin-bottom: 20px;
}

.confirmation h2 {
    font-size: 2.5em;
    color: #ad3114;
    margin-bottom: 20px;
}

.confirmation p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.8;
}

/* ========== RADIO OPTIONS ========== */
.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.radio-option {
    flex: 1;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.radio-option:hover {
    border-color: #ad3114;
    background: #f8f9ff;
}

.radio-option.selected {
    border-color: #ad3114;
    background: #f8f9ff;
}

.radio-option input[type="radio"] {
    margin-right: 8px;
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    gap: 15px;
}

/* ========== SECTION ABOUT ========== */
.about-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.about-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(173, 49, 20, 0.3);
    overflow: hidden;
}

.about-intro h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 8px;
}

.about-intro .subtitle-about {
    color: #ad3114;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.about-location {
    color: #666;
    font-size: 0.95em;
}

.about-content {
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 12px;
}

.about-content strong {
    color: #333;
}

.about-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.badge-item {
    background: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9em;
    font-weight: 600;
    color: #ad3114;
    border: 2px solid #ad3114;
}

.about-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.about-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #e0e0e0;
}

.about-link:hover {
    border-color: #ad3114;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-link-icon {
    font-size: 1.5em;
}

.trust-message {
    background: white;
    border-left: 4px solid #10b981;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
}

.trust-message p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.trust-message strong {
    color: #10b981;
}

/* ========== BOUTON WHATSAPP ========== */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    width: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ========== BOUTON WHATSAPP FLOTTANT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-float .tooltip {
    position: absolute;
    left: 75px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85em;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========== RESPONSIVE MOBILE ========== */
@media (max-width: 768px) {
    .simulateur-container {
        padding: 10px;
        padding-top: 60px;
    }

    .price-sticky {
        display: none;
    }

    .price-sticky-mobile {
        display: block;
    }

    .progress-steps {
        display: none;
    }

    .progress-container {
        margin-bottom: 20px;
    }

    .progress-bar {
        height: 8px;
    }

    .simulateur-container .header {
        margin-top: 15px;
        margin-bottom: 25px;
        padding: 25px 20px;
    }

    .simulateur-container .header h1 {
        font-size: 1.6em;
    }

    .simulateur-container .header p {
        font-size: 0.95em;
    }

    .trust-badges {
        gap: 8px;
    }

    .trust-badge {
        font-size: 0.7em;
        padding: 6px 10px;
    }

    .price-value {
        font-size: 2em;
    }

    .option-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .simulateur-container .card {
        padding: 20px 15px;
        border-radius: 16px;
    }

    .step-title {
        font-size: 1.4em;
    }

    .step-subtitle {
        font-size: 0.95em;
    }

    .step-header {
        margin-bottom: 25px;
    }

    .radio-group {
        flex-direction: column;
    }

    .option-card {
        padding: 18px 15px;
    }

    .option-icon {
        font-size: 2.2em;
    }

    .option-card h3 {
        font-size: 1.3em;
    }

    .option-card p {
        font-size: 0.9em;
    }

    .simulateur-container button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .buttons {
        margin-top: 30px;
    }

    .info-box,
    .warning-box {
        padding: 15px;
        margin: 20px 0;
    }

    .info-box h4,
    .warning-box h4 {
        font-size: 0.95em;
    }

    .info-box p,
    .warning-box p {
        font-size: 0.9em;
    }

    .checkbox-option {
        padding: 15px;
    }

    .checkbox-content h4 {
        font-size: 1em;
    }

    .summary-card {
        padding: 25px 20px;
    }

    .summary-card h3 {
        font-size: 1.5em;
    }

    .total-price {
        font-size: 2em;
    }

    .input-group {
        margin-bottom: 20px;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 12px 15px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    .whatsapp-float .tooltip {
        display: none;
    }

    .about-header {
        flex-direction: column;
        text-align: center;
    }

    .about-photo {
        width: 80px;
        height: 80px;
        font-size: 2.5em;
    }

    .about-links {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 25px 20px;
    }

    .about-badges {
        gap: 10px;
    }

    .badge-item {
        padding: 8px 12px;
        font-size: 0.8em;
    }

    .confirmation h2 {
        font-size: 1.8em;
    }

    .confirmation p {
        font-size: 1em;
    }
}



























/* ========== FIX CHAMPS FORMULAIRE ========== */
.simulateur-container .input-group input,
.simulateur-container .input-group select,
.simulateur-container .input-group textarea,
.simulateur-container input[type="text"],
.simulateur-container input[type="email"],
.simulateur-container input[type="tel"],
.simulateur-container input[type="date"],
.simulateur-container textarea,
#contactForm input,
#contactForm select,
#contactForm textarea {
    color: #333333 !important;
    background-color: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder,
.simulateur-container input::placeholder,
.simulateur-container textarea::placeholder {
    color: #999999 !important;
    opacity: 1 !important;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus,
.simulateur-container input:focus,
.simulateur-container select:focus,
.simulateur-container textarea:focus {
    color: #333333 !important;
    background-color: #ffffff !important;
    border-color: #ad3114 !important;
    outline: none !important;
}

/* Fix pour les labels */
#contactForm label,
.simulateur-container .input-group label {
    color: #333333 !important;
}




a.whatsapp-float {
    display: none;
}
.chaty-channels{
    display: none;
}



@media (max-width: 768px) {
    .option-card p {
        font-size: 1.1em;
    }
    
    .step-subtitle {
font-size: 1.1em;
    }
    
    .step-title {
    font-size: 1.4em !important;
    font-family: sans-serif;
    line-height: 28px;
    }
    
    .option-card h3 {
        font-size: 1.2em;
        font-family: sans-serif;
    }
        .info-box h4, .warning-box h4{
        font-size: 1em;
        font-family: sans-serif;
        font-weight: bold !important;
    }
    
        .simulateur-container .header h1 {
        font-size: 1.6em;
        font-family: sans-serif;
    }
    
        .trust-badge {
        font-size: 1em;
        }
        
        .price-mobile-badge {
    font-size: 1em;}
    
        .info-box p, .warning-box p {
        font-size: 1em;
    }
    .option-card li {
    font-size: 1.1em;
}

    .checkbox-content h4 {
        font-size: 1em;
        font-family: sans-serif;
    }
    
    .checkbox-content p {
    font-size: 1em;
    }
    
    .badge-item {
        font-size: 1em;
    }
    
}



















/* ===== CSS AJOUTS POUR AMÉLIORER L'UX ===== */

/* Animation pulse pour attirer l'attention sur les boutons */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Animation shake pour message d'erreur */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

/* BOUTONS STICKY SUR MOBILE */
@media (max-width: 768px) {
    /* Rendre les boutons toujours visibles en bas */
    .simulateur-container .step {
        padding-bottom: 100px; /* Espace pour les boutons sticky */
    }
    
    .simulateur-container .buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        z-index: 900;
        margin: 0 !important;
        gap: 10px;
        border-top: 2px solid #ad3114;
    }
    
    .simulateur-container .buttons button {
        flex: 1;
        padding: 14px 20px;
        font-size: 1em;
        font-weight: 700;
    }
    
    /* Pour le formulaire final, ne pas rendre les boutons sticky */
    #step9 .buttons {
        position: static;
        padding: 0;
        box-shadow: none;
        border-top: none;
        flex-direction: column;
        margin-top: 30px !important;
    }
}

/* Amélioration visuelle des cartes sélectionnées */
.option-card.selected {
    border-color: #ad3114 !important;
    background: linear-gradient(135deg, rgba(173, 49, 20, 0.08) 0%, rgba(209, 66, 40, 0.08) 100%) !important;
    box-shadow: 0 10px 30px rgba(173, 49, 20, 0.3) !important;
    transform: scale(1.02);
}

/* Checkmark plus visible */
.option-card.selected::before {
    content: "✓";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Radio options plus visibles quand sélectionnées */
.radio-option.selected {
    border-color: #ad3114 !important;
    background: linear-gradient(135deg, rgba(173, 49, 20, 0.08) 0%, rgba(209, 66, 40, 0.08) 100%) !important;
    box-shadow: 0 4px 15px rgba(173, 49, 20, 0.2) !important;
}

/* Message d'erreur stylisé */
.error-message-box {
    animation: fadeInDown 0.5s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Indicateur visuel sur les boutons désactivés */
.simulateur-container button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(50%);
}

/* Amélioration du hover sur les cartes */
.option-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.option-card:hover:not(.selected) {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(173, 49, 20, 0.15);
}

/* Checkbox et radio plus visibles */
.checkbox-option input[type="checkbox"],
.radio-option input[type="radio"] {
    transform: scale(1.2);
    cursor: pointer;
}

/* Amélioration de la barre de progression mobile */
@media (max-width: 768px) {
    .progress-bar {
        height: 10px;
        margin-bottom: 15px;
    }
    
    .price-sticky-mobile {
        backdrop-filter: blur(10px);
    }
}




@media (max-width: 768px) {
    .simulateur-container .step {
        padding-bottom: 0;
    }
}/* End custom CSS */