/* Arabic (RTL) overrides */

html[dir="rtl"],
body {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", sans-serif !important;
}

/* Keep form fields readable in RTL */
input,
textarea {
  text-align: right;
}

span,p,h1,h2,h3,h4,h5,h6{
  font-family: "Cairo", sans-serif !important;
}

.review-cards.owl-carousel {
  direction: ltr;
}

.review-overlay::after {
  left: auto;
  right: 0;
}

.slider-nav {
  grid-column: -1 / 1;
  margin-left: 10%;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 0;
}
.where-portal{
  background: none;
}

.where-cta{
  font-family: "Cairo", sans-serif;
}

.where-map-shell{
  border-radius: 30px;
  overflow: hidden;
  background: #e9e9e9;
}

.where-map-shell iframe{
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.gallery-section{
  background:none;
}
.lifestyle-mosaic,.gallery-grid{
  direction: ltr;
}
.hero-copy h1{
  text-align: right;
  font-size: 36px;
}
.hero-copy p {
  text-align: right;
  font-size: 16px;
  margin: 0;
}
.hero-grid.container {
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
  width: 88%;
  margin-top: 90px;
}
.store-buttons {
  justify-content: start;
}
.get-app-stores{
  justify-content: center;
}

.heading5-partner h5 {
  font-size: 24px;
  font-weight: 700 !important;
}

.partner-div {
  width: 90%;
  margin: auto;
}

.button-partner {
  white-space: nowrap;
  background: #fff !important;
  box-shadow: 0px 2px 11.7px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 22px 24px;
  font-weight: 600;
}
.scroll-inner a{
  font-size: 24px;
  color: #6E1E54;
}

.section-title.ghost{
  color: #000;
}
.services-grid{
  direction: ltr;
}

.service-card,.service-card:hover {

  background: none;
  border-radius: 0;
  border: none;
  box-shadow:none
}

.landing-header .lang-pill {
  padding: 0px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
}

.landing-header .lang-switch {
  direction: ltr;
}
.landing-header .icon-btn{
  background-color: #fff;
}
.landing-header .lang-pill.active{
  padding: 0px 10px;
    border-radius: 999px;
    width: auto;
    height: auto;
}

/* Mirror the lifestyle mosaic layout for RTL (swap left/right columns without flipping images) */
html[dir="rtl"] .lifestyle-mosaic .tile-left {
  grid-column: 6;
}

html[dir="rtl"] .lifestyle-mosaic .tile-right {
  grid-column: 1;
}

html[dir="rtl"] .lifestyle-mosaic .tile-small-a {
  grid-column: 5;
}

html[dir="rtl"] .lifestyle-mosaic .tile-small-b {
  grid-column: 2;
}

html[dir="rtl"] .lifestyle-mosaic .tile-bottom-a {
  grid-column: 5;
  grid-row: 2;
}

html[dir="rtl"] .lifestyle-mosaic .mosaic-row2-split {
  grid-column: 2 / span 3;
  grid-row: 2;
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  height: 100%;
}

html[dir="rtl"] .lifestyle-mosaic .mosaic-row2-split .mosaic-tile {
  height: 100%;
}

html[dir="rtl"] .lifestyle-mosaic .mosaic-row2-split .tile-bottom-mid {
  flex: 0 0 60%;
}

html[dir="rtl"] .lifestyle-mosaic .mosaic-row2-split .tile-bottom-b {
  flex: 0 0 40%;
  padding-left: 8px;
}
.landing-footer .footer-col a {
  font-family: "Cairo", sans-serif !important;
}

/* Mirror footer background for RTL */
html[dir="rtl"] .landing-footer {
  background: linear-gradient(270deg, rgba(11, 13, 58, 0.96) 0%, rgba(11, 13, 58, 0.9) 38%, rgba(163, 25, 91, 0.9) 100%);
}

html[dir="rtl"] .landing-footer .footer-inner {
  background: none;
}

html[dir="rtl"] .landing-footer .footer-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/footer/bg.png) center center / cover no-repeat;
  transform: scaleX(-1);
  z-index: 0;
}

html[dir="rtl"] .landing-footer .footer-inner > * {
  position: relative;
  z-index: 1;
}



.country-switcher {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

/* Button */
.country-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 14px;
}

.country-btn:hover {
    border-color: #cfcfcf;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.country-btn img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

/* Dropdown */
.country-menu {
    position: absolute;
    top: 110%;
    right: -29px;
    width: 205px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.2s ease;
    z-index: 999;
    display: flex;
        flex-direction: column;
    padding: 10px;
}

/* Show */
.country-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Items */
.country-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: 0.2s;
}

.country-menu a:hover {
    background: #f5f5f5;
}

.country-menu img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}