/* ============================================
   MADA CLINIC — RTL Specific Overrides
   ============================================ */

/* Ensure RTL direction */
body {
    direction: rtl;
    text-align: right;
}

/* Select dropdown arrow on left side for RTL */
.mada-form-select {
    background-position: left 16px center;
    padding-left: 40px;
    padding-right: 18px;
}

/* Footer links hover direction */
.mada-footer__column ul li a:hover {
    padding-right: 8px;
    padding-left: 0;
}

/* WhatsApp float position for RTL */
.mada-whatsapp-float {
    right: 30px;
    left: auto;
}

/* Scroll top position for RTL */
.mada-scroll-top {
    right: 30px;
    left: auto;
}

/* Service card link arrow direction */
.mada-service-card__link svg {
    transform: scaleX(-1);
}

/* Statistic quote mark position */
.mada-testimonial__quote::before {
    right: auto;
    left: -10px;
}

/* Service detail content list bullets on right */
.mada-service-detail__content ul {
    padding-right: var(--mada-space-lg);
    padding-left: 0;
}

.mada-service-detail__content ul li {
    padding-right: var(--mada-space-lg);
    padding-left: 0;
}

.mada-service-detail__content ul li::before {
    right: 0;
    left: auto;
}

/* Value items alignment */
.mada-value-item {
    flex-direction: row;
}

/* Contact info items */
.mada-contact__info-item {
    flex-direction: row;
}

/* Footer contact items */
.mada-footer__contact-item {
    flex-direction: row;
}

/* Hero tagline direction */
.mada-hero__tagline {
    direction: rtl;
}

/* Form row adjustments */
.mada-form-row {
    direction: rtl;
}

/* Button icon order for RTL */
.mada-btn svg {
    order: 1;
}

.mada-btn span + svg {
    order: 0;
}
