.complementaire_accueil {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    gap: 20px;
    padding: 10px;
}
.complementaire_accueil .md-card {
    width: 100%;
    max-width: 400px;
}
/* ====================================
   Selects personnalisés avec recherche
   ==================================== */

.custom-select {
    position: relative;
    width: 100%;
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

/* Bouton principal du select */
.custom-select__trigger {
    width: 100%;
    padding: 14px 40px 14px 16px;
    background-color: #fff;
    border: 2px solid rgba(251, 153, 2, 0.3);
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.custom-select__trigger:hover:not(:disabled) {
    border-color: rgba(251, 153, 2, 0.5);
    box-shadow: 0 4px 12px rgba(251, 153, 2, 0.15);
    transform: translateY(-1px);
}

.custom-select__trigger:focus {
    outline: none;
    border-color: #fb9902;
    box-shadow: 0 0 0 4px rgba(251, 153, 2, 0.2);
}

.custom-select__value {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

/* Flèche du select */
.custom-select__arrow {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #666;
}

.custom-select--open .custom-select__arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.custom-select__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 320px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.custom-select--open .custom-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Barre de recherche dans le dropdown */
.custom-select__search {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    position: relative;
    flex-shrink: 0;
}

.custom-select__search-input {
	box-sizing: border-box;
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s ease;
    font-family: inherit;
}

.custom-select__search-input:focus {
    outline: none;
    border-color: #fb9902;
    box-shadow: 0 0 0 3px rgba(251, 153, 2, 0.1);
}

.custom-select__search-input::placeholder {
    color: #999;
}

.custom-select__search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

/* Container des options */
.custom-select__options {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 260px;
    padding: 6px;
}

/* Scrollbar personnalisée */
.custom-select__options::-webkit-scrollbar {
    width: 8px;
}

.custom-select__options::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.custom-select__options::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.custom-select__options::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Options individuelles */
.custom-select__option {
    padding: 12px 14px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #333;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

.custom-select__option:hover {
    background: linear-gradient(135deg, rgba(251, 153, 2, 0.1) 0%, rgba(251, 153, 2, 0.15) 100%);
    color: #fb9902;
    transform: translateX(2px);
}

.custom-select__option--selected {
    background: linear-gradient(135deg, rgba(251, 153, 2, 0.15) 0%, rgba(251, 153, 2, 0.2) 100%);
    color: #fb9902;
    font-weight: 600;
}

.custom-select__option--placeholder,
.custom-select__option--empty {
    color: #999;
    cursor: default;
    font-style: italic;
}

.custom-select__option--placeholder:hover,
.custom-select__option--empty:hover {
    background: transparent;
    color: #999;
    transform: none;
}

/* État désactivé */
.custom-select--disabled .custom-select__trigger {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

.custom-select--disabled .custom-select__trigger:hover {
    border-color: rgba(251, 153, 2, 0.3);
    box-shadow: none;
    transform: none;
}

/* Animation d'entrée des options */
.custom-select__option {
    animation: slideIn 0.2s ease-out forwards;
    opacity: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Délais d'animation échelonnés pour les options */
.custom-select__option:nth-child(1) { animation-delay: 0.02s; }
.custom-select__option:nth-child(2) { animation-delay: 0.04s; }
.custom-select__option:nth-child(3) { animation-delay: 0.06s; }
.custom-select__option:nth-child(4) { animation-delay: 0.08s; }
.custom-select__option:nth-child(5) { animation-delay: 0.10s; }
.custom-select__option:nth-child(6) { animation-delay: 0.12s; }
.custom-select__option:nth-child(7) { animation-delay: 0.14s; }
.custom-select__option:nth-child(8) { animation-delay: 0.16s; }
.custom-select__option:nth-child(9) { animation-delay: 0.18s; }
.custom-select__option:nth-child(10) { animation-delay: 0.20s; }

/* ====================================
   Formulaire de recherche moderne - Page d'accueil
   ==================================== */
.search_home_modern {
    background: linear-gradient(135deg, rgba(251, 153, 2, 0.9) 0%, rgba(251, 153, 2, 0.8) 60%, rgba(200, 120, 0, 0.9) 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 20px auto 0 auto;
    max-width: 100%;
    box-shadow: 0 10px 40px rgba(251, 153, 2, 0.3);
    position: relative;
    z-index: 10;
}

.search_title {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 30px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.search_form_cascade {
    width: 100%;
}

.search_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

.search_field {
    display: flex;
    flex-direction: column;
    gap: 8px;
	width: 100%;
}

.search_field label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}


/* Responsive */
@media (max-width: 1200px) {
    .search_row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .search_home_modern {
        padding: 25px 20px;
        border-radius: 15px;
        margin: 20px 10px;
    }
    
    
    .search_row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .custom-select__trigger {
        padding: 12px 36px 12px 14px;
        font-size: 14px;
    }
    
    .custom-select__dropdown {
        max-height: 280px;
    }
    
    .custom-select__options {
        max-height: 220px;
    }
}

/* Animation de chargement pour les options */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.custom-select__option--loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1360px) {
	.search_row {
		grid-template-columns: repeat(2, 1fr);
	}
	.banniere_accueil {
		height: 600px;
		margin-top: -390px;
	}
}

@media (max-width: 768px) {
	.search_home_modern {
		padding: 25px 20px;
		border-radius: 15px;
		margin: 20px 10px;
	}

	.search_title {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.search_row {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.banniere_accueil {
		margin-top: -510px;
		height: 680px;
	}

	.search_field:last-child {
		grid-column: span 1;
	}

	.search_select {
		padding: 12px 14px;
		font-size: 14px;
	}

	.search_submit {
		padding: 12px 20px;
		font-size: 15px;
	}

    .custom-select--multi-column .custom-select__dropdown {
        min-width: 100%;
        width: 100%;
        max-width: none;
        left: 0;
        right: 0;
        /* Centrer sur mobile si position fixed */
        position: absolute;
    }
    
    .custom-select--multi-column .custom-select__options {
        grid-template-columns: 1fr;
    }
    
    .custom-select--multi-column .custom-select__option--other {
        grid-column: 1;
    }

    .custom-select__value{
        font-size: 11px;
    }
}

/* ====================================
   AJOUTS - Mode 2 colonnes + Icônes
   À ajouter à la suite de ton CSS existant
   ==================================== */

/* ====================================
   MODE 2 COLONNES
   ==================================== */
.custom-select--multi-column .custom-select__dropdown {
    min-width: 420px;
    width: max-content;
    max-width: 560px;
}

.custom-select--multi-column .custom-select__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    overflow-x: hidden;
}

/* Option "Autre" sur toute la largeur */
.custom-select--multi-column .custom-select__option--other {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    border: 1px dashed #ccc;
    justify-content: center;
    margin-top: 6px;
}

.custom-select--multi-column .custom-select__option--other:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border-color: #fb9902;
}

/* Message vide sur toute la largeur */
.custom-select--multi-column .custom-select__option--empty {
    grid-column: 1 / -1;
}

/* ====================================
   ICÔNES
   ==================================== */
.custom-select--with-icons .custom-select__option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-select__option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 100%);
    color: #fb9902;
    transition: all 0.2s ease;
}

.custom-select__option-icon svg {
    width: 16px;
    height: 16px;
}

/* Icône au survol */
.custom-select__option:hover .custom-select__option-icon {
    background: linear-gradient(135deg, #fb9902 0%, #e08800 100%);
    color: #fff;
    transform: scale(1.05);
}

/* Icône quand sélectionné */
.custom-select__option--selected .custom-select__option-icon {
    background: linear-gradient(135deg, #fb9902 0%, #e08800 100%);
    color: #fff;
}

/* Label de l'option */
.custom-select__option-label {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

/* Icône dans le trigger (valeur sélectionnée) */
.custom-select--with-icons .custom-select__value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-select__value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fb9902 0%, #e08800 100%);
    border-radius: 5px;
    color: #fff;
}

.custom-select__value-icon svg {
    width: 13px;
    height: 13px;
}

/* Icône du bouton "Autre" */
.custom-select--with-icons .custom-select__option--other .custom-select__option-icon {
    background: transparent;
    color: #888;
}

.custom-select--with-icons .custom-select__option--other:hover .custom-select__option-icon {
    background: transparent;
    color: #fb9902;
}

/* ====================================
   ANTI-DÉBORDEMENT DU DROPDOWN
   ==================================== */

/* Le dropdown peut s'aligner à droite si nécessaire */
.custom-select--multi-column .custom-select__dropdown {
    left: auto;
    right: 0;
}

/* Alternative : aligner à gauche par défaut */
.custom-select--align-left .custom-select__dropdown {
    left: 0;
    right: auto;
}

/* Forcer le dropdown à ne pas dépasser l'écran */
.custom-select--multi-column.custom-select--contained .custom-select__dropdown {
    position: fixed;
    max-width: calc(100vw - 40px);
}

/* ====================================
   RESPONSIVE - 2 colonnes
   ==================================== */
@media (max-width: 1200px) {
    /* Sur écrans moyens, réduire la largeur du dropdown */
    .custom-select--multi-column .custom-select__dropdown {
        width: 100%;
    }
}

@media (max-width: 600px) {
    /* Sur petits écrans, passer en une seule colonne */
    .custom-select--multi-column .custom-select__options {
        grid-template-columns: 1fr;
    }
    
    .custom-select--multi-column .custom-select__option--other {
        grid-column: 1;
    }
    
    .custom-select--multi-column .custom-select__dropdown {
        min-width: 100%;
        width: 100%;
        max-width: none;
    }
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-section {
    position: relative;
    min-height: 700px;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(251, 153, 2, 0.1) 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(251, 153, 2, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(251, 153, 2, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* ====================================
   SERVICES SECTION (Cartes de service)
   ==================================== */
.services-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(251, 153, 2, 0.2);
}

.service-icon {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(251, 153, 2, 0.2));
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    transform: scale(1.1) rotateY(10deg);
}

.card-home {
    background: white;
    border-radius: 8px;
}

.card-body {
    padding: 20px 30px 30px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.card-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.phone-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-top: 8px;
}

.service-link-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-card:hover .service-link-text {
    gap: 12px;
}

.free-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.small-card {
    width: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s ease-out;
}

.small-card img {
    width: 100px;
    padding: 10px;
}

.small-card:hover {
    box-shadow: 0 5px 5px -3px rgba(0,0,0,.2), 0 8px 10px 1px rgba(0,0,0,.14), 0 3px 14px 2px rgba(0,0,0,.12);
    transition: .3s ease-out;
}

/* ====================================
   CATEGORIES SECTION
   ==================================== */
.categories-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 50px 0;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: var(--transition);
}

.category-item:hover .category-overlay {
    background: linear-gradient(to top, rgba(251, 153, 2, 0.95) 0%, rgba(251, 153, 2, 0.8) 60%, transparent 100%);
}

.category-overlay h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ====================================
   CAROUSEL SECTION
   ==================================== */
.promo-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    display: none;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.carousel:hover .carousel-control {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.carousel-control-icon {
    font-size: 40px;
    color: var(--text-dark);
    line-height: 1;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-indicators .indicator.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

/* ====================================
   TRUST SECTION
   ==================================== */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(251, 153, 2, 0.05) 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    margin-bottom: 20px;
}

.trust-icon img {
    width: 200px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(251, 153, 2, 0.2));
}

.trust-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.trust-item p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

/* ====================================
   FULL BANNER SECTION
   ==================================== */
.full-banner-section {
    padding: 60px 0;
    background: white;
}

.full-banner-section img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

/* ====================================
   FEATURES SECTION
   ==================================== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 15px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(251, 153, 2, 0.15));
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.feature-item strong {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    margin-top: 4px;
}

/* ====================================
   INFO SECTION
   ==================================== */
.info-section {
    padding: 80px 0 100px;
    background: white;
}

.info-content {
    margin: 0 auto;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 16px;
}

.info-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 40px 0;
    text-align: center;
}

.info-block {
    margin-bottom: 40px;
}

/* underline animé pour le info-block strong */
.info-block strong {
    cursor: pointer;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}
.info-block strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.info-block strong:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 16px 0;
}

.info-block p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(251, 153, 2, 0.15) 100%);
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.highlight-text img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.cta-text {
    text-align: center;
    font-size: 18px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.cta-text strong {
    color: var(--primary-color);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .category-item {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 80px;
        min-height: 800px;
    }
    
    .services-section,
    .categories-section,
    .promo-section,
    .trust-section,
    .features-section,
    .info-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-item {
        height: 250px;
    }
    
    .carousel-item img {
        height: 300px;
    }
    
    .info-content {
        padding: 30px 20px;
    }
    
    .info-content h1 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .info-block h2 {
        font-size: 20px;
        padding-left: 15px;
    }
    
    .info-block p {
        font-size: 15px;
    }
    
    .feature-item img {
        width: 80px;
        height: 80px;
    }
    
    .trust-icon img {
        width: 100px;
        height: 100px;
    }
    
    .carousel-control {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-control-icon {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 502px) {
    .service-card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .small-card img {
        width: 80px;
    }
    
    .category-item {
        height: 220px;
    }
    
    .info-content h1 {
        font-size: 22px;
    }
    
    .info-block h2 {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.service-card,
.category-item,
.trust-item,
.feature-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* ====================================
   ACCESSIBILITÉ
   ==================================== */
.service-link:focus,
.category-item:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}