
/* ROOT (VARIABLES) */

:root {
    --primary-color: #1E293B;   /* Bleu profond */
    --secondary-color: #FB923C; /* Orange doux */

    --hover-orange: #f97316;

    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --text-dark: #1F2937;
}


/* BASE */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    background-color: var(--light-gray);
    padding-top: 110px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}


/* BUTTON */

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    background-color: var(--hover-orange);
    transform: translateY(-2px);
}

/* ------------------Herder top ---------------------------------------------------- */

/* HEADER TOP / TOP BAR */
.header-top {
    background: var(--primary-color); /* Fond du top bar avec la couleur principale */
    padding: 10px 0; /* Espacement vertical */
    color: var(--white); /* Texte blanc pour contraster avec le fond */
    font-size: 14px; /* Taille de texte modérée */
    font-weight: 400; /* Poids de texte moyen */
}

/* Conteneur HEADER TOP */
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Espacement sur les côtés */
}

/* ALIGNEMENT GAUCHE (adresse, téléphone, email) */
.header-top .top-left {
    display: flex;
    gap: 15px; /* Espacement entre les éléments */
}

/* STYLE DES SPANS DANS .top-left */
.header-top .top-left span {
    display: inline-block;
    color: var(--white); /* Texte blanc pour tous les éléments */
    font-size: 14px; /* Taille de texte modérée */
    font-weight: 500; /* Un peu plus épais pour la lisibilité */
}

/* ICONES */
.header-top .top-left span::before {
    margin-right: 8px; /* Espacement avant l'icône */
    font-size: 16px; /* Taille des icônes */
}

/* Si tu veux ajouter des icônes FontAwesome ou similaires */
.header-top .top-left span:nth-child(1)::before {
    content: ""; /* Icône pour l'adresse */
}

.header-top .top-left span:nth-child(2)::before {
    content: ""; /* Icône pour le téléphone */
}

.header-top .top-left span:nth-child(3)::before {
    content: ""; /* Icône pour l'email */
}
/* RESPONSIVE MOBILE HEADER TOP */
@media (max-width: 768px) {

    .header-top {
        padding: 8px 0;
    }

    .header-top .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .header-top .top-left {
        flex-direction: column;
        gap: 5px;
    }

    .header-top .top-left span {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* PETITS MOBILES */
@media (max-width: 480px) {

    .header-top .top-left span {
        font-size: 11px;
    }

}

/* ---------------------------HERDER PRINCIPAL---------------------------------------- */


/* NAVBAR PRINCIPALE */

.navbar {
    background: var(--white);
    padding: 15px 0;
}

/* Anti tremblement */
.navbar {
    transition: none !important;
}


/* LOGO */

.logo-navbar {
    height: 45px;
    width: auto;
}

.navbar-brand span {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}


/* NAV LINKS */

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* actif */
.nav-link.active {
    color: var(--);
}

.nav-link.active::after {
    width: 100%;
}


/* BOUTON CTA */

.btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}


/* HAMBURGER */

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* MENU DESKTOP */

.navbar-nav {
    align-items: center;
}


/* MOBILE */

@media (max-width: 991px) {

    .navbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .navbar-nav {
        text-align: center;
        gap: 10px;
    }

    .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }

    .btn-primary {
        width: 100%;
        margin-top: 10px;
    }
}


/* PETITS MOBILES */

@media (max-width: 576px) {

    .logo-navbar {
        height: 38px;
    }

    .navbar-brand span {
        font-size: 16px;
    }

}

/* -----------------------HERO SECTION--------------------------------- */

.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}


/* HERO BACKGROUND */

.hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

/* CONTENEUR IMAGES */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* IMAGES */
.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: 0;

    /* IMPORTANT */
    transform: scale(1);
    transition: opacity 1s ease;
}

/* IMAGE ACTIVE */
.hero-bg img.active {
    opacity: 1;

    /* 👇 LE ZOOM */
    animation: zoomMove 12s ease-in-out forwards;
}

/* ZOOM ANIMATION (VISIBLE) */
@keyframes zoomMove {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.25); /* 🔥 zoom fort visible */
    }
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 41, 59, 0.75);
    z-index: 1;
}

/* CONTENT WRAPPER */
.hero .container {
    position: relative;
    z-index: 2;

    /* IMPORTANT: enlève le décalage bootstrap */
    padding-left: 0;
    padding-right: 0;
}

/* SLIDER */
.hero-slider {
    position: relative;
}

/* SLIDES */
.hero-slide {
    position: absolute;
    top: 50%;
    left: 0;

    transform: translateY(-50%) translateY(20px);

    width: 100%;
    align-items: center;
    padding: 0 20px;

    opacity: 0;
    transition: 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(-50%);
}

/* TEXT */
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .hero {
        height: 60vh;
        text-align: center;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero p {
        display: none;
    }

    .hero .btn {
        margin-top: 15px;
    }

    /* STOP animation (important mobile perf) */
    .hero-bg img.active {
        animation: none;
    }

    /* Ajustement image selon contenu */
    .hero-bg img:nth-child(1) {
        object-position: center;
    }

    .hero-bg img:nth-child(2) {
        object-position: top;
    }

    .hero-bg img:nth-child(3) {
        object-position: right center;
    }

    .hero {
        height: 55vh;
    }

    /* zoom plus léger (sinon bug visuel) */
    .hero-bg img.active {
        animation: zoomMobile 10s ease-in-out forwards;
    }

    @keyframes zoomMobile {
        0% {
            transform: scale(1);
        }
        100% {
            transform: scale(1.08);
        }
    }
}
/* 
<!-- ----------------SECTION CONFIANCE ET COUNTER-------------------------------------------- --> */

.oc-stats {
    margin-top: -70px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* HIDDEN SEO */
.oc-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* WRAPPER */

.oc-stats-wrapper {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}

/* CARD */

.oc-stat-card {
    padding: 35px 20px;
    text-align: center;
    position: relative;

    transition: all 0.3s ease;
}

/* séparation verticale subtile */
.oc-stat-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(0,0,0,0.06);
}

/* hover */
.oc-stat-card:hover {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    transform: translateY(-5px);
}

/* HIGHLIGHT (STAT IMPORTANTE) */

.oc-stat-card.is-highlight {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: #fff;
}

.oc-stat-card.is-highlight h2 {
    color: #fff;
}

.oc-stat-card.is-highlight p {
    color: rgba(255,255,255,0.9);
}

/* NUMBER */

.oc-counter {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;

    letter-spacing: -1px;
}

/* TEXT */

.oc-stat-card p {
    font-size: 14px;
    color: #64748b;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .oc-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .oc-stat-card {
        padding: 25px 15px;
    }

    .oc-stat-card::after {
        display: none;
    }
}

@media (max-width: 576px) {

    .oc-stats {
        margin-top: -40px;
    }

    .oc-stats-wrapper {
        grid-template-columns: 1fr;
    }

    .oc-stat-card {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .oc-stat-card:last-child {
        border-bottom: none;
    }

    .oc-counter {
        font-size: 30px;
    }
}

/* <!-- ----------------POURQUOI CHOISIR ORLANDI - CONSEIL ?-------------------------------------------- --> */


/* WHY US SECTION */

.why-us {
    background: #eef2f6;
    padding: 80px 0;
    text-align: center;
}

/* CONTAINER (si pas déjà défini) */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}


/* TITLE */

.why-title {
    font-size: 34px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.why-title strong {
    color: var(--secondary-color);
}

/* LINE */
.title-line {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 12px auto 20px;
    border-radius: 2px;
}


/* INTRO */

.why-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}


/* GRID */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.why-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 14px;
    text-align: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;

    position: relative;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON */
.why-card .icon {
    font-size: 32px;
    margin-bottom: 15px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* TITLE CARD */
.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e3a5f;
}

/* TEXT */
.why-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* OPTIONAL TOP ACCENT */
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us {
        padding: 50px 20px;
    }

    .why-title {
        font-size: 26px;
    }
}

/* <!-- ----------------NOS TYPES DE CREDIT-------------------------------------------- --> */

/* SECTION */
.about-style {
    padding: 80px 0;
    background: #fff;
    overflow: hidden; /* empêche les débordements */
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.about-text .tag {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
}

.about-text h2 {
    font-size: 34px;
    margin: 10px 0;
    color: var(--primary-color);
}

.about-text h2 strong {
    color: var(--secondary-color);
}

.about-text p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* LIST */
.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.about-text ul li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.about-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* PROGRESS */
.progress span {
    font-size: 14px;
    font-weight: 600;
}

.bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    margin-top: 5px;
}

.fill {
    width: 90%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 10px;
}

/* RIGHT IMAGE */
.about-visual {
    position: relative;
    width: 100%;
    max-width: 520px; /* limite largeur */
    margin-left: auto; /* pousse à droite */
}

/* IMAGE */
.about-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    width: 200px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-size: 13px;
    z-index: 2;
}

/* POSITIONNEMENT PROPRE */
.floating-card.top {
    top: 8%;
    left: -40px;
}

.floating-card.middle {
    top: 40%;
    left: -60px;
}

.floating-card.bottom {
    bottom: 8%;
    left: -40px;
}

/* ACTIVE CARD */
.floating-card.active {
    background: #091f4b;
    color: #fff;
}
.top {
    text-align: center;
    margin-top: 25px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        margin: 0 auto;
        max-width: 100%;
    }

    /* on recentre les cartes */
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {

    .about-style {
        padding: 50px 20px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    /* OPTION PRO : cacher pour éviter bug mobile */
    .floating-card {
        display: none;
    }
}

/* <!-- ----------------SIMULATION CREDIT-------------------------------------------- --> */

.loan-sim {
    padding: 90px 20px;
    position: relative;
    text-align: center;
    color: #fff;

    background: linear-gradient(135deg, #1E293B, #0f172a);
    overflow: hidden;
}

/* OVERLAY LUMIÈRE */
.loan-sim::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(251,146,60,0.15), transparent 40%);
    z-index: 1;
}

/* CONTAINER */
.loan-sim-container {
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* TITRE */
.loan-sim-title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}

.loan-sim-title strong {
    color: var(--secondary-color);
}

/* INTRO */
.loan-sim-intro {
    color: #cbd5e1;
    margin-top: 10px;
    margin-bottom: 50px;
}

/* WRAPPER */
.loan-sim-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* FORMULAIRE */

.loan-sim-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FIELD */
.loan-field {
    text-align: left;
}

.loan-field label {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 5px;
    display: block;
}

/* INPUT */
.loan-field input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);

    background: rgba(255,255,255,0.05);
    color: #fff;

    transition: 0.3s;
}

.loan-field input:focus {
    border-color: var(--secondary-color);
    outline: none;
    background: rgba(255,255,255,0.08);
}

/* BOUTONS */

.loan-btn {
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;

    background: var(--secondary-color);
    color: #fff;

    transition: 0.3s;
}

.loan-btn:hover {
    background: var(--hover-orange);
    transform: translateY(-2px);
}

.loan-btn-secondary {
    display: inline-block;
    margin-top: 15px;
}

/* RESULT CARD */

.loan-result-card {
    padding: 30px;
    border-radius: 18px;

    backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow: 0 20px 60px rgba(0,0,0,0.2);

    text-align: left;
}

/* TITRE RESULT */
.loan-result-title {
    color: #fff;
    margin-bottom: 10px;
}

/* PLACEHOLDER */
.loan-placeholder {
    color: #cbd5e1;
}

/* RESULTS */
.loan-results span {
    font-weight: bold;
    color: var(--secondary-color);
}

/* HIDDEN */
.is-hidden {
    display: none;
}

/* NOTE */
.loan-note {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #94a3b8;
}

/* ANIMATION */

.fade {
    animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .loan-sim-wrapper {
        grid-template-columns: 1fr;
    }

    .loan-result-card {
        text-align: center;
    }

    .loan-sim-title {
        font-size: 26px;
    }

}

/* --------------------AVIS CLIENTS ORLANDI--------------------------------------------------------- */

/* TESTIMONIALS SECTION */

.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* EFFET LUMIÈRE (haut droite) */
.testimonials::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251,146,60,0.15), transparent 70%);
    z-index: 0;
}

/* CONTAINER SAFE */
.testimonials .container {
    position: relative;
    z-index: 2;
}

/* BADGE */

.trust-badge {
    display: inline-block;
    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TITRE */

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
}

.section-title span {
    color: var(--secondary-color);
}

/* SLIDER */

.testimonial-slider {
    margin-top: 60px;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
}

/* pause au hover */
.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

/* CARD */

.testimonial-card {
    min-width: 320px;
    padding: 35px 25px;
    border-radius: 20px;

    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.04);

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    text-align: center;
    position: relative;

    transition: all 0.35s ease;
}

/* EFFET HAUT COLORÉ */
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 3px;
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* IMAGE */

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;

    margin-bottom: 15px;

    border: 3px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(251,146,60,0.3);
}

/* TEXTE */

.testimonial-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* STARS */

.stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 10px;
}

/* NAME */

.testimonial-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

/* ANIMATION */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .testimonial-card {
        min-width: 260px;
        padding: 25px 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .testimonial-slider {
        margin-top: 40px;
    }
}

/* --------------------------SECTION CRDEIT/INFORMATION----------------------------------------------------------- */

/* SECTION CREDIT */

.credit-section {
    padding: 80px 0;
    background: #fbfbfb;
}

/* GRID */
.credit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* IMAGE */

.credit-image {
    position: relative;
}

/* STYLE GLOBAL IMAGE (🔥 IMPORTANT) */
.credit-image img {
    width: 100%;
    height: auto; /* 🔥 empêche toute déformation */
    display: block;
    border-radius: 16px;
    object-fit: cover;
}


/* CONTENT */

.credit-content {
    max-width: 550px;
}

/* TITRE */
.credit-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* TEXTE */
.credit-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
}


/* SEO HIGHLIGHT */

.credit-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.credit-content span {
    color: var(--secondary-color);
    font-weight: 600;
}

/* TAUX 2% */
.highlight {
    background: rgba(251, 146, 60, 0.15);
    padding: 3px 8px;
    border-radius: 6px;
    color: var(--secondary-color);
    font-weight: bold;
}


/* BUTTON */

.credit-content .btn-primary {
    margin-top: 20px;
    display: inline-block;
}


/* RESPONSIVE TABLET */

@media (max-width: 992px) {

    .credit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .credit-content {
        max-width: 100%;
        text-align: center;
    }

    .credit-content h2 {
        font-size: 28px;
    }

    .credit-content p {
        font-size: 15px;
    }
}


/* RESPONSIVE MOBILE */

@media (max-width: 768px) {

    .credit-image {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .img-main,
    .img-secondary {
        position: relative;
        width: 100%;
        transform: none;
        top: 0;
        right: 0;
    }

    .img-secondary {
        margin-top: 10px;
    }
}


/* SMALL MOBILE */

@media (max-width: 576px) {

    .credit-section {
        padding: 60px 20px;
    }

    .credit-content h2 {
        font-size: 24px;
    }

    .credit-content p {
        font-size: 14px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* --------------BANQUES PARTENAIRES-------------------------------------------------- */

.partners {
    padding: 80px 0;
    background: #efeeee;
    text-align: center;
}

/* TITRE */
.partners-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* TEXTE */
.partners-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #6b7280;
    line-height: 1.6;
}

/* SEO */
.partners strong {
    color: var(--primary-color);
}

.partners span {
    color: var(--secondary-color);
}


/* LOGOS */

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.partners-logos img {
    width: 120px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

/* HOVER */
.partners-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}


/* TRUST BLOCK */

.partners-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.trust-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 14px;
    color: #6b7280;
}


/* RESPONSIVE */

@media (max-width: 768px) {

    .partners-title {
        font-size: 26px;
    }

    .partners-trust {
        grid-template-columns: 1fr;
    }

    .partners-logos img {
        width: 90px;
    }
}
/* -----------------------------CTA FINAL INDEX-------------------------------------- */


/* CTA FINAL */

.cta-final {
    padding: 100px 20px;
    background: linear-gradient(135deg, #111c2d, #0e2968);
    text-align: center;
    color: #fff;
}

/* BOX */
.cta-box {
    max-width: 750px;
    margin: auto;
}

/* TITRE */
.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* TEXTE */
.cta-box p {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* SEO */
.cta-box strong {
    color: #FB923C;
}

.cta-box span {
    color: #FB923C;
}


/* LISTE */

.cta-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.cta-benefits li {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-dark);
}


/* BUTTONS */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* BOUTON PRINCIPAL */
.btn-primary.big {
    padding: 14px 28px;
    font-size: 16px;
}

/* BOUTON SECOND */
.btn-secondary {
    padding: 14px 28px;
    border: 2px solid #FB923C;
    color: #FB923C;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #FB923C;
    color: #fff;
}


/* RESPONSIVE */

@media (max-width: 768px) {

    .cta-box h2 {
        font-size: 26px;
    }

    .cta-box p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary.big,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* --------------------PAGE CONTACT ORLANDI CONSEIL--------------------------- */


/* CONTACT HERO */

.contact-hero-section {
    background: linear-gradient(rgba(30,41,59,0.85), rgba(30,41,59,0.85)),
                url('images/businessmen-desk.jpg');
    background-size: cover;
    background-position: center;
    padding: 90px 20px;
    text-align: center;
    color: var(--white);
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 650px;
    margin: auto;
}

/* SECTION CONTACT */

.contact-main-section {
    background: var(--light-gray);
}

/* FORMULAIRE */

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

/* TITRES */
.section-title {
    font-weight: 700;
    color: var(--primary-color);
}

/* INPUTS */
.contact-input {
    border-radius: 12px;
    border: 1px solid #eaeaea;
    padding: 14px;
    font-size: 14px;
    transition: all 0.25s ease;
}

.contact-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(251,146,60,0.2);
}

/* TEXTAREA */
textarea.contact-input {
    resize: none;
}

/* BOUTON */

.contact-btn {
    background: var(--secondary-color);
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--hover-orange);
    transform: translateY(-2px);
}

/* TEXTES FORM */
.form-note {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 12px;       /* espace avec le bouton */
    margin-bottom: 4px;     /* petit espace entre les deux */
}
/* TEXTES SOUS LE BOUTON */

.contact-form p {
    font-size: 12px;      /* réduit la taille */
    opacity: 0.6;         /* diminue l’opacité */
    margin-top: 8px;      /* petit espace propre */
    margin-bottom: 0;
}


/* INFOS CONTACT */

.contact-info-wrapper {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LIEN WHATSAPP */
.contact-info-item a {
    color: var(--hover-orange); /* Utilisation de l'orange du :root */
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* ICONE WHATSAPP */
.contact-info-item a .fa-whatsapp {
    color: #25D366; /* Couleur verte officielle de WhatsApp */
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* HOVER : Lien cliquable + changement de couleur */
.contact-info-item a:hover {
    color: var(--secondary-color); /* Lien devient orange clair au survol */
}

.contact-info-item a:hover .fa-whatsapp {
    transform: scale(1.2); /* Effet de zoom sur l'icône au hover */
}


/* TRUST BOX */

.contact-trust-box {
    background: linear-gradient(180deg, var(--white), var(--light-gray));
    border-radius: 18px;
    padding: 25px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.contact-trust-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.trust-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* LISTE */
.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--primary-color);
}

/* CHECK */
.trust-list li::before {
    content: "✔";
    color: var(--hover-orange);
    font-weight: bold;
    margin-right: 10px;
}


/* SEO SECTION */

.seo-section {
    background: var(--white);
}

.seo-text {
    color: #050505 !important;
    font-size: 15px;
    max-width: 800px;
    opacity: 0.7;
}


/* RESPONSIVE */

@media (max-width: 992px) {

    .contact-info-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {

    .contact-hero-section {
        padding: 70px 20px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-btn {
        width: 100%;
    }
}

/* MOBILE OPTIMISÉ */
@media (max-width: 576px) {

    .contact-hero-section {
        padding: 60px 15px;
        background-position: center top;
    }

    .contact-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .contact-subtitle {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-info-item {
        font-size: 14px;
    }
}

/* -----------------------PAGE SERVICES---------------------------------------------- */


/* HERO MINI */

.hero-mini {
    height: 220px;
    background: linear-gradient(rgba(30,41,59,0.85), rgba(30,41,59,0.85)),
                url('images/businessmen-desk.jpg');
    background-size: cover;
    background-position: center;
}


/* CTA */

.cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--hover-orange));
    padding: 60px 0;
    color: var(--white);
}

.cta h2 {
    font-size: 30px;
    font-weight: 700;
}

.cta p {
    margin: 15px 0;
}


/* TITRES */

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-dark);
    opacity: 0.7;
    margin-top: 10px;
}


/* SERVICE CARD */

.service-card.premium {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;

    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* IMAGE */
.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* CONTENU */
.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
}

/* ICON */
.service-card.premium i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* HOVER */
.service-card.premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.service-card.premium:hover .service-img {
    transform: scale(1.05);
    transition: 0.4s ease;
}


/* PROCESS */

.process-step span {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-weight: bold;
    margin-bottom: 10px;
}


/* AVANTAGES */

.adv-list {
    list-style: none;
    padding: 0;
}

.adv-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-dark);
}


/* STATS */

.stats {
    background: linear-gradient(135deg, var(--primary-color), #1e3a5f);
    color: var(--white);
}

.stats h3 {
    font-size: 32px;
    color: var(--secondary-color);
}

.stats p {
    color: var(--white);
}


/* BACKGROUNDS SECTIONS */

.services-intro {
    background: var(--light-gray);
}

.services {
    background: var(--white);
}

.process {
    background: #f1f5f9;
}

.advantages {
    background: var(--white);
}


/* RESPONSIVE */

@media (max-width: 992px) {

    .hero-mini {
        height: 180px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta h2 {
        font-size: 24px;
    }

    .service-content {
        padding: 18px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .hero-mini {
        height: 300px;
        background-position: center top;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .cta {
        padding: 40px 15px;
        text-align: center;
    }

    .cta h2 {
        font-size: 20px;
    }

    .cta p {
        font-size: 14px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 13px;
    }

    .process-step span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }

    .adv-list li {
        font-size: 14px;
    }

    .stats h3 {
        font-size: 24px;
    }
}
/* ------------------PAGE A PROPOS ORLANDI CONSEIL--------------------------------------------------------------------- */

/* HERO MINI (FIX RESPONSIVE) */

.hero-mini {
    background: linear-gradient(rgba(10,37,64,0.8), rgba(10,37,64,0.8)),
                url('images/businessmen-desk.jpg');
    background-size: cover;
    background-position: center;

    min-height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #fff;

    padding: 60px 20px;
}

.hero-mini h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-mini p {
    font-size: 16px;
    opacity: 0.9;
}

/* TAG */

.section-tag {
    color: #FB923C;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* INTRO */
.about-intro {
    font-size: 17px;
    font-weight: 500;
    color: #0a2540;
    margin-bottom: 15px;
}

/* LISTE */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.about-list li::before {
    content: "✔";
    color: #FB923C;
    margin-right: 10px;
}

/* IMAGE */
.about-img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

/* EXPERTISE */

.expertise {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.expertise h2 {
    font-weight: 700;
    color: #0a2540;
}

.expertise p {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.expertise .row {
    margin-top: 40px;
}

.expertise-box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

/* Effet hover */
.expertise-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(251,146,60,0.15), transparent);
    transition: 0.6s;
}

.expertise-box:hover::before {
    left: 100%;
}

.expertise-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.expertise-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #0a2540;
}

.expertise-box h5::after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    background: #FB923C;
    margin-top: 8px;
    transition: width 0.3s ease;
}

.expertise-box:hover h5::after {
    width: 60px;
}

.expertise-box p {
    font-size: 14px;
    color: #666;
}

/* TRUST SECTION */

.trust-section {
    background: linear-gradient(135deg, #0a2540, #1e3a5f);
    color: #fff;
}

.trust-section p {
    color: #dcdcdc;
}

.trust-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-box:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
}

.trust-box h4 {
    color: #FB923C;
    margin-bottom: 10px;
}

.trust-box p {
    font-size: 14px;
    color: #e5e5e5;
}

/* CTA */

.cta-final {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-final h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0a2540;
}

.cta-final p {
    margin-top: 15px;
    font-size: 17px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-outline-dark {
    border: 2px solid #0a2540;
    color: #0a2540;
}

.btn-outline-dark:hover {
    background: #0a2540;
    color: #fff;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
}

.cta-final .container {
    background: #f8fafc;
    padding: 50px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* RESPONSIVE GLOBAL */

@media (max-width: 992px) {

    .about-section {
        text-align: center;
    }

    .expertise-box {
        margin-bottom: 20px;
    }

}

@media (max-width: 768px) {

    /* HERO FIX */
    .hero-mini {
        min-height: 180px;
        padding: 40px 15px;
        background-position: center top;
    }

    .hero-mini h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-mini p {
        font-size: 14px;
    }

    /* AUTRES */
    .about-intro {
        font-size: 15px;
    }

    .expertise {
        text-align: center;
    }

    .trust-box {
        margin-bottom: 20px;
    }

    .cta-final h2 {
        font-size: 26px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .btn-outline-dark {
        margin-left: 0 !important;
    }

    .expertise .col-md-3,
    .trust-section .col-md-4 {
        margin-bottom: 20px; /* 🔥 espace entre les cartes */
    }
}

@media (max-width: 480px) {

    .hero-mini {
        min-height: 160px;
        padding: 30px 10px;
    }

    .hero-mini h1 {
        font-size: 20px;
    }

    .hero-mini p {
        font-size: 13px;
    }
}

/* -----------------------------PAGE DEMANDE DE PRET----------------------------------------------- */

/* HERO MINI */
.hero-mini {
    background: linear-gradient(rgba(10,37,64,0.9), rgba(10,37,64,0.9)),
                url('images/businessmen-desk.jpg');

    background-size: cover;
    background-position: center;

    padding: 80px 0 60px;
    color: #fff;
}
.hero-mini h1 {
    font-size: 38px;
    font-weight: 700;
}
.hero-mini p {
    margin-top: 10px;
    font-size: 16px;
    color: #dcdcdc;
}

/* SECTION FORMULAIRE */
.loan-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* BOX */
.loan-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;

    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);

    transition: all 0.35s ease;
}

.loan-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* TITRE */
.loan-box h2 {
    font-weight: 700;
    color: #1E293B;
    position: relative;
}

/* petite ligne design */
.loan-box h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #FB923C;
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* LABEL */
.loan-box label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #1E293B;
    font-size: 14px;
}

/* INPUT */
.loan-box .form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e5e7eb;

    background: #f9fafb;
    transition: all 0.25s ease;
}

/* HOVER INPUT */
.loan-box .form-control:hover {
    border-color: #FB923C;
}

/* FOCUS */
.loan-box .form-control:focus {
    border-color: #FB923C;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(251,146,60,0.2);
}

/* SELECT */
.loan-box select.form-control {
    cursor: pointer;
}

/* BTN */
.loan-box .btn-primary {
    background: linear-gradient(135deg, #FB923C, #f97316);
    border: none;

    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;

    border-radius: 8px;

    box-shadow: 0 10px 25px rgba(251,146,60,0.3);
    transition: all 0.3s ease;
}

/* HOVER BTN */
.loan-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251,146,60,0.4);
}

/* TRUST TEXT */
.loan-box .text-muted {
    font-size: 13px;
    line-height: 1.7;
    color: #6b7280;
}

/* SEO SECTION */
.seo-section {
    background: #ffffff;
    padding-top: 70px;
    padding-bottom: 70px;
}

.seo-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 20px;
}

.seo-section p {
    font-size: 15.5px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* RESPONSIVE */

/* TABLETTE */
@media (max-width: 992px) {

    .loan-box {
        padding: 35px;
    }

    .seo-section h2 {
        font-size: 26px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .loan-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .loan-box {
        padding: 25px;
        border-radius: 12px;
    }

    .loan-box h2 {
        font-size: 22px;
    }

    .loan-box .form-control {
        font-size: 14px;
    }

    .seo-section h2 {
        font-size: 22px;
    }

    .seo-section p {
        font-size: 14px;
    }
}

/* PETITS ÉCRANS */
@media (max-width: 480px) {

    .loan-box {
        padding: 20px;
    }

    .loan-box .btn-primary {
        width: 100%;
    }
}
.trust-badges {
    font-size: 13px;
    color: #6b7280;
    letter-spacing: 0.3px;
}
::placeholder {
    color: #9ca3af;
    font-size: 14px;
}

/* RESET GLOBAL */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden; /* empêche le scroll horizontal */
}

/* -----------------PAGE IMPRESSUM-------------------------------------------- */

.legal-hero {
    background: linear-gradient(135deg, rgba(30,41,59,0.95), rgba(15,23,42,0.95)),
                url('images/businessmen-desk.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden; /* empêche le débordement du pseudo élément */
}

/* effet lumière */
.legal-hero::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(251,146,60,0.2), transparent 70%);
}

/* TITRE */
.legal-hero h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
}

/* TEXTE */
.legal-hero p {
    margin-top: 10px;
    color: #cbd5e1;
}

/* SECTION */
.legal-section {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    padding: 80px 20px;
}

/* BOX PRINCIPALE */
.legal-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 18px;
    max-width: 900px;
    margin: auto;

    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);

    position: relative;
}

/* bande décorative */
.legal-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(var(--secondary-color), #f97316);
    border-radius: 6px 0 0 6px;
}

/* TITRES */
.legal-box h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

/* petit accent */
.legal-box h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 6px;
    border-radius: 2px;
}

/* TEXTE */
.legal-box p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* LABEL STRONG */
.legal-box strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* HR */
.legal-box hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}

/* HOVER LÉGER */
.legal-box:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .legal-hero {
        padding: 70px 20px;
    }

    .legal-hero h1 {
        font-size: 28px;
    }

    .legal-box {
        padding: 25px;
    }

    .legal-box h2 {
        font-size: 18px;
    }

    .legal-box p {
        font-size: 14px;
    }
}

/* ---------------------PAGE MERCI.PHP------------------------------------------------ */


/* FOND D'IMAGE POUR LA PAGE AVEC OVERLAY */

#merci {
    background: url('images/homi.webp') center/cover no-repeat;
    
    background-position: center center;
    background-size: cover;
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative;
}

/* OVERLAY (superposition semi-transparente) */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 54, 0.4);
    z-index: -1; 
}


/* SECTION DE CONFIRMATION AVEC EFFET GLASS */

.confirmation-section {
    background: rgba(255, 255, 255, 0.6); /* Transparence pour l'effet glass */
    backdrop-filter: blur(10px); /* Flou pour l'effet glass */
    border-radius: 12px;
    padding: 50px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 50px;
    color: #fff;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-section h2 {
    font-size: 32px;
    color: var(--primary-color); /* Couleur d'accentuation premium */
    font-weight: 700;
    margin-bottom: 20px;
}

.confirmation-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.confirmation-section .btn-primary {
    background: #FB923C;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre douce */
}

.confirmation-section .btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.confirmation-section .btn-primary:active {
    transform: scale(0.98);
}


/* RESPONSIVE DESIGN */

@media (max-width: 768px) {
    .confirmation-section {
        padding: 40px 20px;
    }

    .confirmation-section h2 {
        font-size: 28px;
    }

    .confirmation-section p {
        font-size: 16px;
    }
}


/* -------------------PAGE MERCI_CONTACT.PHP-------------------------------------------------- */



/* PAGE MERCI CONTACT - STYLING */


#merci_contact {
    background: url('images/merci.jpg') center/cover no-repeat; 
    background-position: center center;
    background-size: cover;
    font-family: Arial, sans-serif;
    margin: 0;
}


/* SECTION DE CONFIRMATION (Glass Effect) */

.confirmation-section {
    background: rgba(255, 255, 255, 0.8); /* Légère transparence pour l'effet glass */
    backdrop-filter: blur(10px); /* Flou pour l'effet glass */
    border-radius: 12px;
    padding: 50px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 50px;
    color: #333;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-section h2 {
    font-size: 32px;
    color: var(--primary-color); /* Couleur d'accentuation */
    font-weight: 700;
    margin-bottom: 20px;
}

.confirmation-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    margin-top: 10px;
}

.confirmation-section .btn-primary {
    background: #FB923C;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre douce */
}

.confirmation-section .btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.confirmation-section .btn-primary:active {
    transform: scale(0.98);
}

































/* FOOTER PREMIUM COMPACT */

.footer {
    background: linear-gradient(135deg, #0f172a, var(--primary-color));
    color: var(--white);
    padding: 35px 0 12px; /* réduit */
    font-size: 14px;
}

/* Colonnes plus aérées mais compactes */
.footer .row > div {
    margin-bottom: 20px;
}

/* Titres */
.footer h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}

/* Ligne design */
.footer h5::after {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    display: block;
    margin-top: 6px;
    border-radius: 5px;
}

/* Texte */
.footer p {
    color: #cbd5e1;
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Liens */
.footer a {
    color: #e2e8f0;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

/* Liste liens */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

/* Effet hover stylé */
.footer-links a {
    position: relative;
    padding-left: 12px;
}

.footer-links a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    transition: 0.3s;
}

.footer-links a:hover {
    padding-left: 16px;
}

/* Icônes (email / whatsapp) */
.footer i {
    margin-right: 6px;
    color: var(--secondary-color);
}

/* WhatsApp lien plus visible */
.footer a[href*="wa.me"] {
    font-weight: 500;
}

/* Ligne du bas */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 15px;
    padding-top: 10px;
    font-size: 12px;
    color: #94a3b8;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .footer {
        text-align: center;
        padding: 25px 0 10px;
    }

    .footer h5::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }
}