/* =========================================================================
   ATAR Business Lounge — services grid, supporting strip, closing CTA,
   WhatsApp button and the individual service pages.

   Built as its own layer rather than bending the theme's four-card row,
   because the brief needs six cards at three per row with a bullet list and
   a button in each. Colours all come from the active palette file, so this
   works under the light, wood and navy themes without changes.
   ========================================================================= */

/* ------------------------------------------------------- 1. intro line */
.atar-services__intro {
  max-width: 780px;
  margin: -14px auto 54px;
  text-align: center;
  font-size: 17px;
  line-height: 1.85;
  color: var(--procounsel-text, #6b6055);
}

/* ------------------------------------------------------ 2. six-card grid */
.atar-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1199px) {
  .atar-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .atar-services__grid { grid-template-columns: 1fr; }
}

.atar-service-card {
  display: flex;
  flex-direction: column;
  padding: 38px 34px 34px;
  background-color: #fff;
  border: 1px solid rgba(var(--atar-wood-rgb, 107, 74, 49), 0.16);
  border-radius: 16px;
  transition: transform 0.45s var(--atar-ease, ease),
              box-shadow 0.45s var(--atar-ease, ease),
              border-color 0.45s var(--atar-ease, ease);
}

.atar-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.6);
  box-shadow: 0 24px 50px -26px rgba(var(--atar-wood-rgb, 107, 74, 49), 0.45);
}

.atar-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 26px;
  border-radius: 50%;
  background-color: rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.14);
  color: var(--atar-gold-text, #856426);
}

.atar-service-card__icon .atar-icon {
  width: 34px;
  height: 34px;
}

.atar-service-card__title {
  margin: 0 0 14px;
  font-family: var(--procounsel-heading-font, serif);
  font-size: 23px;
  line-height: 1.35;
  color: var(--procounsel-primary, #33261b);
}

.atar-service-card__text {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--procounsel-text, #6b6055);
}

.atar-service-card__list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.atar-service-card__list li {
  position: relative;
  padding-inline-start: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--procounsel-text, #6b6055);
}

.atar-service-card__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--procounsel-base, #c5a050);
}

.atar-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  align-self: flex-start;
  padding: 13px 26px;
  border: 1px solid rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.55);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--atar-gold-text, #856426);
  text-decoration: none;
  transition: background-color 0.35s var(--atar-ease, ease),
              color 0.35s var(--atar-ease, ease),
              border-color 0.35s var(--atar-ease, ease);
}

.atar-service-card__link:hover,
.atar-service-card__link:focus-visible {
  background-color: var(--procounsel-base, #c5a050);
  border-color: var(--procounsel-base, #c5a050);
  color: var(--procounsel-primary, #33261b);
}

.atar-service-card__link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

[dir="rtl"] .atar-service-card__link svg {
  transform: scaleX(-1);
}

/* ------------------------------------------ 3. supporting-services strip */
.atar-support-strip {
  margin-top: 60px;
  padding: 40px 44px;
  border: 1px solid rgba(var(--atar-wood-rgb, 107, 74, 49), 0.18);
  border-radius: 16px;
  background-color: rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.07);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.atar-support-strip__title {
  margin: 0 0 10px;
  font-family: var(--procounsel-heading-font, serif);
  font-size: 24px;
  color: var(--procounsel-primary, #33261b);
}

.atar-support-strip__list {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--procounsel-text, #6b6055);
}

/* ----------------------------------------------------- 4. closing CTA */
.atar-cta {
  padding: 90px 0;
  background-color: var(--procounsel-gray2, #f4ede2);
}

.atar-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.atar-cta__title {
  margin: 0 0 18px;
  font-family: var(--procounsel-heading-font, serif);
  font-size: 40px;
  line-height: 1.3;
  color: var(--procounsel-primary, #33261b);
}

.atar-cta__text {
  margin: 0 0 34px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--procounsel-text, #6b6055);
}

.atar-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 767px) {
  .atar-cta__title { font-size: 30px; }
  .atar-support-strip { padding: 30px 26px; }
}

/* --------------------------------------------- 5. WhatsApp buttons + float */
.atar-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 32px;
  background-color: #128c7e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.atar-wa:hover,
.atar-wa:focus-visible {
  background-color: #0f7568;
  color: #fff;
  transform: translateY(-2px);
}

.atar-wa svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

/* The floating bubble sits above the SleekFlow widget, which anchors itself
   to the bottom-right in both directions. The theme's back-to-top button is
   bottom-right in LTR and bottom-left in RTL, so this stays clear of both by
   sitting higher up. */
.atar-wa-float {
  position: fixed;
  right: 22px;
  bottom: 108px;
  z-index: 98;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #128c7e;
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(18, 140, 126, 0.7);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.atar-wa-float:hover,
.atar-wa-float:focus-visible {
  background-color: #0f7568;
  color: #fff;
  transform: scale(1.06);
}

.atar-wa-float svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

@media (max-width: 575px) {
  .atar-wa-float {
    width: 50px;
    height: 50px;
    bottom: 96px;
    right: 16px;
  }
}

/* ------------------------------------------------ 6. clarification note */
.atar-note {
  margin-top: 44px;
  padding: 24px 28px;
  border-inline-start: 3px solid var(--procounsel-base, #c5a050);
  border-radius: 8px;
  background-color: rgba(var(--atar-wood-rgb, 107, 74, 49), 0.06);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--procounsel-text, #6b6055);
}

/* ------------------------------------------------- 7. service sub-pages */
.atar-page-hero {
  padding: 190px 0 80px;
  background-color: var(--procounsel-gray2, #f4ede2);
  border-bottom: 1px solid var(--procounsel-border-color, #e5dacb);
}

.atar-page-hero__crumb {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--procounsel-text, #6b6055);
}

.atar-page-hero__crumb a {
  color: var(--atar-gold-text, #856426);
}

.atar-page-hero__title {
  margin: 0 0 16px;
  font-family: var(--procounsel-heading-font, serif);
  font-size: 48px;
  line-height: 1.22;
  color: var(--procounsel-primary, #33261b);
}

.atar-page-hero__text {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: var(--procounsel-text, #6b6055);
}

@media (max-width: 767px) {
  .atar-page-hero { padding: 150px 0 60px; }
  .atar-page-hero__title { font-size: 32px; }
}

.atar-page {
  padding: 80px 0 90px;
}

.atar-page__block {
  margin-bottom: 52px;
}

.atar-page__h2 {
  margin: 0 0 20px;
  font-family: var(--procounsel-heading-font, serif);
  font-size: 30px;
  color: var(--procounsel-primary, #33261b);
}

.atar-page__h3 {
  margin: 0 0 12px;
  font-family: var(--procounsel-heading-font, serif);
  font-size: 20px;
  color: var(--procounsel-primary, #33261b);
}

.atar-page p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--procounsel-text, #6b6055);
}

.atar-page__list {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.atar-page__list li {
  position: relative;
  padding-inline-start: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--procounsel-text, #6b6055);
}

.atar-page__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--procounsel-base, #c5a050);
}

.atar-steps {
  counter-reset: atarstep;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 767px) {
  .atar-steps { grid-template-columns: 1fr; }
}

.atar-steps li {
  counter-increment: atarstep;
  position: relative;
  padding: 24px 26px 24px 70px;
  border: 1px solid rgba(var(--atar-wood-rgb, 107, 74, 49), 0.16);
  border-radius: 12px;
  background-color: #fff;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--procounsel-text, #6b6055);
}

[dir="rtl"] .atar-steps li {
  padding: 24px 70px 24px 26px;
}

.atar-steps li::before {
  content: counter(atarstep);
  position: absolute;
  inset-inline-start: 24px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.16);
  color: var(--atar-gold-text, #856426);
  font-family: var(--procounsel-heading-font, serif);
  font-size: 15px;
}

.atar-quote-box {
  padding: 34px;
  border: 1px solid rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.4);
  border-radius: 16px;
  background-color: rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.07);
}

.atar-quote-box .atar-page__list li::before {
  border-color: var(--atar-gold-text, #856426);
}

.atar-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* FAQ block reused inside a service page: no section padding or background. */
.atar-faq--inline {
  padding: 0;
  background-color: transparent;
}

/* --------------------------------------------- 8. card media band + icon */
.atar-service-card {
  padding: 0;
  overflow: hidden;
}

.atar-service-card__media {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background-color: var(--procounsel-gray2, #f4ede2);
}

.atar-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--atar-ease, ease);
}

.atar-service-card:hover .atar-service-card__media img {
  transform: scale(1.06);
}

.atar-service-card__media .atar-service-card__icon {
  position: absolute;
  inset-inline-start: 26px;
  bottom: -28px;
  width: 56px;
  height: 56px;
  margin: 0;
  background-color: #fff;
  box-shadow: 0 10px 26px -12px rgba(var(--atar-wood-rgb, 107, 74, 49), 0.6);
}

.atar-service-card__media .atar-service-card__icon .atar-icon {
  width: 28px;
  height: 28px;
}

.atar-service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 46px 30px 32px;
}

/* ------------------------------------------------- 9. services dropdown */
.main-menu .main-menu__list li ul {
  min-width: 296px;
  padding: 10px 0;
  background-color: #fff;
  border: 1px solid var(--procounsel-border-color, #e5dacb);
  border-radius: 12px;
  box-shadow: 0 24px 48px -26px rgba(var(--atar-wood-rgb, 107, 74, 49), 0.55);
}

.main-menu .main-menu__list li ul li {
  display: block;
  width: 100%;
}

.main-menu .main-menu__list li ul li a {
  display: block;
  padding: 11px 24px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--procounsel-primary, #33261b);
  background-color: transparent;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.main-menu .main-menu__list li ul li a::after {
  display: none;
}

.main-menu .main-menu__list li ul li a:hover,
.main-menu .main-menu__list li ul li.current > a {
  background-color: rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.12);
  color: var(--atar-gold-text, #856426);
}

/* The theme's mobile menu injects <i class="fa fa-angle-down"> for submenu
   toggles. Font Awesome is no longer loaded, so the glyph is drawn in CSS. */
.fa-angle-down {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.mobile-nav__content .main-menu__list li.expanded > a .fa-angle-down {
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* --------------------------------------------- 10. service page figure */
.atar-page__figure {
  margin: 0 0 46px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--atar-wood-rgb, 107, 74, 49), 0.16);
}

.atar-page__figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================================
   11. ROUND SERVICE PORTRAITS
   The photo is a circle with a thin gold ring, and the service icon sits in
   a gold disc on the edge of it — the icon is what tells you which service
   the card is, so it needs to read at a glance rather than blend into the
   photo.
   ========================================================================= */
.atar-round {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 34px;
  flex: 0 0 auto;
}

.atar-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 5px #fff,
              0 0 0 7px rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.55),
              0 18px 34px -18px rgba(var(--atar-wood-rgb, 107, 74, 49), 0.6);
  transition: transform 0.6s var(--atar-ease, ease);
}

.atar-service-card:hover .atar-round img {
  transform: scale(1.04);
}

.atar-round__badge {
  position: absolute;
  inset-inline-end: -4px;
  bottom: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--procounsel-base, #c5a050);
  color: var(--procounsel-primary, #33261b);
  box-shadow: 0 0 0 4px #fff;
}

.atar-round__badge .atar-icon {
  width: 27px;
  height: 27px;
}

.atar-round--lg {
  width: 240px;
  height: 240px;
  margin: 0;
}

.atar-round--lg .atar-round__badge {
  width: 66px;
  height: 66px;
}

.atar-round--lg .atar-round__badge .atar-icon {
  width: 33px;
  height: 33px;
}

/* ---- card layout now centres on the circle -------------------------- */
.atar-service-card {
  padding: 40px 30px 34px;
  overflow: visible;
  text-align: center;
}

.atar-service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0;
}

.atar-service-card__list {
  display: inline-block;
  text-align: start;
}

.atar-service-card__link {
  align-self: center;
}

/* ---- service page hero: text beside the portrait -------------------- */
.atar-page-hero__inner {
  display: flex;
  align-items: center;
  gap: 54px;
}

.atar-page-hero__col {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 991px) {
  .atar-page-hero__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 34px;
  }
  .atar-round--lg {
    width: 180px;
    height: 180px;
  }
}

/* =========================================================================
   12. SERVICE MEDALLIONS
   Photographs are gone from the service cards. A photo of an office desk
   says very little about whether you are looking at attestation or a trade
   licence renewal — the icon says it immediately, and six icons in one row
   scan far faster than six near-identical interiors.

   The hover is where the colour happens: gold floods in from the centre of
   the disc, the icon flips to espresso, and a dashed ring blooms outward.
   ========================================================================= */
.atar-medallion {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background-color: rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.13);
  color: var(--atar-gold-text, #856426);
  transition: color 0.4s var(--atar-ease, ease), transform 0.5s var(--atar-ease, ease);
}

/* the dashed ring */
.atar-medallion::before {
  content: "";
  position: absolute;
  inset: -11px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.55);
  opacity: 0;
  transform: scale(0.82) rotate(-25deg);
  transition: opacity 0.5s var(--atar-ease, ease), transform 0.6s var(--atar-ease, ease);
}

/* the gold flood */
.atar-medallion::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--procounsel-base, #c5a050);
  transform: scale(0.25);
  opacity: 0;
  transition: transform 0.5s var(--atar-ease, ease), opacity 0.4s var(--atar-ease, ease);
}

.atar-medallion .atar-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
}

.atar-service-card:hover .atar-medallion,
.atar-medallion:hover,
.atar-page-hero .atar-medallion--lg:hover {
  color: var(--procounsel-primary, #33261b);
  transform: translateY(-4px);
}

.atar-service-card:hover .atar-medallion::after,
.atar-medallion:hover::after {
  transform: scale(1);
  opacity: 1;
}

.atar-service-card:hover .atar-medallion::before,
.atar-medallion:hover::before {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.atar-medallion--lg {
  width: 152px;
  height: 152px;
  margin: 0;
}

.atar-medallion--lg .atar-icon {
  width: 68px;
  height: 68px;
}

.atar-medallion--lg::before {
  inset: -14px;
}

@media (max-width: 991px) {
  .atar-medallion--lg { width: 120px; height: 120px; }
  .atar-medallion--lg .atar-icon { width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  .atar-medallion,
  .atar-medallion::before,
  .atar-medallion::after {
    transition: none;
  }
  .atar-service-card:hover .atar-medallion { transform: none; }
}

/* ------------------------------- 13. floating buttons: keep them apart */
/* SleekFlow anchors its bubble to the bottom-right in both directions, so
   the WhatsApp button moves to the left. The theme puts back-to-top on the
   left in RTL, which would then collide, so it is pinned to the right in
   both directions instead. Three fixed elements, three separate corners. */
.atar-wa-float {
  left: 22px;
  right: auto;
  bottom: 30px;
}

html[dir="rtl"] .scroll-to-top {
  left: auto;
  right: -12px;
}

@media (max-width: 575px) {
  .atar-wa-float {
    left: 16px;
    right: auto;
    bottom: 22px;
  }
}

/* ------------------------- 14. Arabic contact form: Latin data stays LTR */
/* Email addresses and phone numbers are Latin/numeric. Left to inherit the
   page's RTL direction they reorder as you type — "info@atar.ae" becomes
   "ae.atar@info". Forcing LTR on those two fields keeps the value correct
   while text-align keeps them visually on the right where the rest of the
   form sits. */
html[dir="rtl"] .atar-form input[type="email"],
html[dir="rtl"] .atar-form input[type="tel"] {
  direction: ltr;
  text-align: right;
}

html[dir="rtl"] .atar-form input[type="email"]::placeholder,
html[dir="rtl"] .atar-form input[type="tel"]::placeholder {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .atar-form textarea,
html[dir="rtl"] .atar-form input[type="text"] {
  text-align: right;
}

html[dir="rtl"] .atar-form__status {
  text-align: right;
}

/* =========================================================================
   15. GOOGLE REVIEWS
   The section renders with just the heading and the two buttons until an
   API key is configured; the score line and the cards are added by
   atar-reviews.js. That way nothing looks broken before it is set up.
   ========================================================================= */
.atar-reviews {
  padding: 90px 0;
  background-color: var(--procounsel-gray, #fbf7f1);
  border-top: 1px solid var(--procounsel-border-color, #e5dacb);
}

.atar-reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: -18px 0 42px;
}

.atar-reviews__score {
  font-family: var(--procounsel-heading-font, serif);
  font-size: 40px;
  line-height: 1;
  color: var(--procounsel-primary, #33261b);
}

.atar-reviews__count {
  font-size: 15px;
  color: var(--procounsel-text, #6b6055);
}

.atar-stars {
  position: relative;
  display: inline-block;
  width: 108px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='108' height='20' viewBox='0 0 108 20'%3E%3Cg fill='%23e0d5c2'%3E%3Cpath d='M10 1l2.6 5.6 6.1.7-4.5 4.2 1.2 6L10 14.6 4.6 17.5l1.2-6L1.3 7.3l6.1-.7z'/%3E%3Cpath d='M32 1l2.6 5.6 6.1.7-4.5 4.2 1.2 6L32 14.6l-5.4 2.9 1.2-6-4.5-4.2 6.1-.7z'/%3E%3Cpath d='M54 1l2.6 5.6 6.1.7-4.5 4.2 1.2 6L54 14.6l-5.4 2.9 1.2-6-4.5-4.2 6.1-.7z'/%3E%3Cpath d='M76 1l2.6 5.6 6.1.7-4.5 4.2 1.2 6L76 14.6l-5.4 2.9 1.2-6-4.5-4.2 6.1-.7z'/%3E%3Cpath d='M98 1l2.6 5.6 6.1.7-4.5 4.2 1.2 6L98 14.6l-5.4 2.9 1.2-6-4.5-4.2 6.1-.7z'/%3E%3C/g%3E%3C/svg%3E");
  vertical-align: middle;
}

.atar-stars__fill {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='108' height='20' viewBox='0 0 108 20'%3E%3Cg fill='%23c5a050'%3E%3Cpath d='M10 1l2.6 5.6 6.1.7-4.5 4.2 1.2 6L10 14.6 4.6 17.5l1.2-6L1.3 7.3l6.1-.7z'/%3E%3Cpath d='M32 1l2.6 5.6 6.1.7-4.5 4.2 1.2 6L32 14.6l-5.4 2.9 1.2-6-4.5-4.2 6.1-.7z'/%3E%3Cpath d='M54 1l2.6 5.6 6.1.7-4.5 4.2 1.2 6L54 14.6l-5.4 2.9 1.2-6-4.5-4.2 6.1-.7z'/%3E%3Cpath d='M76 1l2.6 5.6 6.1.7-4.5 4.2 1.2 6L76 14.6l-5.4 2.9 1.2-6-4.5-4.2 6.1-.7z'/%3E%3Cpath d='M98 1l2.6 5.6 6.1.7-4.5 4.2 1.2 6L98 14.6l-5.4 2.9 1.2-6-4.5-4.2 6.1-.7z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

[dir="rtl"] .atar-stars,
[dir="rtl"] .atar-stars__fill {
  transform: scaleX(-1);
}

/* --- auto-scrolling strip ------------------------------------------------
   A continuous marquee rather than a slide-at-a-time carousel: with only a
   handful of reviews, stepping through them leaves the strip empty half the
   time, whereas a constant drift always has cards in view and reads as
   "live". The track holds the cards twice over and travels exactly -50%, so
   the loop point is invisible. It pauses when you hover or focus inside it,
   so a review can actually be read. */
.atar-reviews__marquee {
  position: relative;
  overflow: hidden;
  margin-inline: calc(50% - 50vw);
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.atar-reviews__track {
  display: flex;
  width: max-content;
  gap: 24px;
  direction: ltr;
  animation: atarMarquee 60s linear infinite;
}

[dir="rtl"] .atar-reviews__track {
  animation-name: atarMarqueeRtl;
}

.atar-reviews__marquee:hover .atar-reviews__track,
.atar-reviews__marquee:focus-within .atar-reviews__track {
  animation-play-state: paused;
}

@keyframes atarMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@keyframes atarMarqueeRtl {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .atar-reviews__marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .atar-reviews__track { animation: none; }
}

.atar-review {
  flex: 0 0 330px;
  width: 330px;
  padding: 28px 26px;
  direction: inherit;
  background-color: #fff;
  border: 1px solid rgba(var(--atar-wood-rgb, 107, 74, 49), 0.16);
  border-radius: 14px;
}

.atar-review__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.atar-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 44px;
}

.atar-review__name {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--procounsel-primary, #33261b);
}

.atar-review__when {
  margin: 0;
  font-size: 13px;
  color: var(--procounsel-text-gray, #857a6d);
}

.atar-review__avatar--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.18);
  color: var(--atar-gold-text, #856426);
  font-family: var(--procounsel-heading-font, serif);
  font-size: 19px;
}

.atar-review__text {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--procounsel-text, #6b6055);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  min-height: 156px;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.atar-reviews__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
}

.atar-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid var(--procounsel-border-color, #e5dacb);
  border-radius: 32px;
  background-color: #fff;
  font-size: 15px;
  font-weight: 600;
  color: var(--procounsel-primary, #33261b);
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.atar-review-btn:hover,
.atar-review-btn:focus-visible {
  border-color: rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.7);
  color: var(--procounsel-primary, #33261b);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -20px rgba(var(--atar-wood-rgb, 107, 74, 49), 0.6);
}

.atar-review-btn svg { width: 18px; height: 18px; }

.atar-reviews__attr {
  margin: 22px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--procounsel-text-gray, #857a6d);
}

/* =========================================================================
   16. LANGUAGE PICKER (three languages)
   The old two-language toggle was a single link. With English, Arabic and
   Russian it becomes a small menu: the pill shows the current language and
   opens a list on hover, keyboard focus or tap.
   ========================================================================= */
.atar-lang {
  position: relative;
  display: inline-block;
  height: auto;
  padding: 0;
  border: 0;
  background: none;
}

.atar-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(var(--atar-wood-rgb, 107, 74, 49), 0.35);
  border-radius: 30px;
  background-color: transparent;
  color: var(--atar-gold-text, #856426);
  font-family: var(--procounsel-font, sans-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.atar-lang__btn:hover,
.atar-lang:focus-within .atar-lang__btn,
.atar-lang__btn[aria-expanded="true"] {
  background-color: var(--procounsel-base, #c5a050);
  border-color: var(--procounsel-base, #c5a050);
  color: var(--procounsel-primary, #33261b);
}

.atar-lang__btn i { font-size: 16px; line-height: 1; }

.atar-lang__caret {
  width: 10px;
  height: 6px;
  transition: transform 0.3s ease;
}

.atar-lang:hover .atar-lang__caret,
.atar-lang__btn[aria-expanded="true"] .atar-lang__caret {
  transform: rotate(180deg);
}

.atar-lang__menu {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 10px);
  z-index: 40;
  min-width: 172px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid var(--procounsel-border-color, #e5dacb);
  border-radius: 12px;
  box-shadow: 0 22px 44px -26px rgba(var(--atar-wood-rgb, 107, 74, 49), 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.atar-lang:hover .atar-lang__menu,
.atar-lang:focus-within .atar-lang__menu,
.atar-lang__btn[aria-expanded="true"] + .atar-lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.atar-lang__opt {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  color: var(--procounsel-primary, #33261b);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.atar-lang__opt:hover,
.atar-lang__opt:focus-visible {
  background-color: rgba(var(--procounsel-base-rgb, 197, 160, 80), 0.12);
  color: var(--atar-gold-text, #856426);
}

.atar-lang__opt.is-current {
  color: var(--atar-gold-text, #856426);
  font-weight: 600;
}

/* In the mobile drawer the list is always open — no room for a hover menu. */
.atar-lang--mobile {
  display: block;
  margin: 10px 0 25px;
}

.atar-lang--mobile .atar-lang__btn { display: none; }

.atar-lang--mobile .atar-lang__menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  min-width: 0;
  box-shadow: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.atar-lang--mobile .atar-lang__opt {
  padding: 8px 16px;
  border: 1px solid rgba(var(--atar-wood-rgb, 107, 74, 49), 0.3);
  border-radius: 22px;
}

@media (max-width: 575px) {
  .atar-lang__btn { height: 36px; padding: 0 12px; font-size: 13px; }
  .atar-lang__btn i { display: none; }
}

/* Cyrillic has no small-caps tradition and the theme's tracking was tuned
   for Latin; both look wrong on Russian. */
html[lang="ru"] {
  --procounsel-heading-font: "Playfair Display", Georgia, serif;
  --procounsel-font: "Manrope", "Segoe UI", sans-serif;
}

html[lang="ru"] * { text-transform: none !important; }

html[lang="ru"] h1,
html[lang="ru"] h2,
html[lang="ru"] h3,
html[lang="ru"] .sec-title__tagline,
html[lang="ru"] .procounsel-btn {
  letter-spacing: normal;
}
