/* =========================================================
   ROTA VIP TAKSİ — stylesheet
   Design system: near-black/anthracite base, brushed-gold accent
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* ---------- Design tokens ---------- */
:root{
  --ink: #08090a;
  --ink-2: #0e0f12;
  --charcoal: #16181c;
  --charcoal-2: #1e2126;
  --hairline: rgba(201,161,91,0.16);
  --hairline-strong: rgba(201,161,91,0.30);

  --gold: #c6a15b;
  --gold-light: #e9d9ae;
  --gold-dim: #8a7440;

  --paper: #f4f1ea;
  --muted: #aca690;
  --muted-2: #726c5c;

  --whatsapp: #25d366;
  --whatsapp-dark: #1aa851;
  --call: #e2483d;
  --call-dark: #c23830;

  --shadow-card: 0 18px 50px rgba(0,0,0,0.35);
  --shadow-btn: 0 10px 24px rgba(0,0,0,0.35);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(.16,.8,.24,1);
  --dur: .5s;

  --topbar-h: 40px;
  --navbar-h: 78px;
  --header-h: calc(var(--topbar-h) + var(--navbar-h));
  --bottombar-h: 68px;

  --container: 1220px;
}

[lang="ar"]{ --font-display: var(--font-body); }

@media (max-width: 900px){
  :root{
    --navbar-h: 64px;
    --header-h: 64px;
    --bottombar-h: 64px;
  }
}

/* ---------- Base ---------- */
html{
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}
body{
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.65;
  padding-top: var(--header-h);
  padding-bottom: var(--bottombar-h);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--paper);
  letter-spacing: 0.005em;
}
h1{ font-size: clamp(2.1rem, 4.6vw, 3.7rem); }
h2{ font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3{ font-size: 1.28rem; }
p{ color: var(--muted); }
strong, b{ color: var(--paper); font-weight: 700; }

.section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 24px;
}
.section-narrow{ max-width: 860px; }
.section{ padding-block: clamp(64px, 9vw, 108px); }
.section-alt{ background: var(--charcoal); }

.section-head{ text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: 48px; }
.section-head h2{ margin-top: 10px; }
.section-sub{ margin-top: 14px; font-size: 1.05rem; }

.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light);
}
.eyebrow-dark{ color: var(--gold); }
.eyebrow::before{
  content: ""; display: inline-block; width: 22px; height: 1px; background: currentColor; opacity: 0.7;
}
[dir="rtl"] .eyebrow::before{ order: 1; }

/* ---------- Icons ---------- */
.icon{ width: 20px; height: 20px; flex-shrink: 0; }
.icon-xs{ width: 15px; height: 15px; }
.icon-sm{ width: 17px; height: 17px; }
.icon-lg{ width: 30px; height: 30px; }
.icon-xl{ width: 38px; height: 38px; color: var(--gold); }
[dir="rtl"] .icon-arrow-rtl{ transform: scaleX(-1); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
  box-shadow: var(--shadow-btn);
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn-lg{ padding: 17px 32px; font-size: 1.02rem; border-radius: var(--radius-md); }
.btn-block{ width: 100%; }
.btn-whatsapp{ background: var(--whatsapp); color: #06210f; }
.btn-whatsapp:hover{ background: var(--whatsapp-dark); }
.btn-call{ background: var(--call); color: #2b0806; }
.btn-call:hover{ background: var(--call-dark); }
.btn-nav{ padding: 11px 20px; font-size: 0.85rem; }

/* ================= TOPBAR ================= */
.topbar{
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--topbar-h);
  background: var(--ink-2);
  border-bottom: 1px solid var(--hairline);
}
.topbar-inner{
  max-width: var(--container); margin: 0 auto; padding-inline: 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.topbar-left{ display: flex; align-items: center; gap: 22px; min-width: 0; }
.topbar-item{
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: var(--muted); white-space: nowrap;
  transition: color .2s;
}
.topbar-item:hover{ color: var(--gold-light); }
.topbar-item .icon{ color: var(--gold-dim); }
.topbar-right{ display: flex; align-items: center; gap: 22px; }
.topbar-tagline{
  display: flex; align-items: center; gap: 7px;
  font-size: 0.76rem; color: var(--gold-light); font-weight: 600; letter-spacing: 0.02em;
  white-space: nowrap;
}
.topbar-tagline .icon{ color: var(--gold); }

.lang-switch{ display: flex; align-items: center; gap: 2px; }
.lang-btn{
  display: flex; align-items: center; gap: 5px;
  padding: 5px 8px; border-radius: var(--radius-sm);
  font-size: 0.76rem; font-weight: 700; color: var(--muted);
  transition: background-color .2s, color .2s;
}
.lang-btn span{ letter-spacing: 0.03em; }
.lang-btn:hover{ background: rgba(201,161,91,0.1); color: var(--paper); }
.lang-btn.active{ background: rgba(201,161,91,0.16); color: var(--gold-light); }

@media (max-width: 900px){ .topbar{ display: none; } }

/* ================= NAVBAR ================= */
.navbar{
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 55;
  height: var(--navbar-h);
  background: rgba(10,11,13,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.navbar.scrolled{ border-color: var(--hairline); box-shadow: 0 12px 30px rgba(0,0,0,0.35); }
@media (max-width: 900px){ .navbar{ top: 0; } }

.navbar-inner{
  max-width: var(--container); margin: 0 auto; padding-inline: 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark-svg{ width: 42px; height: 42px; }
.brand-text{
  font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: 0.03em;
  color: var(--paper); white-space: nowrap;
}
.brand-text em{ font-style: normal; color: var(--gold-light); font-weight: 700; }

.nav-links{ display: flex; align-items: center; gap: 30px; }
.nav-links a{
  font-size: 0.88rem; font-weight: 600; color: var(--muted);
  position: relative; padding-block: 4px;
  transition: color .2s;
}
.nav-links a::after{
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px;
  background: var(--gold); transition: width .25s var(--ease);
}
[dir="rtl"] .nav-links a::after{ left: auto; right: 0; }
.nav-links a:hover{ color: var(--paper); }
.nav-links a:hover::after{ width: 100%; }

.hamburger{ display: none; width: 42px; height: 42px; position: relative; flex-shrink: 0; }
.hamburger .icon{ position: absolute; top: 50%; left: 50%; width: 24px; height: 24px; transform: translate(-50%,-50%); transition: opacity .2s, transform .2s; }
.icon-menu-close{ opacity: 0; transform: translate(-50%,-50%) rotate(-90deg); }
.hamburger[aria-expanded="true"] .icon-menu-open{ opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.hamburger[aria-expanded="true"] .icon-menu-close{ opacity: 1; transform: translate(-50%,-50%) rotate(0); }

@media (max-width: 900px){
  .nav-links{ display: none; }
  .btn-nav{ display: none; }
  .hamburger{ display: block; }
}

/* ================= MOBILE MENU ================= */
.mobile-menu{
  position: fixed; top: var(--navbar-h); left: 0; right: 0; z-index: 70;
  background: var(--ink-2);
  border-bottom: 1px solid var(--hairline-strong);
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; gap: 22px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
  max-height: calc(100vh - var(--navbar-h)); overflow-y: auto;
}
.mobile-menu.open{ pointer-events: auto; transform: translateY(0); opacity: 1; }
.mobile-nav{ display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a{
  font-size: 1.08rem; font-weight: 600; padding: 12px 4px; border-bottom: 1px solid var(--hairline);
}
.mobile-lang-label{ display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.lang-switch-mobile{ flex-wrap: wrap; gap: 8px; }
.lang-switch-mobile .lang-btn{ border: 1px solid var(--hairline); padding: 8px 14px; font-size: 0.85rem; }
.mobile-contact{ display: flex; flex-direction: column; gap: 10px; }
.mobile-contact a{ display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--muted); }
.mobile-contact .icon{ color: var(--gold-dim); }

.mobile-menu-backdrop{
  position: fixed; top: var(--navbar-h); left: 0; right: 0; bottom: 0; z-index: 65;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-menu-backdrop.open{ opacity: 1; pointer-events: auto; }

@media (min-width: 901px){
  .mobile-menu, .mobile-menu-backdrop{ display: none !important; }
}

/* ================= HERO ================= */
.hero{
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-art{ position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg-img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-svg{ position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-overlay{
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(7,8,9,0.94) 0%, rgba(7,8,9,0.82) 30%, rgba(7,8,9,0.52) 55%, rgba(7,8,9,0.18) 78%, rgba(7,8,9,0.05) 100%);
}
[dir="rtl"] .hero-overlay{
  background: linear-gradient(to left, rgba(7,8,9,0.94) 0%, rgba(7,8,9,0.82) 30%, rgba(7,8,9,0.52) 55%, rgba(7,8,9,0.18) 78%, rgba(7,8,9,0.05) 100%);
}
.hero-content{
  position: relative; z-index: 2;
  max-width: var(--container); width: 100%;
  margin-inline: auto; padding-inline: 24px;
  display: flex; flex-direction: column; align-items: flex-start;
  padding-block: 64px;
}
.hero-content .eyebrow{
  background: rgba(201,161,91,0.1); border: 1px solid var(--hairline-strong);
  padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 22px;
}
.hero-content .eyebrow::before{ display: none; }
.hero-content h1{ max-width: 640px; margin-bottom: 22px; }
.hero-content h1 .accent{ color: var(--gold-light); }
.hero-desc{
  max-width: 520px; font-size: 1.08rem; color: #d8d4c8; margin-bottom: 34px;
}
.hero-buttons{ display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-features{
  display: flex; flex-wrap: wrap; gap: 14px 30px;
}
.hero-features li{ display: flex; align-items: center; gap: 9px; font-size: 0.88rem; font-weight: 600; color: var(--paper); }
.hero-features .icon{ color: var(--gold); }

.scroll-hint{
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1.5px solid var(--hairline-strong); border-radius: var(--radius-pill);
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-hint span{ width: 4px; height: 8px; border-radius: 2px; background: var(--gold); animation: scrollDot 1.8s ease infinite; }
@keyframes scrollDot{ 0%{ opacity:1; transform: translateY(0);} 70%{opacity:0; transform: translateY(12px);} 100%{opacity:0;} }

.route-pin circle:nth-child(2){ animation: pinPulse 2.6s ease-in-out infinite; }
.route-pin[data-pin="2"] circle:nth-child(2){ animation-delay: .3s; }
.route-pin[data-pin="3"] circle:nth-child(2){ animation-delay: .6s; }
@keyframes pinPulse{ 0%,100%{ filter: drop-shadow(0 0 0 rgba(233,217,174,0)); } 50%{ filter: drop-shadow(0 0 6px rgba(233,217,174,0.9)); } }

@media (max-width: 900px){
  .hero-content{ align-items: center; text-align: center; padding-block: 48px; }
  .hero-content h1, .hero-desc{ max-width: 100%; }
  .hero-buttons, .hero-features{ justify-content: center; }
  .hero-overlay{ background: linear-gradient(180deg, rgba(7,8,9,0.55) 0%, rgba(7,8,9,0.88) 55%, rgba(7,8,9,0.97) 100%); }
  [dir="rtl"] .hero-overlay{ background: linear-gradient(180deg, rgba(7,8,9,0.55) 0%, rgba(7,8,9,0.88) 55%, rgba(7,8,9,0.97) 100%); }
}
@media (max-width: 480px){
  .hero-buttons{ flex-direction: column; width: 100%; }
  .hero-buttons .btn{ width: 100%; }
}

/* ================= ABOUT ================= */
.about-grid{ display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.about-copy p{ margin-bottom: 16px; }
.about-copy h2{ margin-bottom: 20px; }
.about-visual{ display: flex; justify-content: center; }
.about-visual img{ width: 100%; max-width: 400px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }

.stat-row{ display: flex; gap: 34px; margin-top: 32px; flex-wrap: wrap; }
.stat{ display: flex; flex-direction: column; }
.stat strong{ font-family: var(--font-display); font-size: 2rem; color: var(--gold-light); line-height: 1; }
.stat span{ margin-top: 6px; font-size: 0.82rem; color: var(--muted); font-weight: 600; }

@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-copy{ order: 2; }
  .about-visual{ order: 1; }
  .stat-row{ justify-content: center; }
  .stat{ align-items: center; }
}

/* ================= CARDS (services / fleet / regions) ================= */
.card-grid{ display: grid; gap: 26px; }
.card-grid-3{ grid-template-columns: repeat(3, 1fr); }
.card{
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.section-alt .card{ background: var(--ink-2); }
.card:hover{ transform: translateY(-6px); border-color: var(--hairline-strong); box-shadow: var(--shadow-card); }
.card-icon{
  width: 62px; height: 62px; border-radius: var(--radius-md);
  background: rgba(201,161,91,0.1); border: 1px solid var(--hairline-strong);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  color: var(--gold);
}
.card h3{ margin-bottom: 12px; }
.card p{ font-size: 0.95rem; margin-bottom: 22px; }
.card-cta{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--gold-light);
}
.card-cta .icon{ transition: transform .25s var(--ease); }
.card-cta:hover .icon{ transform: translateX(4px); }
[dir="rtl"] .card-cta:hover .icon{ transform: translateX(-4px); }
.card-cta-solid{
  display: flex; justify-content: center; text-align: center;
  background: var(--gold); color: #241d0e; text-transform: uppercase;
  padding: 13px 20px; border-radius: var(--radius-sm); font-size: 0.82rem; letter-spacing: 0.04em;
  transition: background-color .25s;
}
.card-cta-solid:hover{ background: var(--gold-light); }

.fleet-img, .region-img{
  border-radius: var(--radius-md); overflow: hidden; margin-bottom: 22px;
  background: var(--ink-2); aspect-ratio: 16/10;
}
.fleet-img img, .region-img img{ width: 100%; height: 100%; object-fit: cover; }
.fleet-features{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.fleet-features li{ display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.fleet-features .icon{ color: var(--gold-dim); }

@media (max-width: 900px){ .card-grid-3{ grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* ================= WHY US ================= */
.why-section{ background: var(--charcoal); position: relative; }
.why-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.why-item{ text-align: center; }
.why-item h3{ margin: 18px 0 10px; font-size: 1.1rem; }
.why-item p{ font-size: 0.9rem; }
@media (max-width: 900px){ .why-grid{ grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }
@media (max-width: 480px){ .why-grid{ grid-template-columns: 1fr; gap: 32px; } }

/* ================= FAQ ================= */
.accordion{ display: flex; flex-direction: column; gap: 14px; }
.accordion-item{
  background: var(--charcoal-2); border: 1px solid var(--hairline); border-radius: var(--radius-md);
  overflow: hidden;
}
.accordion-trigger{
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: start;
  font-size: 1.02rem; font-weight: 700; color: var(--paper);
}
.accordion-trigger .icon{ color: var(--gold); transition: transform .3s var(--ease); flex-shrink: 0; }
.accordion-trigger[aria-expanded="true"] .icon{ transform: rotate(180deg); }
.accordion-panel{
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease);
}
.accordion-panel p{ padding: 0 24px 22px; font-size: 0.95rem; }

/* ================= CONTACT CTA ================= */
.contact-cta{ background: linear-gradient(160deg, var(--charcoal) 0%, var(--ink-2) 100%); }
.contact-cta-inner{
  text-align: center; max-width: 640px; margin-inline: auto;
  padding: 56px 40px; border-radius: var(--radius-lg);
  background: rgba(201,161,91,0.05); border: 1px solid var(--hairline-strong);
}
.contact-cta-inner p{ margin: 16px 0 30px; font-size: 1.05rem; }
.contact-cta-inner .hero-buttons{ justify-content: center; margin-bottom: 0; }

@media (max-width: 640px){
  .contact-cta-inner{ padding: 40px 22px; }
  .contact-cta-inner .hero-buttons{ flex-direction: column; }
  .contact-cta-inner .btn{ width: 100%; }
}

/* ================= FOOTER ================= */
.footer{ background: var(--ink-2); border-top: 1px solid var(--hairline); padding-top: 64px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer-col h4{ font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul{ display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li, .footer-col ul a{ font-size: 0.9rem; color: var(--muted); transition: color .2s; }
.footer-col ul a:hover{ color: var(--gold-light); }
.footer-brand p{ margin-top: 16px; font-size: 0.9rem; max-width: 320px; }
.footer-contact a, .footer-tagline{ display: flex; align-items: center; gap: 9px; }
.footer-contact .icon, .footer-tagline .icon{ color: var(--gold-dim); }
.footer-bottom{
  border-top: 1px solid var(--hairline); padding: 22px 24px;
  text-align: center; font-size: 0.82rem; color: var(--muted-2);
}

@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; text-align: center; }
  .footer-contact a, .footer-tagline{ justify-content: center; }
  .footer-brand p{ margin-inline: auto; }
}

/* ================= BOTTOM FIXED BAR ================= */
.bottom-bar{
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  height: var(--bottombar-h);
  display: flex;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
}
.bottom-bar-btn{
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.92rem;
  transition: filter .2s;
}
.bottom-bar-btn:hover{ filter: brightness(1.08); }
.bottom-bar-wa{ background: var(--whatsapp); color: #06210f; }
.bottom-bar-call{ background: var(--call); color: #2b0806; }

@media (min-width: 901px){
  .bottom-bar{ max-width: 420px; left: auto; right: 24px; bottom: 20px; border-radius: var(--radius-md); overflow: hidden; }
  .bottom-bar-btn{ padding-block: 16px; }
}

/* ================= SCROLL REVEAL ================= */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .scroll-hint span, .route-pin circle:nth-child(2){ animation: none; }
  .btn:hover, .card:hover{ transform: none; }
  *{ scroll-behavior: auto !important; }
}

/* ================= RTL fine-tuning ================= */
[dir="rtl"] .brand{ flex-direction: row; }
[dir="rtl"] .accordion-trigger{ text-align: right; }
