/**
 * BRIDGE GROEP - Styles CSS Complets
 * Un seul fichier CSS pour tout le site
 */

/* ==========================================
   IMPORTS POLICES
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&family=Roboto:wght@400;500;700&display=swap');

/* ==========================================
   VARIABLES CSS
   ========================================== */
:root {
    /* Couleurs principales */
    --bleu-principal: #003D82;
    --orange-accent: #FF6B35;
    --bleu-secondaire: #0066CC;
    
    /* Couleurs neutres */
    --gris-fonce: #2C3E50;
    --gris-moyen: #7F8C8D;
    --gris-clair: #ECF0F1;
    --blanc: #FFFFFF;
    
    /* Couleurs fonctionnelles */
    --succes: #27AE60;
    --alerte: #E74C3C;
    --info: #3498DB;
    
    /* Polices */
    --font-titres: 'Montserrat', sans-serif;
    --font-texte: 'Open Sans', sans-serif;
    --font-chiffres: 'Roboto', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Bordures */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ==========================================
   RESET ET BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-texte);
    color: var(--gris-fonce);
    line-height: 1.6;
    background-color: var(--blanc);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* ==========================================
   TYPOGRAPHIE
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titres);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--bleu-principal);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gris-moyen);
}

/* ==========================================
   CONTENEURS
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

/* ==========================================
   HEADER
   ========================================== */
header {
    background-color: var(--blanc);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-family: var(--font-titres);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bleu-principal);
}

.logo-text span {
    color: var(--orange-accent);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-family: var(--font-titres);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gris-fonce);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--bleu-principal);
}

/* Bouton CTA Header */
.btn-header-cta {
    background: linear-gradient(135deg, var(--orange-accent), #ff8c5a);
    color: var(--blanc);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--bleu-principal);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: linear-gradient(135deg, var(--bleu-principal), #002a5c);
    color: var(--blanc);
    padding: var(--spacing-lg) 0 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.footer-column h3 {
    color: var(--blanc);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--orange-accent);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--orange-accent);
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--orange-accent);
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-legal span {
    font-size: 0.85rem;
}

.footer-copyright {
    margin-top: 1rem;
}

/* ==========================================
   BOUTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-titres);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bleu-secondaire), var(--bleu-principal));
    color: var(--blanc);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--orange-accent), #ff8c5a);
    color: var(--blanc);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--bleu-principal);
    color: var(--bleu-principal);
}

.btn-outline:hover {
    background-color: var(--bleu-principal);
    color: var(--blanc);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* ==========================================
   CARTES
   ========================================== */
.card {
    background-color: var(--blanc);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bleu-secondaire), var(--bleu-principal));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--blanc);
    font-size: 1.75rem;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--bleu-principal);
}

.card-text {
    color: var(--gris-moyen);
    line-height: 1.6;
}

/* ==========================================
   SECTIONS
   ========================================== */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gris-moyen);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   GRILLES
   ========================================== */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================
   FORMULAIRES
   ========================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--bleu-principal);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gris-clair);
    border-radius: var(--radius-md);
    font-family: var(--font-texte);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--bleu-secondaire);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

/* ==========================================
   UTILITAIRES
   ========================================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.bg-gris-clair {
    background-color: var(--gris-clair);
}

.bg-blanc {
    background-color: var(--blanc);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   RESPONSIVE - TABLETTES
   ========================================== */
@media (max-width: 992px) {
    .header-container {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--blanc);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   SECTION À PROPOS
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.about-image {
    position: relative;
    min-height: 500px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    color: white;
    border-radius: 8px;
    font-family: var(--font-titres);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    align-self: flex-start;
}

.btn-about:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c5a, #FF6B35);
}

.btn-about i {
    transition: transform 0.3s ease;
}

.btn-about:hover i {
    transform: translateX(5px);
}

/* Responsive pour la section About */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        min-height: 300px;
    }
}

/* ==========================================
   BENTO GRID - QUI PEUT DEMANDER
   ========================================== */
.bento-section {
    position: relative;
    overflow: hidden;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    border-radius: 24px;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Différentes tailles de cartes */
.bento-large-h {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-large-v {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-square {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.bento-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.bento-item p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* ==========================================
   RESPONSIVE BENTO GRID
   ========================================== */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .bento-large-h {
        grid-column: span 2;
    }
    
    .bento-large-v {
        grid-column: span 1;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }
    
    .bento-large-h,
    .bento-large-v,
    .bento-square,
    .bento-medium {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }
    
    .bento-item {
        padding: 1.5rem;
    }
}

/* ==========================================
   SIMULATEUR - INPUTS
   ========================================== */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.simulator-container input[type="number"] {
    text-align: left;
}

.simulator-container input[type="number"]:focus {
    border-color: #FF6B35;
}

/* ==========================================
   12 TYPES DE CRÉDIT
   ========================================== */
.credit-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.credit-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #ECF0F1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.credit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003D82, #FF6B35);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.credit-card:hover::before {
    transform: scaleX(1);
}

.credit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: #FF6B35;
}

.credit-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.4s ease;
}

.credit-card:hover .credit-icon {
    transform: scale(1.1) rotate(5deg);
}

.credit-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #003D82;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.credit-card:hover .credit-title {
    color: #FF6B35;
}

.credit-description {
    color: #7F8C8D;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.credit-amount {
    font-family: var(--font-chiffres);
    font-size: 0.9rem;
    font-weight: 600;
    color: #003D82;
    background: #ECF0F1;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.btn-credit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, #003D82, #0066CC);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-credit:hover {
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    transform: translateX(5px);
}

.btn-credit i {
    transition: transform 0.3s ease;
}

.btn-credit:hover i {
    transform: translateX(5px);
}

/* Animation d'apparition */
.credit-card.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.credit-card.animate-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE - 12 TYPES DE CRÉDIT
   ========================================== */
@media (max-width: 1200px) {
    .credit-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .credit-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .credit-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .credit-types-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TÉMOIGNAGES - 2 COLONNES MÊME HAUTEUR
   ========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch; /* Important pour même hauteur */
}

.testimonials-image {
    position: relative;
    height: 100%; /* Prend toute la hauteur disponible */
}

.testimonials-image img {
    width: 100%;
    height: 100%; /* Remplit tout le conteneur */
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.testimonials-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%; /* Utilise toute la hauteur */
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #ECF0F1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1; /* Chaque carte prend un espace égal */
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #FF6B35;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003D82, #0066CC);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    color: #003D82;
    margin-bottom: 0.25rem;
}

.testimonial-profession {
    font-size: 0.85rem;
    color: #7F8C8D;
    font-style: italic;
}

.google-icon {
    font-size: 1.5rem;
}

.google-icon i {
    color: #4285F4;
}

.testimonial-rating {
    color: #FF6B35;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    color: #7F8C8D;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    flex-grow: 1; /* Le texte occupe l'espace restant */
}

/* ==========================================
   RESPONSIVE TÉMOIGNAGES
   ========================================== */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-image {
        min-height: 500px; /* Hauteur fixe sur tablette */
        order: 2; /* Image en bas */
    }
    
    .testimonials-list {
        order: 1; /* Avis en haut */
        height: auto; /* Hauteur automatique sur mobile */
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        gap: 2rem;
    }
    
    .testimonials-image {
        min-height: 400px;
    }
    
    .testimonials-badge {
        left: 1rem;
        bottom: 1rem;
        padding: 1rem;
    }
    
    .testimonials-badge > div:first-child {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-header {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .testimonials-image {
        min-height: 300px;
    }
    
    .testimonials-badge {
        font-size: 0.9rem;
        padding: 0.875rem;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .testimonial-name {
        font-size: 0.9rem;
    }
    
    .testimonial-profession {
        font-size: 0.8rem;
    }
}

/* ==========================================
   FAQ - 2 COLONNES
   ========================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #ECF0F1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FF6B35;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #003D82;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.03), rgba(0, 102, 204, 0.03));
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #003D82;
    gap: 1rem;
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    color: #FF6B35;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease, padding-top 0.4s ease;
    color: #7F8C8D;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ECF0F1;
}

/* ==========================================
   RESPONSIVE FAQ
   ========================================== */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

/* ==========================================
   PAGE ONZE KREDIETEN - DÉTAILS
   ========================================== */
.page-hero {
    position: relative;
}

.credit-detail-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #ECF0F1;
    transition: all 0.3s ease;
}

.credit-detail-card:hover {
    border-color: #FF6B35;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.credit-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ECF0F1;
}

.credit-detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.credit-detail-title h2 {
    font-size: 2rem;
    color: #003D82;
    margin-bottom: 0.5rem;
}

.credit-detail-title p {
    color: #7F8C8D;
    font-size: 1.1rem;
    margin: 0;
}

.credit-detail-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

.credit-detail-info h3 {
    color: #003D82;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.credit-detail-info h3:first-child {
    margin-top: 0;
}

.credit-detail-info p {
    color: #7F8C8D;
    line-height: 1.8;
    font-size: 1rem;
}

.credit-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credit-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #2C3E50;
    font-size: 1rem;
}

.credit-features-list i {
    color: #27AE60;
    font-size: 1.2rem;
}

.credit-detail-cta {
    display: flex;
    align-items: center;
}

/* ==========================================
   RESPONSIVE - MOBILES
   ========================================== */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        padding: 1rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    /* Onze Kredieten Responsive */
    .credit-detail-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .credit-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .credit-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .credit-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .credit-detail-title h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}


/* ==========================================
   PAGE OVER ONS - ABOUT
   ========================================== */
.about-story-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

.about-story-image {
    position: relative;
    min-height: 500px;
}

.about-story-content {
    display: flex;
    flex-direction: column;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #ECF0F1;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #FF6B35;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #003D82, #0066CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    color: #003D82;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #7F8C8D;
    line-height: 1.7;
    font-size: 0.95rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-choose-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #ECF0F1;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    border-color: #FF6B35;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.why-choose-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.5;
}

.why-choose-content h3 {
    color: #003D82;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.why-choose-content p {
    color: #7F8C8D;
    line-height: 1.7;
}

/* ==========================================
   PAGE HOE WERKT HET - PROCESS
   ========================================== */
.process-detailed-grid {
    display: grid;
    gap: 3rem;
}

.process-step-detailed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid #ECF0F1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.process-step-detailed:hover {
    border-color: #FF6B35;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.process-step-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.process-step-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.process-step-content h3 {
    color: #003D82;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.process-step-content > p {
    color: #7F8C8D;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.process-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.process-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #2C3E50;
}

.process-checklist i {
    color: #27AE60;
    font-size: 1.1rem;
}

.process-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F8F9FA;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    color: #7F8C8D;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.process-duration i {
    color: #FF6B35;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.document-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #ECF0F1;
    transition: all 0.3s ease;
}

.document-card:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.document-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #003D82, #0066CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.document-card h3 {
    color: #003D82;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.document-card p {
    color: #7F8C8D;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================
   PAGE CONTACT
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
}

.contact-form-container {
    background: white;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #ECF0F1;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #FF6B35;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #003D82, #0066CC);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-card h3 {
    color: #003D82;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    margin: 0.25rem 0;
    color: #7F8C8D;
}

/* ==========================================
   PAGES LÉGALES
   ========================================== */
.legal-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #2C3E50;
}

.legal-content h2 {
    color: #003D82;
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ECF0F1;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: #003D82;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #7F8C8D;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #7F8C8D;
}

.legal-content strong {
    color: #003D82;
}

.legal-content a {
    color: #FF6B35;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #003D82;
}

/* ==========================================
   PAGE DEMANDE DE CRÉDIT - STYLE PROFESSIONNEL
   ========================================== */
.demande-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.demande-form-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.form-header-demande {
    background: linear-gradient(135deg, #003D82, #0066CC);
    color: white;
    padding: 3.5rem 3rem 3rem;
    text-align: center;
}

.form-header-demande i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-header-demande h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.form-header-demande p {
    opacity: 0.95;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.6;
}

.demande-credit-form {
    padding: 3.5rem 3rem;
}

.form-section-demande {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 3px solid #F0F3F5;
}

.form-section-demande:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-demande h3 {
    color: #003D82;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.form-section-demande h3 i {
    color: #FF6B35;
    font-size: 1.8rem;
}

.form-row-demande {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.form-group.focused label {
    color: #FF6B35;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 3px solid #E8EBED;
    border-radius: 14px;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #FAFBFC;
    color: #2C3E50;
    font-weight: 500;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23003D82' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #CBD5E0;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    background: white;
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.form-group small {
    display: block;
    color: #7F8C8D;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    font-weight: 500;
}

.mensualite-preview {
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
    border-radius: 18px;
    padding: 2.5rem;
    margin-top: 2rem;
    border: 3px solid #38BDF8;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15);
}

.preview-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.preview-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
}

.preview-item span {
    display: block;
    font-size: 1rem;
    color: #64748B;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.preview-item strong {
    display: block;
    font-size: 2rem;
    color: #003D82;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
}

.checkbox-group-demande {
    margin-bottom: 1.25rem;
}

.checkbox-label-demande {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1.5rem;
    border-radius: 14px;
    transition: all 0.3s ease;
    background: #FAFBFC;
    border: 3px solid #E8EBED;
}

.checkbox-label-demande:hover {
    background: white;
    border-color: #CBD5E0;
    transform: translateX(5px);
}

.checkbox-label-demande input[type="checkbox"] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
    margin-top: 3px;
    accent-color: #FF6B35;
}

.checkbox-label-demande span {
    color: #2C3E50;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

.checkbox-label-demande a {
    color: #FF6B35;
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-label-demande a:hover {
    color: #003D82;
}

.form-submit-demande {
    margin-top: 3rem;
}

.btn-submit-demande {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35, #FF8C5A);
    color: white;
    border: none;
    padding: 1.75rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.25);
}

.btn-submit-demande:hover {
    background: linear-gradient(135deg, #003D82, #0066CC);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 61, 130, 0.35);
}

.btn-submit-demande:active {
    transform: translateY(-2px);
}

.btn-submit-demande i {
    font-size: 1.4rem;
}

/* Sidebar */
.demande-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: #FF6B35;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B35, #FF8C5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.info-card h4 {
    color: #003D82;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.contact-card {
    background: linear-gradient(135deg, #003D82, #0066CC);
    color: white;
    border: none;
}

.contact-card h4,
.contact-card p {
    color: white;
}

.contact-card .info-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    padding-left: 1.5rem;
    transform: translateX(5px);
}

.contact-link i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demande-form-card,
.info-card {
    animation: slideInUp 0.7s ease both;
}

.info-card:nth-child(2) {
    animation-delay: 0.15s;
}

.info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.info-card:nth-child(4) {
    animation-delay: 0.45s;
}

/* ==========================================
   RESPONSIVE - DEMANDE
   ========================================== */
@media (max-width: 1200px) {
    .demande-container {
        grid-template-columns: 1fr 320px;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .demande-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .demande-credit-form {
        padding: 2.5rem 2rem;
    }
    
    .form-row-demande {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .preview-item {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .form-header-demande {
        padding: 2.5rem 1.5rem;
    }
    
    .form-header-demande h2 {
        font-size: 2rem;
    }
    
    .demande-credit-form {
        padding: 2rem 1.5rem;
    }
    
    .form-section-demande {
        margin-bottom: 2.5rem;
    }
    
    .form-section-demande h3 {
        font-size: 1.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.15rem 1.25rem;
        font-size: 1rem;
    }
    
    .btn-submit-demande {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .form-header-demande {
        padding: 2rem 1rem;
    }
    
    .demande-credit-form {
        padding: 1.5rem 1rem;
    }
    
    .preview-item strong {
        font-size: 1.5rem;
    }
}

/* ==========================================
   RESPONSIVE - MOBILES
   ========================================== */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        padding: 1rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}