/*///////////////////////////////////////////////////////////////////////////////////

	Theme Name: Seo Company
	Description: The Seo Company v1.0
	Author: Diego Velázquez Rabasa - Templune
	Author Personal Website: http://templune.com
	Author Behance Profile: https://www.behance.net/diegovr7
	Author Dribbble Profile: https://dribbble.com/diegovr7
	Author Envato Profile: https://themeforest.net/user/diegovr7
	Version: 1.0

	External Resources:
	Bootstrap 4
	Google Fonts 
	Ionic Icons

	*This Html Theme is royalty free for use in personal and commercial projects with 
	a couple of restrictions.

	Publications
	You are welcome to republish this Html Theme on condition that you link back to
	https://www.behance.net/gallery/67279127/The-Seo-Company-Free-PSD-Template 
	and you should not provide the assets for direct download from your website.

	Prohibitions
	You do not have rights to redistribute, resell, lease, license, sub-license or offer
	this resource to any third party «as is». If you want to use this resource as a part
	of a product intended to be sold via any marketplace, please contact the author 
	templune@gmail.com of the freebie to get an extended license.

/////////////////////////////////////////////////////////////////////////////////*/

/* /////////////////////////////

	1. Basic Styles
	2. Navbar
	3. Buttons
	4. Hero
	5. Marketing
	6. Testimonials
	7. Pricing
	8. Call to Action
	9. Footer
	10. Media Queries

   //////////////////////////*/


   body {
	font-family: 'Roboto', sans-serif;
	color: #3a3f52;
	overflow-x: hidden; /* Empêche le débordement horizontal */
}

/* Empêche les débordements horizontaux sur tous les éléments */
*, *::before, *::after {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

.container-fluid {
	max-width: 100%;
}

.row {
	margin-left: 0;
	margin-right: 0;
}

/* Style de base pour tous les h2 - sera redéfini plus bas pour la page home */
h2 {
	font-size: 44px;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}

/* ==============================================
   Styles uniformes pour les h2 de la page home
===============================================*/

/* Titre sur une seule ligne avec écriture importante et centrée */
.container .single-line-title {
  font-size: 32px;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  font-weight: 700;
  color: #3a3f52;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  width: 100%;
  display: block;
}

/* Style uniforme pour tous les h2 de la page home */
h2 {
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  color: #1D509F;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  font-family: 'Roboto', sans-serif;
}

/* Style spécifique pour les h2 dans les sections avec title-block */
.title-block h2 {
  font-size: 42px;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  color: #1D509F;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  font-family: 'Roboto', sans-serif;
}

/* Style pour les h2 dans les sections de contenu */
section h2 {
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  color: #1D509F;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  font-family: 'Roboto', sans-serif;
}

/* Exception pour le titre de la section features qui garde son style spécifique */
#features .feature-content-premium h2 {
  text-align: left;
  white-space: nowrap;
  color: #1D509F;
  font-size: 42px;
  letter-spacing: -0.3px;
  padding-right: 20px;
  font-family: 'Roboto', sans-serif;
}
.form-group h2 {
	font-size: 30px;
	font-weight: 500;
	color: #53627C;
}
h3 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 25px;
}

h5 {
	font-size: 16px;
}

p {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .05em;
	color: #53627C;
}

ul {
	list-style-type: none;
	padding-left: 0px;
}

b {
	font-weight: 700;
}

section {
	padding: 100px 0px 0px 0px;
}

.row {
    margin-bottom: 90px;
}

.title-call {
	margin-top: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	text-align: center;
	font-size: 205px;
	color: #1D509F;
	font: italic 2.0em "Helvetica", serif;
	font-weight: bold;
}
.delete_emprunteur {
	margin-top: 50px;
} 

/* Bouton de suppression moderne */
.modern-delete-btn {
	background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
	border: none;
	border-radius: 25px;
	padding: 12px 20px;
	color: white;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
	position: relative;
	overflow: hidden;
	min-width: 140px;
	justify-content: center;
}

.modern-delete-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.modern-delete-btn:hover::before {
	left: 100%;
}

.modern-delete-btn:hover {
	background: linear-gradient(135deg, #ff3742 0%, #ff2e3a 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
	color: white;
	text-decoration: none;
}

.modern-delete-btn:active {
	transform: translateY(0);
	box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.delete-icon {
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.modern-delete-btn:hover .delete-icon {
	transform: scale(1.1) rotate(5deg);
}

.delete-text {
	font-family: 'Roboto', sans-serif;
	letter-spacing: 0.3px;
	white-space: nowrap;
}

/* Animation d'entrée pour le bouton */
@keyframes deleteBtnSlideIn {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.modern-delete-btn {
	animation: deleteBtnSlideIn 0.4s ease-out;
}

/* Bouton de suppression compact pour l'en-tête */
.modern-delete-btn-compact {
	background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	color: white;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
	position: relative;
	overflow: hidden;
}

.modern-delete-btn-compact::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
	border-radius: 50%;
}

.modern-delete-btn-compact:hover::before {
	left: 100%;
}

.modern-delete-btn-compact:hover {
	background: linear-gradient(135deg, #ff3742 0%, #ff2e3a 100%);
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.modern-delete-btn-compact:active {
	transform: translateY(0) scale(0.95);
	box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.modern-delete-btn-compact .delete-icon {
	transition: transform 0.3s ease;
	z-index: 2;
	position: relative;
}

.modern-delete-btn-compact:hover .delete-icon {
	transform: scale(1.1) rotate(5deg);
}

/* En-tête avec titre centré et bouton à droite */
.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 20px;
	margin-top: 30px;
	position: relative;
}

.section-title {
	flex: 1;
	text-align: center;
	position: relative;
}

.section-title h2 {
	margin: 0;
	padding: 0;
	display: inline-block;
}

.section-action {
	flex: 0 0 auto;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

/* Animation d'entrée pour le bouton compact */
@keyframes deleteBtnCompactSlideIn {
	from {
		opacity: 0;
		transform: translateX(-20px) scale(0.8);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

.modern-delete-btn-compact {
	animation: deleteBtnCompactSlideIn 0.4s ease-out;
}

/* Responsive pour le bouton */
@media (max-width: 768px) {
	.modern-delete-btn {
		padding: 10px 16px;
		font-size: 13px;
		min-width: 120px;
	}
	
	.delete-text {
		font-size: 12px;
	}
	
	.delete-icon {
		width: 18px;
		height: 18px;
	}
	
	.modern-delete-btn-compact {
		width: 35px;
		height: 35px;
	}
	
	.modern-delete-btn-compact .delete-icon {
		width: 14px;
		height: 14px;
	}
}

@media (max-width: 576px) {
	.modern-delete-btn {
		padding: 8px 14px;
		font-size: 12px;
		min-width: 110px;
	}
	
	.delete-text {
		font-size: 11px;
	}
	
	.delete-icon {
		width: 16px;
		height: 16px;
	}
	
	.modern-delete-btn-compact {
		width: 32px;
		height: 32px;
	}
	
	.modern-delete-btn-compact .delete-icon {
		width: 12px;
		height: 12px;
	}
}

.title-block {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	text-align: center;
}

.title-block p {
	font-size: 20px;
	font-weight: 300;
	color: #8da2b5;
	margin-bottom: 0px;
}

.divider {
	padding: 2rem 0 0;
    margin: 2rem 0 0;
    border-top: 1px solid #ffffff;
}

.divider-light {
	padding: 2rem 0 0;
    margin: 2rem 0 0;
	border-top: 1px solid #edf1f2
}
/* ==============================================
   Progress Bar Ultra-Moderne & Luxe
   Design élégant avec glassmorphism et animations fluides
===============================================*/

/* Container principal */
.progress-container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 25px 0 35px;
    position: relative;
}

/* Correction espacement mobile avec navbar */
@media (max-width: 760px) {
    /* Réduire les marges des sections principales */
    .objet_assurance,
    .objet_pret,
    .Simulation_emprunt,
    .financement,
    .pret,
    .container.test {
        margin-top: 5px !important;
    }

    /* Réduire l'espace de la progress bar */
    .progress-container {
        margin-top: 5px;
        margin-bottom: 15px;
        padding: 0 15px;
    }
}

/* Wrapper avec effet glassmorphism */
.progress {
    position: relative !important;
    overflow: visible !important;
    height: 14px !important;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 100px !important;
    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.06),
        inset 0 1px 3px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet hover élégant sur desktop */
@media (hover: hover) and (min-width: 769px) {
    .progress:hover {
        transform: translateY(-1px);
        box-shadow:
            0 6px 20px rgba(0, 0, 0, 0.12),
            inset 0 2px 8px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(255, 255, 255, 0.8);
    }
}

/* Barre de progression - Gradient moderne subtil */
.progress-bar {
    background: linear-gradient(
        110deg,
        #EE7609 0%,
        #ff9f4d 25%,
        #ffb870 50%,
        #ff9f4d 75%,
        #EE7609 100%
    ) !important;
    background-size: 300% 100% !important;
    border-radius: 100px !important;
    position: relative !important;
    height: 100% !important;
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    will-change: width, background-position;
    box-shadow:
        0 0 12px rgba(238, 118, 9, 0.25),
        0 2px 8px rgba(238, 118, 9, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: luxe-shimmer 4s ease-in-out infinite;
    overflow: visible !important;
}

/* Animation shimmer ultra smooth */
@keyframes luxe-shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Barre brillante au dessus - subtile */
.progress-bar::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 5%;
    right: 5%;
    height: 30%;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    border-radius: 100px;
    opacity: 0.6;
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Cercle indicateur moderne avec effet subtil */
.circle {
    width: 28px;
    height: 28px;
    background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 100%);
    border: 3px solid #EE7609;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    box-shadow:
        0 0 0 0 rgba(238, 118, 9, 0.4),
        0 2px 8px rgba(238, 118, 9, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 3px rgba(255, 255, 255, 0.6);
    animation: luxe-pulse 2.5s ease-in-out infinite;
}

/* Animation pulse subtile */
@keyframes luxe-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(238, 118, 9, 0.4),
            0 2px 8px rgba(238, 118, 9, 0.25),
            0 4px 12px rgba(0, 0, 0, 0.1),
            inset 0 1px 3px rgba(255, 255, 255, 0.6);
    }
    50% {
        box-shadow:
            0 0 0 8px rgba(238, 118, 9, 0),
            0 3px 12px rgba(238, 118, 9, 0.35),
            0 6px 18px rgba(0, 0, 0, 0.12),
            inset 0 1px 3px rgba(255, 255, 255, 0.6);
    }
}

/* Point lumineux central dans le cercle - subtil */
.circle::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    border-radius: 50%;
    animation: sparkle 2.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Anneau extérieur du cercle - très subtil */
.circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(238, 118, 9, 0.15) 0%,
        transparent 50%);
    z-index: -1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* État complété - Vert élégant */
.progress-bar[aria-valuenow="100"] {
    background: linear-gradient(
        110deg,
        #28a745 0%,
        #48c774 25%,
        #69db8a 50%,
        #48c774 75%,
        #28a745 100%
    ) !important;
    box-shadow:
        0 0 25px rgba(40, 167, 69, 0.5),
        0 4px 20px rgba(40, 167, 69, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.6);
    animation: success-shimmer 3s ease-in-out infinite;
}

@keyframes success-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.progress-bar[aria-valuenow="100"] .circle {
    border-color: #28a745;
    animation: success-celebration 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 0 0 0 rgba(40, 167, 69, 0.6),
        0 6px 20px rgba(40, 167, 69, 0.5),
        0 12px 35px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

@keyframes success-celebration {
    0% {
        transform: translateY(-50%) scale(1) rotate(0deg);
    }
    30% {
        transform: translateY(-50%) scale(1.4) rotate(180deg);
    }
    50% {
        transform: translateY(-50%) scale(1.2) rotate(270deg);
    }
    100% {
        transform: translateY(-50%) scale(1) rotate(360deg);
    }
}

/* Pourcentage affiché (optionnel) */
.progress-percentage {
    position: absolute;
    top: -35px;
    right: -14px;
    font-size: 13px;
    font-weight: 700;
    color: #EE7609;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 6px 12px;
    border-radius: 15px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(238, 118, 9, 0.1);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    z-index: 11;
    backdrop-filter: blur(10px);
}

/* ============================================
   RESPONSIVE MOBILE-FIRST
============================================*/

/* Tablettes et petits laptops (≤ 991px) */
@media (max-width: 991px) {
    .progress-container {
        padding: 0 15px;
        margin: 20px 0 30px;
    }

    .progress {
        height: 12px !important;
    }

    .circle {
        width: 24px;
        height: 24px;
        right: -12px;
        border-width: 2.5px;
    }

    .progress-percentage {
        font-size: 12px;
        top: -32px;
        right: -12px;
        padding: 5px 10px;
    }
}

/* Tablettes portrait et grands mobiles (≤ 768px) */
@media (max-width: 768px) {
    .progress-container {
        padding: 0 12px;
        margin: 18px 0 28px;
    }

    .progress {
        height: 10px !important;
        box-shadow:
            0 3px 12px rgba(0, 0, 0, 0.08),
            inset 0 1px 4px rgba(0, 0, 0, 0.06),
            0 0 0 1px rgba(255, 255, 255, 0.5);
    }

    .progress-bar {
        box-shadow:
            0 0 15px rgba(238, 118, 9, 0.35),
            0 3px 12px rgba(238, 118, 9, 0.25),
            inset 0 1px 2px rgba(255, 255, 255, 0.5);
    }

    .circle {
        width: 22px;
        height: 22px;
        right: -11px;
        border-width: 2.5px;
        box-shadow:
            0 0 0 0 rgba(238, 118, 9, 0.5),
            0 3px 12px rgba(238, 118, 9, 0.35),
            0 6px 20px rgba(0, 0, 0, 0.12),
            inset 0 2px 4px rgba(255, 255, 255, 0.8);
    }

    .progress-percentage {
        font-size: 11px;
        top: -30px;
        right: -11px;
        padding: 4px 9px;
    }
}

/* Mobiles standard (≤ 576px) */
@media (max-width: 576px) {
    .progress-container {
        padding: 0 10px;
        margin: 15px 0 25px;
    }

    .progress {
        height: 8px !important;
        border-radius: 50px !important;
    }

    .progress-bar {
        border-radius: 50px !important;
    }

    .circle {
        width: 20px;
        height: 20px;
        right: -10px;
        border-width: 2px;
    }

    .circle::after {
        inset: -3px;
    }

    .progress-percentage {
        font-size: 10px;
        top: -28px;
        right: -10px;
        padding: 3px 8px;
        border-radius: 12px;
    }
}

/* Petits mobiles (≤ 400px) */
@media (max-width: 400px) {
    .progress-container {
        padding: 0 8px;
        margin: 12px 0 22px;
    }

    .progress {
        height: 7px !important;
    }

    .circle {
        width: 18px;
        height: 18px;
        right: -9px;
    }

    .progress-percentage {
        font-size: 9px;
        padding: 2px 7px;
    }
}

/* ============================================
   GESTION DES ZOOMS DESKTOP
============================================*/

/* Zoom 110-125% (1200px-1600px) */
@media (min-width: 1200px) and (max-width: 1600px) {
    .progress {
        height: 13px !important;
    }

    .circle {
        width: 26px;
        height: 26px;
        right: -13px;
    }
}

/* Zoom 150-175% (992px-1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .progress {
        height: 12px !important;
    }

    .circle {
        width: 24px;
        height: 24px;
        right: -12px;
    }
}

/* Optimisation des performances */
.progress,
.progress-bar,
.circle,
.circle::before,
.circle::after {
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    .progress,
    .progress-bar,
    .circle,
    .circle::before,
    .circle::after,
    .progress-percentage {
        animation: none !important;
        transition: none !important;
    }
}
/* ==============================================
   radio bouton
===============================================*/
.radio-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.radio-button {
    position: relative;
    min-width: 90px;
}

.radio-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #53627C;
    background-color: #f8f9fb;
    font-size: 14px;
    white-space: nowrap;
    border: 2px solid transparent;
}

/* Style pour le bouton sélectionné */
.radio-input:checked + .radio-label {
    background-color: #EE7609;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Style pour le hover */
.radio-label:hover {
    background-color: #EE7609;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Style focus pour l'accessibilité */
.radio-input:focus + .radio-label {
    outline: 2px solid #EE7609;
    outline-offset: 2px;
}

/* Suppression des styles du radio-circle qui ne sont plus nécessaires */
.radio-circle {
    display: none;
}
/* ==============================================
   radio-group-yesn
===============================================*/
.radio-group-yesno {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.radio-button-yesno {
    position: relative;
    min-width: 60px;
}

.radio-input-yesno {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label-yesno {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    background-color: #EEEEEE;
    font-size: 14px;
    white-space: nowrap;
    border: 2px solid transparent;
}

/* Style pour le bouton sélectionné */
.radio-input-yesno:checked + .radio-label-yesno {
    background-color: #EE7609;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Style pour le hover */
.radio-label-yesno:hover {
    background-color: #EE7609;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Style focus pour l'accessibilité */
.radio-input-yesno:focus + .radio-label-yesno {
    outline: 2px solid #EE7609;
    outline-offset: 2px;
}
/* ==============================================
   Password reset
===============================================*/
#reset-password {
    padding: 50px 0;
    background-color: #F8F9FB;
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-top: 76px;
}

.password-box {
    background-color: #ffffff;
    border: 1px solid #F8F9FB;
    border-radius: 6px;
    box-shadow: 0 0 1px 0 rgba(0,12,32,0.04), 0 10px 16px 0 rgba(10,31,68,0.06);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

#reset-password .title-call {
    margin-bottom: 30px;
    text-align: center;
}

#reset-password .title-call h2 {
    color: #1D509F;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0;
}

#reset-password .form-group {
    margin-bottom: 25px;
}

#reset-password .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #53627C;
    font-weight: 500;
}

#reset-password .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e1e5eb;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

#reset-password .form-group input:focus {
    border-color: #1D509F;
    outline: none;
    box-shadow: 0 0 0 2px rgba(29, 80, 159, 0.1);
}

#reset-password .form-text {
    font-size: 12px;
    color: #53627C !important;
    margin-top: 5px;
}

#reset-password .form-actions {
    text-align: center;
    margin-top: 30px;
}

#reset-password .btn-regular {
    background-color: #1D509F;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#reset-password .btn-regular:hover {
    background-color: #EE7609;
}

#reset-password .password-rules {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

#reset-password .password-rules li {
    color: #53627C;
    font-size: 12px;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

#reset-password .password-rules li:before {
    content: "•";
    color: #EE7609;
    position: absolute;
    left: 0;
}

#reset-password .radio-input:checked + .radio-label {
    color: white !important;
}

@media (max-width: 576px) {
    #reset-password .password-box {
        padding: 25px;
        margin: 15px;
    }
    
    #reset-password .title-call h2 {
        font-size: 24px;
    }
}
/* ==============================================
   31. Chatbot Moderne et Responsive
===============================================*/

/* Icône du chatbot - Design moderne */
#chatbot-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #EE7609 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 8px 25px rgba(238, 118, 9, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.9);
    visibility: visible;
    opacity: 1;
}

#chatbot-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(238, 118, 9, 0.5);
}

#chatbot-icon i {
    font-size: 28px;
    color: white;
    animation: chatbotPulse 2s ease-in-out infinite;
}

@keyframes chatbotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Badge de notification */
.chatbot-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    animation: notificationBounce 1s ease-in-out infinite;
}

@keyframes notificationBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Container principal du chatbot */
#chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 420px;
    height: 600px;
    background: white;
    border-radius: 25px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: chatbotSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    opacity: 0;
}

#chatbot-container.show {
    display: flex;
    visibility: visible;
    opacity: 1;
}

/* S'assurer que l'icône est visible par défaut */
#chatbot-icon.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Masquer complètement l'icône quand le chat est ouvert */
#chatbot-icon.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

@keyframes chatbotSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header du chatbot */
#chatbot-header {
    background: linear-gradient(135deg, #1D509F 0%, #2E6BB8 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 25px 25px 0 0;
    position: relative;
    overflow: hidden;
}

#chatbot-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chatbot-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.chatbot-info p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

#chatbot-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

#chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#chatbot-close i {
    font-size: 16px;
}

/* Messages du chat */
#chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#chat-messages::-webkit-scrollbar {
    width: 6px;
}

#chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

#chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

#chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Messages du bot */
.chat-message {
    display: flex;
    margin-bottom: 15px;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    align-self: flex-start;
    max-width: 85%;
}

.bot-message .message-content {
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 20px 20px 20px 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

.bot-message .message-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-right-color: white;
    border-bottom-color: white;
}

/* Messages de l'utilisateur */
.user-message {
    align-self: flex-end;
    max-width: 85%;
}

.user-message .message-content {
    background: linear-gradient(135deg, #EE7609 0%, #FF8C42 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 20px 20px 5px 20px;
    box-shadow: 0 2px 10px rgba(238, 118, 9, 0.3);
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.user-message .message-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -5px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #FF8C42;
    border-bottom-color: #FF8C42;
}

/* Boutons d'actions rapides */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.action-button {
    background: white;
    color: #1D509F;
    border: 2px solid #1D509F;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 80, 159, 0.1), transparent);
    transition: left 0.5s;
}

.action-button:hover::before {
    left: 100%;
}

.action-button:hover {
    background: #1D509F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 80, 159, 0.3);
}

.action-button.primary {
    background: linear-gradient(135deg, #EE7609 0%, #FF8C42 100%);
    color: white;
    border-color: #EE7609;
}

.action-button.primary:hover {
    background: linear-gradient(135deg, #d66808 0%, #e67e3a 100%);
    border-color: #d66808;
}

/* Zone de saisie */
#chat-input {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    gap: 15px;
}

#user-message {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

#user-message:focus {
    border-color: #1D509F;
    box-shadow: 0 0 0 3px rgba(29, 80, 159, 0.1);
    background: white;
}

#user-message::placeholder {
    color: #adb5bd;
    font-style: italic;
}

#user-message.input-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #e9ecef;
}

#send-button {
    background: linear-gradient(135deg, #1D509F 0%, #2E6BB8 100%);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(29, 80, 159, 0.3);
}

#send-button:hover {
    background: linear-gradient(135deg, #EE7609 0%, #FF8C42 100%);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(238, 118, 9, 0.4);
}

#send-button:active {
    transform: scale(0.95);
}

#send-button i {
    font-size: 16px;
}

/* Indicateur de frappe */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: white;
    border-radius: 20px 20px 20px 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #adb5bd;
    border-radius: 50%;
    animation: typingAnimation 1.5s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes typingAnimation {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Suggestions de réponses */
.suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.suggestion-chip {
    background: rgba(29, 80, 159, 0.1);
    color: #1D509F;
    border: 1px solid rgba(29, 80, 159, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.suggestion-chip:hover {
    background: #1D509F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(29, 80, 159, 0.3);
}

/* Design responsive */
@media (max-width: 768px) {
    #chatbot-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        height: 70vh;
        max-height: 600px;
        border-radius: 20px;
    }
    
    #chatbot-icon {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    #chatbot-icon i {
        font-size: 24px;
    }
    
    #chatbot-header {
        padding: 15px 20px;
        border-radius: 20px 20px 0 0;
    }
    
    .chatbot-info h4 {
        font-size: 16px;
    }
    
    .chatbot-info p {
        font-size: 11px;
    }
    
    #chat-messages {
        padding: 20px;
    }
    
    .bot-message .message-content,
    .user-message .message-content {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .action-button {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    #chat-input {
        padding: 15px 20px;
    }
    
    #user-message {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    #send-button {
        width: 40px;
        height: 40px;
    }
    
    #send-button i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #chatbot-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
        height: 75vh;
        border-radius: 15px;
    }
    
    #chatbot-icon {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    #chatbot-icon i {
        font-size: 22px;
    }
    
    #chatbot-header {
        padding: 12px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .chatbot-avatar {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .chatbot-info h4 {
        font-size: 15px;
    }
    
    #chat-messages {
        padding: 15px;
    }
    
    .bot-message .message-content,
    .user-message .message-content {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .action-button {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    #chat-input {
        padding: 12px 15px;
    }
    
    #user-message {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    #send-button {
        width: 35px;
        height: 35px;
    }
    
    #send-button i {
        font-size: 12px;
    }
} 
/* ==============================================
   30. Password
===============================================*/

/* ==============================================
   29. Compare
===============================================*/
/* Style pour le background */
.call-section {
    background-color: #F8F9FB;
    border-top: 1px solid #F8F9FB;
    border-bottom: 1px solid #F8F9FB;
    margin-top: -30px;
}

/* Style pour le container */
.compare-box {
	background-color: #ffffff;
	border: 1px solid #F8F9FB;
	border-radius: 6px;
	box-shadow: 0 0 1px 0 rgba(0,12,32,0.04), 0 10px 16px 0 rgba(10,31,68,0.06);
	margin-top: 30px;
	margin-bottom: 60px;
}

/* Style pour le titre de la section */
.title-call {
    margin-bottom: 20px;
    text-align: center;
}

/* Style pour le titre principal */
h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* Style pour la table */
table {
    width: 100%;
    border-collapse: separate; /* Ensure border-spacing works */
    border-spacing: 15px; /* Space between columns */
    margin-top: 20px;
}

/* Style pour les en-têtes de colonne */
th, td {
    padding: 12px; 
    text-align: left;
    background-color: #ffffff;
}

/* Style pour les lignes au survol */
tr:hover {
    background-color: #f1f1f1;
}

/* Style pour les paragraphes */
p {
    text-align: center;
    color: #555;
}



/* ==============================================
   19. Inscription
===============================================*/
#inscription {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
	margin-top: -20px;
}
.inscription-box {
	background-color: #ffffff;
	border: 1px solid #F8F9FB;
	border-radius: 6px;
	box-shadow: 0 0 1px 0 rgba(0,12,32,0.04), 0 10px 16px 0 rgba(10,31,68,0.06);
	margin-top: 30px;
	margin-bottom: 60px;
	padding: 110px;
}
#inscription .title-call {
	margin-top: 0px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	text-align: center;
	font-size: 205px;
	color: #1D509F;
	font: italic 2.0em "Helvetica", serif;
	font-weight: bold;
}

.identification {
    display: flex;
    flex-direction: column; /* Aligne les éléments en colonne */
    justify-content: center; /* Centre verticalement */
    height: 100%;            /* Assure que la div prend toute la hauteur disponible */
}
/* ==============================================
   2. Navbar 
===============================================*/

.custom-navbar {
	background-color: #ffffff!important;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,.09);
	height: 70px;
	max-height: 70px;
}

.navbar-toggler {
	font-size: 38px;
	background-color: transparent;
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: none;
}

.navbar-toggler-icon {
	color: #ffffff;
}

.navbar-collapse {
	background-color: #ffffff;
}

.nav-custom-link {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .05em;
	margin-top: 5px;
}

.navbar a {
	color: #53627C !important;
}

.nav-right {
	float: right;
}

/* ==============================================
   3. Buttons
===============================================*/

.btn {
	font-size: 14px;
	font-weight: 400;
	border-radius: 3px!important;
	box-shadow: 0 2px 3px 0 rgba(0,0,0,.05), 0 1px 2px 0 rgba(0,0,0,.08);
}

.btn:hover {
	text-decoration: none;
}

.btn-regular {
	background-color: #1d509f;
	color: #ffffff;
	padding: 10px 25px;
	letter-spacing: .1em;
	margin-top: 25px;
	display: inline-block;
}

.btn-regular:hover {
	background-color: #EE7508;
	color: #ffffff;
}
.btn-regular-tel {
	background-color: #1d509f;
	color: #ffffff;
	padding: 10px 25px;
	letter-spacing: .1em;
	margin-top: 5px;
	display: inline-block;
	transform: skewX(-25deg);
}

.btn-regular-tel:hover {
	background-color: #EE7508;
	color: #ffffff;
}

.btn-logout {
	background-color: #1d509f;
	color: #ffffff;
	display: inline-block;
}

.btn-logout:hover {
	background-color: #EE7508;
	color: #ffffff;
}

.retour {
	background-color: #EE7508;
	min-height: 40px;
	width: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: skewX(-25deg);
	color: white;
	border-color: transparent;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.retour:hover {
	background-color: #d6640a;
	transform: skewX(-25deg) translateY(-2px);
	box-shadow: 0 4px 12px rgba(238, 117, 8, 0.3);
  }

.suivant {
background-color: #1D509F;
min-height: 40px;
width: 150px;
display: flex;
justify-content: center;
align-items: center;
transform: skewX(-25deg);
color: white;
border-color: transparent;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.suivant:hover {
	background-color: #164080;
	transform: skewX(-25deg) translateY(-2px);
	box-shadow: 0 4px 12px rgba(29, 80, 159, 0.3);
}

/* Responsive pour les boutons Retour/Suivant - Améliorer la visibilité */
@media (max-width: 768px) {
	.retour,
	.suivant {
		width: 100%;
		max-width: 220px;
		min-height: 50px;
		font-size: 17px;
		margin: 8px 0 8px 0; /* Réduction de l'espacement entre boutons */
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
		position: relative;
		z-index: 100;
	}
	
	/* Container des boutons sur mobile - Réorganisation ordre */
	.row .col-md-4:first-child {
		order: 2; /* Bouton Retour en deuxième position */
		margin-bottom: 8px;
		padding-bottom: 5px;
	}
	
	.row .col-md-4:last-child {
		order: 1; /* Bouton Suivant en première position */
		justify-content: center !important;
		margin-top: 5px;
		margin-bottom: 8px;
		padding-top: 5px;
	}
	
	/* Centrer les boutons sur mobile avec espacement réduit */
	.row .col-md-4 {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 5px;
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	/* Espacement réduit des boutons de navigation */
	#Simulationemprunt .row .col-md-4,
	#Simulationfinancent .row .col-md-4,
	#Simulationpret .row .col-md-4,
	#Contact .row .col-md-4 {
		margin-bottom: 8px; /* Espacement réduit */
		position: relative;
		z-index: 50;
	}
}

@media (max-width: 576px) {
	.retour,
	.suivant {
		width: 95%;
		max-width: 280px;
		min-height: 55px;
		font-size: 18px;
		margin: 10px 0 10px 0; /* Espacement réduit aussi sur très petits écrans */
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
		z-index: 100;
	}
	
	/* Améliorer l'espacement des containers de boutons sur très petits écrans */
	.row .col-md-4:first-child {
		margin-bottom: 25px;
		padding-bottom: 15px;
	}
	
	.row .col-md-4:last-child {
		margin-top: 15px;
		padding-top: 15px;
	}
	
	/* Progress bar sur très petits écrans - Espacement optimisé */
	.progress-container,
	.objet_assurance,
	.objet_pret,
	.construction_emprunt,
	.financement,
	.pret,
	.test {
		margin: 15px 0 15px 0; /* Espacement réduit mais visible */
		padding: 0 20px;
	}
	
	/* Progress bar optimisée sur très petits écrans */
	.progress {
		margin-bottom: 15px !important; /* Espacement réduit avec le contenu */
	}
	
	.progress {
		height: 16px !important;
	}
}

.btn-demo {
	color: #ffffff;
	background-color: #1d509f;
	letter-spacing: .1em;
	padding: 15px 48px;
	display: inline-block;
	width: 100%;
	margin-top: 20px;
}

.btn-demo:hover {
	color: #ffffff;
	background-color: #EE7508;
}

.btn-demo-small {
	font-size: 12px;
	background-color: #1d509f;
	padding: 1px 4px;
}

.btn-demo-small:hover {
	background-color: #EE7508;
}

.btn-demo-small a {
	color: #ffffff!important;
}

.btn-buy {
	color: #ffffff;
	background-color: #1d509f;
	letter-spacing: .1em;
	padding: 15px 48px;
	display: inline-block;
	width: 100%;
	margin-top: 20px;
}

.btn-buy:hover {
	background-color: #EE7508;
	color: #ffffff;
}

/* ==============================================
   4. Hero - Section agrandie et optimisée
===============================================*/

#hero {
	background-color: #ffffff;
	padding: 0;
	margin: 0;
	margin-top: 70px;
	width: 100%;
	overflow: hidden;
}

.hero-row {
	min-height: 85vh;
	margin: 0;
	height: 85vh;
	max-height: 900px;
}

.hero-image-container {
	padding: 0 !important;
	margin: 0;
	height: 85vh;
	max-height: 900px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f9fa;
}

.hero-image-full {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	margin: 0;
	padding: 0;
	image-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

.hero-content-container {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 85vh;
	max-height: 900px;
	background-color: #ffffff;
	position: relative;
}

.hero-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 30%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
	pointer-events: none;
	z-index: 1;
}

.hero-content-wrapper {
	padding: clamp(50px, 7vh, 80px) clamp(40px, 5vw, 70px);
	max-width: 90%;
	width: 90%;
	text-align: left;
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 100%;
}

.hero-brand {
	font-size: 14px;
	font-weight: 600;
	color: #1D509F;
	letter-spacing: 2px;
    text-transform: uppercase;
	margin-bottom: 20px;
	position: relative;
	text-align: left;
	display: block;
}

.hero-brand::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #1D509F, #EE7609);
	border-radius: 2px;
}

.hero-title {
	font-size: clamp(28px, 3.5vw, 52px);
	font-weight: 700;
	line-height: 1.3;
	color: #2c3e50;
	margin-bottom: clamp(20px, 2vh, 30px);
	font-family: 'Roboto', sans-serif;
	text-align: left;
}

.hero-title .highlight {
	color: #1D509F;
	font-weight: 800;
	position: relative;
}

.hero-title .highlight::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #EE7609, #1D509F);
	border-radius: 2px;
	opacity: 0.3;
}

.hero-subtitle {
	font-size: clamp(16px, 1.5vw, 22px);
	color: #6c757d;
	font-weight: 400;
	margin-bottom: clamp(25px, 3vh, 40px);
	line-height: 1.6;
	text-align: left;
}

.hero-cta {
	margin-top: 30px;
}

.btn-hero-primary {
	background: linear-gradient(135deg, #1D509F 0%, #EE7609 100%);
	border: none;
	color: white;
	padding: 18px 35px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(29, 80, 159, 0.3);
	text-transform: none;
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
}

.btn-hero-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn-hero-primary:hover::before {
	left: 100%;
}

.btn-hero-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(29, 80, 159, 0.4);
	color: white;
	text-decoration: none;
}

.btn-hero-primary:active {
	transform: translateY(-1px);
}
.full-width {
	width: 100%;
	max-width: 100%; /* Optional: To prevent the image from exceeding its natural width */
	height: auto;   /* To maintain the image's aspect ratio */
	display: block;
	margin: 0 auto; /* Centre l'image horizontalement */
}
/* ==============================================
   5. Marketing
===============================================*/
#marketing {
	background-color: #ffffff;
}
#marketing p {
	font-size: 20px;
    font-weight: 300;
    color: #8da2b5;
    margin-bottom: 0px;
    padding: 0px;
}

#marketing span {
	font-weight: 400;
	color: #1d509f;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.content-box {
	padding: 60px 20px;
}
.images_logo {
    width: 300px;
    height: auto;
}
#marketing .title-block {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 80px;
	text-align: center;
}

/* ==============================================
   6. Testimonials
===============================================*/

#testimonials {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
}

.testimonial-box {
	background-color: #ffffff;
	box-shadow: 0 0 1px 0 rgba(0,12,32,0.04), 0 10px 16px 0 rgba(10,31,68,0.06);
	border-radius: 20px;
	padding: 20px 30px;
	margin-top: 30px;
	position: relative;
	overflow: hidden;
}

.testimonial-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1D509F 0%, #EE7609 100%);
}

.testimonial-box h6 {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .05em;
	margin-top: 5px;
	margin-bottom: 0px;
}

.testimonial-box p {
	font-size: 16px;
	font-weight: 300;
	margin-top: 25px;
	line-height: 1.8;
	padding: 0px;
}

.testimonial-box i {
	color: #ffffff;
}

.testimonial-box small {
	color: #8da2b5;
	display: inline-block;
}

.testimonial-box span {
	font-size: 14px;
	color: #ffffff;
}

.rating {
	background-color: #1d509f;
	padding: 2px 12px;
	border-radius: 50px;
}

.profile-picture {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.review-one {
  background-image: url('/static/images/profile-picture-one.jpg');
}

.personal-info {
	padding: 5px 0 20px 0;
	border-bottom: 1px solid #edf1f2;
}

/* ==============================================
   7. Pricing
===============================================*/
#pricing {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
}
.pricing-box {
	background-color: #ffffff;
	padding: 40px 20px;
	border: 1px solid #F8F9FB;
	border-radius: 6px;
	box-shadow: 0 0 1px 0 rgba(0,12,32,0.04), 0 10px 16px 0 rgba(10,31,68,0.06);
	margin-top: 30px;
	position: relative;
	overflow: hidden;
}

.pricing-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1D509F 0%, #EE7609 100%);
}
.images_picto {
	width: 120px;
	margin-bottom: -20px;
	margin-top: -20px;
}
.pricing-box h3 {
	font-size: 22px;
	font-weight: 300;
	letter-spacing: .1em;
	color: #1d509f;
}

.pricing-box h6 {
	font-size: 60px;
	font-weight: 700;
	color: #3a3f52;
	margin-bottom: 0px;
}

.pricing-box p {
	font-size: 17px;
	margin-top: 15px;
	padding: 0px;
}

.pricing-box ul {
	padding-left: 10px;
}

.pricing-box li {
	font-size: 14px;
	font-weight: 300;
	color: #8da2b5;
	letter-spacing: .1em;
}

.pricing-box span {
	font-weight: 500;
	color: #1d509f;
}

.pricing-box small {
	color: #8da2b5;
	letter-spacing: .2em;
}

.pricing-box i {
	font-size: 20px;
	color: #1d509f;
	margin-right: 10px;
}

.pricing-box .demo {
	color: #6772e5!important;
}

/* ==============================================
   8. Call to Action
===============================================*/

#call-to-action {
	background-image: url("/static/images/call-to-action.png");
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	padding: 100px 0px;
}

#call-to-action h2 {
	color: #ffffff;
}

#call-to-action p {
	font-size: 20px;
	font-weight: 300;
	color: #ffffff;
	opacity: .8;
	margin-bottom: 40px;
}

#call-to-action .title-block {
	margin-bottom: 0px;
}

#call-to-action .btn-regular {
	background-color: #ffffff!important;
	color: #1d509f!important;
	padding: 15px 45px;
}

#call-to-action .title-block {
	margin-bottom: 0px;
}

/* ==============================================
   9. Footer
===============================================*/

footer {
	background-color: #1d509f;
    padding: 60px 0;
    color: #ffffff;
}

footer h5 {
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 20px;
}

footer p {
	font-size: 12px;
	font-weight: 300;
	color: #ffffff;
	text-align: justify;
	padding: 0px;
}

footer li {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: .05em;
	line-height: 1.5;
	margin-bottom: 10px;
}

footer a {
	color: #ffffff;
}

footer a:hover {
	color: #EE7508;
	text-decoration: none;
}

footer i {
	font-size: 25px;
	color: #ffffff;
	margin-right: 10px;
}

footer i:hover {
	color: #EE7508;
}

footer small {
	color: #ffffff;
	float: right;
}

.external-links {
	color: #1d509f;
}

/* ==============================================
   10. objetpret
===============================================*/
#objetpret {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
	margin-top: -100px;
}
.objetpret-box {
	background-color: #ffffff;
	padding: 40px 20px;
	border: 1px solid #F8F9FB;
	border-radius: 6px;
	box-shadow: 0 0 1px 0 rgba(0,12,32,0.04), 0 10px 16px 0 rgba(10,31,68,0.06);
	margin-top: 40px;
	margin-bottom: 40px;
	transition: transform 0.3s ease;
}

.objetpret-box h3 {
	font-size: 22px;
	font-weight: 300;
	letter-spacing: .1em;
	color: #1d509f;
}

.objetpret-box h6 {
	font-size: 60px;
	font-weight: 700;
	color: #3a3f52;
	margin-bottom: 0px;
}

.objetpret-box p {
	font-size: 17px;
	margin-top: 15px;
	padding: 0px;
}

.objetpret-box ul {
	padding-left: 10px;
}

.objetpret-box li {
	font-size: 14px;
	font-weight: 300;
	color: #8da2b5;
	letter-spacing: .1em;
}

.objetpret span {
	font-weight: 500;
	color: #1d509f;
}

.objetpret small {
	color: #8da2b5;
	letter-spacing: .2em;
}

.objetpret-box i {
	font-size: 20px;
	color: #1d509f;
	margin-right: 10px;
}

.objetpret-box .demo {
	color: #6772e5!important;
}

  
.radio-image input {
	display: none;
}
/* ==============================================
   10 Bis. objetAssurance
===============================================*/
#objetassurance {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
}
.objetassurance-box {
	background-color: #ffffff;
	padding: 40px 20px;
	border: 1px solid #F8F9FB;
	border-radius: 6px;
	box-shadow: 0 0 1px 0 rgba(0,12,32,0.04), 0 10px 16px 0 rgba(10,31,68,0.06);
	margin-top: 40px;
	margin-bottom: 40px;
	transition: transform 0.3s ease;
}

.objetassurance-box h3 {
	font-size: 22px;
	font-weight: 300;
	letter-spacing: .1em;
	color: #1d509f;
}

.objetassurance-box h6 {
	font-size: 60px;
	font-weight: 700;
	color: #3a3f52;
	margin-bottom: 0px;
}

.objetassurance-box p {
	font-size: 17px;
	margin-top: 15px;
	padding: 0px;
}

.objetassurance-box ul {
	padding-left: 10px;
}

.objetassurance-box li {
	font-size: 14px;
	font-weight: 300;
	color: #8da2b5;
	letter-spacing: .1em;
}

.objetassurance span {
	font-weight: 500;
	color: #1d509f;
}

.objetassurance small {
	color: #8da2b5;
	letter-spacing: .2em;
}

.objetassurance-box i {
	font-size: 20px;
	color: #1d509f;
	margin-right: 10px;
}

.objetassurance-box .demo {
	color: #6772e5!important;
}

.radio-image input {
	display: none;
}

/* ==============================================
   11. Simulation_emprunt
===============================================*/
#Simulationemprunt {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
	margin-top: -100px;
}
.Simulationemprunt-box {
	background-color: #ffffff;
	border: 1px solid #F8F9FB;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0,12,32,0.08), 0 5px 25px rgba(10,31,68,0.08);
	margin-top: 20px;
	margin-bottom: 40px;
	transition: all 0.3s ease;
	overflow: hidden;
}

.Simulationemprunt-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0,12,32,0.12), 0 8px 35px rgba(10,31,68,0.12);
}

/* Améliorer l'affichage des formulaires dans toutes les sections */
.construction_emprunt .form-group,
.financement .form-group,
.pret .form-group,
#Contact .form-group {
	margin-bottom: 20px;
}

.construction_emprunt label,
.financement label,
.pret label,
#Contact label {
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 8px;
	display: block;
}

.construction_emprunt input[type="text"],
.construction_emprunt input[type="email"],
.construction_emprunt input[type="tel"],
.construction_emprunt input[type="date"],
.construction_emprunt select,
.financement input[type="text"],
.financement input[type="email"],
.financement input[type="tel"],
.financement input[type="date"],
.financement select,
.pret input[type="text"],
.pret input[type="email"],
.pret input[type="tel"],
.pret input[type="date"],
.pret select,
#Contact input[type="text"],
#Contact input[type="email"],
#Contact input[type="tel"],
#Contact input[type="date"],
#Contact select,
#Contact textarea {
	border: 2px solid #e9ecef;
	border-radius: 6px;
	padding: 10px 15px;
	font-size: 14px;
	transition: all 0.3s ease;
	background-color: #ffffff;
	width: 100%;
}

.construction_emprunt input:focus,
.construction_emprunt select:focus,
.financement input:focus,
.financement select:focus,
.pret input:focus,
.pret select:focus,
#Contact input:focus,
#Contact select:focus,
#Contact textarea:focus {
	border-color: #1D509F;
	box-shadow: 0 0 0 3px rgba(29, 80, 159, 0.1);
	outline: none;
}

/* Textarea spécifique */
#Contact textarea {
	min-height: 120px;
	resize: vertical;
}

/* Styles généraux pour les input-group dans la section prêt */
.pret .input-group {
	display: flex;
	align-items: stretch;
	width: 100%;
	margin-bottom: 15px;
}

.pret .input-group input.form-control {
	flex: 1;
	border-radius: 6px 0 0 6px;
	border-right: none;
	z-index: 1;
}

.pret .input-group-addon {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f8f9fa;
	border: 2px solid #e9ecef;
	border-left: none;
	border-radius: 0 6px 6px 0;
	padding: 10px 12px;
	font-size: 14px;
	color: #6c757d;
	min-width: 45px;
	font-weight: 600;
}

.pret .input-group input.form-control:focus {
	z-index: 2;
	border-color: #1D509F;
	box-shadow: 0 0 0 3px rgba(29, 80, 159, 0.1);
}

.pret .input-group input.form-control:focus + .input-group-addon {
	border-color: #1D509F;
}
.col-md-6 {
	float: left;
	padding-right: 15px;
	padding-left: 15px;
}
.col-8 h1 {
	font-size: 13px;
	font-family: Helvetica Neue,Helvetica,Helvetica,sans-serif;
	font-weight: bold;
}
.col-7 h1 {
	font-size: 13px;
	font-family: Helvetica Neue,Helvetica,Helvetica,sans-serif;
	font-weight: bold;
}
.col-6 h1 {
	font-size: 13px;
	font-family: Helvetica Neue,Helvetica,Helvetica,sans-serif;
	font-weight: bold;
}
input[type="radio"].demo2 {
	display: none;
}
input[type="radio"].demo2 + label {
	padding: 0.2rem 0.4rem;
	line-height: 1;
	color: #fff;
	background-color: #EEEEEE;
	transition: all 0.15s ease-in-out;
	transform: skewX(-15deg);
}
input[type="radio"].demo2.demoyes:hover + label {
	background-color: #EE7609;

}
input[type="radio"].demo2.demoyes:checked + label {
	background-color: #EE7609;	
}
input[type="radio"].demo2.demono:hover + label {
	background-color: #EE7609;
}
input[type="radio"].demo2.demono:checked + label {
	background-color: #EE7609;
}
.align-items-center {
	padding: 6px;
	align-items: center!important;
}
.align-items-center {
    margin-bottom: 0px;
}
.align-items-center-coenmpreunteur{
    margin-bottom: -7px;
}
.p-4 {
	padding: 1.5rem!important;
	margin-top: -30px;
}
input[id="Civilite"]:checked+label {
	background-color: #EE7609;
}
.form-check-label {
    margin-right: 5px; /* Adjust the spacing between labels */
	margin-left: 5px;
}
.btn-ajout {
	font-size: 15px;
	background-color: #1d509f;
	padding: 10px 40px;
	color: #EEEEEE;
	border-radius: 10px;
	border-color: transparent;
}

.btn-ajout:hover {
	background-color: #EE7508;
}
/* ==============================================
   12. Simulation_finqncement
===============================================*/
#Simulationfinancent {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
	margin-top: -100px;
}
.Simulationfinancement-box {
	background-color: #ffffff;
	border: 1px solid #F8F9FB;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0,12,32,0.08), 0 5px 25px rgba(10,31,68,0.08);
	margin-top: 30px;
	margin-bottom: 60px;
	transition: all 0.3s ease;
	overflow: hidden;
}

.Simulationfinancement-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0,12,32,0.12), 0 8px 35px rgba(10,31,68,0.12);
}
.form_bandeau {
	margin-left: 70px;
    margin-right: 70px;
}
.button_bandeau {
	background-color: #EE7609;
	min-height: 40px;
	width: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: skewX(-25deg);
	color: white;
	border-color: transparent;
	margin-bottom: 20px;
}
.form_bandeau .row {
    margin-bottom: 10px;
}
.Bandeau .text-center {
    text-align: center!important;
    margin-top: 30px;
}

input[type="radio"].form-check-input:checked + label::before {
	background-color: #EE7609;
}
  
  input[type="radio"].form-check-input {
	/* You can set the width and height as needed */
	width: 0.8rem;
	height: 0.8rem;
	/* Hide the default radio button */
	opacity: 0;
	position: absolute;
}
  
  /* Style the custom radio button appearance */
  input[type="radio"].form-check-input + label::before {
	content: '';
	display: inline-block;
	width: 0.8rem;
	height: 0.8rem;
	border: 1px solid #1D509F; /* You can adjust border styles as needed */
	border-radius: 50%;
}
input[type="checkbox"].form-check-input:checked {
	background-color: #EE7609;
	width: 1.5rem;
	min-height: 1.5rem;
}
input[type="checkbox"].form-check-input {
	width: 1.5rem;
	min-height: 1.5rem;
}
.Bandeau {
	border-radius: 5px;
	border-style: solid;
	border-width: 3px;
	border-top-color: #EE7609;
	border-left-color: #EE7609;
	border-right-color: #1D509F;
	border-bottom-color: #1D509F;
	margin-left: 25px;
	margin-right: 25px;
	margin-bottom: 25px;
}
.Bandeau h1 {
	font-size: 17px;
	font-family: Helvetica Neue,Helvetica,Helvetica,sans-serif;
	font-weight: bold;
	color: #1D509F;
	margin-left: 20px;
}
#details {
	margin-bottom: 10px;
}
#Masquer {
	margin-bottom: 10px;
}
.fa-check {
	margin-left: 45px;
}

.financement .align-items-center {
	padding: 20px;
	align-items: center!important;
}
.financement .align-items-center {
    margin-bottom: 0px;
}
.input-group-addon {
  padding: 12px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/* ==============================================
   13. Simulation_finqncement
===============================================*/
#Simulationpret {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
	margin-top: -100px;
}
.Simulationpret-box {
	background-color: #ffffff;
	border: 1px solid #F8F9FB;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0,12,32,0.08), 0 5px 25px rgba(10,31,68,0.08);
	margin-top: 30px;
	margin-bottom: 60px;
	transition: all 0.3s ease;
	overflow: hidden;
}

.Simulationpret-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0,12,32,0.12), 0 8px 35px rgba(10,31,68,0.12);
}
/* ==============================================
   14. Contact
===============================================*/
#Contact {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
	margin-top: -100px;
}
.Simulationcontact-box {
	background-color: #ffffff;
	border: 1px solid #F8F9FB;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0,12,32,0.08), 0 5px 25px rgba(10,31,68,0.08);
	margin-top: 30px;
	margin-bottom: 60px;
	padding: 50px;
	transition: all 0.3s ease;
	overflow: hidden;
}

.Simulationcontact-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0,12,32,0.12), 0 8px 35px rgba(10,31,68,0.12);
}
#Contact .title-call {
	margin-top: 0px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	text-align: center;
	font-size: 205px;
	color: #1D509F;
	font: italic 2.0em "Helvetica", serif;
	font-weight: bold;
}
/* ==============================================
   15. Loading
===============================================*/
#loading {
    background-color: #ffffff;
    display: none; /* Caché par défaut */
    position: fixed; /* Position fixe */
    top: 60px; /* Réduit l'espace avec la navbar */
    left: 0;
    right: 0;
    bottom: 0; /* Supprime l'espace en bas */
    z-index: 999; /* Au-dessus du contenu mais sous la navbar */
}

#loader_div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Ajoute un peu de padding intérieur */
}

.loading-box {
    background-color: #ffffff;
    padding: 40px 20px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-loader {
    width: 200px;
    height: auto;
    margin-bottom: 40px;
}

.pulsing-logo {
    width: 100%;
    height: auto;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Quand le loader est actif */
#loading.active {
    display: flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #loading {
        top: 60px; /* Ajuster selon la hauteur de votre navbar mobile */
        bottom: 60px; /* Ajuster selon la hauteur de votre footer mobile */
    }
    
    .logo-loader {
        width: 150px;
    }
    
    /* Responsive pour les h2 */
    h2, .title-block h2, section h2 {
        font-size: 28px;
        letter-spacing: 0.2px;
        margin-bottom: 15px;
    }
}

/* Responsive pour les très petits écrans */
@media(max-width: 576px){
    h2, .title-block h2, section h2 {
        font-size: 24px;
        letter-spacing: 0.1px;
        margin-bottom: 12px;
    }
}

/* ==============================================
   Styles pour la section Actualités
===============================================*/

#actualites {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.actualites-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

            .actualites-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
                gap: 40px;
                margin: 60px 0;
            }

.actualite-item {
    min-height: 420px;
}

.actualite-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.actualite-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.actualite-card-modern {
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(29, 80, 159, 0.08);
    position: relative;
}

.actualite-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1D509F, #ff7a00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.actualite-card-modern:hover::before {
    transform: scaleX(1);
}

.actualite-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(29, 80, 159, 0.15);
    border-color: rgba(29, 80, 159, 0.2);
}

.actualite-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.actualite-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.actualite-card-modern:hover .actualite-image {
    transform: scale(1.08);
}

.actualite-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.actualite-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 14px;
    line-height: 1.3;
    transition: color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.actualite-card-modern:hover .actualite-title {
    color: #1D509F;
}

.actualite-excerpt {
    color: #5a6c7d;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 400;
}

.actualite-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(29, 80, 159, 0.1);
}

.actualite-category {
    color: #ff7a00;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 122, 0, 0.05));
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8em;
    letter-spacing: 0.5px;
}

.actualite-date {
    color: #8e9aaf;
    font-style: italic;
    font-weight: 500;
}

.actualite-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.actualite-empty p {
    color: #8e9aaf;
    font-size: 1.2em;
    font-weight: 500;
}

.actualites-cta {
    text-align: center;
    margin-top: 60px;
}

.actualites-cta .btn {
    padding: 16px 32px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(29, 80, 159, 0.2);
}

.actualites-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(29, 80, 159, 0.3);
}

/* Responsive pour la section actualités */
@media (max-width: 1200px) {
    .actualites-container {
        padding: 0 30px;
    }
    
    .actualites-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    #actualites {
        padding: 80px 0;
    }
    
    .actualites-container {
        padding: 0 20px;
    }
    
    .actualites-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    
    .actualite-content {
        padding: 24px;
    }
    
    .actualite-title {
        font-size: 1.3em;
    }
    
    .actualite-image-container {
        height: 200px;
    }
    
    .actualites-cta {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    #actualites {
        padding: 60px 0;
    }
    
    .actualites-container {
        padding: 0 15px;
    }
    
    .actualite-content {
        padding: 20px;
    }
    
    .actualite-title {
        font-size: 1.2em;
    }
    
    .actualite-image-container {
        height: 180px;
    }
    
    .actualite-meta {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}
/* ==============================================
   16. Resultat
===============================================*/
#Resultat {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
	margin-top: -100px;
}
#Resultat .title-call {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    text-align: center;
    font-size: 205px;
    color: #1D509F;
    font: italic 2em "Helvetica", serif;
    font-weight: bold;
	margin-top: 150px;
}
.Resultat-box {
	background-color: #ffffff;
	border: 1px solid #F8F9FB;
	border-radius: 6px;
	box-shadow: 0 0 1px 0 rgba(0,12,32,0.04), 0 10px 16px 0 rgba(10,31,68,0.06);
	margin-top: 30px;
	margin-bottom: 60px;
	padding: 50px;
}
.border_assurance {
	background-color: #ffffff;
	border: 1px solid #F8F9FB;
	border-radius: 25px;
	min-height: 150px;
	border-style: solid;
	margin-top: 30px;
	margin-bottom: 30px;
}
.border_assurance .row {
	margin-top: 30px;
	margin-bottom: 30px;
}
.images_logo_resultat {
	width: 150px;
	margin-top: -10px;
}
.images_logo_cardif {
	width: 180px !important;
	height: auto !important;
	object-fit: contain;
	margin-top: -10px;
}
.images_logo_afi {
	max-width: 180px;
	max-height: 80px;
	object-fit: contain;
	margin-top: -10px;
}
.Text_number1 {
    color: #1D509F !important;
    font-size: 17px;
    font-family: Helvetica;
}
.resultats_emprunteurs {
	display: flex;
	flex-direction: column;
	justify-content: left;
	margin-top: 0px;
}
  
.result_mois {
	color: #F08422 !important;
	font-size: 35px;
	font-family: Helvetica;
	font-weight: bold;
}
.resultats_mensuel {
	margin-right: 0px;
}
.res {
	background-color: #1D509F;
	min-height: 40px;
	width: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: skewX(-25deg);
	color: white;
	border-color: transparent;
	margin-left: 90px;
}
.resultats_emprunteurs .Text_number {
	margin-bottom: 6px; /* Adjust the value as per your desired vertical spacing */
}
.result {
    margin-left: 5px;
    color: #F08422 !important;
    font-size: 17px;
    font-family: Helvetica;
    font-weight: bold;
}
/* ==============================================
   17. About
===============================================*/
#about {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
	margin-top: -20px;
}
.about-box {
	background-color: #ffffff;
	border: 1px solid #F8F9FB;
	border-radius: 6px;
	box-shadow: 0 0 1px 0 rgba(0,12,32,0.04), 0 10px 16px 0 rgba(10,31,68,0.06);
	margin-top: 60px;
	margin-bottom: 60px;
	padding: 50px;
}
#about .title-call {
	margin-top: 0px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	text-align: center;
	font-size: 205px;
	color: #1D509F;
	font: italic 2.0em "Helvetica", serif;
	font-weight: bold;
}
/* ==============================================
   18. details resultats
===============================================*/
#detail-resultat {
	background-color: #F8F9FB;
	border-top: 1px solid #F8F9FB;
	border-bottom: 1px solid #F8F9FB;
	margin-top: -20px;
}
#detail-resultat .images_picto {
    width: 160px;
    margin-bottom: -20px;
    margin-top: -20px;
}
#detail-resultat .pricing-box li {
    font-size: 14px;
    font-weight: 300;
    color: #8da2b5;
    letter-spacing: .1em;
    margin-bottom: 15px;
}

/* ==============================================
   100. Media Queries
===============================================*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
	h2 {
		font-size: 34px!important;
		margin-bottom: 20px;
		line-height: 1.6;
	}
	.title-block h2, p {
		text-align: left;
		padding: 0px 20px;
	}

	#call-to-action h2, p {
		text-align: left!important;
		padding: 0 20px;
	}

	#call-to-action {
		background-image: none;
		background-color: #1d509f;
	}

	footer {
		padding: 60px 25px;
	}
	footer h5 {
		font-size: 18px;
		margin-top: 30px;
	}
	footer li {
		font-size: 16px;
		margin-bottom: 15px;
	}
	footer p {
		font-size: 16px;
	}
	footer i {
		font-size: 30px;
		margin-right: 20px;
	}
	footer small {
		float: left;
		margin-top: 20px;
	}
}

/* Responsive Hero Section - Gestion des différents niveaux de zoom */

/* Pour les grands écrans avec zoom (1600px - 1920px) */
@media (max-width: 1920px) and (min-width: 1601px) {
	.hero-title {
		font-size: clamp(40px, 3vw, 48px);
	}
	.hero-content-wrapper {
		padding: clamp(60px, 7vh, 100px) clamp(30px, 3vw, 60px) clamp(60px, 7vh, 100px) clamp(40px, 4vw, 70px);
	}
}

/* Pour écrans avec zoom 110% - 125% (équivalent ~1200px - 1600px) */
@media (max-width: 1600px) and (min-width: 1200px) {
	.hero-title {
		font-size: clamp(36px, 3vw, 44px);
		line-height: 1.25;
	}

	.hero-subtitle {
		font-size: clamp(16px, 1.5vw, 20px);
	}

	.hero-content-wrapper {
		padding: clamp(50px, 6vh, 90px) clamp(25px, 2.5vw, 50px) clamp(50px, 6vh, 90px) clamp(35px, 3.5vw, 60px);
		max-width: 92%;
	}

	.btn-hero-primary {
		font-size: clamp(16px, 1.2vw, 18px);
		padding: 16px 30px;
	}
}

/* Pour écrans avec zoom 150% - 175% (équivalent ~992px - 1200px) */
@media (max-width: 1199px) and (min-width: 992px) {
	.hero-title {
		font-size: clamp(32px, 2.8vw, 40px);
		line-height: 1.3;
	}

	.hero-subtitle {
		font-size: clamp(15px, 1.4vw, 19px);
	}

	.hero-content-wrapper {
		padding: clamp(40px, 5vh, 80px) clamp(20px, 2vw, 40px) clamp(40px, 5vh, 80px) clamp(30px, 3vw, 50px);
		max-width: 95%;
	}

	.hero-brand {
		font-size: 13px;
	}

	.btn-hero-primary {
		font-size: 16px;
		padding: 15px 28px;
	}
}

/* Pour tablettes et écrans avec zoom 200% (équivalent ~768px - 991px) */
@media (max-width: 991px) and (min-width: 769px) {
	.hero-row {
		min-height: 650px;
		height: 650px;
		max-height: 750px;
	}

	.hero-image-container {
		height: 650px;
		max-height: 750px;
	}

	.hero-title {
		font-size: clamp(28px, 3.5vw, 36px);
		line-height: 1.3;
	}

	.hero-subtitle {
		font-size: clamp(15px, 2vw, 18px);
	}

	.hero-content-container {
		height: 650px;
		max-height: 750px;
	}

	.hero-content-wrapper {
		padding: 45px 35px;
		max-width: 95%;
		width: 95%;
	}

	.btn-hero-primary {
		font-size: 16px;
		padding: 14px 26px;
	}
}

/* Responsive Hero Section */
@media (max-width: 768px) {
	.hero-row {
		min-height: auto;
		height: auto;
		flex-direction: column;
	}

	.hero-image-container {
		height: 400px;
		max-height: 450px;
	}

	.hero-overlay {
		display: none;
	}

	.hero-image-full {
		height: 100%;
	}

	.hero-content-container {
		min-height: auto;
		height: auto;
		padding: 50px 20px;
		justify-content: center;
	}

	.hero-content-wrapper {
		padding: 0;
		max-width: 100%;
		width: 100%;
		text-align: center;
	}

	.hero-title {
		font-size: clamp(26px, 5vw, 32px);
		margin-bottom: 20px;
		text-align: center;
	}

	.hero-subtitle {
		font-size: clamp(15px, 3vw, 18px);
		margin-bottom: 25px;
		text-align: center;
	}

	.hero-brand {
		text-align: center;
	}

	.hero-brand::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.btn-hero-primary {
		padding: 16px 32px;
		font-size: 17px;
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.hero-image-container {
		height: 350px;
		max-height: 400px;
	}

	.hero-image-full {
		height: 100%;
	}
	
	.hero-content-wrapper {
		padding: 50px 20px;
	}
	
	.hero-title {
		font-size: clamp(24px, 6vw, 30px);
		text-align: center;
	}

	.hero-subtitle {
		font-size: clamp(15px, 4vw, 18px);
		text-align: center;
	}
}

@media (max-width: 991px) { 
	.nav-right {
		float: left;
	}
	.nav-custom-link {
		border-bottom: 1px solid #EEE;
	}
	.navbar-nav{
		width: 100%;
	}
	.navbar-nav .nav-link {
		padding: 20px 0;
		text-align: left;
	}

	.btn-demo-small {
		background-color: #ffffff;
		border: 0px;
		padding: 0px;
		box-shadow: none;

	}
	.btn-demo-small:hover {
		background-color: #ffffff;
		border: 0px;
		padding: 0px;
		box-shadow: none;

	}
	.btn-demo-small a {
		color: #53627C!important;
	}
	.nav-custom-link {
		font-size: 13px;
	}

	.icon-mobile {
		font-size: 18px;
		float: right;
	}

	.navbar-collapse {
		border-bottom: 1px solid #efefef;
	}

	.nav-logo-mobile {
		margin: auto;
		padding-right: 50px;
	}

	.nav-logo-desktop {
		display: none;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
	.icon-mobile {
		display: none;
	}
	.nav-logo-mobile {
		display: none;
	}
}
/* Mq special Antoine */
/* Responsive Design pour toutes les sections de simulation */
@media (max-width: 768px) {
	/* Sections générales - Espacement optimisé sur mobile */
	#objetassurance,
	#objetpret,
	#Simulationemprunt,
	#Simulationfinancent,
	#Simulationpret,
	#Contact {
		padding: 30px 0 15px 0; /* Espacement réduit mais suffisant pour la progress bar */
		min-height: auto;
		position: relative;
		margin-top: 0 !important; /* Annuler les margin-top négatifs */
	}
	
	/* Boîtes de simulation - Espacement réduit */
	.Simulationemprunt-box,
	.Simulationfinancement-box,
	.Simulationpret-box,
	.Simulationcontact-box {
		margin: 10px 0 10px 0; /* Espacement réduit */
		border-radius: 12px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
		position: relative;
		z-index: 1;
	}
	
	.Simulationemprunt-box .p-4,
	.Simulationpret-box .p-4 {
		padding: 20px 15px !important;
	}
	
	.Simulationcontact-box {
		padding: 25px 15px !important;
	}
	
	/* Titres centrés */
	.title-call h2 {
		font-size: 24px !important;
		margin-bottom: 20px;
		text-align: center;
	}
	
	/* Layout responsive pour toutes les sections */
	.construction_emprunt .row,
	.financement .row,
	.pret .row {
		margin: 0;
	}
	
	.construction_emprunt .col-md-6,
	.financement .col-md-6,
	.pret .col-md-6 {
		width: 100%;
		padding: 10px;
		margin-bottom: 20px;
	}
	
	/* Améliorer l'affichage des lignes de formulaire */
	.construction_emprunt .row.align-items-center,
	.financement .row.align-items-center,
	.pret .row.align-items-center {
		margin-bottom: 20px;
		flex-direction: column;
		align-items: stretch !important;
	}
	
	.construction_emprunt .col-7,
	.construction_emprunt .col-5,
	.financement .col-7,
	.financement .col-5,
	.pret .col-7,
	.pret .col-5 {
		width: 100%;
		max-width: 100%;
		flex: none;
		margin-bottom: 10px;
		text-align: center;
	}
	
	.construction_emprunt .col-7 h1,
	.financement .col-7 h1,
	.pret .col-7 h1 {
		font-size: 18px !important;
		margin-bottom: 10px;
		text-align: center;
	}
	
	/* Radio buttons responsive */
	.radio-group {
		display: flex;
		justify-content: center;
		gap: 15px;
		flex-wrap: wrap;
	}
	
	.radio-button {
		margin: 5px 0;
	}
	
	/* Inputs et selects responsive pour toutes les sections */
	.construction_emprunt input,
	.construction_emprunt select,
	.financement input,
	.financement select,
	.pret input,
	.pret select,
	#Contact input,
	#Contact select,
	#Contact textarea {
		width: 100% !important;
		max-width: 100% !important;
		padding: 12px 15px;
		font-size: 16px;
		border-radius: 8px;
		margin-bottom: 10px;
		border: 2px solid #e9ecef;
		transition: all 0.3s ease;
	}
	
	/* Input groups spécifiques pour la section prêt */
	.pret .input-group {
		display: flex;
		width: 100%;
		margin-bottom: 10px;
	}
	
	.pret .input-group input {
		flex: 1;
		border-radius: 8px 0 0 8px !important;
		border-right: none;
		margin-bottom: 0;
	}
	
	.pret .input-group-addon {
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #f8f9fa;
		border: 2px solid #e9ecef;
		border-left: none;
		border-radius: 0 8px 8px 0;
		padding: 12px 15px;
		font-size: 16px;
		color: #6c757d;
		min-width: 50px;
	}
	
	.pret .input-group input:focus + .input-group-addon {
		border-color: #1D509F;
	}
	
	/* Focus states pour tous les champs */
	.construction_emprunt input:focus,
	.construction_emprunt select:focus,
	.financement input:focus,
	.financement select:focus,
	.pret input:focus,
	.pret select:focus,
	#Contact input:focus,
	#Contact select:focus,
	#Contact textarea:focus {
		border-color: #1D509F;
		box-shadow: 0 0 0 3px rgba(29, 80, 159, 0.1);
		outline: none;
	}
	
	/* Progress bar mobile - Espacement optimisé */
	.progress-container,
	.objet_assurance,
	.objet_pret,
	.construction_emprunt,
	.financement,
	.pret,
	.test {
		margin: 15px 0 15px 0; /* Espacement réduit mais visible */
		padding: 0 15px;
		position: relative;
		z-index: 10;
	}
	
	/* Progress bar elle-même */
	.progress {
		margin-bottom: 15px !important; /* Espacement réduit avec le contenu suivant */
	}
	
	.progress {
		height: 14px !important;
		border-radius: 25px !important;
		background-color: #e9ecef !important;
		box-shadow: inset 0 2px 4px rgba(0,0,0,0.1) !important;
		overflow: visible !important;
	}
	
	.progress-bar {
		border-radius: 25px !important;
		box-shadow: 0 2px 8px rgba(238, 118, 9, 0.4) !important;
		position: relative !important;
	}
	
	/* Bandeau form responsive */
	.form_bandeau {
		margin-left: 10px;
		margin-right: 10px;
	}
}

@media (max-width: 576px) {
	/* Espacement optimisé des sections sur très petits écrans */
	#objetassurance,
	#objetpret,
	#Simulationemprunt,
	#Simulationfinancent,
	#Simulationpret,
	#Contact {
		padding: 25px 0 10px 0; /* Espacement réduit pour optimiser l'espace écran */
		margin-top: 0 !important; /* Annuler les margin-top négatifs */
	}
	
	/* Padding réduit pour toutes les boîtes */
	.Simulationemprunt-box .p-4,
	.Simulationpret-box .p-4 {
		padding: 15px 10px !important;
	}
	
	.Simulationcontact-box {
		padding: 20px 10px !important;
	}
	
	/* Boîtes de simulation - Espacement minimal sur très petits écrans */
	.Simulationemprunt-box,
	.Simulationfinancement-box,
	.Simulationpret-box,
	.Simulationcontact-box {
		margin: 8px 0 8px 0; /* Espacement minimal pour optimiser l'espace */
	}
	
	/* Titres plus petits */
	.title-call h2 {
		font-size: 22px !important;
	}
	
	.construction_emprunt .col-7 h1,
	.financement .col-7 h1,
	.pret .col-7 h1 {
		font-size: 16px !important;
	}
	
	/* Radio buttons - Madame/Monsieur restent en ligne, autres en colonne */
	.radio-group {
		display: flex;
		justify-content: center;
		gap: 15px;
		flex-wrap: wrap; /* Permet le retour à la ligne si nécessaire */
	}
	
	/* Pour les autres groupes de radio buttons (plus de 2 options), on peut les mettre en colonne si nécessaire */
	.radio-group.vertical-mobile {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	
	/* Champs plus grands pour le tactile */
	.construction_emprunt input,
	.construction_emprunt select,
	.financement input,
	.financement select,
	.pret input,
	.pret select,
	#Contact input,
	#Contact select,
	#Contact textarea {
		padding: 15px;
		font-size: 18px;
	}
	
	/* Input groups sur très petits écrans */
	.pret .input-group input {
		padding: 15px;
		font-size: 18px;
		border-radius: 10px 0 0 10px !important;
	}
	
	.pret .input-group-addon {
		padding: 15px 18px;
		font-size: 18px;
		min-width: 60px;
		border-radius: 0 10px 10px 0;
	}
	
	/* Bandeau form encore plus compact */
	.form_bandeau {
		margin-left: 5px;
		margin-right: 5px;
	}
}

@media (min-width: 768px) and (max-width: 1206px) { 
		
	.construction_emprunt .col-md-6 {
		min-width: 600px;
	}
	
	.construction_emprunt .col-md-6{
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}

}

@media (min-width: 768px) and (max-width: 992px) { 
		
	.construction_pret .col-md-6 {
		min-width: 600px;
	}
	
	.construction_pret .col-md-6{
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}

}
@media (min-width: 992px) and (max-width: 1199px) { 
		
	.res {
		background-color: #1D509F;
		min-height: 40px;
		width: 150px;
		display: flex;
		justify-content: center;
		align-items: center;
		transform: skewX(-25deg);
		color: white;
		border-color: transparent;
		margin-left: 60px;
	}
	.images_logo_cardif {
		width: 200px;
		margin-top: 30px;
		margin-left: 25px;
	}
	.images_logo_afi {
		width: 250px;
		margin-left: 40px;
	}
}
@media (min-width: 597px) and (max-width: 768px) { 
	#Resultat .text-center {
		text-align: center!important;
		margin-bottom: 10px;
	}
	.res {
		background-color: #1D509F;
		min-height: 40px;
		width: 150px;
		display: flex;
		justify-content: center;
		align-items: center;
		transform: skewX(-25deg);
		color: white;
		border-color: transparent;
		margin-left: 160px;
	}
	.border_assurance {
		background-color: #ffffff;
		border: 1px solid #F8F9FB;
		border-radius: 25px;
		min-height: 150px;
		border-style: solid;
		margin-top: 30px;
		margin-bottom: 30px;
		max-width: 450px;
		min-width: 450px;
	}
}
@media (max-width: 405px) { 
	#Resultat .text-center {
		text-align: center!important;
		margin-bottom: 10px;
	}
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
	.hero-content {
		margin-top: 100px;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) { 
	.pricing-box h3 {
		font-size: 17px;
	}
	.pricing-box p {
		font-size: 14px;
	}
	.pricing-box li {
		font-size: 12px;
	}
	.btn-buy {
		font-size: 12px;
		padding: 15px 20px;
	}
	.btn-demo {
		font-size: 12px;
		padding: 15px 20px;
	}
	.profile-picture {
		width: 50px;
		height: 50px;
	}
	.testimonial-box h6 {
		font-size: 14px;
		margin-left: 10px;
	}
	.testimonial-box span {
		font-size: 12px;
	}
	.testimonial-box small {
		font-size: 12px;
		margin-top: 4px;
		margin-left: 10px;
	}
}
/********************************************
 * 101 POPUP information
 *******************************************/
/* Style du tooltip */
/* Style du tooltip */
.tooltiptext {
    min-width: 250px;
    max-width: 300px;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #EE7609;
    
    /* Position */
    position: absolute;
    left: -117px;
    bottom: 55px;  /* Augmenté de 25px à 35px pour monter le tooltip */
    z-index: 1000;
    transition: opacity 0.2s;
}

/* Titre du tooltip */
.tooltiptext h1 {
    color: #EE7609;
    font-size: 14px; /* Réduit encore la taille */
    font-weight: 600;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(238, 118, 9, 0.2);
}

/* Texte du tooltip */
.tooltiptext p {
    color: #666;
    font-size: 12px;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

/* Flèche du tooltip */
.tooltiptext::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #EE7609 transparent transparent transparent;
}
/* Icône info avec son conteneur */
.icon.fa.fa-info-circle {
    color: #EE7609;
    font-size: 16px;
    cursor: pointer;
    margin-left: 4px;
    position: relative;
}

/* Affichage au hover */
.icon.fa.fa-info-circle:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Container pour l'icône */
.ms-3 {
    position: relative;
    display: inline-block;
}

/* Affichage du tooltip au hover */
.icon.fa.fa-info-circle:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********************************************
 * NAVBAR MODERNE ET ÉPURÉE
 *******************************************/

/* Navbar moderne */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Container du logo */
.navbar-brand-container {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

/* Lien du logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 8px;
}

.logo-link:hover {
    text-decoration: none;
    transform: scale(1.05);
    background: rgba(238, 118, 9, 0.05);
    box-shadow: 0 2px 8px rgba(238, 118, 9, 0.1);
}

/* Logo moderne */
.modern-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Navigation items */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: flex;
    align-items: center;
}

/* Texte de navigation */
.nav-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #3a3f52;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    cursor: default;
    transition: all 0.3s ease;
}

.nav-text:hover {
    color: #EE7609;
    transform: translateY(-1px);
}

/* Liens de navigation avec effet arrondi */
.nav-link {
    color: #555 !important;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 18px !important;
    margin: 0 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    border-radius: 20px;
    background: transparent;
    font-family: 'Roboto', sans-serif;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #EE7609 !important;
    text-decoration: none;
    background: rgba(238, 118, 9, 0.08);
    border: 1px solid rgba(238, 118, 9, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(238, 118, 9, 0.15);
}

/* Texte d'accueil */
.welcome-text {
    color: #EE7609 !important;
    font-weight: 500;
}

/* Texte admin */
.admin-text {
    color: #dc3545;
    font-weight: 500;
}

/* Texte de connexion */
.login-text {
    color: #EE7609;
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(238, 118, 9, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(238, 118, 9, 0.2);
}

/* Bouton de déconnexion */
.btn-logout {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-logout:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .modern-navbar {
        padding: 20px 0; /* Encore plus d'espace vertical */
    }
    
    .modern-logo {
        height: 65px; /* Logo encore plus grand */
        max-width: 220px; /* Largeur max encore augmentée */
    }
    
    .navbar-nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-text {
        font-size: 14px;
    }
    
    .welcome-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .modern-logo {
        height: 60px; /* Logo encore plus grand sur très petits écrans */
        max-width: 200px; /* Largeur max encore plus grande */
    }
    
    .navbar-nav {
        gap: 10px;
    }
    
    .nav-text {
        font-size: 13px;
    }
    
    .welcome-text {
        display: none;
    }
}

/********************************************
 * NAVBAR ÉLÉGANTE ET MODERNE
 *******************************************/

/* Navbar élégante moderne */
.elegant-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* Container principal */
.elegant-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    max-width: 1200px;
}

/* Logo élégant */
.navbar-brand-elegant {
    display: flex;
    align-items: center;
}

.elegant-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.elegant-logo:hover {
    transform: scale(1.02);
    filter: brightness(1.2);
}

/* Navigation élégante */
.navbar-nav-elegant {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

/* Items de navigation */
.nav-item-elegant {
    display: flex;
    align-items: center;
}

/* Liens de navigation */
.nav-link-elegant {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    cursor: default;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link-elegant::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #EE7609;
    transition: width 0.3s ease;
}

.nav-link-elegant:hover {
    color: #EE7609;
}

.nav-link-elegant:hover::after {
    width: 100%;
}

/* Lien d'accueil */
.welcome-link {
    color: #EE7609 !important;
    font-weight: 500;
    background: rgba(238, 118, 9, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(238, 118, 9, 0.15);
}

.welcome-link::after {
    display: none;
}

/* Lien admin */
.admin-link {
    color: #dc3545;
    font-weight: 500;
    background: rgba(220, 53, 69, 0.08);
    padding: 8px 12px;
    border-radius: 15px;
    border: 1px solid rgba(220, 53, 69, 0.15);
    font-size: 13px;
}

.admin-link::after {
    display: none;
}

/* Lien de connexion */
.login-link {
    color: #EE7609;
    font-weight: 500;
    background: rgba(238, 118, 9, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(238, 118, 9, 0.2);
    transition: all 0.3s ease;
}

.login-link:hover {
    background: rgba(238, 118, 9, 0.15);
    border-color: rgba(238, 118, 9, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(238, 118, 9, 0.2);
}

.login-link::after {
    display: none;
}

/* Bouton de déconnexion élégant */
.btn-logout-elegant {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-logout-elegant:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Responsive design élégant */
@media (max-width: 992px) {
    .elegant-navbar .container {
        padding: 12px 20px;
    }
    
    .navbar-nav-elegant {
        gap: 25px;
    }
    
    .elegant-logo {
        height: 45px;
        max-width: 160px;
    }
    
    .nav-link-elegant {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .elegant-navbar .container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .navbar-nav-elegant {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .elegant-logo {
        height: 40px;
        max-width: 140px;
    }
    
    .nav-link-elegant {
        font-size: 13px;
    }
    
    .welcome-link {
        display: none;
    }
}

@media (max-width: 576px) {
    .elegant-navbar .container {
        padding: 10px 15px;
    }
    
    .navbar-nav-elegant {
        gap: 15px;
    }
    
    .elegant-logo {
        height: 35px;
        max-width: 120px;
    }
    
    .nav-link-elegant {
        font-size: 12px;
    }
    
         .admin-link {
         display: none;
     }
 }

/********************************************
 * NAVBAR OPTIMISÉE POUR UTILISATEURS CONNECTÉS
 *******************************************/

/* Navbar pour utilisateurs connectés */
.connected-navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(238, 118, 9, 0.15);
    padding: 12px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

/* Section utilisateur */
.user-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

/* Section admin */
.admin-section {
    display: flex;
    gap: 10px;
}

.admin-link {
    color: #dc3545 !important;
    font-weight: 500;
    font-size: 13px;
    padding: 8px 12px !important;
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.2);
}

.admin-link i {
    margin-right: 5px;
    font-size: 12px;
}

/* Action principale */
.primary-action {
    color: #fff !important;
    background: linear-gradient(135deg, #EE7609 0%, #FF8C42 100%);
    border: none;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(238, 118, 9, 0.3);
    transition: all 0.3s ease;
}

.primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 118, 9, 0.4);
    color: #fff !important;
}

.primary-action i {
    margin-right: 8px;
    font-size: 14px;
}

/* Profil utilisateur */
.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(238, 118, 9, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Avatar utilisateur */
.user-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #EE7609 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

/* Informations utilisateur */
.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    line-height: 1.2;
}

.user-status {
    font-size: 11px;
    color: #28a745;
    font-weight: 500;
}

/* Dropdown toggle */
.dropdown-toggle {
    background: none;
    border: none;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

/* Menu dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.user-profile:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Items du dropdown */
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(238, 118, 9, 0.08);
    color: #EE7609;
}

.dropdown-item i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

/* Séparateur du dropdown */
.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 8px 0;
}

/* Bouton de déconnexion */
.logout-btn {
    color: #dc3545 !important;
}

.logout-btn:hover {
    background: rgba(220, 53, 69, 0.08) !important;
    color: #dc3545 !important;
}

/* Bouton de connexion pour utilisateurs non connectés */
.login-btn {
    color: #EE7609 !important;
    background: rgba(238, 118, 9, 0.08);
    border: 1px solid rgba(238, 118, 9, 0.2);
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: rgba(238, 118, 9, 0.15);
    border-color: rgba(238, 118, 9, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(238, 118, 9, 0.2);
    color: #EE7609 !important;
}

.login-btn i {
    margin-right: 8px;
    font-size: 14px;
}

/* Responsive design pour la navbar connectée */
@media (max-width: 992px) {
    .user-section {
        margin-left: 15px;
        gap: 15px;
    }
    
    .admin-section {
        gap: 8px;
    }
    
    .admin-link {
        font-size: 12px;
        padding: 6px 10px !important;
    }
    
    .primary-action {
        padding: 8px 16px !important;
        font-size: 14px;
    }
    
    .user-profile {
        padding: 6px 12px;
    }
    
    .user-avatar {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .user-name {
        font-size: 13px;
    }
    
    .user-status {
        font-size: 10px;
    }
}

/* Styles pour la navbar responsive mobile */
@media (max-width: 991px) {
    .modern-navbar {
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .navbar-brand-container {
        flex: 1;
        display: flex;
        justify-content: flex-start;
        margin-right: 20px;
    }
    
    .navbar-toggler {
        flex-shrink: 0;
        margin-left: auto;
        margin-right: 10px;
        transform: scale(0.9);
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        padding: 20px;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav {
        flex-direction: column !important;
        gap: 15px;
        align-items: stretch;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 20px !important;
        border-radius: 10px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }
    
    .nav-link:hover {
        background: rgba(238, 118, 9, 0.1);
        border-color: rgba(238, 118, 9, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(238, 118, 9, 0.15);
    }
    
    .user-section {
        flex-direction: column;
        gap: 15px;
        margin-left: 0;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .admin-dropdown,
    .user-dropdown {
        width: 100%;
    }
    
    .admin-toggle,
    .user-toggle {
        width: 100%;
        justify-content: center;
        padding: 12px 20px !important;
        border-radius: 10px;
        font-size: 16px;
    }
    
    .admin-menu,
    .user-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 10px;
        padding: 0;
    }
    
    .admin-item,
    .user-menu-item,
    .user-info-item {
        padding: 10px 20px;
        border-radius: 8px;
        margin-bottom: 5px;
        background: rgba(0, 0, 0, 0.03);
        text-align: center;
    }
    
    .admin-item:hover,
    .user-menu-item:hover {
        background: rgba(238, 118, 9, 0.1);
        transform: none;
    }
    
    .login-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px !important;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .navbar-toggler {
        border: none;
        padding: 8px 12px;
        border-radius: 8px;
        background: rgba(238, 118, 9, 0.1);
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:hover {
        background: rgba(238, 118, 9, 0.2);
        transform: scale(1.05);
    }
    
    .navbar-toggler:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(238, 118, 9, 0.2);
    }
    
    .navbar-toggler-icon {
        color: #EE7609;
        font-size: 20px;
    }
    
    .modern-logo {
        height: 60px; /* Logo encore plus grand */
        max-width: 200px; /* Largeur max encore plus grande */
    }
}

@media (max-width: 768px) {
    .connected-navbar {
        padding: 20px 0; /* Encore plus d'espace vertical */
    }
    
    .modern-navbar {
        padding: 0 20px; /* Plus de padding latéral */
    }
    
    .navbar-brand-container {
        margin-right: 25px; /* Encore plus d'espace pour le logo */
    }
    
    .navbar-toggler {
        margin-right: 15px;
        transform: scale(1.0); /* Bouton hamburger taille normale */
    }
    
    .navbar-collapse {
        margin-top: 15px;
        padding: 25px; /* Encore plus de padding pour le menu */
    }
    
    .nav-link {
        padding: 15px 20px !important; /* Encore plus de padding pour les liens */
        font-size: 17px; /* Texte encore plus grand */
    }
    
    .admin-toggle,
    .user-toggle,
    .login-btn {
        padding: 15px 20px !important; /* Encore plus de padding */
        font-size: 17px; /* Texte encore plus grand */
    }
    
    .modern-logo {
        height: 55px; /* Logo encore plus grand */
        max-width: 200px; /* Largeur max encore augmentée */
    }
}

@media (max-width: 576px) {
    .modern-navbar {
        padding: 0 18px; /* Encore plus de padding latéral */
    }
    
    .navbar-brand-container {
        margin-right: 20px; /* Encore plus d'espace pour le logo */
    }
    
    .navbar-toggler {
        margin-right: 12px;
        transform: scale(0.95); /* Bouton hamburger légèrement plus petit */
    }
    
    .navbar-collapse {
        padding: 20px; /* Encore plus de padding pour le menu */
        margin-top: 10px;
    }
    
    .nav-link {
        padding: 12px 18px !important; /* Encore plus de padding */
        font-size: 16px; /* Texte encore plus grand */
    }
    
    .admin-toggle,
    .user-toggle,
    .login-btn {
        padding: 12px 18px !important; /* Encore plus de padding */
        font-size: 16px; /* Texte encore plus grand */
    }
    
    .modern-logo {
        height: 50px; /* Logo encore plus grand même sur très petits écrans */
        max-width: 180px; /* Largeur max encore plus grande */
    }
    
    .user-section {
        gap: 10px;
        margin-top: 15px;
        padding-top: 15px;
    }
}

/* Menu Admin Dropdown */
.admin-dropdown {
    position: relative;
}

.admin-toggle {
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: #dc3545 !important;
    font-weight: 500;
    padding: 8px 16px !important;
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.admin-toggle:hover {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.2);
    color: #dc3545 !important;
    text-decoration: none;
}

.admin-toggle i:first-child {
    font-size: 14px;
}

.admin-toggle i:last-child {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.admin-dropdown.active .admin-toggle i:last-child {
    transform: rotate(180deg);
}

.admin-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.admin-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.admin-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.admin-item:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    text-decoration: none;
}

.admin-item i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Menu User Dropdown */
.user-dropdown {
    position: relative;
}

.user-toggle {
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: #333 !important;
    font-weight: 500;
    padding: 8px 16px !important;
    background: rgba(238, 118, 9, 0.08);
    border: 1px solid rgba(238, 118, 9, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.user-toggle:hover {
    background: rgba(238, 118, 9, 0.15);
    border-color: rgba(238, 118, 9, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(238, 118, 9, 0.2);
    color: #333 !important;
    text-decoration: none;
}

.user-toggle i:first-child {
    font-size: 16px;
    color: #EE7609;
}

.user-toggle i:last-child {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.user-dropdown.active .user-toggle i:last-child {
    transform: rotate(180deg);
}

.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.user-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.user-info-item i {
    font-size: 14px;
    width: 16px;
    text-align: center;
    color: #EE7609;
}

.user-menu-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 8px 0;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.user-menu-item:hover {
    background: rgba(238, 118, 9, 0.08);
    color: #EE7609;
}

.user-menu-item i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.logout-item {
    color: #dc3545 !important;
}

.logout-item:hover {
    background: rgba(220, 53, 69, 0.08) !important;
    color: #dc3545 !important;
}

/* Responsive pour les menus dropdown */
@media (max-width: 768px) {
    .user-section {
        gap: 10px;
        margin-left: 10px;
    }
    
    .admin-toggle,
    .user-toggle {
        padding: 6px 12px !important;
        font-size: 13px;
    }
    
    .admin-menu {
        left: -50px;
        min-width: 140px;
    }
    
    .user-menu {
        right: -50px;
        min-width: 160px;
    }
}

/********************************************
 * GESTION DES COOKIES
 *******************************************/

/* Popup de consentement cookies - PREMIÈRE ÉTAPE (simple) */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Caché par défaut */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.cookie-popup.show {
    display: flex; /* Affiché seulement avec la classe 'show' */
}

.cookie-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    overflow: hidden;
    position: relative;
    animation: cookieSlideIn 0.5s ease-out;
}

/* Styles pour la première popup simple */
.cookie-title {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.cookie-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.cookie-skip {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-skip:hover {
    color: #EE7609;
    text-decoration: none;
}

/* Illustration du cookie mignon */
.cookie-illustration {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.cookie-character {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cookieBounce 2s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

@keyframes cookieBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cookie-face {
    position: relative;
    width: 80px;
    height: 60px;
}

.cookie-eyes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cookie-eye {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    animation: cookieBlink 3s ease-in-out infinite;
}

.cookie-eye.left {
    animation-delay: 0s;
}

.cookie-eye.right {
    animation-delay: 0.5s;
}

@keyframes cookieBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.cookie-mouth {
    width: 20px;
    height: 8px;
    background: #333;
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
    animation: cookieSmile 2s ease-in-out infinite;
}

@keyframes cookieSmile {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.2); }
}

.cookie-bites {
    position: absolute;
    top: -5px;
    right: -5px;
}

.cookie-bite {
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    animation: cookieBite 1.5s ease-in-out infinite;
}

.cookie-bite.bite1 {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.cookie-bite.bite2 {
    top: 15px;
    right: 15px;
    animation-delay: 0.5s;
}

@keyframes cookieBite {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Boutons pour la première popup */
.cookie-choose {
    background: white;
    color: #333;
    border: 2px solid #ddd;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.cookie-choose:hover {
    border-color: #EE7609;
    color: #EE7609;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 118, 9, 0.2);
}

.cookie-accept {
    background: linear-gradient(135deg, #EE7609 0%, #FF8C42 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(238, 118, 9, 0.3);
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #d66808 0%, #e67e3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 118, 9, 0.4);
}

/* Popup de consentement cookies - DEUXIÈME ÉTAPE (détaillée) */
.cookie-popup-detailed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Caché par défaut */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.cookie-popup-detailed.show {
    display: flex; /* Affiché seulement avec la classe 'show' */
}

.cookie-container-detailed {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: cookieSlideIn 0.5s ease-out;
}

@keyframes cookieSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header de la popup */
.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    border-radius: 20px 20px 0 0;
}

.cookie-logo {
    flex: 0 0 auto;
}

.cookie-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.cookie-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-accept-all {
    background: linear-gradient(135deg, #EE7609 0%, #FF8C42 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(238, 118, 9, 0.3);
}

.cookie-accept-all:hover {
    background: linear-gradient(135deg, #d66808 0%, #e67e3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 118, 9, 0.4);
}

.cookie-refuse-all {
    background: white;
    color: #333;
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-refuse-all:hover {
    border-color: #EE7609;
    color: #EE7609;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(238, 118, 9, 0.2);
}

.cookie-close {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Contenu principal */
.cookie-content {
    padding: 30px;
}

.cookie-main-title {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Catégories de cookies */
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.cookie-category {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: rgba(238, 118, 9, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-category.required {
    background: linear-gradient(135deg, rgba(238, 118, 9, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    border-color: rgba(238, 118, 9, 0.2);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-category-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.cookie-category-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-category-description a {
    color: #1D509F;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-category-description a:hover {
    color: #EE7609;
}

/* Toggles */
.cookie-toggle-container {
    flex: 0 0 auto;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
    background-color: #EE7609;
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-input:focus + .toggle-slider {
    box-shadow: 0 0 1px #EE7609;
}

/* Toggle requis (toujours actif) */
.required-toggle .toggle-slider {
    background-color: #EE7609;
    opacity: 0.7;
    cursor: not-allowed;
}

.required-toggle .toggle-slider:before {
    transform: translateX(24px);
}

/* Actions */
.cookie-actions {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-save {
    background: linear-gradient(135deg, #1D509F 0%, #2E6BB8 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(29, 80, 159, 0.3);
}

.cookie-save:hover {
    background: linear-gradient(135deg, #1a4a8f 0%, #2a5fa8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 80, 159, 0.4);
}

/* Responsive design */
@media (max-width: 768px) {
    .cookie-container {
        width: 95%;
        margin: 20px;
        max-height: 95vh;
    }
    
    .cookie-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-logo-img {
        height: 40px;
    }
    
    .cookie-header-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-content {
        padding: 20px;
    }
    
    .cookie-main-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .cookie-categories {
        gap: 20px;
    }
    
    .cookie-category {
        padding: 20px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-category-title {
        font-size: 16px;
        padding-right: 0;
    }
    
    .cookie-category-description {
        font-size: 13px;
    }
    
    .cookie-save {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-main-title {
        font-size: 20px;
    }
    
    .cookie-category {
        padding: 15px;
    }
    
    .cookie-category-title {
        font-size: 15px;
    }
    
    .cookie-category-description {
        font-size: 12px;
    }
    
    .cookie-toggle {
        width: 45px;
        height: 24px;
    }
    
    .toggle-slider:before {
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
    }
    
    .toggle-input:checked + .toggle-slider:before {
        transform: translateX(21px);
    }
}

/* ==============================================
Section Features - Design ultra-premium
===============================================*/
#features {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 80px 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
}

#features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
}

.feature-simulator-premium {
  text-align: center;
  padding: 80px 50px;
  background: white;
  border-radius: 30px;
  border: 1px solid rgba(29, 80, 159, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.feature-simulator-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1D509F 0%, #EE7609 100%);
}

.feature-simulator-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(29, 80, 159, 0.15);
  border-color: rgba(29, 80, 159, 0.2);
}

.simulator-icon-premium {
  position: relative;
  margin: 0 auto 40px;
  width: 160px;
  height: 160px;
}

.icon-background {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1D509F 0%, #EE7609 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(29, 80, 159, 0.3);
  overflow: visible;
}

.icon-background i {
  font-size: 64px;
  color: white !important;
  font-weight: 300;
  transition: all 0.3s ease;
  display: block !important;
  position: relative;
  z-index: 10;
  opacity: 1 !important;
  visibility: visible !important;
}

.icon-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(29, 80, 159, 0.2) 0%, rgba(238, 118, 9, 0.2) 100%);
  border-radius: 50%;
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.feature-simulator-premium:hover .icon-background {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(29, 80, 159, 0.4);
}

.feature-simulator-premium:hover .icon-background i {
  transform: scale(1.1);
}

.feature-simulator-premium h3 {
  color: #1D509F;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.feature-simulator-premium p {
  color: #6c757d;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px 0;
  font-weight: 400;
}

.simulator-badge {
  background: linear-gradient(135deg, #EE7609 0%, #FF8C42 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(238, 118, 9, 0.3);
}

.feature-content-premium {
  padding-left: 30px;
  padding-right: 30px;
  text-align: left;
}

.feature-content-premium h2 {
  color: #1D509F;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.2;
  text-align: left;
  letter-spacing: -0.3px;
  white-space: nowrap;
  padding-right: 20px;
}

.feature-content-premium p {
  color: #495057;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 400;
}

.feature-content-premium strong {
  color: #1D509F;
  font-weight: 700;
}

.btn-feature-premium {
  background: linear-gradient(135deg, #1D509F 0%, #2E6BB8 100%);
  color: white;
  border: none;
  padding: 22px 50px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 15px;
  text-decoration: none;
  display: inline-block;
  margin-top: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(29, 80, 159, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-feature-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-feature-premium:hover::before {
  left: 100%;
}

.btn-feature-premium:hover {
  background: linear-gradient(135deg, #EE7609 0%, #FF8C42 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(238, 118, 9, 0.4);
  color: white;
  text-decoration: none;
}

/* Effets de survol pour la carte simulateur */
.feature-simulator-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 90px rgba(29, 80, 159, 0.2);
  border-color: rgba(29, 80, 159, 0.3);
}

.feature-simulator-premium:hover .icon-background {
  transform: scale(1.1);
  box-shadow: 0 25px 60px rgba(29, 80, 159, 0.5);
}

.feature-simulator-premium:hover .icon-background i {
  transform: scale(1.15);
}

/* Responsive pour la section features */
@media (max-width: 991px) {
  #features {
    padding: 60px 0;
    margin: 0;
  }
  
  .feature-content-premium {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 80px;
    text-align: left;
  }
  
  .feature-content-premium h2 {
    font-size: 36px;
    text-align: left;
    white-space: nowrap;
    padding-right: 15px;
  }
  
  .feature-content-premium p {
    text-align: left;
    font-size: 18px;
  }
  
  .feature-simulator-premium {
    margin-bottom: 50px;
    padding: 70px 40px;
  }
  
  .simulator-icon-premium {
    width: 140px;
    height: 140px;
  }
  
  .icon-background i {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  #features {
    padding: 50px 0;
    margin: 0;
  }
  
  .feature-content-premium h2 {
    font-size: 30px;
    text-align: left;
    white-space: nowrap;
    padding-right: 10px;
  }
  
  .feature-content-premium p {
    font-size: 17px;
    text-align: left;
  }
  
  .simulator-icon-premium {
    width: 120px;
    height: 120px;
  }
  
  .icon-background i {
    font-size: 48px;
  }
  
  .feature-simulator-premium h3 {
    font-size: 24px;
  }
  
  .feature-simulator-premium p {
    font-size: 16px;
  }
  
  .btn-feature-premium {
    padding: 20px 45px;
    font-size: 17px;
  }
}