/* Fix pour le dropdown du s�lecteur de langue sur mobile */

/* S'assurer que le header-top permet l'overflow du dropdown */
.header-top {
    overflow: visible !important;
}

.header-body {
    overflow: visible !important;
}

.header-row {
    overflow: visible !important;
}

/* Am�liorer le dropdown de langue */
.nav-item.dropdown .dropdown-menu {
    z-index: 9999;
    position: absolute;
}

/* Sur mobile, s'assurer que le dropdown est visible */
@media (max-width: 991px) {
    .header-top .dropdown-menu {
        position: absolute;
        right: 0;
        left: auto;
        min-width: 150px;
        max-height: 300px;
        overflow-y: auto;
    }

    /* S'assurer que le header permet le d�bordement sur mobile */
    #header {
        overflow: visible !important;
    }

    .header-nav-top {
        overflow: visible !important;
    }

    .header-nav-top .nav {
        overflow: visible !important;
    }

    .header-column {
        overflow: visible !important;
    }
}

/* Style pour le dropdown */
.dropdown-menu {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item img.flag {
    width: 20px;
    height: auto;
}

/* ========================================
   AMÉLIORATIONS VISUELLES PAGE D'ACCUEIL
   ======================================== */

/* Section Processus - Cercles numérotés */
.process-step {
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-step-circle {
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.5);
    transform: scale(1.1);
}

/* Ligne de connexion entre les étapes (desktop uniquement) */
@media (min-width: 768px) {
    .process-steps {
        position: relative;
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(to right, #007bff 0%, #007bff 100%);
        opacity: 0.2;
        z-index: 0;
    }

    .process-step {
        position: relative;
        z-index: 1;
    }
}

/* Cartes de prêts améliorées */
.loan-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.loan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #007bff;
}

.loan-card .loan-icon {
    transition: transform 0.3s ease;
}

.loan-card:hover .loan-icon i {
    transform: scale(1.2);
}

.loan-card .btn {
    transition: all 0.3s ease;
}

.loan-card:hover .btn {
    background: #007bff;
    color: white !important;
    border-color: #007bff;
}

/* Badges de sécurité */
.security-badge {
    padding: 20px;
    transition: transform 0.3s ease;
}

.security-badge:hover {
    transform: translateY(-5px);
}

.security-badge i {
    transition: all 0.3s ease;
}

.security-badge:hover i {
    transform: scale(1.15);
    color: #0056b3 !important;
}

/* Cartes de témoignages */
.testimonial-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.testimonial-avatar {
    font-size: 18px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

/* Cartes partenaires */
.partner-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.partner-card img {
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* Améliorations des boutons avec gradient */
.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    border: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.btn-primary i, .btn-primary span {
    position: relative;
    z-index: 1;
}

/* Bouton dark avec effet */
.btn-dark {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-dark:hover::before {
    width: 300px;
    height: 300px;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Compteurs animés */
.counter {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

/* Accordion FAQ amélioré */
.accordion-modern .card {
    border: 1px solid #e9ecef;
    border-radius: 8px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-modern .card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #007bff;
}

.accordion-modern .card-header {
    background-color: #fff;
    border-bottom: none;
    padding: 20px 24px;
    transition: background-color 0.3s ease;
}

.accordion-modern .card:hover .card-header {
    background-color: #f8f9fa;
}

.accordion-modern .accordion-toggle {
    text-decoration: none;
    display: block;
    position: relative;
    padding-right: 30px;
}

.accordion-modern .accordion-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
    color: #007bff;
}

.accordion-modern .accordion-toggle:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-modern .card-body {
    padding: 0 24px 20px 24px;
    color: #6c757d;
}

/* Animation d'entrée pour les sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.appear-animation {
    animation-fill-mode: both;
}

/* Améliorations responsive */
@media (max-width: 767px) {
    .process-step-circle {
        width: 60px;
        height: 60px;
    }

    .loan-card {
        margin-bottom: 20px;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }
}

/* Amélioration des ombres globales */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

/* Effets de survol sur les icônes */
i.text-color-primary {
    transition: color 0.3s ease, transform 0.3s ease;
}

.card:hover i.text-color-primary,
.featured-box:hover i.text-color-primary {
    transform: scale(1.1);
}

/* Gradient pour la section call-to-action */
.call-to-action-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

/* Animation pulse pour attirer l'attention */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-primary:focus,
.btn-dark:focus {
    animation: pulse 0.5s ease-in-out;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ========================================
   HERO BANNER STYLES
   ======================================== */

.hero-banner {
    position: relative;
    overflow: hidden;
}

/* Formes décoratives animées */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatShape 20s infinite ease-in-out;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Contenu de la bannière */
.hero-banner .container {
    position: relative;
    z-index: 2;
}

/* Badge du haut */
.hero-badge .badge {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Titre avec effet highlight */
.hero-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.3) 100%);
    padding: 0 15px;
    border-radius: 8px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Points clés */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-feature-item i {
    font-size: 1.2rem;
}

/* Boutons hero améliorés */
.btn-hero {
    position: relative;
    overflow: hidden;
    border-radius: 50px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-hero:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-primary.btn-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

.btn-light.btn-hero {
    background: #ffffff !important;
    color: #007bff !important;
}

.btn-light.btn-hero:hover {
    background: #f8f9fa !important;
    color: #0056b3 !important;
}

/* Indicateur de scroll */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator a:hover {
    opacity: 1;
}

.hero-scroll-indicator i {
    font-size: 1.5rem;
    animation: arrowDown 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes arrowDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Info de sécurité */
.hero-info p {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-banner {
        height: auto !important;
        min-height: 550px;
        padding: 120px 0 60px !important;
    }

    .hero-banner .container {
        padding-top: 30px !important;
        margin-top: 20px;
    }

    .hero-banner .row {
        padding-top: 0 !important;
    }

    .hero-banner .col-12 {
        margin-top: 20px;
    }

    .hero-shape-1,
    .hero-shape-2,
    .hero-shape-3 {
        display: none;
    }

    .hero-banner h1 {
        font-size: 2.5rem !important;
        line-height: 1.4 !important;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-feature-item {
        font-size: 0.95rem;
    }

    .btn-hero {
        width: 100%;
        display: block;
        text-align: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-highlight {
        display: inline;
        padding: 2px 10px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        min-height: auto !important;
        height: auto !important;
        padding: 140px 0 50px !important;
    }

    .hero-banner .container {
        padding-top: 20px !important;
        height: auto !important;
        margin-top: 20px;
    }

    .hero-banner .row {
        height: auto !important;
        align-items: flex-start !important;
        padding-top: 0 !important;
    }

    .hero-banner .col-12 {
        margin-top: 20px;
    }

    .hero-banner h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-badge {
        text-align: center;
        margin-bottom: 2rem !important;
    }

    .hero-badge .badge {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
    }

    .hero-banner p {
        font-size: 0.95rem !important;
    }

    .hero-cta {
        text-align: center;
    }

    .btn-hero {
        font-size: 0.9rem !important;
        padding: 12px 20px !important;
    }

    .hero-highlight {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 575px) {
    .hero-banner {
        padding: 150px 0 50px !important;
    }

    .hero-banner .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 30px !important;
        margin-top: 30px;
    }

    .hero-banner .col-12 {
        margin-top: 30px;
    }

    .hero-banner h1 {
        font-size: 1.5rem !important;
        text-align: left;
        margin-bottom: 1.5rem !important;
    }

    .hero-badge {
        margin-bottom: 1.5rem !important;
        text-align: left;
    }

    .hero-cta {
        text-align: left;
    }

    .hero-cta a {
        margin-bottom: 12px !important;
        width: 100%;
        font-size: 0.85rem !important;
    }

    .hero-highlight {
        font-size: 1.5rem !important;
        padding: 2px 8px !important;
        display: inline-block;
    }
}

/* Fix pour très petits écrans */
@media (max-width: 375px) {
    .hero-banner {
        padding: 140px 0 40px !important;
    }

    .hero-banner .container {
        margin-top: 40px;
        padding-top: 40px !important;
    }

    .hero-banner .col-12 {
        margin-top: 40px;
    }

    .hero-banner h1 {
        font-size: 1.4rem !important;
    }

    .hero-badge .badge {
        font-size: 0.75rem !important;
        padding: 5px 10px !important;
    }

    .hero-cta a {
        padding: 10px 16px !important;
    }
}

/* Amélioration de l'overlay */
.hero-banner.overlay-op-8::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 123, 255, 0.4) 100%);
}

/* Effet de particules (optionnel) */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px, 250px 250px;
    background-position: 0 0, 50px 50px, 100px 100px;
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   PAGE HEADER MODERN
   ======================================== */

.page-header-modern {
    position: relative;
    overflow: hidden;
}

.page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.9) 0%, rgba(0, 86, 179, 0.9) 100%);
    z-index: 0;
}

.page-header-modern .container {
    position: relative;
    z-index: 1;
}

/* ========================================
   PAGE CONTACT
   ======================================== */

/* Cartes d'info contact */
.contact-info-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}

.contact-info-card .contact-icon i {
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon i {
    transform: scale(1.15) rotate(5deg);
}

.contact-info-card a:hover {
    color: #007bff !important;
}

/* Responsive pour les cartes contact */
@media (max-width: 767px) {
    .contact-info-card {
        margin-bottom: 20px;
    }
}

/* ========================================
   PAGE REQUEST (DEMANDE DE CRÉDIT)
   ======================================== */

/* Barre de progression mini */
.process-steps-mini {
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-mini-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #6c757d;
    font-size: 1.2rem;
}

.step-mini.active .step-mini-icon {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    transform: scale(1.1);
}

.step-mini-text {
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 600;
    color: #6c757d;
}

.step-mini.active .step-mini-text {
    color: #007bff;
}

.step-mini-line {
    flex: 1;
    height: 2px;
    background: #e9ecef;
    margin: 0 15px;
    align-self: center;
    position: relative;
    top: -15px;
}

/* Champs de formulaire modernes */
.form-control-modern {
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control-modern:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

/* Style moderne pour les selects */
.form-select.form-control-modern,
select.form-control-modern {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23007bff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px 12px;
    padding-right: 45px;
    cursor: pointer;
}

.form-select.form-control-modern:focus,
select.form-control-modern:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230056b3' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-select.form-control-modern:hover,
select.form-control-modern:hover {
    border-color: #007bff;
}

/* Options du select */
.form-select.form-control-modern option,
select.form-control-modern option {
    padding: 12px;
    font-size: 1rem;
}

/* Input group pour les selects */
.input-group > .form-select.form-control-modern {
    background-position: right 16px center;
}

.input-group-text {
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

/* Focus sur input-group avec select */
.input-group:focus-within .input-group-text {
    border-color: #007bff;
    background-color: #e7f1ff;
}

.input-group:focus-within .input-group-text i {
    color: #0056b3 !important;
}

.form-control-modern:focus + .input-group-text,
.input-group:focus-within .input-group-text {
    border-color: #007bff;
}

/* Labels de formulaire */
.request-form label {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* Cartes de confiance */
.trust-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.trust-card i {
    transition: all 0.3s ease;
}

.trust-card:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* Responsive pour la page request */
@media (max-width: 991px) {
    .process-steps-mini {
        padding: 15px 20px;
    }

    .step-mini-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-mini-line {
        margin: 0 10px;
    }
}

@media (max-width: 767px) {
    .process-steps-mini {
        padding: 10px 15px;
    }

    .step-mini-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-mini-line {
        margin: 0 5px;
        top: -10px;
    }

    .trust-card {
        margin-bottom: 20px;
    }
}

/* ========================================
   STYLES POUR LA PAGE LOANS
   ======================================== */

/* Badge de caractéristiques de prêt */
.loan-feature-badge {
    padding: 20px;
    transition: all 0.3s ease;
}

.loan-feature-badge:hover {
    transform: translateY(-5px);
}

/* Cartes de types de crédits */
.loan-type-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.loan-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.loan-type-icon {
    transition: all 0.3s ease;
}

.loan-type-card:hover .loan-type-icon i {
    transform: scale(1.15) rotate(5deg);
}

/* Cartes de processus de prêt */
.process-loan-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.process-loan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.process-step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: bold;
    color: rgba(0, 123, 255, 0.1);
    line-height: 1;
}

.process-loan-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.process-loan-card:hover .process-loan-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
}

.process-loan-time {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border-radius: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Cartes de conditions */
.condition-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.condition-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: rgba(0, 123, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.condition-card:hover .condition-icon {
    background-color: rgba(0, 123, 255, 0.2);
    transform: scale(1.1);
}

/* Icônes d'avantages de prêt */
.loan-advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.loan-advantage-icon i {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.loan-advantage-icon:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.1) 100%);
    transform: scale(1.1);
}

.loan-advantage-icon:hover i {
    transform: scale(1.15);
}

/* Responsive pour la page Loans */
@media (max-width: 991px) {
    .loan-feature-badge {
        margin-bottom: 20px;
    }

    .process-step-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }

    .process-loan-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767px) {
    .loan-type-card .card-body {
        padding: 30px 20px !important;
    }

    .loan-type-icon i {
        font-size: 2.5rem !important;
    }

    .process-step-number {
        font-size: 2rem;
        top: 10px;
        right: 10px;
    }

    .process-loan-icon {
        width: 60px;
        height: 60px;
    }

    .process-loan-icon i {
        font-size: 2rem !important;
    }

    .condition-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.3rem;
    }

    .loan-advantage-icon {
        width: 70px;
        height: 70px;
    }

    .loan-advantage-icon i {
        font-size: 2rem;
    }
}

/* ========================================
   STYLES POUR LES PAGES BANKING
   ======================================== */

/* Cartes de caractéristiques bancaires */
.banking-feature-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.banking-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.banking-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.banking-feature-card:hover .banking-feature-icon {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.1) 100%);
    transform: scale(1.1);
}

/* Cartes de services bancaires */
.banking-service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.banking-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.banking-service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.banking-service-icon i {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.banking-service-card:hover .banking-service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
}

/* Business Banking Cards */
.business-benefit-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.business-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.business-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.business-benefit-icon i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.business-benefit-card:hover .business-benefit-icon {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.1) 100%);
    transform: scale(1.15);
}

.business-benefit-card:hover .business-benefit-icon i {
    transform: scale(1.1);
}

/* Responsive pour les pages Banking */
@media (max-width: 991px) {
    .banking-feature-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.6rem;
    }

    .banking-service-icon {
        width: 80px;
        height: 80px;
    }

    .banking-service-icon i {
        font-size: 2.2rem;
    }

    .business-benefit-icon {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 767px) {
    .banking-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.4rem;
    }

    .banking-service-icon {
        width: 70px;
        height: 70px;
    }

    .banking-service-icon i {
        font-size: 2rem;
    }

    .banking-service-card .card-body {
        padding: 30px 20px !important;
    }

    .business-benefit-icon {
        width: 60px;
        height: 60px;
    }

    .business-benefit-icon i {
        font-size: 1.8rem;
    }
}
