/* ==============================================
STYLES POUR LA SECTION TARIFS - MODE CLAIR
============================================== */

/* Cartes de tarifs */
.pricing-card {
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Montant du prix */
.pricing-amount {
  color: #333;
  transition: color 0.3s ease;
}

/* Boutons de tarification - garde le style original */
.pricing-button {
  transition: all 0.3s ease;
}

/* Titre des détails */
.pricing-details-title {
  color: #333;
  transition: color 0.3s ease;
}

/* Liste des caractéristiques */
.pricing-list li {
  margin-bottom: 8px;
}

.pricing-list span {
  color: #666;
  transition: color 0.3s ease;
}

/* Texte de pied de section */
.pricing-footer-text {
  color: #666;
  transition: color 0.3s ease;
}

/* Couleur primaire */
.color-primary {
  color: #e83c3c;
  transition: color 0.3s ease;
}

/* ==============================================
STYLES POUR LA SECTION TARIFS - MODE SOMBRE
============================================== */

/* Cartes en mode sombre */
.dark .pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.dark .pricing-card:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Montant en mode sombre */
.dark .pricing-amount {
  color: #f5f5f5 !important;
}

/* Boutons en mode sombre - garde le style original, change seulement les couleurs */
.dark .pricing-button {
  color: #e0e0e0 !important;
  border-color: #e0e0e0 !important;
}

.dark .pricing-button:hover {
  background-color: #e0e0e0 !important;
  color: #1a1a1a !important;
}

/* Titre des détails en mode sombre */
.dark .pricing-details-title {
  color: #f0f0f0 !important;
}

/* Liste en mode sombre */
.dark .pricing-list span {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Texte de pied en mode sombre */
.dark .pricing-footer-text {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Couleur primaire en mode sombre */
.dark .color-primary {
  color: #ff6b6b !important;
}

/* Texte muté en mode sombre */
.dark .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Icônes de succès en mode sombre */
.dark .text-success {
  color: #4ade80 !important;
}

/* Icônes primaires en mode sombre */
.dark .text-primary {
  color: #60a5fa !important;
}

/* Ruban "Nouveauté" */
.dark .ribbon span {
  background-color: #dc2626 !important;
  color: #fff !important;
}

/* ==============================================
STYLES RESPONSIFS
============================================== */

/* Tablettes */
@media (max-width: 991.98px) {
  .pricing-card {
    margin-bottom: 20px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .pricing-card .card-body {
    padding: 3rem !important;
  }

  .pricing-amount {
    font-size: 2rem !important;
  }

  .pricing-list li {
    margin-bottom: 6px;
  }

  .pricing-list span {
    font-size: 0.85rem;
  }
}

/* Très petit mobile */
@media (max-width: 575.98px) {
  .pricing-card .card-body {
    padding: 2rem !important;
  }

  .pricing-amount {
    font-size: 1.8rem !important;
  }

  .pricing-footer-text {
    font-size: 0.9rem;
  }
}

/* ==============================================
AMÉLIORATIONS VISUELLES
============================================== */

/* Animation d'apparition */
.pricing-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Effet de focus pour l'accessibilité */
.pricing-button:focus {
  outline: 2px solid #e83c3c;
  outline-offset: 2px;
}

.dark .pricing-button:focus {
  outline-color: #ff6b6b;
}

/* ==============================================
STYLES POUR LE MODE CLAIR (par défaut)
============================================== */

/* Style des liens du menu */
.service-link {
  padding: 12px 15px;
  color: #333;
  background-color: #f8f9fa !important;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  border-radius: 8px;
  text-decoration: none;
}

/* Effet de survol en mode clair */
.service-link:hover:not(.active) {
  background-color: #f1f3f5;
  border-left-color: rgba(232, 60, 60, 0.4);
  color: #333;
  transform: translateX(2px);
}

/* Style du lien actif en mode clair */
.service-link.active {
  background-color: #e83c3c7a !important;
  color: #e83c3c;
  border-left-color: #e83c3c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

/* Style des icônes en mode clair */
.service-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(232, 60, 60, 0.1);
  border-radius: 6px;
  color: #e83c3c;
  transition: all 0.3s ease;
  font-size: 14px;
}

/* Style des icônes dans le lien actif en mode clair */
.service-link.active .service-icon {
  background-color: #e83c3c;
  color: white;
}

/* ==============================================
STYLES POUR LE MODE SOMBRE
============================================== */

/* Style des liens du menu en mode sombre */
.dark .service-link {
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-left-color: transparent;
}

/* Effet de survol en mode sombre */
.dark .service-link:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-left-color: rgba(232, 60, 60, 0.6);
  color: #f5f5f5;
}

/* Style du lien actif en mode sombre */
.dark .service-link.active {
  background-color: rgba(232, 60, 60, 0.15) !important;
  color: #ff6b6b;
  border-left-color: #ff6b6b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Style des icônes en mode sombre */
.dark .service-icon {
  color: #ff8080;
}

/* Style des icônes dans le lien actif en mode sombre */
.dark .service-link.active .service-icon {
  background-color: #ff6b6b;
  color: #1a1a1a;
}

/* Couleur primaire pour le mode sombre */
.dark .color-primary {
  color: #ff6b6b;
}

/* Amélioration des onglets en mode sombre */
.dark .nav-tabs .nav-link {
  color: #b0b0b0;
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark .nav-tabs .nav-link:hover {
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.dark .nav-tabs .nav-link.active {
  color: #ff6b6b;
  background-color: rgba(232, 60, 60, 0.1);
  border-color: #ff6b6b;
}

/* Amélioration des alertes en mode sombre */
.dark .alert-info {
  background-color: rgba(13, 202, 240, 0.1);
  border-color: rgba(13, 202, 240, 0.2);
  color: #9ce4ff;
}

/* ==============================================
STYLES RESPONSIFS
============================================== */

/* Pour les petits écrans */
@media (max-width: 767.98px) {
  .service-link {
    padding: 10px;
  }

  .service-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .service-text h5 {
    font-size: 0.9rem;
  }
}

/* Pour les très petits écrans */
@media (max-width: 575.98px) {
  .service-link {
    padding: 8px;
  }

  .service-icon {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .service-text h5 {
    font-size: 0.85rem;
  }
}

/* ==============================================
STYLES POUR LA SECTION ÉQUIPE - MODE CLAIR
============================================== */

/* Titre de section */
.section-title {
  color: #333;
  transition: color 0.3s ease;
}

/* Conteneur de personne */
.team-person {
  text-align: center;
  transition: transform 0.3s ease;
  background: transparent;
}

.team-person:hover {
  transform: translateY(-5px);
}

/* Nom de la personne */
.person-name {
  color: #333;
  transition: color 0.3s ease;
  font-weight: 600;
}

/* Rôle de la personne */
.person-role {
  color: rgba(51, 51, 51, 0.7);
  transition: color 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Images et conteneurs */
.person-container {
  position: relative;
}

.person-container-inner {
  position: relative;
  display: inline-block;
}

.person-circle,
.person-img {
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

/* Diviseur */
.person-divider {
  height: 3px;
  width: 60px;
  margin: 15px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==============================================
STYLES POUR LA SECTION ÉQUIPE - MODE SOMBRE
============================================== */

/* Titre en mode sombre */
.dark .section-title {
  color: #e0e0e0 !important;
}

/* Conteneur en mode sombre */
.dark .team-person {
  background: transparent;
}

.dark .team-person:hover {
  background: transparent;
  box-shadow: none;
}

/* Nom en mode sombre */
.dark .person-name {
  color: #f5f5f5 !important;
}

/* Rôle en mode sombre */
.dark .person-role {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Images en mode sombre */
.dark .person-circle,
.dark .person-img {
  filter: brightness(0.9) contrast(1.1);
}

.dark .person-img:hover {
  filter: brightness(1) contrast(1.2);
}

/* Diviseur en mode sombre */
.dark .person-divider {
  background-color: #ff6b6b !important;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

/* ==============================================
STYLES RESPONSIFS
============================================== */

/* Tablettes */
@media (max-width: 991.98px) {
  .person-name {
    font-size: 1.1rem;
  }

  .person-role {
    font-size: 0.85rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .team-person {
    margin-bottom: 20px;
  }

  .person-name {
    font-size: 1rem;
  }

  .person-role {
    font-size: 0.8rem;
  }

  .person-divider {
    width: 40px;
    height: 2px;
  }
}

/* Très petit mobile */
@media (max-width: 575.98px) {
  .person-name {
    font-size: 0.95rem;
  }

  .person-role {
    font-size: 0.75rem;
  }
}

/* ==============================================
AMÉLIORATIONS VISUELLES
============================================== */

/* Animation d'apparition */
.team-person {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.team-person:nth-child(1) {
  animation-delay: 0.1s;
}

.team-person:nth-child(2) {
  animation-delay: 0.2s;
}

.team-person:nth-child(3) {
  animation-delay: 0.3s;
}

.team-person:nth-child(4) {
  animation-delay: 0.4s;
}

.team-person:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Effet de focus pour l'accessibilité */
.team-person:focus-within {
  outline: 2px solid #e83c3c;
  outline-offset: 4px;
}

.dark .team-person:focus-within {
  outline-color: #ff6b6b;
}

.bg-contrast-200{
    
}
