/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body {
    font-family: 'Cairo', sans-serif;
}

/* Header */
html[dir="rtl"] .logo i {
    margin-left: 10px;
    margin-right: 0;
}

/* Section Title */
html[dir="rtl"] .section-title h2::after {
    /* Centered, so no change */
}

/* Buttons */
html[dir="rtl"] .btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .whatsapp-float {
    left: 30px;
    right: auto;
}

/* Services */
html[dir="rtl"] .service-card:hover {
    transform: translateY(-10px);
}

/* Branches */
html[dir="rtl"] .branch-info p i {
    margin-left: 10px;
    margin-right: 0;
}

/* Contact */
html[dir="rtl"] .info-item i {
    margin-left: 0;
}

/* Footer */
html[dir="rtl"] .footer-col h3::after {
    right: 0;
    left: auto;
}

html[dir="rtl"] .footer-links a:hover {
    padding-right: 5px;
    padding-left: 0;
}

html[dir="rtl"] .form-control {
    text-align: right;
}

/* Helpers */
html[dir="rtl"] .mr-2 {
    margin-left: 0.5rem;
    margin-right: 0;
}

html[dir="rtl"] .ml-2 {
    margin-right: 0.5rem;
    margin-left: 0;
}