html {
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
/* =========================================
   NAVBAR
   ========================================= */

.logo-navbar-complet {
  height: 70px;
  width: auto;
}

nav .navbar-brand {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0;
}

nav .navbar-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

nav .nav-item {
  font-size: 0.938rem;
  text-decoration: none;
}

.navbar .nav-link {
  color: #ffffff;
  font-family: "poppins", sans-serif;
}

.nav-link:hover {
  color: #ffcc00;
}

.nav-location-button {
  background-color: #f5cc00;
  color: #000000;
  border-radius: 5px;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
  border: none;
  font-family: "Poppins", sans-serif;
  margin-left: 10px;
  white-space: nowrap;
  font-size: 1rem;
}

.nav-location-button:hover {
  background-color: #e7b901;
  color: #000000;
}

/* =========================================
   PREMIERE SECTION ACCUEIL
   ========================================= */
.premium-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #050505;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle,
    rgba(245, 204, 0, 0.08) 0%,
    rgba(5, 5, 5, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.premium-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 204, 0, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #eaeaea;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fade-in 0.6s ease-in-out both;
}

.premium-title {
  font-family: "Inter", sans-serif;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: fade-in 0.6s ease-in-out 0.1s both;
}

.premium-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #a6a6a6;
  line-height: 1.6;
  font-size: 1.15rem;
  animation: fade-in 0.6s ease-in-out 0.2s both;
}

.premium-btn-primary {
  padding: 0.8rem 2.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 204, 0, 0.15);
  animation: fade-in 0.6s ease-in-out 0.3s both;
}

.premium-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 204, 0, 0.3);
  background-color: #e7b901;
  color: #000;
}

.premium-btn-outline {
  padding: 0.8rem 2.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: fade-in 0.6s ease-in-out 0.3s both;
}

.premium-btn-outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-3px);
}

.hero-trust {
  animation: fade-in 0.6s ease-in-out 0.4s both;
}

@media (max-width: 768px) {
  .premium-title {
    font-size: 3rem;
  }
  .hero-glow {
    width: 150vw;
    height: 150vw;
    top: -20%;
    right: -50%;
  }
}
#accueil {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

#accueil .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.bulle-slogan {
  font-family: "Inter", sans-serif;
  background-color: rgba(24, 24, 22, 0.6);
  color: #a6a6a6;
  border-radius: 9999px;
  border: 2px solid #333333;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 2;
  animation: fade-in 0.6s ease-in-out 0.2s both;
}

.new-titre-accueil {
  color: white;
  font-size: 4rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  animation: fade-in 0.6s ease-in-out 0.2s both;
}

.suite-titre-accueil {
  color: #f5cc00;
  font-size: 4rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  animation: fade-in 0.6s ease-in-out 0.2s both;
}

.new-slogan {
  font-family: "poppins", sans-serif;
  color: #919492;
  font-size: 1.4rem;
  font-weight: 500;
  animation: fade-in 0.6s ease-in-out 0.2s both;
}

/* =========================================
   BOUTONS
   ========================================= */
.bouton-contact {
  background-color: #f5cc00;
  color: #000000;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.95rem;
  animation: fade-in 0.6s ease-in-out 0.2s both;
}

.bouton-contact:hover {
  background-color: #e7b901;
  color: #000000;
}

.bouton-contact i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.bouton-contact:hover i {
  transform: translateX(6px);
}

.bouton-devis {
  background-color: #000000;
  color: #f5cc00;
  border-width: 2px;
  border-color: #f5cc00;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.95rem;
  animation: fade-in 0.6s ease-in-out 0.2s both;
}

.bouton-devis:hover {
  background-color: #f5cc00;
  color: #000000;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 56px;
  }

  nav .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar .nav-item {
    width: 100%;
    text-align: left;
  }

  .nav-location-button {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 15px;
  }

  .new-titre-accueil {
    font-size: 2.2rem;
  }

  .suite-titre-accueil {
    font-size: 1.8rem;
  }

  .new-slogan {
    font-size: 1rem;
    padding: 0 15px;
  }

  .bulle-slogan {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem !important;
  }

  #accueil .bouton-contact,
  #accueil .bouton-devis {
    max-width: 260px;
    margin: 0 auto;
    display: block;
    padding: 0.6rem 1rem !important;
  }
}

@media (max-width: 400px) {
  .new-titre-accueil {
    font-size: 1.8rem;
  }
  .suite-titre-accueil {
    font-size: 1.5rem;
  }
}
/*SECTION 2 À PROPOS*/

.new-about-titre {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
}

.new-about-suite-titre {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #f5cc00;
}

#about .about-titre {
  font-family: "Pacifico", sans-serif;
  font-size: 3.5rem;
  color: #5a3825;
  text-align: center;
}

.new-about-slogan {
  font-family: "poppins", sans-serif;
  color: #a6a6a6;
  font-size: 1.1rem;
}

.custom-card {
  background-color: #0f0f0f;
  border: none;
  border-radius: 15px;
  padding: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(245, 204, 0, 0.15);
}

.card-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #ffffff;
}

.card-text {
  font-family: "Poppins", sans-serif;
  color: #a6a6a6 !important;
  font-size: 0.95rem;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5cc00;
  color: #000;
}

@media (min-width: 768px) {
  .welcome-slogan {
    max-width: 700px;
    margin: 1rem auto 0 auto;
  }
}

@media (max-width: 767.98px) {
  #welcome {
    min-height: auto;
    padding: 3rem 1rem;
  }

  #welcome .welcome-titre {
    font-size: 2.5rem;
  }

  #welcome .welcome-slogan {
    font-size: 1rem;
    margin-top: 1rem;
  }

  #welcome .card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  #welcome {
    padding: 2rem 0.5rem;
  }

  #welcome .welcome-titre {
    font-size: 2rem;
  }
}

/* SECTION 3 SERVICES */

.new-services-titre {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
}

.new-services-suite-titre {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #f5cc00;
}

.new-services-slogan {
  font-family: "poppins", sans-serif;
  color: #a6a6a6;
  font-size: 1.1rem;
}

.service-card {
  background-color: #1a1a1a;
  border: none;
  border-radius: 12px;
  padding: 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(245, 204, 0, 0.15);
}

.icon-square {
  background-color: #262626;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5cc00;
  flex-shrink: 0;
}

.card-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #ffffff;
}

.card-text {
  font-family: "Poppins", sans-serif;
  color: #a6a6a6;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/*SECTION 4 AVIS CLIENTS*/

/* Titre */
.new-services-titre {
  color: #fff;
  font-weight: 700;
}

.new-services-suite-titre {
  color: #f5cc00;
}

/* Slogan */
.new-services-slogan {
  color: #ccc;
  font-size: 1rem;
}

/* Note globale */
.overall-rating {
  color: #fff;
}

.overall-rating-stars-value {
  display: flex;
  align-items: center;
  gap: 10px;
}

.overall-rating .stars {
  font-size: 1.5rem;
  color: #f5cc00;
}
.overall-rating .rating-value {
  font-size: 2rem;
  font-weight: 700;
}
.overall-rating .rating-subtext {
  color: #888;
  font-size: 0.9rem;
  margin-top: 2px;
}

.btn-add-review {
  background-color: #f5cc00;
  border: none;
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
}
.btn-add-review:hover {
  background-color: #ffda33;
}

/*SECTION 5 ZONE D'INTERVENTION*/

.zone-box {
  background-color: #141414;
  border-radius: 10px;
  color: #fff;
}

.zone-title {
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.zone-icon {
  font-size: 1.3rem;
  color: #f5cc00;
  margin-right: 8px;
}

.zone-text {
  color: #aaa;
  font-size: 0.95rem;
}

.zone-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.zone-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 6px;
}

.zone-list li::before {
  content: "•";
  color: #f5cc00;
  position: absolute;
  left: 0;
  top: 0;
}

.btn-itineraire {
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 8px;
}

/*SECTION 6 NOUS CONTACTER*/

.contact-box {
  background-color: #141414;
  border-radius: 10px;
  color: #fff;
}

.contact-icon {
  font-size: 1.5rem;
  color: #f5cc00;
}

.contact-title {
  font-weight: 600;
  margin-top: 10px;
}

.contact-info {
  margin: 5px 0;
  font-size: 1rem;
}

.contact-subtext {
  font-size: 0.9rem;
  color: #888;
}

.contact-form {
  background-color: #141414;
  border-radius: 10px;
  color: #fff;
}

.contact-form .form-control {
  background-color: #1f1f1f;
  border: 1px solid #333;
  color: #fff;
}

.contact-form .form-control:focus {
  border-color: #f5cc00;
  box-shadow: none;
}

.btn-warning {
  background-color: #f5cc00;
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
}

.btn-warning:hover {
  background-color: #ffda33;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background-color: #0a0a0a;
  padding: 60px 15px 20px;
  color: #ded7d3;
  width: 100%;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 0 1 auto;
  min-width: 200px;
  text-align: left;
}

.footer-section:first-child {
  flex: 1 1 300px;
}

.logo-footer {
  height: 90px;
  width: auto;
  margin-left: -5px;
  display: block;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a6a6a6;
  margin: 0;
}

.footer-section h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 15px;
  color: #ffffff;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
  color: #a6a6a6;
  font-size: 0.95rem;
}

.footer-section ul li a {
  text-decoration: none;
  color: #a6a6a6;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f5cc00;
}

.social-icon {
  margin-right: 15px;
  display: inline-block;
  color: #a6a6a6;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.social-icon:hover {
  color: #f5cc00;
  transform: translateY(-3px);
}

footer hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 20px;
}

footer .copyright {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  margin: 0;
}

/* =========================================
   FOOTER - RESPONSIVE (Mobiles)
   ========================================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .footer-section h3 {
    margin-top: 0;
  }
  .logo-footer {
    height: 70px;
  }
}

.floating-phone-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f5cc00;
  color: #000000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(245, 204, 0, 0.4);
  z-index: 9999;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  text-decoration: none;
}

.floating-phone-btn:hover {
  background-color: #e7b901;
  color: #000000;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .floating-phone-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
}
