:root {
  --bg: #d9d9d9;
  --surface: #efefef;
  --surface-2: #f8f8f8;
  --text: #262626;
  --muted: #666666;
  --gold: #c7a43a;
  --gold-deep: #9d7b1e;
  --line: #bcbcbc;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Tahoma, Arial, sans-serif;
}

body.inner-page {
  background:
    linear-gradient(rgba(235, 235, 235, 0.92), rgba(218, 218, 218, 0.9)),
    url("./saudi-desert-bg.jpg") center / cover fixed no-repeat;
}

body.home-page {
  overflow: hidden;
}

body.home-page-classic {
  overflow: auto;
}

body.intro-pending,
body.intro-playing {
  overflow: hidden;
}

.home-intro {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.home-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(239, 239, 239, 0.9);
  backdrop-filter: blur(3px);
  transition:
    opacity 0.62s ease,
    backdrop-filter 0.62s ease;
}

.home-intro-logo,
.home-intro-slogan {
  position: absolute;
  z-index: 1;
  opacity: 0;
  will-change: transform, opacity, filter;
  transition:
    transform 2.5s cubic-bezier(0.18, 0.84, 0.22, 1),
    opacity 0.95s ease,
    filter 1.2s ease;
}

.home-intro-logo {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
}

.home-intro-logo::after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -20%;
  width: 18%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 38%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.18) 62%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg) translateX(0);
  opacity: 0;
  pointer-events: none;
}

.home-intro-logo img {
  width: min(42vw, 430px);
  display: block;
  filter:
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.16))
    brightness(1.01);
}

.home-intro-slogan {
  top: calc(50% + 120px);
  left: 50%;
  transform: translate(-50%, -50%);
  color: #111;
  font-family: "Diwan Thuluth", "Diwani Jali", "Aref Ruqaa", serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  gap: 18px;
  align-items: center;
  transition-delay: 0s;
}

.intro-word {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.intro-word.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.intro-pending .header-logo,
body.intro-pending .footer-slogan,
body.intro-playing .header-logo,
body.intro-playing .footer-slogan {
  opacity: 0;
}

body.intro-complete .home-intro {
  display: none;
}

.home-intro.is-returning .home-intro-logo,
.home-intro.is-returning .home-intro-slogan {
  filter: blur(0.2px);
}

.home-intro.is-fading::before {
  opacity: 0;
  backdrop-filter: blur(0);
}

.home-intro.is-returning .home-intro-slogan {
  transition-duration: 2.8s, 0.95s, 1.2s;
}

.home-intro.is-glowing .home-intro-logo::after {
  opacity: 1;
  animation: intro-logo-shine 1.8s ease;
}

@media (prefers-reduced-motion: reduce) {
  .home-intro {
    display: none;
  }

  body.intro-pending .header-logo,
  body.intro-pending .footer-slogan {
    opacity: 1;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.home-viewport {
  width: 100%;
  height: 100vh;
}

.home-layout {
  display: grid;
  grid-template-columns: 43% 57%;
  width: 100%;
  height: 100%;
}

.home-video-pane {
  position: relative;
  background:
    linear-gradient(rgba(26, 26, 26, 0.08), rgba(26, 26, 26, 0.42)),
    linear-gradient(180deg, #b7965a 0%, #8c6d3e 50%, #4a433d 100%);
}

.video-note {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: min(360px, calc(100% - 22px));
  padding: 22px 18px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: rgba(99, 99, 99, 0.28);
  color: #fff;
}

.video-note span,
.video-note strong {
  display: block;
}

.video-note span {
  margin-bottom: 12px;
  color: #f1d46d;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
}

.video-note strong {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.15;
}

.home-info-pane {
  position: relative;
  background: #e1e1e1;
  border-top: 6px solid #2f2f2f;
}

.home-english {
  position: absolute;
  top: 56px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 74px;
  background: #f2f2f2;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.home-mark {
  position: absolute;
  top: 42px;
  right: 48px;
}

.home-mark img {
  width: 112px;
}

.home-nav-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 58px 0 70px;
}

.home-tabs {
  display: grid;
  gap: 24px;
}

.home-tab {
  display: block;
  min-width: 260px;
  padding: 18px 28px 14px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  background: linear-gradient(180deg, #f7f7f7 0%, #e8e8e8 100%);
  border: 1px solid #cfcfcf;
  border-bottom: 2px solid var(--gold);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.home-tab.active {
  background: linear-gradient(180deg, #ffffff 0%, #ebebeb 100%);
}

.home-menu {
  background: #efefef;
  border: 1px solid #cfcfcf;
  border-top: 0;
}

.home-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 1px solid var(--gold-deep);
}

.home-menu a:last-child {
  border-bottom: 0;
}

.home-search {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 18px;
}

.home-search input {
  width: 270px;
  height: 34px;
  border: 1px solid #9d9d9d;
  background: #fff;
}

.home-search button {
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--gold-deep);
  background: #dfb517;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.utility-bar {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 10px 18px 0;
  font-size: 16px;
}

.utility-home {
  direction: ltr;
  justify-content: flex-start;
  padding: 8px 18px 0;
  font-size: 17px;
  font-weight: 700;
}

.classic-header {
  display: block;
  min-height: 160px;
}

.classic-header.compact {
  min-height: 120px;
}

.logo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 22px 10px 10px;
  background: #dddddd;
}

.logo-wrap img,
.footer-brand img {
  display: block;
}

.logo-wrap img {
  width: 118px;
}

.header-main {
  position: relative;
  background: #f3f3f3;
  border-bottom: 2px solid var(--gold);
  border-top-right-radius: 22px;
  border-top-left-radius: 22px;
}

.header-logo {
  position: absolute;
  top: 10px;
  right: 71px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 82px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.header-logo::before {
  content: "";
  position: absolute;
  inset: 4px 16px 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 320ms ease;
}

.header-logo img {
  position: relative;
  top: 2px;
  z-index: 1;
  width: 228px;
  display: block;
  max-width: none;
  margin: 0 auto;
  transition: transform 480ms ease, filter 480ms ease;
}

.header-logo::after {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -24%;
  width: 22%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 38%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.1) 62%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-22deg) translateX(0);
  opacity: 0;
  pointer-events: none;
}

body.intro-complete .header-logo::before {
  opacity: 1;
}

body.intro-complete .header-logo img {
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.1));
}

body.intro-complete .header-logo.is-shining::after {
  opacity: 1;
  animation: logo-shine-sweep 1.4s ease;
}

body.intro-complete .header-logo.is-shining img {
  transform: scale(1.01);
  filter:
    drop-shadow(0 9px 16px rgba(0, 0, 0, 0.12))
    brightness(1.015);
}

.header-main::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 100%;
  height: 52px;
  background: #d7d7d7;
  border-top-right-radius: 22px;
  border-top-left-radius: 22px;
}

.header-main::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 4;
  width: 442px;
  height: 54px;
  background: #f5f5f5;
  border-top-left-radius: 56px;
  border-top-right-radius: 56px;
  clip-path: polygon(100% 0, 100% 72%, 0 72%, 12% 0);
}

.header-top-row {
  position: relative;
  z-index: 3;
  display: flex;
  direction: ltr;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 52px;
  padding: 0 188px 0 16px;
}

.header-lang-link {
  align-self: center;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 88px;
  color: #3a3a3a;
}

.primary-tabs {
  display: flex;
  direction: rtl;
  gap: 0;
  margin-inline-start: auto;
}

.tab-group {
  position: relative;
}

.tab {
  display: block;
  min-width: 118px;
  padding: 8px 14px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(180deg, #f6f6f6 0%, #ececec 100%);
  border: 1px solid #cfcfcf;
  border-bottom: 2px solid var(--gold);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin: 0;
}

.tab-group + .tab-group {
  margin-inline-start: -14px;
}

.tab.active {
  background: linear-gradient(180deg, #ffffff 0%, #ededed 100%);
}

.tab:hover,
.tab:focus-visible,
.tab-group:hover > .tab {
  color: var(--gold-deep) !important;
  background: linear-gradient(180deg, #fffaf0 0%, #f3e5bf 100%);
  cursor: pointer;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 175px;
  background: rgba(239, 239, 239, 0.88);
  border: 1px solid #cfcfcf;
  border-top: 0;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.submenu.persist {
  display: block;
  position: static;
  box-shadow: none;
  border-top: 1px solid #cfcfcf;
}

.tab-group:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid var(--gold-deep);
  background: rgba(239, 239, 239, 0.78);
  transition: color 160ms ease, background-color 160ms ease;
}

.submenu a:last-child {
  border-bottom: 0;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--gold-deep) !important;
  background: #f6e8b8;
  cursor: pointer;
}

.search-row {
  position: relative;
  z-index: 2;
  display: flex;
  direction: ltr;
  justify-content: flex-start;
  align-items: center;
  min-height: 46px;
  padding: 6px 268px 8px 24px;
  background: #f5f5f5;
  margin-top: -10px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0;
  direction: ltr;
}

.search-box input {
  width: 190px;
  height: 20px;
  border: 1px solid #9f9f9f;
  background: #fff;
}

.search-box button {
  height: 20px;
  border: 1px solid var(--gold-deep);
  background: #e0b717;
  color: #000;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  margin-inline-end: 1px;
}

.hero-banner {
  min-height: calc(100vh - 170px);
  background: #3f372d;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-content {
  padding: 28px 34px 40px;
}

.page-content.narrow {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

body.inner-page .page-content.narrow {
  padding-top: 46px;
  padding-bottom: 64px;
}

body.inner-page .page-content.narrow::before,
body.inner-page .page-content.narrow::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

body.inner-page .page-content.narrow::before {
  top: 26px;
  right: 0;
  width: 280px;
  height: 180px;
  border-radius: 28px;
  filter: blur(0);
  background:
    linear-gradient(rgba(245, 245, 245, 0.78), rgba(245, 245, 245, 0.78)),
    url("./saudi-riyadh-bg.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
  opacity: 0.42;
}

body.inner-page .page-content.narrow::after {
  bottom: 30px;
  left: 10px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(199, 164, 58, 0.16), transparent 72%);
}

.intro-card,
.content-section {
  padding: 24px;
  background: #f5f5f5;
  border: 1px solid #c8c8c8;
  box-shadow: var(--shadow);
}

body.inner-page .content-stack,
body.inner-page .content-section {
  position: relative;
  z-index: 1;
}

body.inner-page .content-stack {
  gap: 24px;
}

body.inner-page .content-section {
  padding: 28px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 244, 244, 0.95) 100%);
  border: 1px solid rgba(188, 188, 188, 0.9);
  border-radius: 24px;
  box-shadow:
    0 18px 40px rgba(31, 31, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  opacity: 0;
  transform: translateY(26px);
  transition:
    transform 520ms ease,
    opacity 520ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

body.inner-page .content-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(199, 164, 58, 0.25) 70%, transparent 100%);
}

body.inner-page .content-section::after {
  content: "";
  position: absolute;
  top: -48px;
  left: -48px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 164, 58, 0.12), transparent 72%);
}

body.inner-page .content-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.inner-page .content-section:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 164, 58, 0.45);
  box-shadow:
    0 22px 44px rgba(31, 31, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.content-section h1,
.content-section h2 {
  margin: 0 0 12px;
  font-size: 32px;
}

body.inner-page .content-section h1,
body.inner-page .content-section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 10px;
  line-height: 1.25;
}

body.inner-page .content-section h1::after,
body.inner-page .content-section h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(199, 164, 58, 0.15));
}

.content-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
}

.content-section p + p,
.content-section ul,
.content-section ol {
  margin-top: 14px;
}

.content-section ul,
.content-section ol {
  padding-right: 20px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
}

.content-section li + li {
  margin-top: 8px;
}

.content-section a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-color: rgba(157, 123, 30, 0.28);
  text-underline-offset: 3px;
}

.content-section strong {
  color: var(--text);
}

body.inner-page .content-section a:hover {
  color: #7e6214;
  text-decoration-color: rgba(157, 123, 30, 0.6);
}

body.inner-page .content-section a[href^="http"],
body.inner-page .content-section a[href^="mailto"],
body.inner-page .content-section a[href^="tel"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(199, 164, 58, 0.12);
  transition: background-color 180ms ease, transform 180ms ease;
}

body.inner-page .content-section a[href^="http"]:hover,
body.inner-page .content-section a[href^="mailto"]:hover,
body.inner-page .content-section a[href^="tel"]:hover {
  background: rgba(199, 164, 58, 0.22);
  transform: translateY(-1px);
}

body.inner-page .content-section ul {
  list-style: none;
  padding-right: 0;
}

body.inner-page .content-section li {
  position: relative;
  padding-right: 18px;
}

body.inner-page .content-section li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 164, 58, 0.16);
}

.vision-highlight {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 22px;
  align-items: stretch;
}

.vision-media {
  min-height: 260px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(16, 16, 16, 0.18), rgba(16, 16, 16, 0.18)),
    url("./saudi-riyadh-bg.jpg") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.vision-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.vision-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(199, 164, 58, 0.14);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vision-point {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(199, 164, 58, 0.18);
}

.vision-point strong,
.vision-point span {
  display: block;
}

.vision-point strong {
  margin-bottom: 8px;
  font-size: 15px;
}

.vision-point span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.two-column {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 18px;
  align-items: start;
}

.side-menu {
  background: #efefef;
  border: 1px solid #c8c8c8;
  box-shadow: var(--shadow);
}

.side-menu a {
  display: block;
  padding: 16px 18px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--gold-deep);
}

.side-menu a:last-child {
  border-bottom: 0;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-section {
  margin-bottom: 0;
}

.classic-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 22px 18px;
  border-top: 1px solid var(--gold);
  background: #fff;
}

.footer-brand {
  display: none;
}

.footer-brand img {
  width: 320px;
  max-width: 100%;
  height: auto;
}

.footer-copy {
  flex: 1;
  text-align: center;
  font-size: 9px;
  font-weight: 500;
  color: #666;
  margin-top: 0;
}

.footer-slogan {
  min-width: 240px;
  text-align: right;
  font-size: 26px;
  font-weight: 700;
  color: #111;
  font-family: "Diwan Thuluth", "Diwani Jali", "Aref Ruqaa", serif;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  word-spacing: 0.1em;
}

.footer-slogan-track {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  white-space: nowrap;
}

.footer-slogan-track span {
  display: inline-block;
}

@keyframes logo-shine-sweep {
  0% {
    transform: skewX(-22deg) translateX(0);
    opacity: 0;
  }

  18% {
    opacity: 0.85;
  }

  100% {
    transform: skewX(-22deg) translateX(620%);
    opacity: 0;
  }
}

@keyframes intro-logo-shine {
  0% {
    transform: skewX(-20deg) translateX(0);
    opacity: 0;
  }

  25% {
    opacity: 0.75;
  }

  100% {
    transform: skewX(-20deg) translateX(560%);
    opacity: 0;
  }
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid #2d2d2d;
  border-radius: 7px;
  font-weight: 700;
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
}

.footer-links span,
.footer-legal span {
  color: #444;
}

.footer-links,
.footer-legal,
.social-links,
.footer-copy,
.footer-slogan {
  position: relative;
  z-index: 1;
}

.classic-footer p {
  margin: 0;
  font-size: 10px;
  color: #666;
}

.footer-legal {
  display: flex;
  gap: 6px;
  font-size: 10px;
  color: #666;
}

@media (max-width: 1100px) {
  body.home-page {
    overflow: auto;
  }

  .home-viewport {
    height: auto;
    min-height: 100vh;
  }

  .home-layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }

  .home-video-pane {
    min-height: 52vh;
  }

  .home-info-pane {
    min-height: 48vh;
    padding-top: 130px;
    border-top-width: 4px;
  }

  .home-english,
  .home-mark,
  .home-nav-wrap {
    position: static;
  }

  .home-english {
    width: 180px;
    height: 58px;
  }

  .home-mark {
    display: flex;
    justify-content: center;
    margin: 0 0 22px;
  }

  .home-nav-wrap {
    padding: 0 18px 32px;
  }

  .home-search input {
    width: 100%;
  }

  .classic-header {
    display: block;
  }

  .header-logo {
    position: static;
    width: 132px;
    height: 96px;
    margin-inline-start: auto;
    padding-bottom: 12px;
    border-radius: 24px 24px 0 0;
  }

  .header-top-row {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 16px;
  }

  .header-lang-link {
    order: 0;
  }

  .header-top-row,
  .primary-tabs,
  .classic-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .tab,
  .submenu,
  .submenu.persist {
    min-width: 100%;
    width: 100%;
  }

  .search-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-brand img {
    width: 220px;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-links,
  .footer-legal {
    flex-wrap: wrap;
  }

  .hero-banner {
    min-height: 520px;
  }

  .vision-highlight,
  .vision-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {

  .home-tab {
    font-size: 1.3rem;
    padding: 14px 18px 10px;
  }

  .home-menu a {
    font-size: 1rem;
  }

  .page-content,
  .classic-footer {
    padding-inline: 16px;
  }

  .hero-banner {
    min-height: 420px;
  }

  .media-note strong {
    font-size: 20px;
  }

  .content-section h1,
  .content-section h2 {
    font-size: 24px;
  }
}

/* ============================================================
   LTR MIRROR (English pages, html[dir="ltr"])
   Additive only — does not affect the Arabic (RTL) pages.
   ============================================================ */
:dir(ltr) .header-logo {
  right: auto;
  left: 71px;
}

:dir(ltr) .header-main::before {
  right: auto;
  left: -1px;
}

:dir(ltr) .header-main::after {
  right: auto;
  left: 0;
  clip-path: polygon(0 0, 0 72%, 100% 72%, 88% 0);
}

:dir(ltr) .header-top-row {
  direction: rtl;
  padding: 0 16px 0 188px;
}

:dir(ltr) .primary-tabs {
  direction: ltr;
}

:dir(ltr) .submenu {
  right: auto;
  left: 0;
}

:dir(ltr) .search-row {
  direction: rtl;
  padding: 6px 24px 8px 268px;
}

:dir(ltr) .search-box {
  direction: rtl;
}

:dir(ltr) body.inner-page .page-content.narrow::before {
  right: auto;
  left: 0;
}

:dir(ltr) body.inner-page .page-content.narrow::after {
  left: auto;
  right: 10px;
}

:dir(ltr) body.inner-page .content-section::before {
  inset: 0 0 auto auto;
  background: linear-gradient(-90deg, var(--gold) 0%, rgba(199, 164, 58, 0.25) 70%, transparent 100%);
}

:dir(ltr) body.inner-page .content-section::after {
  left: auto;
  right: -48px;
}

:dir(ltr) body.inner-page .content-section h1::after,
:dir(ltr) body.inner-page .content-section h2::after {
  right: auto;
  left: 0;
  background: linear-gradient(-90deg, var(--gold), rgba(199, 164, 58, 0.15));
}

:dir(ltr) .footer-slogan {
  text-align: left;
}

@media (max-width: 1100px) {
  :dir(ltr) .header-top-row {
    direction: ltr;
  }
}
