@font-face {
    font-family: "Outfit", sans-serif;
    src: url(../font/Helvetica.ttf) format('truetype');
    font-weight: normal;
}
@font-face {
    font-family: "Outfit", sans-serif;
    src: url(../font/Helvetica-Bold.ttf) format('truetype');
    font-weight: bold;
}
:root {
    --color-1: #F06627;
    --color-2: #2c3350;
    --text-color: #4a4a4a;
    --text-2: #1A133B;
    --bg-color: #f4f5f7;
    --bg-white: #ffffff;
    --bg-light: #f4f5f7;
    --border-color: rgba(255, 255, 255, 0.15);
    --input-bg: #F8F8F8;
}
body {
    font-family: 'Montserrat', Inter, DM Sans, sans-serif;
}
h1, h2, h3, h4, h5, h6, a, p {
    font-family: "Montserrat", sans-serif;
}
a { color: inherit;text-decoration: none; }
img { max-width: 100%;}
/* --- Couleurs personnalisées --- */
.bg-orange { background-color: var(--color-1) !important; }
.text-orange { color: var(--color-1) !important; }
.bg-brand-dark { background-color: var(--color-2) !important; }
.brand-logo-container {
    border-right: 1px solid #eaeaea;
}
.logo-title {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}
.logo-subtitle {
    font-size: 0.55rem;
    letter-spacing: 1px;
    color: var(--color-1);
}
.top-bar-contact {
    min-height: 45px;
}
.top-bar-contact .small {
    font-size: 15px;
}
.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--color-1);
    color: white;
    font-size: 0.65rem;
}
.contact-btn {
    background-color: var(--color-1);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    transition: background-color 0.2s;
}
.contact-btn:hover {
    background-color: #d95a1c;
    color: white;
}
.navbar-nav .nav-item , .navbar-nav .nav-item .nav-link {
    font-size: 18px;
    color: var(--text-2);
}
.header-navbar {
    border-bottom: 1px solid #eaeaea;
}
.navbar-nav .nav-link {
    color: var(--text-grey);
    font-size: 0.9rem;
    padding: 1rem 1.2rem !important;
    transition: color 0.2s;
}
.navbar-nav .nav-link:hover {
    color: var(--color-1);
}
.navbar-nav .nav-item .active {
    background-color: var(--color-1);
    color: white !important;
}

/* --- Bloc Assistance --- */
.support-block {
    display: flex;
    align-items: center;
}
.support-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-1);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.support-text {
    font-size: 0.75rem;
    color: #888;
    line-height: 1;
}
.support-phone {
    font-size: 1.1rem;
    color: var(--color-2);
    line-height: 1.2;
}

/* =========================================
    SECTION HERO (Bannière avec fond)
    ========================================= */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    /* Remplacer l'URL ci-dessous par le chemin de votre vraie image */
    /* background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 100%),  url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center; */
    background-size: cover;
}

.badge-hero {
    background-color: var(--color-1);
    color: white;
    padding: 0.35rem 1.2rem;
    border-radius: 50rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--color-2);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-text {
    color: var(--color-2);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 2rem;
}

.btn-custom {
    background-color: var(--color-1);
    color: white;
    border-radius: 50rem;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background-color: #d1561f;
    color: white;
}

/* =========================================
    SECTION STATISTIQUES (Bandeau blanc en bas)
    ========================================= */
.stats-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.stats-row {
    border-top: 1px solid #eaeaea;
    padding-top: 2.5rem;
}

.stat-box {
    padding: 0 1.5rem;
    position: relative;
}

/* Séparateur vertical entre les colonnes */
@media (min-width: 768px) {
    .stat-divider {
        border-left: 1px solid #eaeaea;
    }
    
    /* Le petit losange orange sur la ligne du haut */
    .stat-divider::before {
        content: '';
        position: absolute;
        top: -2.5rem; /* Remonte pour compenser le padding-top de la ligne */
        margin-top: -4px; /* Centre le losange sur la ligne de 1px */
        left: -4px; /* Centre sur la bordure gauche */
        width: 8px;
        height: 8px;
        background-color: var(--color-1);
        transform: rotate(45deg); /* Tourne le carré pour en faire un losange */
    }
}

.stat-number {
    color: var(--color-2);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.stat-label {
    color: var(--color-1);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
}

.stat-desc {
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.4;
}
/* 
    -------------------------------------------------------------------------
*/
.expertises-section {
    padding: 5rem 0;
    overflow: hidden;
}
/* Boutons Précédent/Suivant */
.nav-arrows .btn {
    background-color: white;
    color: var(--color-2);
    border: none;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-left: 10px;
    transition: all 0.2s;
}
.nav-arrows .btn:hover {
    background-color: var(--color-2);
    color: white;
}

/* --- Cartes Expertises --- */
.expertise-card {
    background-color: white;
    border-radius: 12px;
    padding: 3rem 1.5rem 1.5rem;
    position: relative;
    margin-top: 35px; /* Espace pour l'icône flottante */
    height: calc(100% - 35px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    position: absolute;
    top: -30px;
    left: 1.5rem;
    width: 65px;
    height: 65px;
    background-color: var(--color-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(240, 102, 39, 0.3);
}
.card-icon img {
    max-width: 70%;
}

.expertise-card h4 {
    color: var(--color-2);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* Lien / Bouton bas de carte */
.card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #eaeaea;
    border-radius: 50rem;
    padding: 0.3rem 0.3rem 0.3rem 1rem;
    text-decoration: none;
    color: var(--color-2);
    font-size: 0.75rem;
    font-weight: 600;
    transition: border-color 0.2s;
}

.card-action:hover {
    border-color: var(--color-2);
}

.card-action-icon {
    width: 30px;
    height: 30px;
    background-color: var(--color-2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* --- Image Mobile Mockup --- */
.mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.mockup-img {
    max-width: 80%;
    position: absolute;
    right: -20px;
    z-index: 10;
}

@media (max-width: 991px) {
    .mockup-container {
        margin-top: 3rem;
    }
    .mockup-img {
        position: relative;
        max-width: 100%;
        right: 0;
    }
}

/* --------------------- */
.about-section {
    padding: 6rem 0;
    background-color: #fff;
}

/* --- En-tête de section (Ligne + Carré à gauche) --- */
.section-label-alt {
    color: var(--color-1);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-label-alt::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--color-1);
}

.section-label-alt .square {
    width: 8px;
    height: 8px;
    background-color: var(--color-1);
    margin-left: -4px; /* Superpose légèrement sur la ligne */
    margin-right: 12px;
    rotate: 30deg;
}

.section-title {
    color: var(--color-2);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.about-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 95%;
}

.about-subtitle {
    color: var(--color-2);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* --- Liste de points forts --- */
.features-list {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-2);
    margin-bottom: 1rem;
}

.feature-icon {
    color: var(--color-1);
    font-size: 1.1rem;
    margin-right: 10px;
}

/* --- Bouton --- */
.btn-orange {
    background-color: var(--color-1);
    color: white;
    border-radius: 50rem;
    padding: 0.7rem 2.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-orange:hover {
    background-color: #d1561f;
    color: white;
}

/* --- Grille d'images personnalisée (Effet décalé) --- */
.image-gallery {
    display: flex;
    gap: 15px;
    height: 100%;
}

.gallery-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Décalage de la colonne de gauche vers le bas */
.col-left {
    padding-top: 40px; 
    padding-bottom: 0;
}
.col-right {
    padding-top: 0;
    padding-bottom: 40px;
}
.gallery-img {
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
}
.img-tall {
    height: 100%;
    min-height: 450px;
}
.img-half {
    height: 50%;
    min-height: 215px;
}
@media (max-width: 991px) {
    .image-gallery {
        margin-bottom: 3rem;
    }
    .img-tall, .img-half {
        min-height: 250px;
    }
}
.contact-section {
    background-color: var(--bg-light);
    padding: 6rem 0;
}

/* --- Formulaire --- */
.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}
.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    color: #333;
    background-color: #fff;
    box-shadow: none;
}
.form-control::placeholder {
    color: #a0a0a0;
}
.form-control:focus, .form-select:focus {
    border-color: var(--color-1);
    box-shadow: 0 0 0 0.2rem rgba(240, 102, 39, 0.15);
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.btn-orange {
    background-color: var(--color-1);
    color: white;
    border-radius: 50rem;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    display: inline-block;
}
.btn-orange:hover {
    background-color: #d1561f;
    color: white;
}
.contact-images-wrapper {
    display: flex;
    gap: 20px;
    height: 100%;
}
.contact-img {
    width: 50%;
    object-fit: cover;
    border-radius: 16px;
    min-height: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
@media (max-width: 991px) {
    .contact-images-wrapper {
        margin-top: 4rem;
    }
    .contact-img {
        min-height: 350px;
    }
}
.site-footer {
    position: relative;
    background-size: cover;
    color: white;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 70%);
    z-index: 1;
}
.footer-content-wrapper {
    position: relative;
    z-index: 2;
}
.cta-section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.cta-subtitle {
    color: var(--color-1);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cta-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.btn-cta {
    background-color: var(--color-1);
    color: white;
    border-radius: 50rem;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-cta:hover {
    background-color: #d1561f;
    color: white;
}
.main-footer {
    padding: 4rem 0;
}
.footer-heading {
    color: var(--color-1);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
}
.footer-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-list a:hover {
    color: var(--color-1);
}
.footer-icon {
    color: var(--color-1);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 0.9rem;
    width: 15px;
    text-align: center;
}
.footer-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.footer-assistance {
    display: flex;
    align-items: center;
}
.footer-assistance-icon {
    width: 35px;
    height: 35px;
    background-color: var(--color-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    font-size: 1rem;
    color: white;
}
.footer-assistance-text {
    color: var(--color-1);
    font-size: 0.75rem;
    line-height: 1.2;
}
.footer-assistance-phone {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}
.newsletter-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.newsletter-form {
    position: relative;
    width: 100%;
}
.newsletter-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.6rem 2.5rem 0.6rem 1.2rem;
    color: white;
    font-size: 0.8rem;
    outline: none;
}
.newsletter-input::placeholder {
    color: #888;
}
.newsletter-input:focus {
    border-color: var(--color-1);
}
.newsletter-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 32px;
    border-radius: 50%;
    background-color: var(--color-1);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}
.newsletter-btn:hover {
    background-color: #d1561f;
}
.bottom-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    text-align: center;
}

.copyright-text {
    color: #fff;
    font-size: 0.75rem;
    margin: 0;
}
.banair-header {
    min-height: 250px;
}

/* Formulaires */
.form-label {
    font-size: 0.85rem;
    color: #5C6972;
    font-weight: 500;
    margin-bottom: 10px;
}
.form-control, .form-select {
    background-color: var(--input-bg);
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--color-1);
    box-shadow: 0 0 0 0.2rem rgba(242, 107, 33, 0.15);
}
/* Boutons Radio et Checkbox */
.form-check-input:checked {
    background-color: var(--color-1);
    border-color: var(--color-1);
}
.radio-group { margin-bottom: 20px; }
.radio-group .form-check { margin-right: 20px; display: inline-block; }
/* Bouton de soumission */
.btn-submit {
    background-color: var(--color-1);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-submit:hover {
    background-color: #d95a16;
    color: white;
}
.disclaimer-text {
    font-size: 0.75rem;
    color: #888;
    margin-top: 20px;
    margin-bottom: 20px;
}
/* Sidebar - Cartes de droite */
.sidebar-card-1 {
    /* Image de fond assombrie */
   
    color: white;
    border-radius: 6px;
    padding: 30px 25px;
    margin-bottom: 20px;
}
.sidebar-card-1 h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sidebar-card-1 h4 i { color: var(--color-1); }
.feature-box { margin-bottom: 18px; }
.feature-box h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-box h6 i { color: var(--color-1); }
.feature-box p {
    font-size: 0.8rem;
    color: #ccc;
    margin-left: 24px;
    margin-bottom: 0;
    line-height: 1.4;
}
.sidebar-card-2 {
    background: linear-gradient(173deg, #1A213B, #3B405F);
    color: white;
    border-radius: 6px;
    padding: 30px 25px;
    text-align: center;
}
.sidebar-card-2 h4 {
    color: var(--color-1);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.sidebar-card-2 p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.5;
}
.sidebar-card-2 .phone-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin: 0;
}
/* section title */
.section-title-2 {
    color: var(--color-2);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.section-title-2 i {
    color: var(--color-1);
}

.head-banner {
    background-color: var(--bg-color);
    min-height: 250px;
    padding: 60px 0;
}
.head-banner-title {
    color: var(--text-2);
    font-size: 2.5rem;
    font-weight: 700;
}
.description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

/* --- Liste des Fonctionnalités --- */
.icon-container {
    width: 40px;
    color: var(--color-2);
    font-size: 1.5rem;
    padding-top: 2px;
}

.feature-title {
    color: var(--color-1);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-desc {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* --- Partie Droite (Mockup Mobile) --- */
.app-mockup {
    max-height: 450px;
    object-fit: contain;
}

.download-buttons img {
    transition: transform 0.2s ease;
}

.download-buttons img:hover {
    transform: scale(1.05);
}

/* Responsive ajustements */
@media (max-width: 991.98px) {
    .head-banner {
        background-position: center;
        text-center: center;
    }

}
/* --- 2. Barre de Recherche de Réservation --- */
.search-section {
    margin-top: 50px; /* Fait chevaucher la barre sur le Hero */
    position: relative;
    z-index: 10;
}
.search-tab {
    background-color: var(--text-2);
    color: #fff;
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.search-bar-container {
    background-color: #F8F8F8;
    border-radius: 0 15px 15px 15px;
    border: 1px solid #eee;
}

.search-field {
    padding: 5px 15px;
}

.search-field .form-label {
    font-size: 0.9rem;
    color: #868686;
    display: block;
    margin-bottom: 15px !important;
}
.search-field select, 
.search-field input {
    font-size: 0.9rem;
    outline: none;
    box-shadow: none !important;
}
.border-end-custom {
    border-right: 1px solid #eee;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f06627;
    color: white;
}
@media (max-width: 991.98px) {
    .border-end-custom {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
}
.btn-search {
    background-color: var(--color-1);
    border: none;
    font-size: 0.9rem;
    border-radius: 15px;
    padding: 20px 25px !important;
    transition: background-color 0.2s ease;
}


/* --- 3. Cartes Véhicules --- */
.vehicle-card {
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vehicle-card:hover {
    
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

/* Effet de sélection bleu de la première carte */

.vehicle-img {
    height: 150px;
    object-fit: contain;
    margin: 15px 0;
}
.vehicle-name {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.price-box {
    font-size: 0.9rem;
    color: #777;
}

.price-value {
    color: var(--color-1);
    font-weight: 700;
}

.specs-list {
    border-top: 1px dashed #eee;
    padding-top: 12px;
}

.specs-list li {
    font-size: 18px;
    color: var(--text-2);
    margin-bottom: 6px;
}

.specs-list li strong {
    color: #444;
}

.btn-rent {
    background-color: var(--text-2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
}

.btn-rent:hover {
    background-color: #281d59;
    color: #fff;
}

/* --- 4. Section Comment ça fonctionne --- */
.bg-light-section {
    background-color: #fafbfc;
}

.step-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
}

.step-icon {
    background-color: var(--text-2);
    width: 100%;
    height: 100%;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-icon img {
    width: 40px;
}

.step-number {
    position: absolute;
    top: -5px;
    left: -5px;
    background-color: var(--color-1);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.step-text {
    font-size: 0.85rem;
    color: #555;
}

/* --- Stylisation des composants jQuery --- */

/* Input du Calendrier */
.jq-datepicker {
    border: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    font-weight: 600 !important;
    color: var(--color-2) !important;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: none !important;
}

/* Retirer le design lourd par défaut de Select2 pour matcher l'image */
.select2-container--default .select2-selection--single {
    border: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 20px !important;
    font-weight: 600;
    color: var(--color-2) !important;
    font-size: 0.9rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: -4px !important;
    right: 0px !important;
}

/* Personnalisation du Calendrier jQuery UI aux couleurs de votre thème */
.ui-datepicker {
    font-family: inherit;
    border: 1px solid #eee !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.ui-datepicker .ui-datepicker-header {
    background: var(--text-2) !important;
    color: #fff !important;
    border: none !important;
}
.ui-datepicker .ui-state-highlight {
    border: 1px solid var(--color-1) !important;
    background: #fff5f0 !important;
    color: var(--color-1) !important;
}
.ui-datepicker .ui-state-active {
    background: var(--color-1) !important;
    border: 1px solid var(--color-1) !important;
    color: #fff !important;
}
.select-mobir {
    position: relative;
}
.select-mobir i {
    position: absolute;
    left: 0px;
    font-size: 12px;
    bottom: 9px;
    color: var(--text-2);
}
.select-mobir .select2-custom, .select-mobir input {
    padding-left: 20px !important;
}