/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #000000, #333333);
  border-radius: 20px;
}

/* Ajout du dot orange */
.orange-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: orange;
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== GLOBAL TEXT ===== */
h1, h2, h3 {
  font-weight: 700;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(90deg, #000000, #333333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  line-height: 1.2;
}

.section-label {
  color: #000000;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.dot-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 120px 20px 80px;
  text-align: center;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero .spots {
  color: #000000;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  background: #f8f8f8;
  padding: 8px 16px;
  border-radius: 25px;
  border: 1px solid #e0e0e0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
  color: #000000;
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000;
}

.inline-icon {
  height: 1em;
  width: auto;
  vertical-align: middle;
  object-fit: contain;
}

.subtext {
  font-size: 1.2rem;
  color: #555555;
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}

.customers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  font-weight: 500;
  color: #333333;
}

.customers img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  margin-left: -15px;
  background: transparent;
  box-shadow: 0 0 0 2px white;
  object-fit: cover;
}

.customers img:first-child {
  margin-left: 0;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #000000;
  object-fit: cover;
}

/* ===== VIDEO HERO PREVIEW ===== */
.video-section {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.video-section video {
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ===== WORK SECTION ===== */
.work-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  align-items: center;
}

.work-card {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-card video {
  height: 600px;
  width: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 28px;
  background-color: rgba(255, 165, 0, 0.8);
  color: white;
  border: 2px solid #ff8c00;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(255, 140, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

/* ===== INDICATORS ===== */
.indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background-color: #000;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: #ffffff;
  padding: 80px 20px;
}

.services-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: #f8f8f8;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #000000;
}

.service-card p {
  color: #666666;
  line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

.features-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #000000;
}

.feature-card p {
  color: #666666;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  background: #f0f0f0;
  color: #000000;
  padding: 80px 20px 40px;
  text-align: center;
}

footer h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000000;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  text-align: left;
  font-weight: 600;
  color: #333333;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px 20px;
  background: #ffffff;
  color: #000000;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.contact-form button {
  padding: 16px 32px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}

.contact-form button:hover {
  background: #333333;
  transform: translateY(-2px);
}

.social-links {
  margin: 30px 0;
}

.social-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  margin: 0 20px;
  padding: 10px 20px;
  border: 2px solid #000000;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  background: #000000;
  color: #ffffff;
}

footer p {
  margin-top: 30px;
  color: #666666;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 100px 15px 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .video-section video {
    max-width: 95%;
  }

  .avatar {
    width: 35px;
    height: 35px;
  }

  .service-icon,
  .feature-icon {
    width: 36px;
    height: 36px;
  }

  .dot-img {
    width: 28px;
    height: 28px;
  }

  .slider-btn {
    padding: 8px;
    font-size: 16px;
    width: 44px;
    height: 44px;
  }

  .slider-btn.left {
    left: 10px;
  }

  .slider-btn.right {
    right: 10px;
  }

  .work-card video {
    height: 450px;
    aspect-ratio: 9 / 16;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .subtext {
    font-size: 1.1rem;
  }

  .contact-form {
    margin: 0 15px 40px;
  }

  .social-links a {
    margin: 5px 10px;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero .spots {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .customers {
    flex-wrap: wrap;
    gap: 8px;
  }

  .customers img {
    margin-left: 0;
  }

  .avatar {
    width: 30px;
    height: 30px;
  }

  .social-links a {
    margin: 5px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
