/* Support multilingue et RTL pour l'arabe */

/* Styles du sélecteur de langue */
.language-selector {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    z-index: 100;
  }
  
  .language-toggle {
    display: flex;
    align-items: center;
    background: transparent;
    border: 2px solid #006064;
    color: #006064;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .language-toggle:hover {
    background: rgba(0, 96, 100, 0.1);
  }
  
  .language-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  
  .language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    display: none;
    z-index: 100;
    overflow: hidden;
  }
  
  .language-dropdown.active {
    display: block;
  }
  
  .language-dropdown a {
    display: block;
    padding: 12px 16px;
    color: #2d3e50;
    text-decoration: none;
    transition: background 0.2s ease;
    text-align: left;
  }
  
  .language-dropdown a:hover {
    background: #f8f9fa;
  }
  
  /* ===== SUPPORT RTL POUR L'ARABE ===== */
  
  /* Changements généraux pour RTL */
  [dir="rtl"] {
    /* Alignement du texte à droite */
    text-align: right;
  }
  
  /* Inversions du sélecteur de langue */
  [dir="rtl"] .language-selector {
    margin-left: 20px;
    margin-right: 0;
  }
  
  [dir="rtl"] .language-icon {
    margin-left: 8px;
    margin-right: 0;
  }
  
  [dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
  }
  
  [dir="rtl"] .language-dropdown a {
    text-align: right;
  }
  
  /* CORRECTION: On ajoute de l'espace entre le cercle et le texte (à gauche du texte en RTL) */
  [dir="rtl"] .step-row {
    flex-direction: row; 
  }
  
  [dir="rtl"] .step-content {
    text-align: right;
    margin-right: 20px; /* Ajout d'espace à gauche du texte */
  }
  
  [dir="rtl"] .step-circle {
    margin-left: 20px; /* Espace à gauche du cercle */
    margin-right: 0;   /* Aucun espace à droite du cercle */
  }
  
  /* Inversions des boutons avec icônes */
  [dir="rtl"] .btn img {
    margin-right: 10px;
    margin-left: 0;
  }
  
  /* Correction des puces dans les listes d'activités */
  [dir="rtl"] .activity-list li {
    padding-right: 20px;
    padding-left: 0;
    position: relative;
    text-align: right;
  }
  
  [dir="rtl"] .activity-list li::before {
    right: 0;
    left: auto;
  }
  
  /* Correction du panneau FAQ */
  [dir="rtl"] .accordion-button {
    text-align: right;
  }
  
  [dir="rtl"] .accordion-button::after {
    margin-left: 0;
    margin-right: auto;
  }
  
  [dir="rtl"] .accordion-content {
    text-align: right;
    padding: 0 15px 20px 0;
  }
  
  /* Correction des bulles */
  [dir="rtl"] .bubble.top-right {
    top: -15px;
    left: -10px;
    right: auto;
  }
  
  [dir="rtl"] .bubble.bottom-left {
    bottom: -5px;
    right: -8px;
    left: auto;
  }
  
  /* Correction du footer */
  [dir="rtl"] .footer-column ul li {
    padding-right: 15px;
    padding-left: 0;
    text-align: right;
  }
  
  [dir="rtl"] .footer-column ul li::before {
    right: 0;
    left: auto;
  }
  
  /* CORRECTION: Espacement pour les étapes horizontales */
  [dir="rtl"] .steps-horizontal {
    flex-direction: row;
  }
  
  [dir="rtl"] .steps-horizontal .step-h {
    margin-left: 20px; /* Espace à gauche de chaque étape */
  }
  
  [dir="rtl"] .step-arrow img {
    transform: scaleX(-1); /* Inverse les flèches */
  }
  
  /* Police spécifique pour l'arabe */
  [dir="rtl"] body, 
  [dir="rtl"] p, 
  [dir="rtl"] h1, 
  [dir="rtl"] h2, 
  [dir="rtl"] h3, 
  [dir="rtl"] button, 
  [dir="rtl"] a, 
  [dir="rtl"] span, 
  [dir="rtl"] div {
    font-family: 'Noto Sans Arabic', 'Nunito', sans-serif;
  }
  
  /* Responsive pour RTL */
  @media (max-width: 992px) {
    [dir="rtl"] .step-arrow {
      transform: rotate(-90deg);
    }
  }
  
  @media (max-width: 768px) {
    [dir="rtl"] .step-content {
      text-align: center !important;
      margin-right: 0 !important; /* Réinitialiser la marge en mode mobile */
      margin-top: 15px;           /* Ajouter de l'espace en haut plutôt */
    }
    
    [dir="rtl"] .step-circle {
      margin-left: 0 !important;  /* Réinitialiser la marge en mode mobile */
    }
  }
  
  /* ===== CORRECTION POUR LA SECTION ACTIVITY CTA EN RTL ===== */
  
  /* Pour la section Activity CTA - configuration de base */
  [dir="rtl"] .activity-cta .steps-horizontal {
    display: flex;
    flex-direction: row;
  }
  
  [dir="rtl"] .activity-cta .step-h {
    text-align: right;
    margin-left: 20px; /* Espace à gauche dans le mode RTL */
    margin-right: 0;
  }
  
  /* Sur écrans larges, maintenir les flèches horizontales avec inversion */
  html[dir="rtl"] .activity-cta .step-arrow img {
    transform: scaleX(-1); /* Inversion horizontale pour grands écrans */
  }
  
  [dir="rtl"] .activity-cta .time-indicator {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  
  [dir="rtl"] .activity-cta .time-indicator img {
    margin-left: 8px;
    margin-right: 0;
  }
  
  /* Responsive pour RTL spécifiquement pour Activity CTA - Tablettes */
  @media (max-width: 992px) {
    [dir="rtl"] .activity-cta .steps-horizontal {
      flex-direction: column; /* En colonne sur les tablettes */
    }
    
    [dir="rtl"] .activity-cta .step-h {
      margin-left: 0;
      margin-bottom: 30px;
      text-align: center;
    }
    
    /* Appliquer la rotation pour pointer vers le bas */
    [dir="rtl"] .activity-cta .step-arrow {
      transform: rotate(90deg) !important; /* Rotation pour pointer vers le bas */
      margin: 15px 0;
    }
    
    /* L'inversion horizontale n'est plus nécessaire quand on pointe vers le bas */
    html[dir="rtl"] .activity-cta .step-arrow img {
      transform: none !important; /* Annuler l'inversion horizontale */
    }
    
    [dir="rtl"] .activity-cta .time-indicator {
      justify-content: center;
    }
  }
  
  /* Responsive pour RTL spécifiquement pour Activity CTA - Mobiles */
  @media (max-width: 768px) {
    [dir="rtl"] .activity-cta .step-h {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-left: 0;
      margin-bottom: 40px;
    }
    
    [dir="rtl"] .activity-cta .time-indicator {
      margin-top: 10px;
      justify-content: center;
    }
    
    [dir="rtl"] .activity-cta p {
      text-align: center;
      margin-top: 15px;
    }
    
    /* Pour éviter toute confusion avec la section Hero Steps */
    [dir="rtl"] .activity-cta .step-circle {
      margin-left: 0; /* Réinitialise les marges */
    }
    
    /* S'assurer que les flèches pointent vers le bas */
    [dir="rtl"] .activity-cta .step-arrow {
      transform: rotate(90deg) !important;
    }
    
    html[dir="rtl"] .activity-cta .step-arrow img {
      transform: none !important;
    }
    
    /* Modifications spécifiques pour l'Activity CTA sur mobile */
    [dir="rtl"] .activity-cta .cta-title {
      text-align: center;
      margin-bottom: 30px;
    }
  }
  
  /* Très petits écrans - Téléphones */
  @media (max-width: 480px) {
    [dir="rtl"] .activity-cta .steps-horizontal {
      flex-direction: column;
    }
    
    [dir="rtl"] .activity-cta .step-h {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-left: 0;
      margin-bottom: 30px;
      text-align: center;
    }
    
    /* S'assurer que les flèches pointent vers le bas sur très petits écrans */
    [dir="rtl"] .activity-cta .step-arrow {
      transform: rotate(90deg) !important;
      margin: 10px 0;
    }
    
    /* Annuler toute inversion horizontale sur très petits écrans */
    html[dir="rtl"] .activity-cta .step-arrow img {
      transform: none !important;
    }
  }
  
  /* Distinction claire entre les étapes du Hero et les étapes de l'Activity CTA */
  [dir="rtl"] .activity-cta .steps-horizontal .step-h .step-circle {
    margin-left: 0; /* Pour éviter le conflit avec les règles des steps du Hero */
    margin-bottom: 15px; /* Ajoute de l'espace en bas du cercle */
  }
  
  /* S'assurer que les étapes du Hero continuent à bien fonctionner */
  [dir="rtl"] .hero .step-row {
    flex-direction: row; /* Maintenir la direction pour le Hero */
  }
  
  [dir="rtl"] .hero .step-content {
    text-align: right;
    margin-right: 20px; /* Maintenir l'espace à droite pour le Hero */
  }
  
  [dir="rtl"] .hero .step-circle {
    margin-left: 20px;
    margin-right: 0;
  }

  /* NOUVELLES CORRECTIONS POUR L'ICÔNE VERIFY EN RTL */
  
  /* Correction spécifique pour l'icône Verify dans le Hero */
  [dir="rtl"] .hero .step-content a.btn img {
    margin-right: 0 !important;
    margin-left: 10px !important;
  }
  
  /* Correction pour le bouton avec l'icône Verify */
  [dir="rtl"] .hero .step-content a.btn {
    display: inline-flex;
    flex-direction: row-reverse;
    padding-right: 0;
    padding-left: 10px;
  }
  
  /* Correction pour l'image "add" dans le bouton en RTL */
[dir="rtl"] .hero .step-content a.btn-secondary img {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  
  /* S'assurer que le bouton avec l'icône "add" est bien positionné */
  [dir="rtl"] .hero .step-content a.btn-secondary {
    display: inline-flex;
    flex-direction: row-reverse;
  }
  /* Spécifiquement pour les mobiles */
  @media (max-width: 768px) {
    /* Hero section en RTL mobile */
    [dir="rtl"] .hero .step-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 40px;
    }
    
    [dir="rtl"] .hero .step-content {
      text-align: center !important;
      margin-right: 0 !important;
      margin-left: 0 !important;
      margin-top: 15px;
      width: 100%;
    }
    
    [dir="rtl"] .hero .step-circle {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
    
    [dir="rtl"] .hero .step-content a.btn {
      display: inline-flex;
      justify-content: center;
      flex-direction: row-reverse;
      margin: 15px auto 0 !important;
    }
  }
  
  /* Pour les très petits écrans */
  @media (max-width: 576px) {
    [dir="rtl"] .hero .step-content a.btn {
      display: inline-flex;
      flex-direction: row-reverse;
    }
    
    [dir="rtl"] .hero .step-content a.btn img {
      margin-left: 10px !important;
      margin-right: 0 !important;
    }
  }