/* Services Supplementaires - Badges Animation */
.services-supplementaire {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.services-supplementaire::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.badges-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.badges-scroll {
  display: flex;
  animation: scrollInfinite 60s linear infinite;
  gap: 20px;
  padding: 20px;
  width: max-content;
}

.badge-item {
  flex-shrink: 0;
  display: inline-block;
}

.badge-modern {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;

  /* Gradient backgrounds alternating */
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Alternating colors for visual variety */
.badge-item:nth-child(3n + 1) .badge-modern {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #495057;
  border: 2px solid #dee2e6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.badge-item:nth-child(3n + 2) .badge-modern {
  background: linear-gradient(135deg, #212529 0%, #000000 100%);
  color: white;
  border: 2px solid #343a40;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.badge-item:nth-child(3n + 3) .badge-modern {
  background: linear-gradient(135deg, #e9ecef 0%, #ced4da 100%);
  color: #212529;
  border: 2px solid #adb5bd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Hover effects */
.badge-modern:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.badge-item:nth-child(3n + 1) .badge-modern:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-color: #adb5bd;
}

.badge-item:nth-child(3n + 2) .badge-modern:hover {
  background: linear-gradient(135deg, #000000 0%, #212529 100%);
  border-color: #495057;
}

.badge-item:nth-child(3n + 3) .badge-modern:hover {
  background: linear-gradient(135deg, #ced4da 0%, #adb5bd 100%);
  border-color: #6c757d;
}

/* Subtle glow effect */
.badge-modern::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.badge-modern:hover::before {
  opacity: 1;
}

/* Animation keyframes */
@keyframes scrollInfinite {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(-120%);
  }
}

/* Pause animation on hover */
.badges-scroll-container:hover .badges-scroll {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .badge-modern {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .badges-scroll {
    animation-duration: 50s;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .badge-modern {
    padding: 8px 16px;
    font-size: 11px;
  }

  .badges-scroll {
    animation-duration: 40s;
    gap: 12px;
  }
}

/* Additional visual enhancements */
.badge-modern::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.badge-modern:hover::after {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.logo-img {
  min-height: 70px;
}

.hero-section {
  height: 100vh;
  background-color: #000;
}

.txt40 {
  font-size: 40px !important;
}

.hurricane-regular {
  font-family: "Hurricane", cursive;
  font-weight: 400;
}

.title-hurricane {
  font-size: 9rem;
  color: white;
}

.title2-hurricane {
  font-size: 3rem !important;
  font-weight: 400 !important;
  color: black;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  z-index: 1;
  animation: zoomVid 20s ease-in-out infinite alternate;
}

.btn {
  border-radius: 50px !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 2;
}

.hero-content {
  z-index: 3;
  max-width: 800px;
  animation: fadeIn 2s ease forwards;
  margin-top: -100px;
}

.display-2 {
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
  color: white;
}

.animate-title {
  opacity: 0;
  animation: fadeSlide 1.8s ease-out forwards;
}
.animate-subtitle {
  opacity: 0;
  animation: fadeSlide 1.8s ease-out 0.6s forwards;
}
.animate-button {
  opacity: 0;
  animation: fadeSlide 1.8s ease-out 1.2s forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomVid {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

/* Flèche scroll */
.scroll-line {
  display: block;
  width: 2px;
  height: 40px;
  background: white;
  position: relative;
  opacity: 0.7;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  transform: translate(-50%, 0);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 40px);
    opacity: 0;
  }
}

/* Float animation bas en haut */
.img-animation {
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.services-img {
  max-width: 50px;
  margin-bottom: 15px;
}

.animated-icon-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.big-text {
  font-size: 7rem;
  color: white;
}

.animated-icon-pulse2 {
  animation: pulse2 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulse2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.call-to-action2 {
  display: inline-block;
  padding: 10px 20px;
  width: 100%;
  height: 100px;
  max-height: 100px;
  background-color: #4b4b4b;
  justify-content: center;
  align-self: center;
  vertical-align: middle;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  color: white;
  text-decoration: none;
}

.call-to-action2:hover {
  background-color: #6c6c6c;
  text-decoration: none;
  color: white;
}

.centerAlignVerticalCenter {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .display-2 {
    font-size: 2.4rem;
  }
  .lead {
    font-size: 1.1rem;
  }
  .hero-content {
    margin-top: -80px;
    padding: 50px;
  }

  .title-hurricane {
    font-size: 5rem;
    color: white;
  }
  .big-text {
    font-size: 4rem;
    color: white;
  }
}
