/* ===== VARIABLES ===== */
:root {
  --primary-color: #0056b3;
  --primary-dark: #003d7a;
  --primary-light: #4d8fda;
  --secondary-color: #ffc107;
  --secondary-dark: #e6ac00;
  --secondary-light: #ffdb72;
  --dark-color: #333333;
  --light-color: #e9e9e9;
  --gray-color: #6c757d;
  --light-gray: #e0e0e0;
  --success-color: #28a745;
  --danger-color:rgb(4, 0, 255);
  --font-primary: "Poppins", sans-serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
  background-color: var(--light-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* ===== LOADER ===== */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

.loader-content {
  text-align: center;
  color: var(--light-color);
  position: relative;
  width: 100%;
}

.loader-content h2 {
  font-size: 2.5rem;
  margin-top: 40px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.loader-content .highlight {
  color: var(--secondary-color);
}

/* Truck Container */
.truck-container {
  position: relative;
  width: 150px;
  height: 80px;
  margin: 0 auto 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Truck */
.truck {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: moveTruck 2s ease-in-out infinite;
}

.truck-icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: bounceTruck 0.5s ease-in-out infinite alternate;
}

/* Road */
.road {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #7f8c8d;
  border-radius: 5px;
  overflow: hidden;
}

.road::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent 20px,
    #fff 20px,
    #fff 40px
  );
  animation: moveRoad 1s linear infinite;
}

/* Animations */
@keyframes moveTruck {
  0%, 100% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
}

@keyframes bounceTruck {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5px);
  }
}

@keyframes moveRoad {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30px);
  }
}

.loader-content p {
  font-size: 1rem;
  opacity: 0.8;
}

.truck-container {
  position: relative;
  width: 200px;
  height: 100px;
  margin: 0 auto 20px;
}

.truck {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 80px;
  height: 40px;
  animation: truck-move 2s infinite linear;
}

.truck-body {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 25px;
  background-color: var(--secondary-color);
  border-radius: 5px 5px 0 0;
}

.truck-cabin {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 20px;
  background-color: var(--secondary-dark);
  border-radius: 5px 0 0 0;
}

.truck-wheels {
  position: absolute;
  bottom: -5px;
  left: 10px;
  width: 60px;
  height: 10px;
}

.truck-wheels::before,
.truck-wheels::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #333;
  border-radius: 50%;
  bottom: 0;
  animation: wheel-rotate 1s infinite linear;
}

.truck-wheels::before {
  left: 0;
}

.truck-wheels::after {
  right: 0;
}

.road {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 5px;
  background-color: var(--dark-color);
}

@keyframes truck-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120px);
  }
}

@keyframes wheel-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background-color: rgba(233, 233, 233, 0.95);
  box-shadow: var(--box-shadow);
  padding: 10px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-color);
  transition: var(--transition);
}

.header.scrolled .logo-text {
  color: var(--primary-color);
}

.logo-text .highlight {
  color: var(--secondary-color);
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--light-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.header.scrolled .nav-link {
  color: var(--dark-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--light-color);
  border-radius: 3px;
  transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span {
  background-color: var(--dark-color);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 999;
  padding: 80px 20px 40px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.mobile-menu.active {
  left: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  color: var(--light-color);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== CALL BUTTON ===== */
.call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: auto;
  height: 60px;
  background-color: var(--danger-color);
  color: var(--light-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding: 0 25px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.call-btn i {
  font-size: 1.5rem;
  animation: pulse 1.5s infinite;
}

.call-text {
  margin-left: 10px;
  font-weight: 600;
  display: none;
}

.call-btn:hover {
  width: auto;
  padding: 0 25px;
  background-color: #4123c8;
}

.call-btn:hover .call-text {
  display: inline-block;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Styles pour l'animation des mots du titre */
.hero h1 {
  overflow: hidden;
  line-height: 1.3;
}

.hero h1 .word {
  display: inline-block;
  margin: 0 0.2em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(1em) rotateX(-90deg);
  transform-origin: bottom center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.hero h1 .word.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* Délais progressifs pour chaque mot */
.hero h1 .word:nth-child(1) { transition-delay: 0.1s; }
.hero h1 .word:nth-child(2) { transition-delay: 0.3s; }
.hero h1 .word:nth-child(3) { transition-delay: 0.5s; }
.hero h1 .word:nth-child(4) { transition-delay: 0.7s; }

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  background-image: url("https://images.unsplash.com/photo-1601752943749-7dd8d89f407a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-color);
  padding: 0 20px;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-truck {
  position: relative;
  height: 100px;
  margin-top: 30px;
}

.truck-animation {
  width: 150px;
  height: 80px;
  background-image: url("https://img.icons8.com/color/96/000000/tow-truck.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  animation: truck-bounce 3s infinite ease-in-out;
}

@keyframes truck-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.animate-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in 0.8s forwards;
}

.animate-text:nth-child(1) {
  animation-delay: 0.3s;
}

.animate-text:nth-child(2) {
  animation-delay: 0.6s;
}

.animate-text:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== EMERGENCY SECTION ===== */
.emergency {
  padding: 60px 0;
  background-color: #e9e9e9;
  margin-top: -1px;
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.emergency-card {
  background-color: #e9e9e9;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.emergency-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-light);
}

.emergency-icon {
  font-size: 2.5rem;
  color: var(--danger-color);
  margin-bottom: 15px;
}

.emergency-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.emergency-card p {
  color: var(--gray-color);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.emergency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 30px;
  background-color: var(--danger-color);
  color: var(--light-color);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.emergency-btn:hover {
  background-color: #3123c8;
  transform: translateY(-3px);
}

.emergency-btn i {
  margin-right: 5px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn i {
  margin-right: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
}

.btn-light {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: var(--light-gray);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
}

.btn-animated {
  position: relative;
  overflow: hidden;
}

.btn-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-animated:hover::before {
  left: 100%;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.left-align {
  text-align: left;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.section-header.left-align h2::after {
  left: 0;
  transform: none;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

.section-header.left-align p {
  margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services {
  background-color: var(--light-color);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #e9e9e9;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-light);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.service-image {
  margin: 20px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 200px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-link {
  margin-top: auto;
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.service-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link:hover i {
  transform: translateX(5px);
}

.truck-animation-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  overflow: hidden;
}

.moving-truck {
  position: absolute;
  bottom: 10px;
  left: -100px;
  font-size: 2rem;
  color: var(--primary-color);
  animation: truck-move-right 15s linear infinite;
}

@keyframes truck-move-right {
  0% {
    left: -100px;
  }
  100% {
    left: 100%;
  }
}

/* ===== PROCESS SECTION ===== */
.process {
  background-color: #e9e9e9;
  padding: 80px 0;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-light);
}

.process-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:nth-child(odd) {
  flex-direction: row-reverse;
}

.process-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 0 5px #f5f5f5;
}

.process-content {
  width: calc(50% - 50px);
  padding: 25px;
  background-color: #e9e9e9;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.process-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.process-content p {
  color: var(--gray-color);
}

.process-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 1;
  opacity: 0;
  animation: process-icon-appear 0.5s forwards;
  animation-delay: 0.5s;
}

@keyframes process-icon-appear {
  to {
    opacity: 1;
    transform: translate(-50%, 60px);
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: #e9e9e9;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--gray-color);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.about-feature span {
  font-weight: 500;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  background-color: #e9e9e9;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 400px;
}

.main-image {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.secondary-image {
  width: 60%;
  height: 60%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 3;
  box-shadow: var(--box-shadow);
}

.experience-badge span:first-child {
  font-size: 1.3rem;
}

.about-trucks {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.05;
}

.truck-silhouette {
  position: absolute;
  background-image: url("https://img.icons8.com/ios-filled/100/000000/tow-truck.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 300px;
  height: 300px;
}

.truck-1 {
  top: 10%;
  left: 5%;
  transform: rotate(15deg);
}

.truck-2 {
  bottom: 10%;
  right: 5%;
  transform: rotate(-15deg);
}

/* ===== FLEET SECTION ===== */
.fleet {
  background-color: var(--light-color);
  padding: 80px 0;
}

.fleet-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.fleet-container {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.fleet-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: flex;
  flex-direction: column;
  background-color: #e9e9e9;
}

.fleet-item.active {
  opacity: 1;
  visibility: visible;
}

.fleet-image {
  height: 60%;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-info {
  padding: 20px;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.fleet-info p {
  color: var(--gray-color);
  margin-bottom: 15px;
}

.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: var(--dark-color);
}

.fleet-features li i {
  color: var(--success-color);
}

.fleet-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prev-btn,
.next-btn {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-dark);
}

.fleet-dots {
  display: flex;
  gap: 10px;
  margin: 0 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

/* ===== FAQ SECTION ===== */
.faq {
  background-color: #e9e9e9;
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #e9e9e9;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--dark-color);
}

.faq-icon {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-icon i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--gray-color);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-container {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-content {
  background-color: #e9e9e9;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.testimonial-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-light);
}

.testimonial-text {
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-text p {
  font-style: italic;
  color: var(--gray-color);
  font-size: 1.1rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-light);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.testimonial-rating {
  color: var(--secondary-color);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin: 0 20px;
}

.testimonial-trucks {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.05;
}

.testimonial-truck-left,
.testimonial-truck-right {
  position: absolute;
  background-image: url("https://img.icons8.com/ios-filled/100/000000/tow-truck.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
}

.testimonial-truck-left {
  top: 20%;
  left: 5%;
}

.testimonial-truck-right {
  bottom: 20%;
  right: 5%;
  transform: scaleX(-1);
}

/* ===== PARTNERS SECTION ===== */
.partners {
  background-color: #e9e9e9;
  padding: 60px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
}

/* ===== CTA SECTION ===== */
.cta {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1599256871679-6a3e7e036daa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1171&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--light-color);
  text-align: center;
  padding: 100px 0;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background-color: #e9e9e9;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 86, 179, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--gray-color);
}

.contact-text a:hover {
  color: var(--primary-color);
}

.social-media-card {
  background-color: #e9e9e9;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.social-media-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-icon:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

.contact-cta {
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  color: var(--light-color);
}

.contact-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-form {
  background-color: #e9e9e9;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var (--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox input {
  width: auto;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var (--gray-color);
}

.form-checkbox a {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  background-color: rgba(40, 167, 69, 0.1);
  border-radius: var(--border-radius);
}

.form-success i {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 15px;
}

.form-success p {
  color: var(--success-color);
  font-weight: 500;
}

/* ===== MAP SECTION ===== */
.map {
  padding: 0;
}

.map-container {
  height: 450px;
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-services li,
.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--secondary-color);
}

.footer-contact a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* ===== SOCIAL BUTTONS CONTAINER ===== */
.social-buttons {
  position: fixed;
  bottom: 100px; /* Augmenté de 30px à 100px pour remonter les boutons */
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

/* ===== FACEBOOK BUTTON ===== */
.facebook-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #3b5998;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.facebook-btn:hover {
  background-color: #2d4373;
  transform: translateY(-5px);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.slide-up {
  transform: translateY(50px);
}

.animate-on-scroll.slide-in-left {
  transform: translateX(-50px);
}

.animate-on-scroll.slide-in-right {
  transform: translateX(50px);
}

.animate-on-scroll.zoom-in {
  transform: scale(0.9);
}

/* ===== APP PROMOTION ===== */
.app-promo {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    margin: 80px 0;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.app-promo .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.app-promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-screenshot {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    transition: all 0.4s ease;
    padding: 40px;
}

.app-screenshot:hover {
    transform: scale(1.02);
}

.app-screenshot img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 20px solid white;
    max-height: 90vh;
    object-fit: contain;
}

.download-app-btn {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 25px 50px;
    border-radius: 70px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 3;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.download-app-btn i {
    font-size: 2rem;
}

.download-app-btn:hover {
    transform: translateX(-50%) translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.5);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    padding: 25px 60px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .app-screenshot {
        max-width: 900px;
    }
    
    .download-app-btn {
        font-size: 1.3rem;
        padding: 20px 40px;
        bottom: 60px;
    }
}

@media (max-width: 768px) {
    .app-promo {
        padding: 40px 0 60px;
        min-height: auto;
        margin: 0;
        display: block;
    }
    
    .app-screenshot {
        max-width: 100%;
        padding: 10px 15px;
        height: auto;
        min-height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .app-screenshot img {
        border-width: 12px;
        border-radius: 25px;
        max-height: 60vh;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        object-fit: contain;
    }
    
    .download-app-btn {
        position: relative;
        bottom: auto;
        margin: 25px auto 0;
        padding: 15px 25px;
        font-size: 1.1rem;
        width: 90%;
        max-width: 280px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        transform: none !important;
        left: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .download-app-btn i {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }
    
    .download-app-btn span {
        display: block;
        white-space: normal;
        word-break: break-word;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .nav-list {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .stats-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .testimonial-container {
    height: 350px;
  }

  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .back-to-top,
  .whatsapp-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

