:root {
  --ink: #171717;
  --ink-soft: #2a2824;
  --muted: #6e6a62;
  --line: #e5ded2;
  --paper: #fffdf8;
  --surface: #ffffff;
  --surface-soft: #f7f4ed;
  --gold: #bd9552;
  --gold-deep: #987237;
  --gold-soft: #f1e4ce;
  --sage: #47704c;
  --shadow: 0 18px 50px rgba(23, 23, 23, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Noto Sans Arabic", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.topbar {
  min-height: 42px;
  padding: 9px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-info a,
.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-info a::before,
.topbar-info span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.language-switcher button {
  min-width: 38px;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

nav {
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(229, 222, 210, 0.9);
  position: sticky;
  top: 0;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
  z-index: 100;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  width: 178px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a,
.dropdown-trigger {
  position: relative;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a::after,
.dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.dropdown-trigger:hover,
.dropdown-trigger:focus-visible {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.dropdown-trigger:hover::after,
.dropdown-trigger:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 285px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 120;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 13px;
  border-radius: 7px;
  color: var(--ink);
}

.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--surface-soft); color: var(--gold-deep); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-btn,
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  padding: 11px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-btn:hover,
.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(189, 149, 82, 0.22);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--line);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-white:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-1px);
}

.photo-slider {
  position: relative;
  height: 620px;
  background: var(--ink);
  overflow: hidden;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.is-active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.18), rgba(23, 23, 23, 0.72)),
    linear-gradient(90deg, rgba(23, 23, 23, 0.58), rgba(23, 23, 23, 0.28) 55%, rgba(23, 23, 23, 0.16));
}

.slide-copy {
  position: absolute;
  left: 48px;
  bottom: 34px;
  z-index: 2;
  max-width: 560px;
  color: #fff;
}

.slide-copy span {
  display: inline-block;
  margin-bottom: 11px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
}

.slide-copy h2 {
  font-size: 1.05rem;
  line-height: 1.12;
  font-weight: 700;
  opacity: 0.8;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 28px;
  height: 4px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dots button.is-active { background: var(--gold); }

.slider-hero {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 82px 48px 96px;
  text-align: center;
  color: #fff;
}

.slider-hero .hero-tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.slider-hero h1 {
  color: #fff;
  font-size: 4.25rem;
  line-height: 1.06;
  max-width: 1120px;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.slider-hero h1 span {
  color: var(--gold);
}

.slider-hero p {
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.8;
}

.slider-hero .btn-white {
  background: rgba(255, 255, 255, 0.94);
}

.who-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 48px 72px;
}

.who-copy h2 {
  font-size: 2.45rem;
  line-height: 1.14;
  margin-bottom: 18px;
}

.who-copy p {
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 28px;
}

.who-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.who-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  min-height: 430px;
}

.who-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.who-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.who-about {
  grid-column: 1 / -1;
  padding-top: 44px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.who-about h2 {
  font-size: 2.45rem;
  line-height: 1.14;
  margin-bottom: 28px;
}

.hero {
  position: relative;
  padding: 72px 48px 86px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 255, 255, 0.98)),
    url("icon-kmb.png") center 58% / min(760px, 86%) auto no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.hero-logo {
  width: min(390px, 74%);
  margin: 0 auto 30px;
  filter: drop-shadow(0 14px 28px rgba(23, 23, 23, 0.08));
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(23, 23, 23, 0.04);
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

h1 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 20px;
}

h1 span { color: var(--gold-deep); }

.hero p {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 38px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.stats {
  background: var(--ink);
  color: #fff;
  padding: 46px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat { padding: 0 20px; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, 0.14); }
.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(189, 149, 82, 0.12);
  position: relative;
}

.stat-icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(189, 149, 82, 0.26);
  border-radius: 18px;
  opacity: 0;
  transform: scale(0.88);
}

.stats.in .stat-icon::before {
  animation: statPulse 1.6s ease-out infinite;
  animation-delay: calc(var(--stat-index, 0) * 0.2s);
}

.stat:nth-child(1) { --stat-index: 0; }
.stat:nth-child(2) { --stat-index: 1; }
.stat:nth-child(3) { --stat-index: 2; }
.stat:nth-child(4) { --stat-index: 3; }

.stat-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-n {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 7px;
  font-variant-numeric: tabular-nums;
}

.stat-l { font-size: 13px; color: rgba(255, 255, 255, 0.72); font-weight: 400; }

@keyframes statPulse {
  0% { opacity: 0; transform: scale(0.88); }
  45% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.18); }
}

.company-video {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 48px;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1.25fr);
  gap: 36px;
  align-items: center;
}

.company-video-copy h2 {
  font-size: 2.35rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.company-video-copy p {
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

.company-video-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.company-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
}

.section {
  padding: 82px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.section h2 {
  font-size: 2.45rem;
  line-height: 1.14;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.section > p {
  font-size: 15px;
  color: var(--muted);
  max-width: 650px;
  line-height: 1.85;
  margin-bottom: 54px;
  font-weight: 300;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
  font-weight: 300;
}

.address-note {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--surface-soft);
  color: var(--ink-soft);
  border-radius: 0 8px 8px 0;
}

.values-list { display: flex; flex-direction: column; gap: 16px; }

.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.value-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.value-dot {
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex: 0 0 auto;
}

.value-name { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.value-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sector-card {
  min-height: 318px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 0 24px;
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.sector-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.sector-photo {
  height: 142px;
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--ink);
}

.sector-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.sector-card:hover .sector-photo img {
  transform: scale(1.05);
}

.sector-name,
.sector-sub,
.sector-desc,
.sector-more {
  margin-left: 23px;
  margin-right: 23px;
}

.sector-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.sector-sub { font-size: 12px; color: var(--gold-deep); font-weight: 700; margin-bottom: 10px; display: block; }
.sector-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.sector-more { display: inline-block; margin-top: 18px; color: var(--gold-deep); font-size: 13px; font-weight: 700; }

.sector-entities {
  margin-top: 58px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 108px;
}

.sector-entities > p {
  font-size: 15px;
  color: var(--muted);
  max-width: 650px;
  line-height: 1.85;
  margin-bottom: 34px;
  font-weight: 300;
}

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 48px;
}

.subs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.sub-row {
  position: relative;
  padding: 20px 54px 20px 24px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s;
}

.sub-row:last-child { border-bottom: none; }
.sub-row::after {
  content: ">";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-deep);
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s, right 0.2s;
}

.sub-row:hover {
  background: var(--surface-soft);
}

.sub-row:hover::after,
.sub-row:focus-visible::after {
  opacity: 1;
  right: 18px;
}

.sub-row:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  background: var(--surface-soft);
}

.sub-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 3px; }
.sub-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.sub-desc { font-size: 13px; color: var(--muted); line-height: 1.68; font-weight: 300; }

.cta-box {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 42px;
  margin: 82px 48px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 108px;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("icon-kmb.png") center / min(620px, 80%) auto no-repeat;
  opacity: 0.06;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: 2.2rem;
  line-height: 1.16;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.78;
  max-width: 620px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: center;
  text-align: left;
}

.contact-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.contact-details a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 12px;
  align-items: center;
  max-width: 380px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.contact-details i {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gold);
}

.contact-details span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details strong {
  color: #fff;
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 12px;
  max-width: 500px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px 13px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form textarea {
  resize: vertical;
  min-height: 124px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.contact-form button {
  width: fit-content;
  border: none;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.contact-form-status.is-success {
  color: #8ff0b8;
}

.contact-form-status.is-error {
  color: #ffd2a3;
}

.contact-note {
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  padding: 11px 18px;
  font-size: 14px;
}

.map-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.map-frame {
  height: 280px;
  background: var(--ink-soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.12) contrast(1.05);
}

.map-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  background: rgba(23, 23, 23, 0.82);
}

.map-info span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.map-info strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.map-info a {
  flex: 0 0 auto;
  color: #fff;
  background: var(--gold);
  border-radius: 7px;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s, transform 0.2s;
}

.map-info a:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  margin-top: 36px;
}

.footer-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 48px 42px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 38px;
}

.footer-logo {
  width: 188px;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.footer-brand p,
.footer-col address,
.footer-col a {
  font-size: 13px;
  line-height: 1.75;
}

.footer-brand p {
  max-width: 320px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h3 {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-col address {
  font-style: normal;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 2px;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(31, 157, 85, 0.16);
  border: 1px solid rgba(31, 157, 85, 0.34);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 2px;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(201, 154, 78, 0.16);
  border: 1px solid rgba(201, 154, 78, 0.3);
}

.footer-whatsapp i {
  font-size: 16px;
}

.footer-contact-link i {
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.social-links i {
  font-size: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 48px;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.sector-page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.sector-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.sector-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 23, 23, 0.82), rgba(23, 23, 23, 0.22));
}

.sector-page-copy {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding: 72px 48px;
  color: #fff;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 700;
}

.sector-page-copy h1 {
  color: #fff;
  max-width: 780px;
  margin-bottom: 16px;
}

.sector-page-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.sector-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 154, 78, 0.46);
  border-radius: 8px;
  background: rgba(23, 23, 23, 0.44);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sector-page-badge i {
  font-size: 17px;
}

.sector-detail {
  padding: 78px 48px;
  max-width: 1180px;
  margin: 0 auto;
}

.sector-folder {
  position: relative;
}

.folder-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
}

.folder-tab {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  background: var(--surface-soft);
  color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.folder-tab i {
  color: var(--gold-deep);
  font-size: 16px;
}

.folder-tab.is-active {
  min-height: 66px;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(1px);
}

.folder-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -3px;
}

.folder-body {
  min-height: 438px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.folder-panel {
  animation: folderPanelIn 0.24s ease both;
  scroll-margin-top: 104px;
}

@keyframes folderPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.detail-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.detail-panel h2,
.detail-list h2,
.panel-head h2 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.detail-panel p {
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

.sector-intro-visual {
  overflow: hidden;
  margin: 20px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #fff;
}

.sector-intro-visual[hidden] {
  display: none;
}

.sector-intro-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sector-rich-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  margin-top: 28px;
}

.sector-rich-content[hidden] {
  display: none;
}

.sector-info-block {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.sector-info-block.is-wide {
  grid-column: 1 / -1;
}

.sector-info-block h3 {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.sector-info-block p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
}

.sector-info-block p + p {
  margin-top: 10px;
}

.sector-info-block ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

.sector-info-block li {
  position: relative;
  padding-inline-start: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.sector-info-block li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.pill-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill-list span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-weight: 600;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.panel-head > i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold-soft);
  font-size: 18px;
  flex: 0 0 auto;
}

.panel-head p {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

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

.project-card {
  min-height: 238px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.project-thumb {
  height: 150px;
  margin: -22px -22px 18px;
  overflow: hidden;
  background: var(--ink);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.05);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.project-number {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
}

.project-status {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(201, 154, 78, 0.13);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
}

.project-card h3 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.project-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  font-weight: 300;
}

.media-card {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: inherit;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}

button.media-card {
  padding: 0;
}

.media-thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--ink);
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.media-card:hover .media-thumb img {
  transform: scale(1.05);
}

.media-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 40px;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
}

.media-card.is-video .media-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.08), rgba(23, 23, 23, 0.54));
}

.media-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 34px rgba(23, 23, 23, 0.28);
}

.media-info {
  padding: 16px 18px 18px;
}

.media-info span {
  display: block;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.media-info h3 {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

body.media-viewer-open {
  overflow: hidden;
}

.media-viewer {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 22px;
}

.media-viewer[hidden] {
  display: none;
}

.media-viewer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(23, 23, 23, 0.82);
  cursor: pointer;
}

.media-viewer-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 94vw);
  max-height: 92vh;
  display: grid;
  gap: 12px;
}

.media-viewer-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.media-viewer-frame {
  min-height: 240px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.media-viewer-frame img,
.media-viewer-frame video {
  width: 100%;
  max-height: 82vh;
  display: block;
  object-fit: contain;
}

.media-viewer-title {
  color: #fff;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.sector-contact-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.sector-contact-main {
  min-width: 0;
}

.sector-contact-logo {
  width: min(230px, 100%);
  height: auto;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #fff;
}

.contact-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sector-contact-card h3 {
  color: var(--ink);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.sector-contact-card p {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.sector-contact-facts {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.sector-contact-facts div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  min-width: 0;
}

.sector-contact-facts i {
  flex: 0 0 auto;
  width: 18px;
  color: var(--gold-deep);
}

.sector-contact-facts span,
.sector-contact-facts a {
  overflow-wrap: anywhere;
}

.sector-company-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.sector-company-facts[hidden] {
  display: none;
}

.sector-company-facts span {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(247, 244, 237, 0.72);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.sector-company-facts strong {
  margin-right: 6px;
  color: var(--gold-deep);
}

.sector-contact-card .page-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.whatsapp-toggle,
.chatbot-toggle {
  position: fixed;
  right: 22px;
  z-index: 180;
  border: none;
  border-radius: 999px;
  color: #fff;
  min-width: 78px;
  height: 48px;
  padding: 0 18px;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(23, 23, 23, 0.22);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-toggle {
  bottom: 82px;
  background: #1f9d55;
}

.chatbot-toggle {
  bottom: 22px;
  background: var(--gold);
}

.whatsapp-toggle i,
.chatbot-toggle i {
  font-size: 20px;
}

.chatbot-panel {
  position: fixed;
  right: 22px;
  bottom: 142px;
  z-index: 180;
  width: min(370px, calc(100% - 32px));
  height: min(540px, calc(100vh - 190px));
  display: none;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(23, 23, 23, 0.22);
  overflow: hidden;
}

.chatbot-panel.open { display: flex; }

.chatbot-head {
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  background: var(--ink);
  color: #fff;
}

.chatbot-head strong,
.chatbot-head span {
  display: block;
}

.chatbot-head span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.chatbot-whatsapp {
  align-self: center;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: #1f9d55;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface-soft);
}

.message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
}

.message.bot {
  align-self: flex-start;
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.message.user {
  align-self: flex-end;
  background: var(--gold);
  color: #fff;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.chatbot-form input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
}

.chatbot-form button {
  border: none;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 700;
}

.fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade.in {
  opacity: 1;
  transform: translateY(0);
}

html[dir="rtl"] body {
  font-family: "Noto Sans Arabic", "Inter", Arial, sans-serif;
}

html[dir="rtl"] .topbar-info,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .who-actions,
html[dir="rtl"] .contact-links,
html[dir="rtl"] .page-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .slide::after,
html[dir="rtl"] .sector-page-hero::after {
  background: linear-gradient(270deg, rgba(23, 23, 23, 0.82), rgba(23, 23, 23, 0.18));
}

html[dir="rtl"] .slide-copy {
  left: auto;
  right: 48px;
}

html[dir="rtl"] .slider-dots {
  left: auto;
  right: 48px;
}

html[dir="rtl"] .address-note {
  border-left: none;
  border-right: 3px solid var(--gold);
  border-radius: 8px 0 0 8px;
}

html[dir="rtl"] .chatbot-panel,
html[dir="rtl"] .chatbot-toggle,
html[dir="rtl"] .whatsapp-toggle {
  right: auto;
  left: 22px;
}

html[dir="rtl"] .message.bot { align-self: flex-end; }
html[dir="rtl"] .message.user { align-self: flex-start; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade { opacity: 1; transform: none; transition: none; }
  .slide { transition: none; }
  .nav-btn,
  .btn-gold,
  .btn-white,
  .sector-card,
  .value-item,
  .sector-photo img {
    transition: none;
  }

  .stats.in .stat-icon::before {
    animation: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    padding: 10px 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  nav { padding: 12px 20px; }
  .brand { min-width: auto; }
  .brand img { width: 148px; }
  .menu-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 55px rgba(23, 23, 23, 0.18);
    z-index: 140;
  }

  .nav-links.open { display: flex; }
  .nav-links li + li { border-top: none; }

  .nav-links li,
  .nav-dropdown {
    width: 100%;
  }

  .nav-links a,
  .dropdown-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 13px 14px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--ink);
    background: var(--surface-soft);
    font-size: 15px;
    font-weight: 800;
  }

  .nav-links a::after,
  .dropdown-trigger::after { display: none; }

  .dropdown-trigger {
    border-color: rgba(189, 149, 82, 0.38);
    background: #fff;
  }

  .dropdown-trigger span:last-child {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(189, 149, 82, 0.14);
    color: var(--gold-deep);
    transition: transform 0.18s ease;
  }

  .nav-dropdown.open .dropdown-trigger span:last-child {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid rgba(229, 222, 210, 0.9);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 8px;
    background: #fff;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a {
    min-height: 42px;
    margin-bottom: 6px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
  }

  .dropdown-menu a:last-child { margin-bottom: 0; }
  .dropdown-menu a:hover { background: rgba(189, 149, 82, 0.13); }
  .nav-btn { display: none; }

  .photo-slider { height: 560px; }
  .slide-copy { left: 20px; right: 20px; bottom: 44px; }
  .slide-copy h2 { font-size: 0.9rem; }
  .slider-dots { left: 50%; bottom: 18px; }
  .slider-hero { padding: 62px 20px 88px; }
  .slider-hero h1 { font-size: 2.85rem; }
  .slider-hero p { font-size: 1rem; }

  .who-section {
    grid-template-columns: 1fr;
    padding: 58px 20px;
    gap: 28px;
  }

  .who-copy h2 { font-size: 2rem; }
  .who-photo,
  .who-photo img { min-height: 340px; }

  .hero { padding: 54px 20px 64px; }
  .hero-logo { width: min(320px, 82%); }
  h1 { font-size: 2.55rem; }

  .stats { grid-template-columns: 1fr 1fr; padding: 32px 20px; gap: 24px 0; }
  .stat + .stat { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, 0.14); }
  .company-video {
    grid-template-columns: 1fr;
    padding: 58px 20px;
    gap: 24px;
  }
  .company-video-copy h2 { font-size: 2rem; }

  .section { padding: 58px 20px; }
  .section h2 { font-size: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector-photo { height: 210px; }
  .sub-row { grid-template-columns: 1fr; gap: 8px; }
  .cta-box { margin: 42px 20px; padding: 28px; }
  .contact-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-links { justify-content: center; }
  .contact-details a,
  .contact-form {
    max-width: none;
  }
  .contact-form button {
    width: 100%;
  }
  .map-frame { height: 250px; }
  .map-info {
    align-items: stretch;
    flex-direction: column;
    text-align: left;
  }
  .map-info a { text-align: center; }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 42px 20px 34px;
  }
  .footer-bottom { padding: 14px 20px; }
  hr { margin: 0 20px; }

  .sector-page-copy { padding: 58px 20px; }
  .sector-page-copy h1 { font-size: 2.45rem; }
  .sector-detail { padding: 58px 20px; }
  .folder-tabs { grid-template-columns: 1fr 1fr; }
  .folder-body { padding: 24px; }
  .detail-grid { grid-template-columns: 1fr; }
  .sector-rich-content { grid-template-columns: 1fr; }
  .project-grid,
  .media-grid { grid-template-columns: 1fr; }
  .media-thumb { height: 240px; }
  .sector-contact-card { grid-template-columns: 1fr; }

  html[dir="rtl"] .slide-copy {
    left: 20px;
    right: 20px;
  }

  html[dir="rtl"] .slider-dots {
    left: auto;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .topbar-info { gap: 10px; }
  .brand img { width: 132px; }
  .photo-slider { height: 540px; }
  .slide-copy { display: none; }
  .slider-hero h1 { font-size: 2.1rem; }
  .slider-hero .hero-tag { font-size: 12px; }
  .slider-hero p { font-size: 0.95rem; }
  .who-photo,
  .who-photo img { min-height: 290px; }
  h1 { font-size: 2.15rem; }

  .sector-page-badge {
    font-size: 12px;
    padding: 8px 11px;
  }

  .folder-tabs { gap: 6px; }
  .folder-tab {
    min-height: 54px;
    padding: 11px 8px;
    font-size: 12px;
    gap: 7px;
  }

  .folder-tab.is-active { min-height: 60px; }
  .folder-body { padding: 20px; }
  .panel-head { gap: 12px; }
  .panel-head > i {
    width: 40px;
    height: 40px;
  }
  .project-card,
  .sector-contact-card { padding: 20px; }
  .sector-company-facts { grid-template-columns: 1fr; }
  .media-thumb { height: 210px; }

  .hero-actions,
  .who-actions,
  .contact-links,
  .contact-details,
  .page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a,
  .who-actions a,
  .contact-links a,
  .contact-details a,
  .contact-note,
  .page-actions a {
    width: 100%;
    text-align: center;
  }

  .stats { grid-template-columns: 1fr; }
  .stat:nth-child(even) { border-left: none; }
  .stat + .stat {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 24px;
  }

  .chatbot-toggle,
  .whatsapp-toggle {
    right: 16px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 0;
  }

  .whatsapp-toggle i,
  .chatbot-toggle i { font-size: 20px; }

  .chatbot-toggle { bottom: 16px; }
  .whatsapp-toggle {
    right: 76px;
    bottom: 16px;
  }

  .chatbot-panel {
    right: 16px;
    bottom: 76px;
    width: calc(100% - 32px);
    height: min(520px, calc(100vh - 130px));
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo { width: 160px; }
}

@media (max-width: 900px) {
  body.mobile-menu-active .nav-links.open {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    overflow-x: hidden !important;
  }

  body.mobile-menu-active .nav-links.open .nav-dropdown {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body.mobile-menu-active .nav-links.open .dropdown-trigger {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.mobile-menu-active .nav-links.open .dropdown-menu,
  body.mobile-menu-active .nav-links.open .nav-dropdown.open .dropdown-menu {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: -4px 0 0 !important;
    padding: 8px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    border: 1px solid rgba(229, 222, 210, 0.9) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
  }

  body.mobile-menu-active .nav-links.open .dropdown-menu a {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    white-space: normal !important;
    overflow: visible !important;
    text-align: left !important;
    line-height: 1.35 !important;
    box-sizing: border-box !important;
  }
}
