.banner-fullpage {
    height: 100vh;
    width: 100%;
background: linear-gradient(to bottom, #0000009e, rgb(34 29 29 / 20%)), url(img/bg.jpg) center center / cover no-repeat;


 color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .banner-fullpage h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
  }

  .banner-fullpage p {
    font-size: 1.5rem;
    margin-bottom: 0rem;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
  }

 .banner-fullpage .btn-primary {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
    border-radius: 50px; /* bouton pill */
    box-shadow: 0 6px 12px rgba(243, 186, 135, 0.24); /* shadow doux */
    transition: all 0.3s ease; /* transition pour hover */
    background: linear-gradient(135deg, #ff8333, #ff6400); /* dégradé moderne */
    color: #fff; /* texte blanc */
    border: none;
    cursor: pointer;
}

.banner-fullpage .btn-primary:hover {
    background: linear-gradient(135deg, #ff6400, #ff8333); /* dégradé inversé */
    box-shadow: 0 8px 16px rgba(235, 92, 0, 0.4); /* shadow plus intense */
    transform: translateY(-2px); /* léger mouvement au hover */
    color: #fff; /* texte blanc */
}

.navbar-modern {
  background: linear-gradient(135deg, #161616, #1c1c1c);
  
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Shadow plus marqué au scroll */
.navbar-modern.sticky-top.scrolled {
  background: #161616;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.icon-circle {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
   .avatar-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
  }
  .quote-icon {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.05);
    font-family: serif;
  }
  
  .bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  }
  .counter-card {
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .counter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  .counter {
    font-family: 'Poppins', sans-serif;
  }
  .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.05);
  }

/* Liens */
.navbar-modern .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  position: relative;
  transition: all 0.3s ease;

}
.navbar-modern .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ff8333;
  transition: width 0.3s;
}
.navbar-modern .nav-link:hover::after,
.navbar-modern .nav-link.active::after {
  width: 100%;
}
.navbar-modern .nav-link:hover {
  color: #ff8333;
}
.navbar-modern.navbar .nav-link.active-link {
  color: #ff8333 !important; /* exemple jaune */
  font-weight: bold;
  border-bottom: 2px solid #ff8333;
}

/* Bouton WhatsApp */
.navbar-modern .btn-whatsapp {
 background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #fff;
    border: none;
    border-radius: 30px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-right: 4px;
}
.navbar-modern .btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #128C7E, #25D366) !important;
}

/* Logo */
.navbar-modern .logo-img {
  max-height: 50px;
}

.cont{
      font-weight: 700 !important;
    width: -webkit-fill-available;
}
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
  }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  }
  .icon-circle {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  .bg-gradient-warning {
    background: linear-gradient(135deg, #ff7e00, #ff4500);
  }
  .bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
  }
  .bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #218838);
  }
  .bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545, #a71d2a);
  }
  .bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8, #117a8b);
  }
  .bg-gradient-secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
  }

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar-modern .navbar-nav {
    text-align: left;
    margin-top: 0.5rem;
  }
 .navbar-modern .btn-whatsapp {
    margin-top: 0.5rem;
    text-align: left;
    
    
    
  }
}

  @media (max-width: 768px) {
    .banner-fullpage h1 {
      font-size: 2.2rem;
    }
    .banner-fullpage p {
      font-size: 1.1rem;
    }
  }
  
  /* Formulaire moderne */

/* Style minimaliste et moderne */
/* Style formulaire moderne et responsive */
/* Style moderne et minimal */
form .form-label,
form label {
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 5px;
}

form .form-control,
form .form-select {
    border-radius: 10px;
    padding: 15px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: 0.3s ease;
}

form .form-control:focus,
form .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.1);
    outline: none;
}

/* Bouton moderne */
form .btn-primary {
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(120deg, #ffc720, #f7bc11);
    color:#000;

    border: none;
    transition: background 0.3s ease;
}

form .btn-primary:hover {
    background: linear-gradient(135deg, #ffc720, #f7bc11, #fdd152);
     color:#000;


}

/* 👉 Affichage du bouton sur la même ligne */
@media (min-width: 768px) {
    form .col-md-3,
    form .col-md-2 {
        margin-bottom: 0 !important;
        text-align: left;
        color:#fff !important;
    }
    form .col-button {
        display: flex;
        align-items: end;
        justify-content: end;
    }
}

/* Responsive: bouton passe en dessous sur mobile */
@media (max-width: 767.98px) {
    form .col-button {
        margin-top: 10px;
    }

    form .btn-primary {
        width: 100%;
    }
}



.car-info i { margin-right: 5px; }
        .price-day { font-weight: bold; font-size: 15px; color: #0d6efd; padding-top: 5px; }
        .cara { font-size: 11px; margin-bottom: 12px;}
         .smilaire{ font-size: 11px; margin-bottom: 5px;}
         
         .car-info { font-size: 0.9rem; color: #555; }
      
        .price-total { font-weight: bold; color: #198754; font-size: 1.1rem; padding-top: 5px;}
        .info-book{ font-size: 11px; margin-bottom: 5px;}
        .info-caution { font-size: 11px; padding-top: 5px;}
        
        .mb-41 {
   	 transition: box-shadow .3s ease-out,transform .3s ease-out;
    transform-origin: center;
    transform: scale(1,1);
}

.mb-41:hover {
   	
	background:#f9f8f5!important;
	
	box-shadow: 0 4px 22px 2.4px rgba(0,0,0,.12);
    transform: scale(1.03,1.03);
	

}
        
        .h-1001{
   	 transition: box-shadow .3s ease-out,transform .3s ease-out;
    transform-origin: center;
    transform: scale(1,1);
}

.h-1001:hover {
   	
	background:#f9f8f5!important;
	
	box-shadow: 0 4px 22px 2.4px rgba(0,0,0,.12);
    transform: scale(1.03,1.03);
	

}

.filter form label {
   	
	color: #000 !important;

}

.res  form label {
   
    color: #000 !important;
    
}

.cont  form label {
   
    color: #000 !important;
    
}

/* Responsive: bouton passe en dessous sur mobile */
@media (max-width: 767.98px) {
    .offre{
   	margin-bottom: 20px;}
   	
   	.banner-fullpage h1 {
   padding-top:50px;
  }
}

/* estrats */
.form-check-inline {
  margin: 6px 13px 6px 6px;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fdfdfd;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: background-color 0.2s;
}

.form-check-inline:hover {
  background-color: #eef6ff;
}

.form-check-input {
  transform: scale(1.2);
  margin-right: 6px;
  cursor: pointer;
}

.form-check-label {
  cursor: pointer;
  font-size: 0.95rem;
}

.extras-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f8f9fa;
  margin-top: 15px;
}

.client-container {
  
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f8f9fa;
}

.mb-3 {
    margin-bottom: 0rem !important;
}

.client-container .form-control, form .form-select {
    border-radius: 10px;
    padding: 15px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: 0.3s ease;
}

.client-container label {
    color: #000 !important;
    font-weight: 600;
    margin-bottom: 5px;

}


.det-container .form-control, form .form-select {
    border-radius: 10px;
    padding: 15px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    background-color: #fff;
    transition: 0.3s ease;
}



.det-container {
  
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f8f9fa;
}

.det-caution {
  
  flex-wrap: wrap;
    gap: 12px;
    padding: 0px 10px 20px 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #d8ebd4;
}

.det-total {
  
  flex-wrap: wrap;
    gap: 12px;
    padding: 0px 10px 20px 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #e2eaf2;
}

.my-5 h2{
  margin-bottom: 20px;
  
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
}

.h-100 img{
  display: block;
    margin-left: auto;
    margin-right: auto;
    width: 260px;
  
}

.btn-gold {
 background: linear-gradient(135deg, #212529, #4b5b68);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
 background: linear-gradient(135deg, #4b5b68 , #212529);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.8);
  color: #fff;
  text-decoration: none;
}

.det-totals{
  color: #878686;
  font-size: 10px;
}
       
