/* ============================================
   Section intro category with image
=============================================== */

.navtrail-section {
  background: #f4f6fa;
  font-family: 'Figtree', sans-serif;
  padding: 25px;
  overflow: visible;
  z-index: 2;
}

.navtrail-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Fil d’Ariane */
.navtrail-breadcrumbs {
  font-size: 14px;
  margin-bottom: 10px;
  padding: 25px 0;
  text-align: left;
}

.navtrail-breadcrumbs a,
.navtrail-breadcrumbs span {
  text-decoration: none;
  margin-right: 10px;
}

.navtrail-breadcrumbs span:last-of-type {
  color: #002b7f;
}

.navtrail-breadcrumbs a { font-weight: 500; color: #0e2840; }
.navtrail-breadcrumbs span { font-weight: 400; color:#4b5464; }

.navtrail-separator {
  margin: 0 6px;
  color: #aaa;
}

/* Conteneur principal */
.navtrail-content-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

/* Partie texte à gauche */
.navtrail-content-left {
  width: 100%;
  max-width: 58%;
  z-index: 2;
}

.navtrail-h1-wrapper {
  text-align: left;
  margin-bottom: 0;
}

.navtrail-badge {
  background: #041f41;
  padding: 4px 15px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px 8px 8px 0;
  color: #fff;
  display: inline-block;
  text-align: left;
}
/* Bloc principal */
.navtrail-box {
  border-left: 1px solid rgba(0, 43, 127, 0.15);
  padding: 20px;
  text-align: left;
  max-width: 1280px;
  width: 100%;
}

/* Titre principal */
.navtrail-heading {
  font-weight: 700;
  color: #031a36;
  font-size: 32px;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
}

/* Bloc logo + texte catégorie */
.navtrail-intro {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  background: #ffffffb3;
  padding: 0 20px 0 0;
  border-radius: 100px;
  width: fit-content;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
}

.navtrail-logo {
  width: 45px;
  height: 45px;
  border: 5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  object-fit: cover;
}

.navtrail-intro-label {
  font-size: 18px;
  font-weight: 700;
  color: #031a36;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Texte description */
.navtrail-description p {
  font-size: 16px;
  font-weight: 400;
  color: #0e2840;
  line-height: 1.6;
  padding-bottom: 10px;
  text-align: left;
}

.navtrail-description .navtrail-subtext {
  font-weight: 500;
  color: #041f41;
}

/* navtrail boutons actions CTA */
.navtrail-actions {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-navtrail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: 0.25s ease;
    cursor: pointer;
    justify-content: center;
}

/* Bouton principal */
.btn-primary {
    background: #f64628;
    color: #fff;
}
.btn-primary:hover {
    background: #002b7f;
}

/* Bouton secondaire */
.btn-secondary {
    background: #e4e6e8;
    color: #212223;
}
.btn-secondary:hover {
    background: #ecedee;
}

/* Image à droite */
.navtrail-image-right {
  width: 320px;
  height: 350px;
  position: absolute;
  right: 30px;
  top: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navtrail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* Responsive */
@media (max-width: 768px) {
  .navtrail-image-right {
    display: none;
  }

  .navtrail-content-left {
    max-width: 100%;
  }
  .navtrail-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
/*<!--  Section Intro Category WITH IMAGE END -->*/

/* ============================================
   NEW LISTING HORIZONTAL
=============================================== */

.pro-listing-new {
    display: flex;
    flex-direction: row;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e6e8ec;
    overflow: hidden;
    margin-bottom: 15px;
}
.pro-new-info {
    flex: 1; /* prend tout l’espace libre */
}

/* ============================================
   SECTION 1 : GALERIE
=============================================== */

.pro-new-gallery {
    flex: 0 0 31%;
    max-width: 31%;
    position: relative;
    overflow: hidden;
}

.gallery-new {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 100%; /* 4/4 */
    background: #f2f2f2;
    overflow: hidden;
}

.gallery-new-track {
    position: absolute;
    inset: 0;
    display: flex;
    overflow: hidden;
}

.gallery-new-image {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .3s;
}

.gallery-new-image.loaded { opacity: 1; }

/* Arrows */
.gallery-new-arrow {
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-new-left { left: 0; background: linear-gradient(-90deg, transparent, rgba(0,0,0,.45)); }
.gallery-new-right { right: 0; background: linear-gradient(90deg, transparent, rgba(0,0,0,.45)); }


.gallery-new-arrow {
    pointer-events: auto;
    cursor: pointer;
}

/* ============================================
   SECTION 2 : INFO
=============================================== */

.pro-new-info {
    flex: 1 1 auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px; /* espacement global entre les blocs */
    min-width: 0;
}

/* ========= HEADER (nom + logo) ========= */

.pro-new-header {
    display: flex;
    gap: 14px;
}

.pro-new-logo img {
    width: 86px;
    height: 86px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #e5e5e5;
}

.pro-new-header-text {
    flex: 1;
    min-width: 0;
}

/* Nom */
.pro-new-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.pro-new-name {
    font-size: 20px;
    font-weight: 700;
    color: #041f41;
    letter-spacing: -0.4px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pro-new-name:hover { color: #f64628; }

.pro-new-verified {
    color: #0066ff;
    font-size: 16px;
}

/* Activité */
.pro-new-activity {
    font-size: 15px;
    color: #183650;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    margin-bottom: 6px; /* espace propre */
}

/* ============================================
   CATEGORY + CITY (sur la même ligne)
=============================================== */

.pro-new-tags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-new-category,
.pro-new-city {
    font-size: 14px;
    background: #f6f7f8;
    padding: 4px 10px;
    border-radius: 6px;
    color: #0e2840;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;

    text-align: left;
    width: fit-content;
}

/* ============================================
   RATING – bien aligné à gauche
=============================================== */

.pro-new-rating {
    display: flex;        /* ✔ corrige l’alignement */
    justify-content: flex-start;
    align-items: baseline;
    gap: 6px;
    font-size: 15px;
    text-align: left;
    margin-top: 2px;
}

.pro-new-rating .rating-score {
    font-weight: 700;
    color: #f8b100;
}

.pro-new-rating .star-rating {
    display: flex;
    align-items: center;
    gap: 2.5px;
}

.rating-count {
    color: #666;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 16px;
}
.star-rating .fa-star,
.star-rating .fa-star-half-o,
.star-rating .fa-star-o {
  color: #f8b100;
  font-size: 16px;
}

/* ============================================
   DESCRIPTION (2 lignes, sans bouton)
=============================================== */

.pro-new-description {
    font-size: 14px;
    line-height: 20px;
    text-align: left;

    display: -webkit-box;
    -webkit-line-clamp: 2;  
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   SECTION CONTACT (NOUVELLE SECTION 3)
=============================================== */

.pro-new-contact-area {
    border-top: 1px solid rgba(240,240,240,1);
    margin-top: 2px;
    padding-top: 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pro-new-contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pro-new-contact-title {
    font-size: 15px;
    font-weight: 600;
    color: #041f41;
    text-align: left;
}

.pro-new-contact-delay {
    font-size: 13px;
    color: #6d7c8a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pro-new-contact-delay span {
    font-weight: 700;
    color: #008255;
}

.pro-new-contact-delay i {
    font-size: 12px;
    padding-top: 1px;
}
.pro-new-contact-delay i.online {
    color: #1bbf38; /* vert */
}

.pro-new-contact-button {
    background: #f64628;
    color: #fff;
    border-radius: 6px;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: background 0.3s ease, transform 0.3s ease;
    
}

.pro-new-contact-button:hover {
    background: #041f41;
}

/* Bouton Appeler — mobile only */
/* Bouton Appeler — masqué sur desktop par défaut */
.pro-new-call-button-mobile {
    display: none; /* desktop */
}

/* Styles communs au bouton — mobile uniquement */
@media (max-width: 768px) {
    .pro-new-call-button-mobile {
        display: flex !important;
        background: #f0f1f2;
        color: #0e2840;
        border-radius: 6px;
        padding: 14px 24px;
        text-decoration: none;
        font-weight: 700;
        white-space: nowrap;
        align-items: center;
        justify-content: center; 
        gap: 8px;
        font-size: 14px;
        transition: background 0.3s ease, transform 0.3s ease;
        border: none;   
        width: 100%;     
        cursor: pointer;
    }

    .pro-new-call-button-mobile:hover {
        background: #e8e9ea;
        transform: translateY(-1px);
    }

    /* Animation quand le numéro apparaît */
    .pro-new-call-button-mobile.reveal {
        background: #e8e9ea;
        transform: scale(1.02);
    }
    .pro-new-contact-text {
        padding-bottom: 5px;
    }
}


/* ======== RESPONSIVE ========= */

@media (max-width: 1024px) {
    .pro-new-gallery { flex: 0 0 35%; max-width: 35%; }
}

@media (max-width: 768px) {

    .pro-listing-new {
        flex-direction: column;
        gap: 6px;
    }

    .pro-new-gallery,
    .pro-new-info {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .gallery-new { padding-top: 66%; }

    .pro-new-info {
        padding: 14px;
    }

    .pro-new-button {
        width: 100%;
    }

}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .pro-new-contact-area {
        flex-direction: column;
        align-items: stretch;
    }

    .pro-new-contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Layout separation listing
=============================================== */

.layout-70-30 {
    display: block;
}

/* Desktop ≥ 1024px : active le 70/30 */
@media (min-width: 1024px) {
    .layout-70-30 {
        display: flex;
        gap: 20px;
        max-width: 1300px;
        margin: 0 auto;
    }

    .left-col {
        width: 72%;
    }

    .right-col {
        width: 28%;
    }
}
/* ----- layout separation listing END ----- */
/*<!-----  Listing container ----->*/
.newlisting-section {
    background: #fff;
    padding: 40px 20px;
    font-family: 'Figtree', sans-serif;
    overflow: hidden;
}
.newlisting-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}
.listing-title h2 {
    font-size: 22px;
    font-weight: 700;
    color: #031a36;
    margin-bottom: 30px;
    position: relative;
    text-align: left;
}
.listing-title h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #0064eb;
    margin-top: 10px;
    border-radius: 2px;
}

.main-listing {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}
/*<!-----  Listing container END ----->*/


/* ============================================
   NEW LISTING ITEM HORIZONTAL END
=============================================== */
/* ============================================
   NEW RIGHT SEARCH FORM
=============================================== */
.modern-search-form {
    padding-right: 20px;
}
/* SECTION TITLES */
.filter-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
}
.filter-section.top {
    margin-top: 78px;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    color: #041f41;
    text-align: left;
}

/* ---------------------------------- */
/* SELECT VILLE CUSTOM                */
/* ---------------------------------- */

.city-select-container {
    position: relative;
}

.city-select-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fcfcfc;
    border: 1px solid #e6e6e6;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    color: #4b5464;
}

.city-select-display i {
    color: #6d7c8a;
}

.city-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.city-search-input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 8px;
    font-size: 14px;
}

.city-list {
    max-height: 230px;
    overflow-y: auto;
}

.city-item {
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
}

.city-item:hover {
    background: #f64628;
    color: #fff;
}

/* ---------------------------------- */
/* SWITCH LOCAL / REGIONAL / NATIONAL */
/* ---------------------------------- */

.radius-switch {
    display: flex;
    background: #fcfcfc;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    overflow: hidden;
}

.radius-option {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
    color: #4b5464;
}

.radius-option.active {
    background: #f4f6fa;
    font-weight: 600;
}

/* ---------------------------------- */
/* PRESTATIONS SEARCH INPUT           */
/* ---------------------------------- */

.prestation-search-wrapper {
    position: relative;
}

.typeahead {
    width: 100%;
    background: #fcfcfc;
    border: 1px solid #e6e6e6;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: #4b5464;
}

.typeahead:focus {
    background: #fff;
    border-color: #f64628;
    box-shadow: 0 0 0 3px rgba(246,70,40,0.15);
    outline: none;
}

.search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6d7c8a;
}

/* AUTOCOMPLETE LIST */
.autocomplete-list {
    position: absolute;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    top: 50px;
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
    display: none;
    z-index: 999;
}

.autocomplete-item {
    cursor: pointer;
    padding: 8px 14px;
    font-size: 14px;
    text-align: left;
}

.autocomplete-item:hover {
    background: #f64628;
    color: #fff;
}

/* ---------------------------------- */
/* PRESTATIONS LIST SCROLL            */
/* ---------------------------------- */
/* Scroll container des prestations */
.prestation-scroll {
    max-height: 232px;
    overflow-y: auto;
    padding-right: 6px;
}

/* --- SCROLLBAR MODERNE / SLIM --- */

/* Firefox */
.prestation-scroll {
    scrollbar-width: thin;
    scrollbar-color: #dcdcdc transparent; /* couleur du thumb / track */
}

/* Webkit (Chrome, Edge, Safari) */
.prestation-scroll::-webkit-scrollbar {
    width: 6px;         /* largeur slim */
}

.prestation-scroll::-webkit-scrollbar-track {
    background: transparent; 
}

.prestation-scroll::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 4px;
}

.prestation-scroll::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5; /* légère intensification au survol */
}

/* Ligne de prestation */
.prestation-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

/* Le "radio" visuel (faux bullet) */
.prestation-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #d0d0d0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease;
}

.prestation-bullet::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: background-color 0.2s ease;
}

/* Lien texte */
.prestation-radio a {
    font-size: 14px;
    color: #4b5464;
    text-decoration: none;
    padding: 2px 0;
    transition: color 0.2s ease;
}

/* Hover */
.prestation-radio:hover a {
    color: #f64628;
}

/* État actif */
.prestation-radio.active .prestation-bullet {
    border-color: #f64628;
}

.prestation-radio.active .prestation-bullet::after {
    background-color: #f64628;
}
.prestation-radio.active a {
    color: #101926;
}
/* MOBILE */
@media (max-width: 1024px) {
    .modern-search-form {
        padding: 20px;
    }
    .filter-section.top {
    margin-top: 0;
}
    
}
/* ============================================
   NEW RIGHT SEARCH FORM END
=============================================== */

/* ============================================
    Quote Section | Promo banner
=============================================== */
/* Promo Banner */
.promo-banner-wrapper {
  padding: 10px 20px 40px;
  background: #fff;
}

.promo-banner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  /*background: #f8f1e6;*/
  background: #f4f6fa;
  border-radius: 12px;
  padding: 0; /* Retiré le padding ici pour éviter un décalage vertical dans le orange */
  font-family: 'Figtree', sans-serif;
  flex-wrap: wrap;
  overflow: hidden;
}

.promo-left {
  flex: 0 0 140px;
  background-color: #041f41;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  border-radius: 15px 0px 160px 15px;
}

.promo-ribbon {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.promo-center {
  flex: 1;
  min-width: 250px;
  padding: 20px 30px;
}

.promo-title {
  font-size: 26px;
  font-weight: 700;
  color: #002b7f;
  margin: 8px 0;
  text-align: left;
}

.promo-desc {
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  color: #0e2840;
  text-align: left;
}

.promo-right {
  flex: 0 0 auto;
  min-width: 200px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}

.promo-button {
  display: inline-block;
  background-color: #f64628;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease;
  text-align: center;
  border:none;
  cursor: pointer;
}

.promo-button:hover {
  background-color: #002b7f;
}

.promo-note {
  font-size: 12.5px;
  color: #555;
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-banner {
    flex-direction: column;
  }

  .promo-left {
    flex: 0 0 60px;
    width: 100%;
    padding: 14px 0;
    border-radius: 12px 12px 0 0;
  }

  .promo-center {
    width: 100%;
    padding: 20px;
  }

  .promo-right {
    width: 100%;
    text-align: left;
    padding: 20px;
  }

  .promo-button {
    width: 100%;
  }

  .promo-note {
    margin-top: 10px;
    text-align: left;
  }
}

/*<!--  Promo Banner END -->*/

/* ============================================
    Quote Section | Quote Form
=============================================== */
/*<!--  Quote Section -->*/
.quote-section {
  padding: 40px 20px;
  background: #fff;
  font-family: 'Figtree', sans-serif;
}

.quote-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.quote-info-left {
  background-color: #f4f6fa;
  border-radius: 20px;
  padding: 30px;
  flex: 0 0 32%;
}

.quote-info-title {
  color: #002b7f;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: left;
}

.quote-info-left p {
  font-size: 15px;
  font-weight: 400;
  color: #0e2840;
  line-height: 1.6;
  text-align: left;
}

.intro-button {
  background-color: #0066ff;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  display: inline-block;
  border: none;
  cursor: pointer;
}


.intro-button.light {
  background-color: #fff;
  color: #0066ff;
  margin-top: 20px;
}

.quote-form-right {
  flex: 1;
}

.category-intro {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  background: #ffffffb3;
  padding: 0 20px 0 0;
  border-radius: 100px;
  width: fit-content;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
}

.category-logo {
  width: 45px;
  height: 45px;
  border: 5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  object-fit: cover;
}

.category-intro-label {
  font-size: 18px;
  font-weight: 700;
  color: #002b7f;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Formulaire style */
.form-box {
  width: 100%;
  font-family: 'Figtree', sans-serif;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.form-col {
  flex: 1;
  position: relative;
}

.form-col.full-width {
  flex: 0 0 100%;
}

.form-col input[type="text"],
.form-col input[type="email"],
.form-col textarea,
.form-col select {
  border: 1px solid #eee;
  background: #fafbfc;
  width: 100%;
  padding: 14px 20px 14px 55px;
  border-radius: 8px;
  color: #666;
  font-size: 13px;
  font-family: 'Figtree', sans-serif;
  transition: all 0.25s ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Labels icônes */
.form-col label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 12px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06f;
  font-size: 16px;
}

.textarea-label {
  top: 16px !important;
  transform: none !important;
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background: -webkit-linear-gradient(left, #6c8491, #9dafb9);
    color: #fff;
    border-radius: 8px!important;
    float: left;
    width: 100%;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    height: 52px;
    line-height: 52px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.nice-select:after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 14px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}
.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); 
}
.nice-select .list {
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    margin-top: 5px;
    top: 100%;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    max-height: 210px;
    overflow-y: scroll;
}
.nice-select .list::-webkit-scrollbar {
    width: 0
}
.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.listsearch-input-item .nice-select .list {
    float: left;
    width: 100%;
    padding: 15px 12px 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

.listsearch-input-item .nice-select .list li.selected, .listsearch-input-item .nice-select .list li:hover, .listsearch-input-item .nice-select .list li.selected.focus {
    background: -webkit-linear-gradient(left, #6c8491, #9dafb9);
    color: #fff;
}

.listsearch-input-item .nice-select .list li {
    float: left;
    width: 100%;
    padding: 5px 10px 6px;
    color: #666;
    font-size: 13px;
    border-radius: 2px;
    min-height: 20px;
    line-height: 20px;
}
.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    list-style: none;
    outline: none;
    text-align: left;
    transition: all 0.2s;
}
/* Bouton */
.form-button {
  display: inline-block;
  background: #002b7f;
  border: none;
  color: #fff;
  padding: 12px 35px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.form-button:hover {
  background: #f64628;
}
.listsearch-input-item {
    width: 100%;
    padding: 0;
}
/* Responsive mobile */
@media (max-width: 768px) {
  .quote-wrapper {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
  }
  .form-col, .form-col.full-width {
    width: 100%;
  }
  .quote-form-right {
    width: 100%;
}
.form-button {
  width: 100%;
}
}
/*<!--  Quote Section END -->*/

/* === Ajustements css quote form (V2) === */


/* Focus : premium + glow léger */
.form-col input:focus,
.form-col textarea:focus,
.form-col select:focus {
    background: #fff;
    border-color: #f64628;
    box-shadow: 0 0 0 3px rgba(246, 70, 40, 0.15);
    outline: none;
}

/* Icônes */
.form-col label {
    color: #f64628;
    font-size: 18px;
}


/* === Thank you message === */
#thanks {
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    text-align: center;
    animation: fadeUp 0.4s ease-out;
    border: 1px solid #eef2f7;
}

/* Icon circle */
#thanks .time-line-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg,#4c8df6,#1c60d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: pop 0.3s ease-out;
}

#thanks .time-line-icon i {
    font-size: 42px;
}

/* Title */
#thanks h3 {
    font-size: 26px;
    font-weight: 700;
    color: #041f41;
    margin-bottom: 15px;
}

/* Success message */
#thanks .send-bg {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
    border-radius: 12px !important;
    padding: 18px 20px;
    background: #e9f7ef !important;
    color: #1d7a46 !important;
    border: none !important;
    box-shadow: inset 0 0 0 1px #c8e9d8;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
/* === Thank you message moderne END === */

/* ============================================
   Quote Section END
=============================================== */