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

.syndic-note {
  background: #faf5ff;
  border-left: 4px solid #8b5cf6;
  padding: 15px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

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

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

.copropriete-feature i {
  color: #a78bfa;
  font-size: 1.2rem;
}

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

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

.copropriete-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  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: #a78bfa;
}

.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);
}

.syndic-item {
  border-left: 4px solid #8b5cf6;
  padding-left: 15px;
  margin: 15px 0;
}

.syndic-item h3 {
  color: #8b5cf6;
}

.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;
  }
}

.common-badge {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.technical-badge {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

.special-badge {
  background: rgba(245, 158, 11, 0.1);
  color: #b91c1c;
}

/* Stats pour copropriétés */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #8b5cf6;
  margin-bottom: 10px;
}

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

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

.table-header {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  font-weight: bold;
}

.table-row {
  padding: 15px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
}

.table-row:last-child {
  border-bottom: none;
}

.frequency-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.frequency-daily {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.frequency-weekly {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
}

.frequency-monthly {
  background: rgba(245, 158, 11, 0.1);
  color: #b91c1c;
}

.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 {
}

.toast-notification.info {
  background: #8b5cf6;
}

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

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

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

.description-content,
.stats-grid,
.clients-grid,
.frequency-table,
.included-grid,
.method-steps,
.faq-list,
.cta-box {
  animation: fadeIn 0.8s ease-out;
}

/* Animation pour les cartes de statistiques */
.stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Animation pour le tableau */
.table-row {
  transition: background-color 0.2s ease;
}

.table-row:hover {
  background-color: var(--light);
}

/* Badges interactifs */
.client-tag {
  cursor: default;
  transition: transform 0.2s ease;
}

.client-tag:hover {
  transform: scale(1.05);
}

/* Indicateur visuel pour les statistiques */
.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.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;
}