/* Styles CSS pour la version arabe */
/* Police Cairo pour tous les éléments arabes */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&display=swap');

/* Configuration globale pour l'arabe */
* {
    font-family: 'Cairo', sans-serif !important;
    direction: rtl;
    text-align: right;
}

/* Reset pour les éléments qui doivent garder leur direction */
.logo,
.logo img,
input[type="email"],
input[type="tel"],
.btn {
    direction: ltr;
}

/* Prix en arabe - direction RTL */
.card-price {
    direction: rtl;
    text-align: center;
}

/* Alignements spécifiques */
.hero {
    text-align: center;
}

.hero h1,
.hero p {
    text-align: center;
}

.section-title {
    text-align: center;
}

.card {
    text-align: right;
}

.card-title,
.card-subtitle,
.card-price {
    text-align: center;
}

/* Navigation */
.nav-link {
    text-align: right;
}

/* Formulaires */
.form-group {
    text-align: right;
}

.form-group input,
.form-group select {
    text-align: right;
    direction: rtl;
}

/* Boutons */
.btn {
    direction: ltr;
    text-align: center;
}

/* Footer */
.footer {
    text-align: center;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .mobile-nav-link {
        text-align: right;
    }
}