.industriel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ca8a04;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-left: 10px;
}

.safety-note {
  background: #fefce8;
  border-left: 4px solid #ca8a04;
  padding: 15px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

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

.industriel-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.industriel-feature i {
  color: #b91c1c;
  font-size: 1.2rem;
}

.type-industriel {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #ca8a04;
  transition: transform 0.3s ease;
  text-align: center;
  height: 100%;
}

.type-industriel:hover {
  transform: translateY(-5px);
}

.industriel-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ca8a04, #b91c1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 1.5rem;
}

.service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  color: white;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-feature i {
  font-size: 1.2rem;
  color: #b91c1c;
}

.description-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.description-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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

.safety-item {
  border-left: 4px solid #ca8a04;
  padding-left: 15px;
  margin: 15px 0;
}

.safety-item h3 {
  color: #ca8a04;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  text-align: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

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

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-features {
    gap: 20px;
  }

  .hero-feature {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
}

.hero-bg-image {
  filter: brightness(0.5);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.service-hero:hover .hero-bg-image {
  transform: scale(1.02);
  filter: brightness(0.55);
}

.hero-title {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #e6eefb;
  max-width: 700px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 12px;
  align-items: start;
}

.client-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.10);
}

.client-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100), #eef2ff);
  color: #1e3a8a;
  font-size: 24px;
  margin-bottom: 6px;
}

.client-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #0f172a;
}

.client-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.client-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gray-600);
  background: rgba(15, 23, 42, 0.03);
  padding: 4px 8px;
  border-radius: 999px;
  margin-top: 6px;
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }

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

.included-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.included-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef2ff;
  color: #1e40af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.client-thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.client-card {
  padding: 18px;
}

.section-title {
  margin-bottom: 14px;
}

@media (max-width: 620px) {
  .client-thumb img {
    height: 110px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .client-card {
    padding: 14px;
  }
}

.factory-badge {
  background: rgba(202, 138, 4, 0.1);
  color: #ca8a04;
}

.warehouse-badge {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.food-badge {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

/* Section équipements industriels */
.equipment-section {
  background: var(--light);
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.equipment-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.equipment-card:hover {
  transform: translateY(-5px);
  border-color: #ca8a04;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.equipment-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ca8a04;
  font-size: 1.8rem;
}

/* Section avantages sécurité */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.safety-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.safety-icon {
  width: 50px;
  height: 50px;
  background: #fef3c7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ca8a04;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Tableau fréquences industrielles */
.frequency-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin: 30px 0;
}

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

.frequency-option {
  background: var(--light);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.frequency-option:hover {
  border-color: #ca8a04;
  background: #fefce8;
}

.frequency-title {
  color: #ca8a04;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Section certifications */
.certifications {
  background: linear-gradient(135deg, #fefce8, #fef3c7);
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
}

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

.cert-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cert-icon {
  color: #ca8a04;
  font-size: 1.5rem;
}

.toast-notification {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--primary);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification.success {
  background: #ca8a04;
}

.toast-notification.info {
  background: #2563eb;
}

.toast-notification i {
  font-size: 1.2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.description-content,
.clients-grid,
.equipment-section,
.safety-grid,
.frequency-section,
.included-grid,
.certifications,
.faq-list,
.cta-box {
  animation: fadeIn 0.8s ease-out;
}

/* Animation spécifique équipements */
.equipment-card {
  opacity: 0;
  animation: equipmentSlide 0.5s ease-out forwards;
}

@keyframes equipmentSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation certifications */
.cert-item.animate-cert {
  animation: certPulse 0.5s ease-out forwards;
  opacity: 0;
}

@keyframes certPulse {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Badge industriel animé */
.industriel-badge {
  cursor: pointer;
  transition: transform 0.2s ease;
  animation: badgeShine 3s infinite;
}

.industriel-badge:hover {
  transform: translateY(-2px);
}

@keyframes badgeShine {
  0% {
    box-shadow: 0 0 0 0 rgba(202, 138, 4, 0.4);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(202, 138, 4, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(202, 138, 4, 0);
  }
}

/* Animation cartes sécurité */
.safety-card {
  transition: transform 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-5px);
}

/* Animation fréquences */
.frequency-option {
  transition: all 0.3s ease;
  cursor: pointer;
}

.frequency-option:hover {
  transform: scale(1.02);
}

/* Indicateur visuel pour équipements */
.equipment-card:hover .equipment-icon {
  animation: iconSpin 1s ease;
}

@keyframes iconSpin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 8px rgba(26, 54, 93, 0.1);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.faq-question:hover {
  background: var(--gray-100);
}
.faq-question::after {
  content: '▼';
  font-size: 0.9rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  margin-left: 1rem;
}
.faq-item.is-open .faq-question::after {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}
.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}