:root {
  --red: #8b1a1a;
  --dark: #111111;
  --light: #f5f5f5;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #888888;
  --radius: 18px;
  --space: clamp(1rem, 2vw, 2rem);
  --section-pad: clamp(4rem, 8vw, 7rem);
  --title-tight: 0.92;
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.22);
  --font-display: "This Appeal", "Barlow Condensed", sans-serif;
  --font-display-ar: "Tokmeh", "IRANSansXVF", "Tajawal", "Cairo", sans-serif;
  --font-body: "Satoshi", "Cairo", sans-serif;
}

/* Fonts Section */
@font-face {
  font-family: "This Appeal";
  src: url("../assets/fonts/ThisAppealFreeDemo-4n38W.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANSansXVF";
  src: local("IRANSans"), url("../assets/fonts/IRANSans.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tokmeh";
  src: url("../assets/fonts/Al - Tuhoo Fonts/Tokmeh/Pesteh.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../assets/fonts/Al - Tuhoo Fonts/Satoshi/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

/* Base Section */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-tap-highlight-color: transparent;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
.container { width: min(1200px, 92vw); margin-inline: auto; }
.section { padding: var(--section-pad) 0; }
.about, .brands, .contact, .faq, .site-footer { overflow: hidden; }
.ghost { letter-spacing: 0.06em; }
.reveal { opacity: 0; transform: translateY(20px); transition: 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Navbar Section */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); transition: box-shadow 0.3s ease; }
.site-header.scrolled { box-shadow: var(--shadow-soft); }
.navbar { min-height: 86px; display: flex; align-items: center; justify-content: flex-start; gap: 1rem; }
.logo-mark { width: 34px; height: 34px; object-fit: contain; }
.nav-links { list-style: none; display: flex; gap: 1.65rem; margin: 0 0 0 1.4rem; padding: 0; }
.nav-links a {
  font-weight: 500;
  letter-spacing: 0.005em;
  color: #7b7b7e;
  transition: color 0.2s ease, font-weight 0.2s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: #2f2f33; outline: none; }
.nav-links a.is-active {
  font-weight: 800;
  color: #1f1f23;
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; margin-inline-start: auto; }
.call-box { display: grid; line-height: 1.1; }
.call-box span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.call-box a { font-weight: 800; font-size: 1.08rem; }
.phone-ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }
.phone-btn, .lang-pill, .btn-dark, .btn-red, .top-btn, .drawer-close {
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.25s ease;
}
.phone-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.phone-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lang-pill { padding: 0.45rem 0.95rem; background: var(--light); border-color: #e5e5e5; }
.lang-pill:hover, .lang-pill:focus-visible { border-color: var(--red); outline: none; }
.lang-trigger {
  min-width: 64px;
  min-height: 52px;
  padding: 0.35rem 0.7rem;
  font-weight: 700;
  font-size: 0.86rem;
  color: #2a2a2a;
  background: #f8f8f8;
  border-color: #e2e2e2;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.lang-switcher { position: relative; }
.lang-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  inset-inline-end: 0;
  min-width: 110px;
  display: grid;
  gap: 0.25rem;
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 1205;
}
.lang-switcher.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-menu button {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 9px;
  padding: 0.45rem 0.55rem;
  text-align: start;
  font-weight: 700;
  color: #2a2a2a;
}
.lang-menu button:hover,
.lang-menu button:focus-visible {
  border-color: #e4d2d2;
  background: #faf5f5;
  outline: none;
}
.desktop-only { display: flex; }
.mobile-only { display: none; }

@media (min-width: 769px) {
  .site-header .hamburger {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
  }
}

.hamburger {
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #fafafa;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hamburger:hover,
.hamburger:focus-visible {
  border-color: #cfcfcf;
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 2px rgba(139, 26, 26, 0.12);
}
.hamburger .h-bar {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: #1f1f1f;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}
.hamburger.open .h-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .h-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}
.hamburger.open .h-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(88vw, 340px);
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 1.2rem 1rem 1.2rem;
  box-shadow: 24px 0 54px rgba(0, 0, 0, 0.2);
  z-index: 1002;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  font-weight: 700;
}
.mobile-drawer a:hover,
.mobile-drawer a:focus-visible {
  background: #f5f5f5;
  color: var(--red);
  outline: none;
}
.drawer-close {
  width: 36px;
  height: 36px;
  justify-self: end;
  border: 1px solid #dedede;
  border-radius: 10px;
  background: #fafafa;
  font-size: 1.35rem;
  color: #2a2a2a;
  display: grid;
  place-items: center;
}
.drawer-close:hover,
.drawer-close:focus-visible {
  border-color: #cfcfcf;
  background: #f0f0f0;
  outline: none;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.35);
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1001;
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  position: relative;
  gap: 1.25rem;
  padding-top: 6rem;
  overflow: hidden;
  isolation: isolate;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}
.hero-title { font-family: var(--font-display); color: var(--red); font-size: clamp(4.2rem, 17vw, 13rem); font-weight: 400; line-height: var(--title-tight); letter-spacing: 0.01em; margin: 0; z-index: 2; text-transform: uppercase; text-shadow: 0 8px 18px rgba(139, 26, 26, 0.14); }
.hero-title-ar-svg {
  display: none;
  width: min(560px, 70vw);
  z-index: 2;
}
.hero-title,
.hero-title-ar-svg {
  position: relative;
  top: -0.15rem;
}
.hero-title-ar-svg svg {
  width: 100%;
  height: auto;
  display: block;
}
.hero-title-ar-svg svg path,
.hero-title-ar-svg svg g {
  filter: none !important;
  stroke: none !important;
}
.hero-subtitle {
  margin: -0.5rem 0 0;
  font-size: clamp(1rem, 2vw, 1.34rem);
  z-index: 2;
  max-width: 760px;
  color: #75757a;
  font-weight: 500;
}
.hero-shape {
  position: absolute;
  width: min(878px, 96vw);
  height: min(179px, 26vh);
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  top: 40.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../assets/images/header-ribbon-bg.png") center/contain no-repeat;
}
.hero-shape-left,
.hero-shape-right {
  display: none;
}
.hero-shape.hero-shape-brands {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: min(878px, 96vw);
  height: 178px;
  margin: -1.35rem auto 0;
  background: url("../assets/images/header-ribbon-bg.png") center/contain no-repeat;
}
.marquee-wrap { width: 100%; overflow: hidden; border-block: 0; margin-top: 1rem; direction: ltr; }
.marquee-track { display: flex; gap: 1rem; width: max-content; padding: 1rem 0; animation: ticker 30s linear infinite; direction: ltr; will-change: transform; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #f4f4f5;
  border-radius: 14px;
  padding: 0.52rem 0.92rem;
  white-space: nowrap;
  border: 1px solid #e8e8ea;
}
.brand-pill img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  background: transparent;
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
}
.scroll-down { display: grid; justify-items: center; gap: 0.5rem; margin-top: 1rem; position: relative; z-index: 3; }
.scroll-btn { width: 40px; height: 40px; border-radius: 999px; background: var(--red); color: var(--white); display: grid; place-items: center; animation: bounce 1.4s infinite; }

/* Why Section */
.why { background: var(--dark); color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 2rem; align-items: center; position: relative; }
.why-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: #d8d8d9;
  margin: 0;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-shadow: none;
}
.why-heading-ar-svg {
  display: none;
  width: min(330px, 58vw);
  margin: 0 auto;
}
.why-heading-ar-svg img {
  width: 100%;
  height: auto;
  display: block;
}
.separator {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 42px;
  grid-column: 2;
  grid-row: 1;
  justify-self: stretch;
  align-self: stretch;
  margin: 0.35rem 0.55rem;
  z-index: 0;
  pointer-events: none;
}
.why-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; grid-column: 2; grid-row: 1; position: relative; z-index: 1; padding: 1.15rem 1.8rem; }
.why-items article { padding: 0.8rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.why-items small { color: #b6b6b6; display: block; }
.why-items strong { font-size: 1.2rem; line-height: 1.35; }

/* About + Management Section */
.about-grid { display: grid; gap: 3rem; grid-template-columns: 1fr 1fr; align-items: center; }
.ghost { font-family: var(--font-display); color: #e6e6e6; font-size: clamp(3rem, 10vw, 8rem); margin: 0; line-height: 0.8; }
.about-copy .ghost {
  font-size: clamp(2.2rem, 5.7vw, 4.6rem);
  line-height: 0.85;
  color: #dfdfe1;
  letter-spacing: 0.035em;
}
.about-copy h2 { margin: -1.2rem 0 0.8rem; font-family: var(--font-display); color: #202021; font-size: clamp(3rem, 7vw, 5.2rem); line-height: var(--title-tight); letter-spacing: 0.02em; }
.about-copy > p:last-of-type {
  max-width: 560px;
  color: rgba(32, 32, 33, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}
.about-copy .btn-dark {
  margin-top: 0.45rem;
  min-width: 132px;
  min-height: 50px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #b9222e 0%, #8d161f 100%);
  color: #fff;
  font-weight: 700;
}
.btn-dark, .btn-red { display: inline-flex; align-items: center; justify-content: center; padding: 0.6rem 1.1rem; border: 1px solid transparent; }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-red { background: var(--red); color: var(--white); }
.btn-dark, .btn-red, .lang-pill, .top-btn, .phone-btn {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.btn-dark:hover, .btn-dark:focus-visible, .btn-red:hover, .btn-red:focus-visible {
  transform: translateY(-2px);
  outline: none;
  filter: brightness(1.04);
}
.btn-dark:focus-visible, .btn-red:focus-visible, .lang-pill:focus-visible, .top-btn:focus-visible, .phone-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.2), 0 8px 18px rgba(0, 0, 0, 0.12);
}
.btn-red {
  background: linear-gradient(135deg, #9f2323, #7b1515);
}
#openModalBtn {
  min-width: 148px;
  min-height: 54px;
  border-radius: 15px;
  border: 1px solid #3c4048;
  background: radial-gradient(130% 110% at 50% -10%, #5b636f 0%, #262a33 34%, #111318 100%);
  color: #ffffff;
  font-weight: 700;
  text-indent: 0;
  overflow: visible;
  box-shadow: 0 8px 20px rgba(16, 20, 28, 0.34), 0 0 14px rgba(255, 255, 255, 0.12) inset;
}
#openModalBtn:hover,
#openModalBtn:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.carousel { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); gap: 1.15rem; overflow: hidden; }
.carousel.carousel-scroll {
  display: flex;
  flex-direction: row;
  grid-auto-flow: unset;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  touch-action: pan-x pinch-zoom;
  padding-bottom: 0.2rem;
  cursor: grab;
}
.carousel.carousel-scroll.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.carousel.carousel-scroll::-webkit-scrollbar {
  height: 6px;
}
.carousel.carousel-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 999px;
}
.manager-card { background: var(--white); border-radius: var(--radius); border: 1px solid #ececec; padding: 1rem; position: relative; box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06); display: flex; flex-direction: column; }
.about-managers.carousel-scroll .manager-card,
.management-track.carousel-scroll .manager-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.about-managers.carousel-scroll .manager-card:hover,
.management-track.carousel-scroll .manager-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}
.manager-card-media { position: relative; border-radius: 12px; overflow: hidden; margin-bottom: 0.35rem; }
.portrait-placeholder { aspect-ratio: 3 / 4; border-radius: 12px; background: linear-gradient(140deg, #d7d7d7, #f2f2f2); }
.manager-photo {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.badge {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--red);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
  max-width: calc(100% - 1.2rem);
  overflow: hidden;
  text-overflow: ellipsis;
}
.manager-card-media .badge {
  position: absolute;
  inset-inline: 0.65rem;
  bottom: 0.55rem;
  text-align: center;
}
.about-managers .manager-card:first-child { transform: none; }
.about-managers .manager-card:last-child { transform: none; }
.about-managers.carousel-scroll .manager-card,
.management-track.carousel-scroll .manager-card {
  flex: 0 0 clamp(240px, 32vw, 300px);
  max-width: 320px;
  scroll-snap-align: start;
  min-height: 0;
}
.manager-card h3 { margin: 0.75rem 0 0.25rem; font-size: 1.15rem; line-height: 1.25; }
.manager-card p { margin: 0; color: #555; font-size: 0.95rem; line-height: 1.55; }
.about-managers-wrap {
  min-width: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.about-managers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  justify-content: center;
  align-items: start;
}
.about-managers .manager-card {
  min-height: 410px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(16, 18, 24, 0.12);
  max-width: none;
  flex: initial;
  display: grid;
  grid-template-rows: 232px minmax(74px, auto) 1fr;
  align-content: start;
}
.about-managers .manager-card:nth-child(1) {
  margin-top: 0;
}
.about-managers .manager-card:nth-child(2) {
  margin-top: 2.15rem;
}
.about-managers .manager-card:nth-child(3) {
  margin-top: 4.3rem;
}
.management-track.carousel-scroll .manager-card p + p {
  margin-top: 0.35rem;
}
.about-managers .manager-card a {
  margin-top: 0.2rem;
  display: inline-block;
  font-size: 0.88rem;
  color: var(--muted);
}
.about-managers .manager-card a:hover,
.about-managers .manager-card a:focus-visible {
  color: var(--red);
  outline: none;
}

/* Brands Section */
.brands-head {
  text-align: center;
  margin: 0 0 1rem;
}
.brands-head .ghost {
  display: none;
}
.brands-head h2 {
  margin: -1rem 0 0.65rem;
  font-family: var(--font-display);
  color: var(--red);
  font-size: clamp(2.7rem, 6.5vw, 4.7rem);
  line-height: var(--title-tight);
  letter-spacing: 0.03em;
}
.brand-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.brands-hero-ar-svg { display: none; margin: 0 auto 1rem; width: min(560px, 82vw); }
.brands-hero-ar-svg img { width: 100%; height: auto; display: block; }
.brand-filter {
  border: 1px solid #e7e7e7;
  background: #f1f1f1;
  color: #4a4a4a;
  border-radius: 14px;
  min-width: 120px;
  padding: 0.55rem 1rem;
  font-weight: 700;
}
.brand-filter.active {
  background: linear-gradient(135deg, #b1212a, #85161c);
  color: var(--white);
  border-color: transparent;
}
.brand-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.brand-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  color: var(--white);
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #333 center/cover no-repeat;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, outline-color 0.28s ease;
  outline: 1px solid transparent;
}
.brand-card::before,
.brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.32s ease;
}
.brand-card::before { opacity: 1; }
.brand-card::after { opacity: 0; }
.brand-card-1 { --bg-bw: url("../assets/images/tuhoobuildingbw.jpg"); --bg-color: url("../assets/images/tuhoobuildingcolored.jpg"); }
.brand-card-2 { --bg-bw: url("../assets/images/crownpaintsbw.jpg"); --bg-color: url("../assets/images/crownpaintscolored.jpg"); }
.brand-card-3 { --bg-bw: url("../assets/images/premirebw.jpg"); --bg-color: url("../assets/images/premirecolored.jpg"); }
.brand-card-4 { --bg-bw: url("../assets/images/sahmbw.jpg"); --bg-color: url("../assets/images/sahmcolored.jpg"); }
.brand-card::before { background-image: var(--bg-bw); filter: grayscale(1) blur(0.6px); }
.brand-card-3::before { filter: grayscale(1) brightness(0.92) contrast(1.02) !important; }
.brand-card::after { background-image: var(--bg-color); }
.brand-card .overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.46); }
.brand-card .overlay.warm { background: rgba(157, 94, 36, 0.34); }
.brand-logo {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(56%, 180px);
  max-height: 84px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}
.brand-card h3, .brand-card p, .brand-card span { position: relative; margin: 0; z-index: 2; }
.brand-card p { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; }
.brand-card span { position: absolute; inset-inline-end: 1rem; bottom: 1rem; }
.brand-card:hover,
.brand-card:focus-within,
.brand-card.is-active {
  transform: scale(1.03);
  box-shadow: var(--shadow-card);
  outline-color: rgba(255, 255, 255, 0.75);
}
.brand-card:hover::after,
.brand-card:focus-within::after,
.brand-card.is-active::after {
  opacity: 1;
}
.brand-card:hover::before,
.brand-card:focus-within::before,
.brand-card.is-active::before {
  opacity: 0;
}
.brand-link {
  position: absolute;
  inset: 0;
  z-index: 4;
}
.brand-card.is-hidden {
  display: none;
}
.brand-grid.filter-construction,
.brand-grid.filter-food {
  grid-template-columns: repeat(2, minmax(260px, 380px));
  justify-content: center;
}

/* Contact + Modal Section */
.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contact-info h2 { font-family: var(--font-display); font-size: clamp(3.4rem, 8vw, 6.4rem); margin: 0 0 1rem; line-height: var(--title-tight); letter-spacing: 0.03em; }
.contact-info h3 { color: var(--red); border-bottom: 2px solid var(--red); width: max-content; margin-bottom: 1rem; }
.contact-info p { display: grid; gap: 0.25rem; }
.contact-info small { color: var(--muted); }
.contact-info .red { color: var(--red); }
.contact-title-mobile {
  display: none;
}
.contact-title-ar-svg {
  display: none;
  width: min(170px, 72vw);
  margin: 0 auto 0.35rem;
}
.contact-title-ar-svg img {
  width: 100%;
  height: auto;
  display: block;
}
.map-wrap {
  position: relative;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  background: #efefef;
  border-radius: 20px;
  padding: 0.75rem 0.65rem 0.85rem;
}
.map-pin-host {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --map-pad-t: 7%;
  --map-pad-x: 9%;
  --map-pad-b: 9%;
  background: #e7e7e9;
}
.google-map-canvas {
  position: absolute;
  inset: 0;
  display: none;
  z-index: 1;
}
.map-pin-host.map-google .google-map-canvas,
.map-pin-host.map-leaflet .google-map-canvas {
  display: block;
}
.map-pin-host.map-google .kuwait-map-bg,
.map-pin-host.map-google .pins-layer,
.map-pin-host.map-leaflet .kuwait-map-bg,
.map-pin-host.map-leaflet .pins-layer {
  display: none;
}
.kuwait-map-bg {
  position: absolute;
  inset: 0;
  background-color: #d9d9dc;
  background-image: url("../assets/images/kuwait-map.png");
  background-repeat: no-repeat;
  background-position: 78% 34%;
  background-size: cover;
  filter: none;
}
.pins-layer {
  position: absolute;
  top: var(--map-pad-t);
  left: var(--map-pad-x);
  right: var(--map-pad-x);
  bottom: var(--map-pad-b);
  pointer-events: none;
  z-index: 2;
}
.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  background: transparent center/contain no-repeat;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  box-shadow: none;
  z-index: 2;
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}
.map-pin::before {
  content: none;
}
.map-pin.central {
  width: 30px;
  height: 30px;
  background-image: url("../assets/images/map-pin-red.png");
  z-index: 3;
}
.map-pin.secondary {
  width: 16px;
  height: 16px;
  background-image: url("../assets/images/map-pin-black.png");
  opacity: 0.88;
}
.map-pin.is-active {
  transform: translate(-50%, -50%) scale(1.04);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25));
  opacity: 1;
  animation: pinPulse 0.9s ease;
}
.map-hint { color: #5b5c61; font-size: 0.9rem; margin: 0; text-align: center; max-width: 36ch; display: flex; align-items: center; gap: 0.45rem; }
.map-hint {
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
}
.map-hint::before { content: "☟"; font-size: 1.1rem; color: #7e7f84; }
.google-map-frame {
  width: 100%;
  max-width: 520px;
  height: 220px;
  border: 1px solid #dbdde2;
  border-radius: 14px;
  background: #f8f8f9;
}
.map-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #d7d9de;
  color: #2b2e37;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}
.map-link-btn:hover,
.map-link-btn:focus-visible {
  border-color: #a6acb8;
  outline: none;
}

.contact-page-board {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 1rem;
  border: 1px solid #e5e6ea;
  border-radius: 20px;
  padding: 1rem;
  background: #f8f8f9;
}
.contact-page-board > article {
  background: #fdfdfe;
  border: 1px solid #ececf0;
  border-radius: 14px;
  padding: 1.15rem;
}
.contact-info-pane h2,
.contact-form-pane h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  color: #1f2025;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.9;
}
.contact-info-pane h3 {
  margin: 0.2rem 0 0.65rem;
  color: var(--red);
  border-bottom: 1px solid #e4e4e8;
  padding-bottom: 0.45rem;
}
.contact-info-pane p {
  margin: 0.38rem 0;
  display: grid;
  gap: 0.15rem;
}
.contact-info-pane small {
  color: #8a8c93;
  font-size: 0.74rem;
}
.map-pane .map-pin-host {
  max-width: none;
  border-radius: 12px;
}
.contact-form-pane .ticket-form {
  padding: 0;
  gap: 0.72rem;
}
.contact-form-pane .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.contact-form-pane .field label {
  font-size: 0.74rem;
  color: #8a8c93;
}
.contact-form-pane .field-control {
  min-height: 42px;
  border-radius: 9px;
  background: #f4f4f6;
}
.contact-form-pane textarea.field-control {
  min-height: 92px;
}
.contact-form-pane .btn-submit-ticket {
  width: 118px;
  min-height: 34px;
  margin-inline-start: auto;
  border-radius: 10px;
  font-size: 0.84rem;
  padding: 0.3rem 0.7rem;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  place-items: center;
  padding: 1rem;
  z-index: 1300;
}
.modal.open { display: grid; }
.modal-card {
  background: var(--white);
  border-radius: 20px;
  width: min(520px, 100%);
  max-height: min(92vh, 720px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.35rem 0.75rem;
  border-bottom: 1px solid #eee;
}
.modal-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.modal-subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 32ch;
}
.modal-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--dark);
  font-size: 1.35rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.modal-close:hover,
.modal-close:focus-visible {
  background: #f6f6f6;
  border-color: #c7c7c7;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.04);
  outline: none;
}
.ticket-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.1rem 1.35rem 1.35rem;
  overflow-y: auto;
}
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ticket-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ticket-form .field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #444;
  letter-spacing: 0.02em;
}
.ticket-form .field-control {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  font-size: 1rem;
  background: #fafafa;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.ticket-form textarea.field-control {
  min-height: 120px;
  resize: vertical;
}
.ticket-form .field-control:hover {
  border-color: #c4c4c4;
}
.ticket-form .field-control:focus-visible {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.12);
}
.btn-submit-ticket {
  width: 100%;
  justify-content: center;
  min-height: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.25rem;
  border-radius: 12px;
}
.btn-submit-ticket:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.form-message {
  min-height: 1.35rem;
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}
.modal-privacy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}
[dir="rtl"] .modal-head,
[dir="rtl"] .ticket-form {
  text-align: right;
}
[dir="rtl"] .modal-subtitle,
[dir="rtl"] .modal-privacy {
  text-align: right;
}
[dir="rtl"] .modal-head h3 {
  font-family: var(--font-display-ar);
  font-weight: 800;
  letter-spacing: 0;
}

/* FAQ Section */
.faq { background: var(--white); position: relative; overflow: hidden; }
.faq::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: min(1440px, 100vw);
  height: min(316px, 40vw);
  transform: translateX(-50%);
  background: url("../assets/images/faq-bg-lines.svg") center bottom / contain no-repeat;
  opacity: 0.72;
  z-index: 0;
  pointer-events: none;
}
.faq h2 { text-align: center; margin: 0 0 1rem; font-family: var(--font-display); font-size: clamp(3.2rem, 8vw, 6.2rem); color: var(--red); letter-spacing: 0.04em; line-height: 0.9; }
.ghost-ar { text-align: center; color: #efefef; margin: 0; font-size: clamp(2rem, 9vw, 4rem); }
.ghost-ar:empty { display: none; }
.faq .container {
  position: relative;
  z-index: 1;
}
.accordion { display: grid; gap: 0.75rem; max-width: 1020px; margin: 0 auto; }
.acc-item { border: 1px solid #e8e8e8; border-radius: 14px; overflow: hidden; }
.acc-btn { width: 100%; background: var(--white); border: 0; padding: 1rem 1.1rem; display: flex; justify-content: space-between; align-items: center; text-align: start; font-weight: 700; }
.acc-btn,
.acc-panel,
.acc-panel a {
  color: #1f1f1f;
  text-decoration: none;
}
.acc-panel p {
  color: rgba(32, 32, 33, 0.7);
  line-height: 1.55;
}
.acc-btn > span:last-child { transition: transform 0.3s ease; }
.acc-item.open .acc-btn > span:last-child { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 1rem; }
.acc-item.open .acc-panel { max-height: 200px; padding-bottom: 1rem; }

/* Footer Section */
.site-footer { background: var(--dark); color: var(--white); }
.site-footer .container {
  width: min(1160px, 90vw);
  margin-inline: auto;
}
.footer-cta { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2rem; align-items: center; padding: 2.2rem 0; }
.footer-logo { width: 44px; filter: brightness(0) invert(1); }
.ask-wrap { justify-self: center; text-align: center; }
.ask-wrap p { font-family: var(--font-display); font-size: clamp(2rem, 7vw, 4rem); color: rgba(255, 255, 255, 0.35); margin: 0 0 0.75rem; }
.footer-why-ar-svg {
  display: none;
  width: min(340px, 88vw);
  margin: 0 0 0.7rem;
}
.footer-why-ar-svg img {
  width: 100%;
  height: auto;
  display: block;
}
.ask-wrap .btn-red {
  width: 128px;
  height: 42px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: url("../assets/images/ask-now-button.png") center/100% 100% no-repeat;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
  box-shadow: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: none;
}
.ask-wrap .btn-red:hover { filter: brightness(1.04); }
[dir="ltr"] .ask-wrap .btn-red {
  width: 118px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #9d1d24 0%, #7f141a 100%);
  color: #ffffff;
  text-indent: 0;
  font-size: 0.92rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  box-shadow: 0 8px 20px rgba(139, 26, 26, 0.28);
}
[dir="ltr"] .ask-wrap .btn-red:hover,
[dir="ltr"] .ask-wrap .btn-red:focus-visible {
  filter: brightness(1.05);
}
.footer-cta > article:first-child > p {
  color: #8f9197;
}
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1rem 0 2rem; }
.footer-links article { display: grid; gap: 0.35rem; }
.footer-links h4 { color: #8f9197; margin: 0 0 0.4rem; font-size: 0.75rem; font-weight: 500; }
.footer-links a { color: #b9bbc2; width: fit-content; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--white); outline: none; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); padding: 0.8rem 0 1.2rem; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; text-align: start; font-size: 0.9rem; line-height: 1.4; }
.footer-bottom p { margin: 0; color: #7e8088; }
.top-btn {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1200;
  background: var(--dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
[dir="rtl"] .top-btn {
  right: auto;
  left: 1.1rem;
}

/* About Page Section */
.about-hero {
  background-color: transparent;
  background-image: url("../assets/images/header-ribbon-bg.png");
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: min(878px, 96vw) 188px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.about-hero .container {
  position: relative;
  z-index: 1;
  min-height: 190px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.4rem;
}
.about-hero .container::before {
  content: none !important;
}
.about-hero .container > * {
  position: relative;
  z-index: 1;
}
.about-hero h1 { margin: 0; color: var(--red); font-family: var(--font-display); font-size: clamp(3.2rem, 9vw, 6.4rem); letter-spacing: 0.05em; }
.about-hero-ar-text {
  display: none;
  margin: 0;
  color: var(--red);
  font-family: var(--font-display-ar);
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: var(--title-tight);
}
.about-hero .container > p {
  margin: 0;
}
.about-hero-ar-svg { display: none; margin: 0.45rem auto 0; width: min(525px, 78vw); }
.about-hero-ar-svg img { width: 100%; height: auto; display: block; }
.diamond { position: absolute; width: 26px; aspect-ratio: 1; border: 1px solid #ddd; transform: rotate(45deg); top: 50%; }
.diamond.left { left: 10%; }
.diamond.right { right: 10%; }
.history-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  direction: ltr;
  width: min(1160px, 96vw);
  padding: 0.5rem 0;
}
.history-block h2,
.about-block .ghost {
  font-family: var(--font-display);
  color: #1f1f23;
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  font-weight: 400;
  margin: 0;
  line-height: var(--title-tight);
}
.history-block p,
.about-block p:last-child {
  margin: 0;
  color: #4c4f57;
  line-height: 1.65;
}
.history-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.about-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}
.about-block .ghost {
  justify-self: end;
}
[dir="rtl"] .history-about-grid {
  direction: ltr;
}
[dir="rtl"] .history-block p,
[dir="rtl"] .about-block p:last-child {
  direction: rtl;
  text-align: right;
}
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  direction: ltr;
}
.vision-mission-grid .ghost {
  color: #1d1f25;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  margin: 0;
}
.vision-mission-grid p:last-child {
  margin: 0.5rem 0 0;
}
.management .container {
  min-width: 0;
}
.management {
  background: linear-gradient(180deg, #14161b 0%, #0f1116 100%);
  color: #f2f2f2;
}
.management-head {
  text-align: center;
  margin-bottom: 1rem;
}
.management-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #f5f5f5 0%, #82858e 55%, #262a31 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.management-head p {
  margin: -0.18rem 0 0;
  color: rgba(235, 235, 235, 0.72);
}
.management-track[data-carousel="management"] {
  justify-content: center;
  gap: 1rem;
}
.management-track.carousel-scroll[data-carousel="management"] {
  justify-content: flex-start;
}
.management .manager-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f1f1f1;
}
.management .manager-card p {
  color: rgba(240, 240, 240, 0.9);
}
.management .carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.management .carousel-controls button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #3f4756;
  background: linear-gradient(180deg, #1a1f28 0%, #131821 100%);
  color: #f3f3f3;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.management .carousel-controls button:hover,
.management .carousel-controls button:focus-visible {
  border-color: #586278;
  outline: none;
  filter: brightness(1.08);
}

@media (min-width: 769px) {
  .management-track[data-carousel="management"] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    max-width: 980px;
    margin: 0 auto;
  }
  .management-track[data-carousel="management"] .manager-card {
    max-width: none;
    min-height: 390px;
  }
  .management .carousel-controls {
    display: none;
  }
  .management-track.carousel-scroll,
  .about-managers.carousel-scroll {
    overflow-x: hidden;
    scrollbar-width: none;
  }
  .management-track.carousel-scroll::-webkit-scrollbar,
  .about-managers.carousel-scroll::-webkit-scrollbar {
    display: none;
  }
}
.text-section p:last-child { max-width: 900px; font-size: 1.05rem; line-height: 1.9; }
.core-values { background: #f1f1f1; }
.core-values-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.65fr;
  gap: 2.2rem;
  align-items: start;
}
.core-values h2 {
  text-align: left;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.2rem);
  margin: 0;
  letter-spacing: 0.04em;
}
.core-values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 2.1rem;
}
.core-values-list h3 {
  margin: 0 0 0.2rem;
  font-size: 1.38rem;
}
.core-values-list p {
  margin: 0;
  color: #565656;
  line-height: 1.55;
}

/* RTL Section */
[dir="rtl"] body { text-align: right; }
[dir="rtl"] .navbar, [dir="rtl"] .footer-bottom { direction: rtl; }
[dir="rtl"] .about-grid, [dir="rtl"] .contact-grid, [dir="rtl"] .history-grid { direction: rtl; }
[dir="rtl"] .hero-title,
[dir="rtl"] .why-heading,
[dir="rtl"] .about-copy h2,
[dir="rtl"] .contact-info h2,
[dir="rtl"] .faq h2,
[dir="rtl"] .about-hero h1,
[dir="rtl"] .history-grid h2,
[dir="rtl"] .core-values h2 {
  font-family: var(--font-display-ar);
  font-weight: 800;
  letter-spacing: 0;
}
[dir="rtl"] .why-heading { font-family: var(--font-display-ar); display: none; }
[dir="rtl"] .why-heading-ar-svg { display: block; }
[dir="rtl"] .about-copy .ghost { font-family: var(--font-display-ar); }
[dir="rtl"] .ghost-ar { font-family: var(--font-display-ar); }
[dir="rtl"] .history-block h2,
[dir="rtl"] .about-block .ghost,
[dir="rtl"] .management-head h2,
[dir="rtl"] .vision-mission-grid .ghost {
  font-family: var(--font-display-ar);
  font-weight: 800;
  letter-spacing: 0;
}
[dir="rtl"] .why-heading,
[dir="rtl"] .ask-wrap p {
  /* Remove halo artifacts that appear as white dots with Tokmeh */
  text-shadow: none !important;
  filter: none !important;
  -webkit-text-stroke: 0 transparent;
}
[dir="rtl"] .why-heading {
  /* Tokmeh has one true weight; synthetic bold causes dot artifacts */
  font-weight: 400 !important;
  font-synthesis: none;
  letter-spacing: 0;
  line-height: 1.05;
  color: #e3e3e3;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: none;
}
[dir="rtl"] .why-heading,
[dir="rtl"] .ask-wrap p {
  /* Remove halo artifacts that appear as white dots with Tokmeh */
  text-shadow: none !important;
  filter: none !important;
  -webkit-text-stroke: 0 transparent;
}
[dir="rtl"] body {
  font-family: "IRANSansXVF", "Tajawal", "Cairo", sans-serif;
  font-weight: 500;
  text-rendering: optimizeLegibility;
}
[dir="rtl"] .hero-title { font-size: clamp(4rem, 16vw, 10.8rem); line-height: 1.05; font-weight: 700; }
[dir="rtl"] .hero-title {
  display: none;
}
[dir="rtl"] .hero-title-ar-svg {
  display: block;
}
[dir="rtl"] .about-hero--about h1 {
  display: none;
}
[dir="rtl"] .about-hero--about .about-hero-ar-svg {
  display: block;
}
[dir="rtl"] .about-hero--localized h1 {
  display: none;
}
[dir="rtl"] .about-hero--localized .about-hero-ar-text {
  display: block;
}
[dir="rtl"] .brands-hero-ar-svg {
  display: block;
}

@media (max-width: 768px) {
  [dir="rtl"] .hero-title-ar-svg {
    width: min(420px, 84vw);
  }
  [dir="rtl"] .about-hero-ar-svg {
    width: min(410px, 86vw);
  }
  [dir="rtl"] .brands-hero-ar-svg {
    width: min(420px, 88vw);
  }
}
[dir="rtl"] .hero-subtitle,
[dir="rtl"] .why-items strong,
[dir="rtl"] .contact-info,
[dir="rtl"] .acc-btn,
[dir="rtl"] .acc-panel p {
  font-weight: 600;
}
[dir="rtl"] .contact-title-ar-svg {
  display: block;
}
[dir="rtl"] .contact-title {
  display: none;
}
[dir="rtl"] .ask-wrap p {
  display: block;
  font-family: var(--font-display-ar);
  font-weight: 400 !important;
  font-synthesis: none;
  letter-spacing: 0;
  line-height: 1.05;
  color: #6e6e6e;
  text-shadow: none !important;
  filter: none !important;
  -webkit-text-stroke: 0 transparent;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[dir="rtl"] .footer-why-ar-svg {
  display: none;
}
[dir="rtl"] .brands-head h2 {
  display: none;
}
[dir="rtl"] .about-copy > p:last-of-type,
[dir="rtl"] .acc-panel p {
  text-align: justify;
}
[dir="rtl"] .mobile-drawer { inset: 0 0 0 auto; transform: translateX(100%); }
[dir="rtl"] .mobile-drawer.open { transform: translateX(0); }
[dir="rtl"] .mobile-drawer a { text-align: right; }
[dir="rtl"] .lang-menu {
  inset-inline-end: auto;
  inset-inline-start: 0;
}
[dir="rtl"] .lang-menu button {
  text-align: right;
}
[dir="rtl"] .call-box { text-align: end; }
[dir="rtl"] .nav-links {
  margin: 0 1.4rem 0 0;
}
[dir="rtl"] .about-grid,
[dir="rtl"] .contact-grid,
[dir="rtl"] .history-grid { align-items: start; }
[dir="rtl"] .history-about-grid,
[dir="rtl"] .vision-mission-grid {
  direction: rtl;
}
[dir="rtl"] .about-copy > p:last-of-type,
[dir="rtl"] .history-grid p,
[dir="rtl"] .contact-info p,
[dir="rtl"] .acc-btn,
[dir="rtl"] .acc-panel p { text-align: right; }
[dir="rtl"] .scroll-down,
[dir="rtl"] .faq,
[dir="rtl"] .about-hero,
[dir="rtl"] .hero { text-align: center; }
[dir="rtl"] .core-values h2 {
  text-align: right;
}

/* Responsive Section */
@media (max-width: 1100px) and (min-width: 769px) {
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: inline-flex; }
  .section {
    padding-block: clamp(2.6rem, 9vw, 3.75rem);
  }
  .site-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .navbar {
    min-height: 82px;
    grid-template-columns: 46px 1fr 82px;
    display: grid;
    align-items: center;
  }
  .logo-wrap {
    justify-self: center;
  }
  .logo-mark {
    width: 38px;
    height: 38px;
  }
  .phone-btn {
    width: 48px;
    height: 48px;
  }
  .hamburger {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .hamburger .h-bar {
    width: 18px;
  }
  .lang-switcher.mobile-only .lang-trigger {
    min-width: 58px;
    min-height: 38px;
    border-radius: 10px;
    justify-content: center;
    font-weight: 700;
    font-size: 0.84rem;
    padding: 0.25rem 0.55rem;
    gap: 0.35rem;
    box-shadow: none;
  }
  .mobile-drawer {
    width: min(84vw, 320px);
    padding: 1rem 0.85rem 1.1rem;
    gap: 0.45rem;
  }
  .drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    margin-bottom: 0.2rem;
  }
  .mobile-drawer a {
    padding: 0.78rem 0.8rem;
    border-radius: 9px;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
  }
  [dir="rtl"] .mobile-drawer a,
  [dir="rtl"] .lang-switcher.mobile-only .lang-trigger {
    font-family: var(--font-display-ar);
    font-weight: 700;
  }
  .hero { gap: 0.85rem; padding-top: 5.3rem; }
  .hero-shape {
    width: 94vw;
    height: 20vh;
    top: 34%;
    background: url("../assets/images/header-ribbon-bg.png") center/contain no-repeat;
  }
  .hero-title { letter-spacing: 0.02em; }
  .why-grid, .about-grid, .contact-grid, .footer-cta, .footer-links, .footer-bottom, .history-grid {
    grid-template-columns: 1fr;
  }
  .history-about-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    width: 100%;
    border-radius: 20px;
    padding: 1.1rem 1rem 1.2rem;
  }
  .history-block h2,
  .about-block .ghost,
  .vision-mission-grid .ghost {
    font-size: 2.45rem;
    line-height: 0.94;
  }
  .history-block p,
  .about-block p:last-child,
  .vision-mission-grid p:last-child {
    font-size: 0.98rem;
    line-height: 1.52;
    margin: 0.25rem 0 0;
  }
  .history-block,
  .about-block {
    display: block;
  }
  .about-hero {
    background-image: url("../assets/images/header-ribbon-bg.png");
    background-repeat: no-repeat;
    background-size: min(620px, 96vw) 168px;
    background-position: center 50%;
  }
  .contact-grid {
    gap: 2rem;
  }
  .contact-page-board {
    grid-template-columns: 1fr;
  }
  .contact-form-pane .field-row {
    grid-template-columns: 1fr;
  }
  .contact-title-mobile {
    display: block;
    order: 1;
  }
  .contact-title-mobile .contact-title {
    margin: 0;
    text-align: center;
    width: 100%;
  }
  .contact-title-mobile .contact-title-ar-svg {
    width: min(150px, 56vw);
    margin-bottom: 0;
  }
  .contact-info .contact-title {
    display: none;
  }
  .contact-info .btn-dark {
    width: fit-content;
    justify-content: center;
    min-height: 48px;
  }
  #openModalBtn {
    min-width: 132px;
    min-height: 50px;
  }
  .separator { display: none; }
  .why {
    background: linear-gradient(180deg, #111319, #0c0d12);
  }
  .why-grid {
    display: block;
  }
  .why-heading {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
    background: linear-gradient(180deg, #f2f2f2 0%, #808289 65%, #2e3037 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    position: relative;
    margin-bottom: 1.2rem;
    padding-inline-end: 0;
  }
  .why-heading::after {
    display: none;
  }
  .why-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 0.95rem;
    padding: 0;
  }
  .why-items article {
    padding: 0.35rem 0;
    border-bottom: 0;
    min-width: 0;
  }
  .why-items strong {
    display: block;
    font-size: clamp(0.95rem, 6.3vw, 1.45rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .why-items small {
    color: #8f949f;
    font-size: 0.93rem;
    margin-bottom: 0.25rem;
  }
  [dir="rtl"] .why-heading {
    padding-inline-start: 0;
  }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-grid.filter-construction,
  .brand-grid.filter-food {
    grid-template-columns: 1fr;
  }
  .brand-grid { gap: 0.75rem; }
  .brand-card { min-height: 260px; }
  .brand-filters {
    overflow-x: auto;
    justify-content: start;
    gap: 0.55rem;
    padding-bottom: 0.2rem;
  }
  .brand-filter {
    min-width: fit-content;
    white-space: nowrap;
    padding: 0.55rem 1rem;
  }
  .carousel:not(.carousel-scroll) {
    grid-auto-columns: 100%;
    gap: 0.8rem;
  }
  .carousel.carousel-scroll {
    gap: 0.85rem;
    padding-inline: 0.15rem;
    scroll-padding-inline: 0.15rem;
  }
  .about-managers .manager-card,
  .management-track.carousel-scroll .manager-card {
    flex: 0 0 min(88vw, 300px);
    max-width: none;
  }
  .management {
    padding-top: 2.45rem;
    padding-bottom: 2.2rem;
  }
  .management-head {
    margin-bottom: 0.65rem;
  }
  .management-head h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }
  .management .carousel-controls {
    justify-content: flex-end;
    padding-inline-end: 0.2rem;
  }
  .about-managers .manager-card:first-child,
  .about-managers .manager-card:last-child { transform: none; }
  .about-managers .manager-card:nth-child(1),
  .about-managers .manager-card:nth-child(2),
  .about-managers .manager-card:nth-child(3) {
    margin-top: 0;
  }
  .about-managers {
    grid-template-columns: 1fr;
  }
  .acc-btn {
    min-height: 52px;
    padding: 1rem 1rem;
  }
  .map-wrap {
    padding: 0.85rem 0.75rem 1rem;
  }
  .google-map-frame {
    height: 190px;
    border-radius: 12px;
  }
  .map-wrap { order: 2; }
  .contact-info { order: 3; }
  .map-pin-host {
    aspect-ratio: 0.92;
    border-radius: 14px;
  }
  .kuwait-map-bg {
    background-position: 78% 34%;
    background-size: cover;
  }
  .contact-title {
    text-align: center;
    width: 100%;
  }
  .contact-info h3,
  .contact-info p {
    text-align: center;
    justify-items: center;
  }
  .contact-info h3 {
    width: 100%;
    border-bottom-width: 1px;
  }
  .lang-switcher.mobile-only {
    justify-self: end;
  }
  .lang-switcher.mobile-only .lang-menu {
    inset-inline-end: 0;
  }
  .core-values-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .core-values h2 {
    text-align: center;
  }
  .core-values-list {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .top-btn {
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 0.45rem 0.78rem;
  }
  [dir="rtl"] .top-btn {
    right: auto;
    left: 0.8rem;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.65rem;
  }
  .modal-card {
    border-radius: 18px;
    max-height: min(94dvh, 760px);
  }
  .modal-head {
    padding: 1.15rem 1.1rem 0.65rem;
  }
  .ticket-form {
    padding: 1rem 1.1rem 1.2rem;
  }
}

/* Animations Section */
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-shift, 50%))); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}
@keyframes pinPulse {
  0% { transform: translate(-50%, -50%) scale(0.82); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.14); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}
