/* ============================================
   assets/css/style.css
   FICHIER CSS COMPLET - 365 KREDIT
   ============================================ */

/* ============================================
   1. VARIABLES & RESET
============================================ */
:root {
    --bleu-nuit: #0a1a2b;
    --bleu-nuit-clair: #1a3050;
    --bleu-nuit-tres-clair: #2a4a6a;
    --orange: #e8841a;
    --orange-fonce: #c96b1e;
    --orange-clair: #f09a3a;
    --gris-clair: #f8f9fa;
    --gris-moyen: #e9ecef;
    --gris-texte: #6c757d;
    --ombre: 0 10px 40px rgba(0,0,0,0.08);
    --ombre-forte: 0 20px 60px rgba(0,0,0,0.15);
    --footer-bg: #060f1a;
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2d3748;
    overflow-x: hidden;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   2. SCROLLBAR PERSONNALISÉE
============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bleu-nuit);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-fonce);
}

/* ============================================
   3. HEADER / MENU FIXE
============================================ */
.navbar {
    padding: 0.8rem 0;
    background: rgba(10, 26, 43, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1050;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(6, 15, 26, 0.98) !important;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -1px;
    color: white !important;
    transition: var(--transition);
}

.navbar-brand i {
    color: var(--orange);
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition);
    position: relative;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
}

.navbar .btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-fonce));
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 50px;
    color: white;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 132, 26, 0.4);
}

/* Dropdown */
.dropdown-menu {
    background: rgba(10, 26, 43, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    margin-top: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    min-width: 220px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-item i {
    color: var(--orange);
    width: 22px;
    text-align: center;
    margin-right: 8px;
}

.dropdown-item:hover {
    background: var(--orange);
    color: white;
    transform: translateX(5px);
}

.dropdown-item:hover i {
    color: white;
}

/* ============================================
   4. HERO SLIDER
============================================ */
.hero-slider {
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 0;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
    width: 100%;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.carousel-item.active .slide-bg {
    transform: scale(1);
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 26, 43, 0.85) 0%,
        rgba(10, 26, 43, 0.4) 50%,
        rgba(10, 26, 43, 0.2) 100%
    );
    z-index: 1;
}

.hero-slider .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.slide-content {
    position: relative;
    z-index: 3;
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1 {
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    font-size: 3.5rem;
}

.slide-content .lead {
    font-weight: 300;
    font-size: 1.3rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.slide-content .badge {
    background: var(--orange) !important;
    color: white !important;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Boutons hero */
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-fonce));
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(232, 132, 26, 0.3);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 132, 26, 0.4);
    color: white;
}

.btn-outline-light {
    border-width: 2px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

/* Contrôles du carousel */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(232, 132, 26, 0.4);
}

.carousel-indicators {
    z-index: 10;
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    margin: 0 6px !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    transform: scale(1.2);
}

/* ============================================
   5. TRUST BAR (Bandeau de confiance)
============================================ */
.trust-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bleu-nuit) !important;
}

.trust-bar .col-md-3 {
    padding: 1rem 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: default;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.trust-bar .col-md-3 i {
    color: var(--orange);
}

.trust-bar .col-md-3:hover {
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   6. POURQUOI NOUS CHOISIR
============================================ */
.why-us {
    background: var(--gris-clair);
    padding: 5rem 0;
}

.why-us .badge {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    background: rgba(232, 132, 26, 0.1) !important;
    color: var(--orange) !important;
}

.hover-card {
    transition: var(--transition);
    cursor: default;
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem !important;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ombre-forte) !important;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.hover-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.icon-wrapper.bg-primary {
    background: rgba(232, 132, 26, 0.1) !important;
}
.icon-wrapper.bg-primary i { color: var(--orange) !important; }

.icon-wrapper.bg-success {
    background: rgba(40, 167, 69, 0.1) !important;
}
.icon-wrapper.bg-success i { color: #28a745 !important; }

.icon-wrapper.bg-info {
    background: rgba(23, 162, 184, 0.1) !important;
}
.icon-wrapper.bg-info i { color: #17a2b8 !important; }

.icon-wrapper.bg-warning {
    background: rgba(255, 193, 7, 0.1) !important;
}
.icon-wrapper.bg-warning i { color: #ffc107 !important; }

.icon-wrapper.bg-danger {
    background: rgba(220, 53, 69, 0.1) !important;
}
.icon-wrapper.bg-danger i { color: #dc3545 !important; }

.icon-wrapper.bg-purple {
    background: rgba(106, 13, 173, 0.1) !important;
}
.icon-wrapper.bg-purple i { color: #6a0dad !important; }

.icon-wrapper.bg-orange {
    background: rgba(232, 132, 26, 0.1) !important;
}
.icon-wrapper.bg-orange i { color: var(--orange) !important; }

.icon-wrapper.bg-pink {
    background: rgba(232, 62, 140, 0.1) !important;
}
.icon-wrapper.bg-pink i { color: #e83e8c !important; }

/* ============================================
   7. SECTIONS TEXTE + IMAGE
============================================ */
.feature-section {
    padding: 5rem 0;
    background: white;
}

.feature-section:nth-child(even) {
    background: var(--gris-clair);
}

.feature-section .badge {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.7rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    font-size: 1.3rem;
    color: var(--orange);
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--border-radius);
    flex: 1;
    min-width: 180px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.security-feature:hover {
    background: rgba(232, 132, 26, 0.05);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.security-feature i {
    color: var(--orange);
}

.feature-section img {
    transition: var(--transition);
}

.feature-section img:hover {
    transform: scale(1.02);
}

/* ============================================
   8. SOLUTIONS DE FINANCEMENT
============================================ */
.solutions {
    padding: 5rem 0;
    background: var(--gris-clair);
}

.solutions .badge {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    background: rgba(232, 132, 26, 0.1) !important;
    color: var(--orange) !important;
}

.solution-card {
    transition: var(--transition);
    overflow: hidden;
    border-radius: var(--border-radius);
    background: white;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ombre-forte) !important;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-icon-overlay {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: var(--orange);
    transition: var(--transition);
}

.solution-card:hover .card-icon-overlay {
    transform: rotate(-10deg) scale(1.1);
    background: var(--orange);
    color: white;
}

.solution-card .card-title {
    font-size: 1.1rem;
}

.solution-card .badge.bg-primary {
    background: rgba(232, 132, 26, 0.1) !important;
    color: var(--orange) !important;
    font-weight: 600;
}

.btn-outline-primary {
    color: var(--orange);
    border-color: var(--orange);
}

.btn-outline-primary:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

/* ============================================
   9. PROCESSUS (Étapes)
============================================ */
.process {
    padding: 5rem 0;
    background: white;
}

.process .badge {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    background: rgba(232, 132, 26, 0.1) !important;
    color: var(--orange) !important;
}

.step-card {
    position: relative;
    transition: var(--transition);
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--ombre);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-forte);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-icon {
    color: var(--orange);
}

/* ============================================
   10. STATS (Chiffres clés)
============================================ */
.stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-nuit-clair) 100%);
}

.stat-item {
    padding: 1.5rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: white;
}

.stat-label {
    font-weight: 500;
    opacity: 0.8;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-icon i {
    color: var(--orange);
}

/* ============================================
   11. TÉMOIGNAGES
============================================ */
.testimonials {
    padding: 5rem 0;
    background: var(--gris-clair);
}

.testimonials .badge {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    background: rgba(232, 132, 26, 0.1) !important;
    color: var(--orange) !important;
}

.testimonials .card {
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.testimonials .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ombre-forte) !important;
}

.testimonials .card img {
    object-fit: cover;
    border: 3px solid var(--orange);
}

.testimonials .card .text-warning {
    color: var(--orange) !important;
}

/* ============================================
   12. FAQ
============================================ */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq .badge {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    background: rgba(232, 132, 26, 0.1) !important;
    color: var(--orange) !important;
}

.accordion-item {
    border: none;
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--ombre);
}

.accordion-button {
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    background: white;
    box-shadow: none !important;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background: white;
    color: var(--orange);
}

.accordion-button:focus {
    border-color: rgba(232, 132, 26, 0.2);
    box-shadow: none !important;
}

.accordion-button::after {
    color: var(--orange);
}

.accordion-body {
    padding: 1.2rem 1.5rem;
    color: var(--gris-texte);
    line-height: 1.8;
}

/* ============================================
   13. ACTUALITÉS / BLOG
============================================ */
.blog {
    padding: 5rem 0;
    background: var(--gris-clair);
}

.blog .badge {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    background: rgba(232, 132, 26, 0.1) !important;
    color: var(--orange) !important;
}

.blog .card {
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.blog .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ombre-forte) !important;
}

.blog .card img {
    height: 220px;
    object-fit: cover;
}

.blog-meta small {
    color: var(--gris-texte);
}

.blog .btn-link {
    color: var(--orange) !important;
    font-weight: 600;
}

.blog .btn-link:hover {
    color: var(--orange-fonce) !important;
}

/* ============================================
   14. CALL TO ACTION
============================================ */
.cta-banner {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(232, 132, 26, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(232, 132, 26, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner .btn-warning {
    background: linear-gradient(135deg, var(--orange), var(--orange-fonce));
    border: none;
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(232, 132, 26, 0.3);
}

.cta-banner .btn-warning:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(232, 132, 26, 0.4);
}

/* ============================================
   15. FOOTER PROFESSIONNEL
============================================ */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--orange);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

/* Réseaux sociaux */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    text-decoration: none;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 132, 26, 0.3);
}

/* Titres des colonnes */
.footer-title {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

/* Liens */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--orange);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--orange);
}

/* Newsletter */
.newsletter-text {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.newsletter-form .input-group:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 132, 26, 0.1);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn {
    background: var(--orange);
    border: none;
    padding: 0.7rem 1.2rem;
    color: white;
    border-radius: 0 50px 50px 0;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--orange-fonce);
}

/* Divider */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0;
}

/* Footer bottom */
.footer-bottom {
    padding: 1.5rem 0;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.6;
}

.copyright strong {
    color: white;
    opacity: 1;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--orange);
}

/* Sécurité badges */
.footer-security {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-badges span {
    font-size: 0.8rem;
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 6px;
}

.security-badges span i {
    color: var(--orange);
}

/* ============================================
   16. ANIMATIONS & EFFETS
============================================ */
/* Animation fade-in au scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation pulse pour les boutons CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 132, 26, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(232, 132, 26, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 132, 26, 0);
    }
}

.cta-banner .btn-warning {
    animation: pulse 2s infinite;
}

/* ============================================
   17. RESPONSIVE
============================================ */
/* Tablettes et petits écrans */
@media (max-width: 992px) {
    .hero-slider {
        height: 80vh;
        min-height: 600px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content .lead {
        font-size: 1.1rem;
    }

    .feature-section .row {
        flex-direction: column !important;
    }

    .feature-section .row .col-lg-6 {
        width: 100%;
    }

    .security-feature {
        min-width: 100%;
    }

    .footer-legal {
        justify-content: flex-start;
        margin-top: 0.5rem;
    }

    .security-badges {
        gap: 1rem;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .hero-slider {
        height: 90vh;
        min-height: 500px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content .d-flex.gap-5 {
        gap: 1.5rem !important;
        flex-wrap: wrap;
    }

    .slide-content .display-6 {
        font-size: 1.5rem;
    }

    .feature-section {
        padding: 3rem 0;
    }

    .feature-section h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonials .col-sm-6 {
        width: 100%;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-social {
        margin-bottom: 1rem;
    }

    .footer-legal {
        gap: 1rem;
        justify-content: center;
    }

    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .navbar .btn-primary {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Très petits mobiles */
@media (max-width: 576px) {
    .hero-slider {
        height: 100vh;
        min-height: 550px;
        max-height: none;
    }

    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content .lead {
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        opacity: 0.5;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }

    .step-card .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .card-img-wrapper {
        height: 180px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-banner {
        padding: 3rem 0;
    }

    .cta-banner h2 {
        font-size: 1.8rem !important;
    }

    .footer-main {
        padding: 2rem 0 1rem;
    }

    .footer-brand {
        font-size: 1.6rem;
    }

    .security-badges span {
        font-size: 0.7rem;
    }
}

/* ============================================
   18. UTILITAIRES
============================================ */
.text-orange {
    color: var(--orange);
}

.bg-orange {
    background: var(--orange);
}

.bg-bleu-nuit {
    background: var(--bleu-nuit);
}

.rounded-4 {
    border-radius: 1rem;
}

.shadow-lg {
    box-shadow: var(--ombre-forte) !important;
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--ombre-forte) !important;
}

.gap-4 {
    gap: 1.5rem;
}

/* ============================================
   19. BOUTON SCROLL TO TOP (Optionnel)
============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(232, 132, 26, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--orange-fonce);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 132, 26, 0.4);
}

/* ============================================
   FIN DU FICHIER CSS
   ============================================ */


   /* ============================================
   PAGE À PROPOS - STYLES SPÉCIFIQUES
============================================ */

/* Breadcrumb */
.page-header .breadcrumb {
    background: transparent;
    padding: 0;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
    content: "›";
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--orange);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: 0 0 40px 0;
    position: relative;
    width: 50%;
    margin-left: 50%;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    margin-left: 0;
    padding-right: 40px;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 40px;
}

.timeline-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-year {
    background: var(--orange);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(232, 132, 26, 0.3);
}

.timeline-content {
    background: white;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--ombre);
    width: 100%;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--ombre-forte);
}

.timeline-content h5 {
    color: var(--bleu-nuit);
    margin-bottom: 8px;
}

.timeline-content p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Team cards */
.team-card {
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ombre-forte) !important;
}

.team-card .social-links a {
    transition: var(--transition);
    display: inline-block;
}

.team-card .social-links a:hover {
    color: var(--orange) !important;
    transform: translateY(-2px);
}

/* Value cards */
.value-card {
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.value-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--ombre);
}

.value-card .value-icon {
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* ============================================
   RESPONSIVE TIMELINE
============================================ */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        margin-left: 0;
        padding-left: 50px !important;
        padding-right: 0 !important;
    }

    .timeline-item:nth-child(odd) {
        padding-left: 50px !important;
        padding-right: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }

    .timeline-badge {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-year {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .timeline-content {
        padding: 15px 20px;
    }

    .timeline-content h5 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 80px 0 40px !important;
    }

    .page-header h1 {
        font-size: 2rem !important;
    }

    .page-header .lead {
        font-size: 1rem !important;
    }

    .value-card {
        padding: 1rem !important;
    }

    .value-card .value-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .value-card .value-icon i {
        font-size: 1.5rem !important;
    }

    .value-card h6 {
        font-size: 0.9rem;
    }

    .team-card img {
        width: 80px !important;
        height: 80px !important;
    }
}





/* ============================================
   PAGE NOS CRÉDITS - STYLES SPÉCIFIQUES
============================================ */

/* Filtre */
.filter-btn {
    transition: var(--transition);
    border-color: var(--orange);
    color: var(--orange);
}

.filter-btn:hover {
    background: var(--orange);
    color: white;
}

.filter-btn.active {
    background: var(--orange);
    color: white;
}

/* Credit Cards */
.credit-card {
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.credit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ombre-forte) !important;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.card-badge .badge {
    background: var(--orange) !important;
    color: white !important;
    padding: 6px 14px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(232, 132, 26, 0.3);
}

.credit-features .feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}

.credit-features .feature-item i {
    width: 18px;
}

.credit-features-list ul li {
    padding: 3px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.credit-features-list ul li i {
    width: 18px;
}

/* Rate Banner */
.rate-banner {
    background: linear-gradient(135deg, var(--orange), var(--orange-fonce)) !important;
    box-shadow: 0 4px 20px rgba(232, 132, 26, 0.3);
}

/* Comparison section */
.compare-section .form-range::-webkit-slider-thumb {
    background: var(--orange);
}

.compare-section .form-range::-moz-range-thumb {
    background: var(--orange);
    border: none;
}

/* Filter section */
.filter-section .btn-outline-primary {
    border-color: var(--orange);
    color: var(--orange);
}

.filter-section .btn-outline-primary:hover {
    background: var(--orange);
    color: white;
}

.filter-section .btn-primary {
    background: var(--orange);
    border-color: var(--orange);
}

.filter-section .btn-primary:hover {
    background: var(--orange-fonce);
    border-color: var(--orange-fonce);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .filter-section .btn {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .credit-features .row .col-6 {
        font-size: 0.8rem;
    }

    .credit-features-list ul li {
        font-size: 0.8rem;
    }

    .compare-section .card {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 80px 0 40px !important;
    }

    .page-header h1 {
        font-size: 2rem !important;
    }

    .credit-card .card-img-wrapper {
        height: 180px;
    }

    .filter-section .d-flex {
        gap: 0.5rem !important;
    }

    .filter-section .btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
}