/* ── Shanghai Customs — navy/gold official customs theme (ref: beijing-custom.com) ──
   NOTE: variable NAMES are kept from the earlier red theme for stability
   (58 call-sites); their VALUES are now the customs navy palette:
   --red* = navy primary, --gold* = golden-yellow accent (hover/highlights). */
:root {
  --gold: #f0b429;
  --gold-2: #ffd24d;
  --gold-deep: #c99a1e;
  --red: #1e63c8;
  --red-2: #3b82e0;
  --red-deep: #14498f;
  --ink: #1f2933;
  --ink-2: #323f4b;
  --ink-soft: #3e4c59;
  --muted: #7b8794;
  --cream: #f7f9fc;
  --cream-2: #eef2f7;
  --bg: #ffffff;
  --line: #d9e2ec;
  --radius: 10px;
  --radius-sm: 8px;
  --shadow: 0 14px 44px rgba(18, 38, 63, 0.14);
  --shadow-sm: 0 4px 18px rgba(18, 38, 63, 0.08);
  --gold-grad: linear-gradient(135deg, #ffd24d 0%, #f0b429 100%);
  --red-grad: linear-gradient(135deg, #3b82e0 0%, #14498f 100%);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto,
    "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.muted { color: var(--muted); }

/* Scroll-reveal (only active once JS adds .js-reveal) */
.js-reveal .reveal { opacity: 0; transform: translateY(26px); }
.js-reveal .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}

/* ── Top bar ── */
.topbar { background: var(--red-deep); color: #c3d0e0; font-size: 13px; border-bottom: 2px solid var(--gold); }
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; height: 40px; flex-wrap: wrap;
}
.topbar a { color: #dbe6f2; }
.topbar a:hover { color: #fff; }
.topbar .tb-links { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar .tb-links span { display: inline-flex; align-items: center; gap: 6px; }

/* ── Header ── */
.site-header {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  position: sticky; top: 0; z-index: 50;
  transition: box-shadow .3s ease, border-color .3s ease, height .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(27, 24, 19, 0.08);
  border-bottom-color: var(--line);
}
.site-header .container { display: flex; align-items: center; gap: 18px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand .logo {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--red-grad); color: var(--gold-2); font-weight: 900; font-size: 24px;
  display: grid; place-items: center; box-shadow: 0 6px 18px rgba(18, 38, 63, .35);
  border: 1.5px solid rgba(240, 180, 41, .5);
  letter-spacing: -.5px; overflow: hidden;
}
/* When a real logo image is set, drop the gold box styling and just show it. */
.brand .logo.has-img {
  width: 52px; height: 52px; background: none; box-shadow: none; border: none; border-radius: 0;
}
.brand .logo.has-img img { width: 100%; height: 100%; object-fit: contain; }
.brand .name { font-size: 23px; font-weight: 800; color: var(--ink); letter-spacing: -.3px; }
.brand .name small { display: block; font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .2px; }

.nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav a {
  color: var(--ink-soft); font-weight: 600; font-size: 14.5px;
  padding: 9px 14px; border-radius: 10px; white-space: nowrap; position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { background: var(--cream-2); color: var(--ink); }

/* Language switch */
.lang-switch {
  background: transparent; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 8px 14px; font-weight: 800; font-size: 13px; color: var(--ink);
  cursor: pointer; white-space: nowrap; margin-left: 6px; line-height: 1;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.lang-switch:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.nav-toggle { display: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px; font-weight: 800; font-size: 15px;
  cursor: pointer; border: none; transition: transform .12s ease, box-shadow .25s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 28px rgba(26, 54, 93, .32); }
.btn-primary:hover { background: var(--red-deep); box-shadow: 0 14px 34px rgba(26, 54, 93, .42); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); color: #fff; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 82% -10%, #3b82e0 0%, #1e63c8 45%, #123c7a 100%);
  color: #fff;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-orbs span {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5;
  background: var(--gold-grad);
}
.hero-orbs span:nth-child(2) { background: var(--red-grad); }
.hero-orbs span:nth-child(1) { width: 360px; height: 360px; top: -90px; right: -60px; animation: float1 14s ease-in-out infinite; }
.hero-orbs span:nth-child(2) { width: 280px; height: 280px; bottom: -120px; left: -40px; opacity: .35; animation: float2 18s ease-in-out infinite; }
.hero-orbs span:nth-child(3) { width: 160px; height: 160px; top: 40%; left: 55%; opacity: .25; animation: float1 20s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px,30px) scale(1.08); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-24px) scale(1.12); } }

.hero .container { position: relative; z-index: 1; padding: 92px 22px 64px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  font-size: 13px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--gold-2); background: rgba(244, 180, 0, .12);
  border: 1px solid rgba(244, 180, 0, .35); padding: 7px 14px; border-radius: 30px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px); line-height: 1.08; margin: 0 0 20px;
  max-width: 880px; font-weight: 850; letter-spacing: -1px;
}
.hero p { font-size: 19px; color: #c3d0e0; max-width: 620px; margin: 0 0 32px; }
.hero .cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero ticker */
.ticker {
  position: relative; z-index: 1; margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12);
  overflow: hidden; padding: 14px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: inline-flex; gap: 38px; white-space: nowrap; animation: ticker 38s linear infinite; }
.ticker-track span { color: #b6c5d6; font-weight: 700; font-size: 15px; display: inline-flex; gap: 38px; }
.ticker-track span::after { content: "◆"; color: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Stats band ── */
.stats { background: var(--cream); border-bottom: 1px solid var(--line); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 40px 22px; }
.stat-item { text-align: center; }
.stat-num { font-size: clamp(30px, 4vw, 44px); font-weight: 850; color: var(--ink); letter-spacing: -1px; line-height: 1; }
.stat-num .suffix { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { margin-top: 8px; font-size: 14px; color: var(--muted); font-weight: 600; }

/* ── Sections ── */
.section { padding: 84px 0; scroll-margin-top: 90px; }
.section.alt { background: var(--cream); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head .eyebrow {
  display: inline-block; color: var(--red); font-weight: 800; font-size: 13px;
  letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 12px;
}
.section-head h2 { position: relative; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 12px; color: var(--ink); font-weight: 850; letter-spacing: -.6px; }
.section-head p { color: var(--muted); margin: 0; font-size: 17px; }

/* ── Grids ── */
.grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.service-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: box-shadow .3s ease, transform .2s ease, border-color .3s ease;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .ic {
  width: 56px; height: 56px; border-radius: 14px; background: var(--cream-2);
  color: var(--red); display: grid; place-items: center; font-size: 26px; margin-bottom: 18px;
  transition: background .3s ease, transform .3s ease, color .3s ease;
}
.service-card:hover .ic { background: var(--red-grad); color: var(--gold-2); transform: scale(1.05) rotate(-4deg); }
.service-card h3 { margin: 0 0 8px; font-size: 19px; color: var(--ink); font-weight: 800; }
.service-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ── Catalog: destinations sidebar + products ── */
.catalog { display: flex; gap: 28px; align-items: flex-start; }
.dest-sidebar {
  width: 250px; flex-shrink: 0; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden;
  position: sticky; top: 96px;
  display: flex; flex-direction: column;
  height: calc(100vh - 120px);
}
.dest-sidebar h3 { margin: 0; padding: 18px 18px; font-size: 16px; color: var(--gold-2); font-weight: 800; background: var(--red-grad); flex-shrink: 0; letter-spacing: .3px; }
.dest-list { flex: 1; overflow-y: auto; }
.dest-item {
  display: flex; align-items: center; gap: 8px; padding: 12px 18px; font-size: 14.5px;
  font-weight: 600; color: var(--ink-soft); border-bottom: 1px solid var(--line);
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.dest-item:last-child { border-bottom: none; }
.dest-item:hover { background: var(--cream); color: var(--red); padding-left: 24px; }
.dest-item .flag { font-size: 15px; }
.dest-item .ar { margin-left: auto; opacity: .4; }
.catalog-main { flex: 1; min-width: 0; }

/* ── Factory & warehouse video carousel ── */
.video-section { background: var(--ink); color: #fff; }
.video-section .section-head h2 { color: #fff; }
.video-section .section-head p { color: rgba(255, 255, 255, .7); }
.video-section .section-head .eyebrow { color: #ffce4d; }
.video-carousel { max-width: 920px; margin: 0 auto; }
.vc-stage { display: flex; align-items: center; gap: 14px; }
.vc-player {
  position: relative; flex: 1; min-width: 0;
  border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow);
  /* Fixed-height stage so any aspect ratio (landscape / portrait / square) fits
     without distortion and without layout jumping when clips have different
     ratios. The video is letterboxed/pillarboxed on black via object-fit. */
  height: clamp(300px, 58vh, 580px);
  display: flex; align-items: center; justify-content: center;
}
.vc-player video {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  display: block; object-fit: contain;
}
.vc-mute {
  position: absolute; right: 12px; bottom: 12px; width: 42px; height: 42px;
  border: none; border-radius: 50%; background: rgba(0, 0, 0, .55); color: #fff;
  font-size: 18px; cursor: pointer; display: grid; place-items: center; transition: background .15s ease;
}
.vc-mute:hover { background: rgba(0, 0, 0, .85); }
.vc-arrow {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .08);
  color: #fff; font-size: 26px; line-height: 1; cursor: pointer; transition: all .15s ease;
}
.vc-arrow:hover { background: var(--gold-grad); color: var(--ink); border-color: transparent; }
.vc-caption { text-align: center; margin: 18px 0 0; font-weight: 700; font-size: 16px; color: #fff; }
.vc-thumbs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.vc-thumb {
  width: 38px; height: 38px; border-radius: 10px; cursor: pointer; font-weight: 800;
  border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .7); transition: all .15s ease;
}
.vc-thumb:hover { color: #fff; border-color: rgba(255, 255, 255, .5); }
.vc-thumb.active { background: var(--gold-grad); color: var(--ink); border-color: transparent; }
@media (max-width: 680px) {
  .vc-stage { gap: 8px; }
  .vc-arrow { width: 40px; height: 40px; font-size: 22px; }
}

/* ── Products ── */
.products-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.product-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card .thumb {
  height: 130px; display: grid; place-items: center; font-size: 46px; overflow: hidden;
  background: linear-gradient(135deg, var(--cream-2), #fff);
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .thumb img { transform: scale(1.07); }
.product-card .pinfo { padding: 13px 15px; }
.product-card .pinfo .en { font-weight: 800; font-size: 14px; color: var(--ink); }
.product-card .pinfo .zh { font-size: 13px; color: var(--muted); }

/* ── News ── */
.news-grid { grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }
.news-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  overflow: hidden; transition: transform .2s ease, box-shadow .3s ease;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-card .cover {
  margin: -26px -26px 18px; height: 180px; width: calc(100% + 52px);
  object-fit: cover; background: var(--cream-2);
}
.news-card:hover .cover img { transform: none; }
.news-card .meta { font-size: 12px; color: var(--muted); margin-bottom: 10px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.news-card .badge { background: var(--gold-grad); color: var(--ink); border-radius: 20px; padding: 1px 9px; font-weight: 800; font-size: 11px; }
.news-card h3 { margin: 0 0 10px; font-size: 18px; color: var(--ink); line-height: 1.35; font-weight: 800; }
.news-card p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; flex: 1; }
.news-card .read { font-weight: 800; font-size: 14px; color: var(--red); }
.news-card .read:hover { color: var(--red-deep); }

/* ── Article detail ── */
.article-wrap { max-width: 820px; }
.article-back { display: inline-block; font-weight: 800; margin-bottom: 20px; color: var(--red); }
.article-title { font-size: clamp(26px, 4vw, 36px); color: var(--ink); margin: 0 0 14px; line-height: 1.22; font-weight: 850; letter-spacing: -.5px; }
.article-meta {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  color: var(--muted); font-size: 13px; margin-bottom: 26px;
  padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.article-meta .badge { background: var(--gold-grad); color: var(--ink); border-radius: 20px; padding: 1px 9px; font-weight: 800; font-size: 11px; }
.article-cover {
  width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius);
  margin-bottom: 26px; background: var(--cream-2);
}
.article-body p { font-size: 17px; line-height: 1.85; color: var(--ink-soft); margin: 0 0 20px; }

/* ── Contact ── */
.contact-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); align-items: start; }
.contact-card .ic svg { width: 30px; height: 30px; }
.wechat-qr {
  display: block; width: 100%; max-width: 200px; margin: 16px auto 0;
  border-radius: 12px; border: 1px solid var(--line); background: #fff;
}
.contact-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-card .ic {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center; font-size: 27px; color: #fff;
}
.ic.wa { background: #25d366; }
.ic.em { background: var(--gold-grad); color: var(--ink); }
.ic.tel { background: var(--ink); }
.ic.wc { background: #07c160; }
.contact-card h3 { margin: 0 0 6px; font-size: 16px; color: var(--ink); font-weight: 800; }
.contact-card a, .contact-card span.val { color: var(--muted); font-size: 14px; word-break: break-word; }
.contact-card a:hover { color: var(--gold-deep); }

/* ── Footer ── */
.site-footer { background: var(--red-deep); color: #b6c5d6; padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: 15px; margin: 0 0 16px; font-weight: 800; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; font-size: 14px; }
.site-footer a { color: #b6c5d6; }
.site-footer a:hover { color: var(--gold-2); }
.footer-brand .name { font-size: 24px; font-weight: 850; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 38px; padding-top: 20px;
  font-size: 13px; color: #8fa2b8; text-align: center;
}

/* ── Page hero (subpages) ── */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(120% 140% at 85% -20%, #3b82e0, #14498f 70%);
  padding: 64px 0; border-bottom: 3px solid var(--gold);
}
.page-hero::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: var(--gold-grad); filter: blur(70px); opacity: .35; top: -120px; right: -60px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 40px); font-weight: 850; letter-spacing: -.6px; }
.page-hero p { margin: 0; color: #c3d0e0; font-size: 17px; }

/* ── Floating WhatsApp ── */
.fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 28px; box-shadow: 0 10px 30px rgba(37, 211, 102, .5);
  animation: pulse 2.4s ease-in-out infinite;
}
.fab:hover { transform: scale(1.08); color: #fff; }
@keyframes pulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.5); } 50% { box-shadow: 0 10px 40px rgba(37,211,102,.85); } }

/* ── States ── */
.loading, .empty { text-align: center; color: var(--muted); padding: 34px; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 860px) {
  .nav { display: none; position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 22px; box-shadow: var(--shadow-sm); }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; }
  .nav a { display: block; }
  .nav-toggle {
    display: grid; place-items: center; margin-left: 6px;
    width: 44px; height: 44px; border-radius: 10px; border: 1.5px solid var(--line);
    background: #fff; font-size: 20px; cursor: pointer;
  }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .catalog { flex-direction: column; }
  .dest-sidebar { width: 100%; position: static; height: auto; }
  .dest-list { flex: none; max-height: 280px; }
}
@media (max-width: 520px) {
  .stats .container { grid-template-columns: repeat(2, 1fr); }
}

/* ── Language dropdown (EN / 中文 / العربية) ── */
.lang-switch-wrap { position: relative; display: inline-flex; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; }
.lang-switch .ls-caret { font-size: 10px; opacity: .8; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 80;
  min-width: 140px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow); padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.lang-menu.open { opacity: 1; visibility: visible; transform: none; }
.lang-opt {
  display: block; width: 100%; text-align: left; border: none; background: none;
  padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 700;
  color: var(--ink-soft); cursor: pointer; transition: background .15s ease, color .15s ease;
}
.lang-opt:hover { background: var(--cream-2); color: var(--red); }
.lang-opt.active { background: var(--red-grad); color: var(--gold-2); }
[dir="rtl"] .lang-menu { right: auto; left: 0; text-align: right; }
[dir="rtl"] .lang-opt { text-align: right; }

/* ── RTL (Arabic) mirroring ── */
[dir="rtl"] body { font-family: "Segoe UI", Tahoma, "Geeza Pro", "Noto Naskh Arabic", "PingFang SC", Arial, sans-serif; }
[dir="rtl"] .brand { margin-right: 0; margin-left: auto; }
[dir="rtl"] .dest-item:hover { padding-left: 18px; padding-right: 24px; }
[dir="rtl"] .dest-item .ar { margin-left: 0; margin-right: auto; transform: scaleX(-1); }
[dir="rtl"] .hero-orbs span:nth-child(1) { right: auto; left: -60px; }
[dir="rtl"] .hero p, [dir="rtl"] .hero h1 { margin-left: 0; }
[dir="rtl"] .page-hero::after { right: auto; left: -60px; }
[dir="rtl"] .fab { right: auto; left: 24px; }
[dir="rtl"] .news-card .read, [dir="rtl"] .article-back { direction: rtl; }
[dir="rtl"] .ticker-track { animation-name: ticker-rtl; }
@keyframes ticker-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
