/* =========================================================
   ROSEN DAN TRADING COMPANY — Custom website styles
   ========================================================= */
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Regular.woff2") format("woff2"),
    url("../fonts/Cairo-Regular.woff") format("woff");
  font-weight: 100 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Bold.woff2") format("woff2"),
    url("../fonts/Cairo-Bold.woff") format("woff");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --navy: #1f2b42;
  --navy-deep: #111a2b;
  --navy-soft: #4d5870;
  --gold: #bfa89b;
  --gold-dark: #9b8273;
  --gold-tint: #f1eae5;
  --cream: #f8f6f3;
  --white: #ffffff;
  --line: rgba(31, 43, 66, 0.12);
  --line-gold: rgba(191, 168, 155, 0.45);
  --shadow: 0 26px 70px -36px rgba(17, 26, 43, 0.45);
  --shadow-sm: 0 14px 34px -22px rgba(17, 26, 43, 0.35);
  --radius: 22px;
  --radius-sm: 13px;
  --container: 1180px;
  --font: "Cairo", sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1d2c3e;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-logo {
  width: 130px;
  height: auto;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 150px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.loader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  animation: loaderBar 1.15s ease-in-out infinite;
}
body.is-loading {
  overflow: hidden;
}
@keyframes loaderPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.62;
    transform: scale(0.93);
  }
}
@keyframes loaderBar {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(140%);
  }
  100% {
    transform: translateX(140%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .loader-logo,
  .loader-bar span {
    animation: none;
  }
}
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream);
}
::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
::-webkit-scrollbar-track {
  background: linear-gradient(180deg, var(--cream), #fff);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--navy));
  border-radius: 30px;
  border: 3px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--navy), var(--gold-dark));
}
::selection {
  background: var(--navy);
  color: #fff;
}
body {
  margin: 0;
  font-family: var(--font);
  direction: rtl;
  text-align: right;
  color: var(--navy-soft);
  background: var(--white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: auto;
}
html[dir="ltr"] body {
  direction: ltr;
  text-align: left;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
button,
input,
textarea,
select {
  font-family: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.skip-link {
  position: fixed;
  top: 10px;
  right: 10px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  z-index: 9999;
  transform: translateY(-160%);
  border-radius: 10px;
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}
.section {
  padding: 94px 0;
}
.section-alt {
  padding: 94px 0;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.stats-section {
  padding: 56px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
/* Stats card floats over the bottom edge of the video hero: ~50% above, ~50% below */
.stats-overlap {
  position: relative;
  z-index: 4;
  margin-top: -100px;
  padding: 0 0 56px;
  background: transparent;
  border-bottom: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 75%;
    margin-inline: auto;
    margin-top: 25px;
}
.stat-card {
     display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 16px;
    background: var(--navy);
    box-shadow: var(--shadow-sm);
    border-right: #ffffff66 solid 1.5px;
    transition: 0.25s var(--ease);
    color: white;
}
/* RTL: الكارت الأول هو الأيمن — بدون border يتسرب على الخلفية البيضاء */
[dir="rtl"] .stat-card:first-child { border-right: none; }
/* LTR: الكارت الأخير هو الأيمن — نفس المنطق */
[dir="ltr"] .stat-card:last-child  { border-right: none; }

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-right: none;
  background: var(--navy);
}
/* ── قسم رؤيتنا / رسالتنا / أسلوبنا ── */
.section-vms {
  background: #1f2b42;
}
/* إلغاء reveal animation جوّا القسم الداكن عشان متبقاش كارت مخفية */
.section-vms .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* فرض 3 أعمدة دايمًا على الـ desktop بغض النظر عن الـ breakpoints */
@media (min-width: 769px) {
  .section-vms .feature-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
/* الكروت على الخلفية الداكنة */
.section-vms .feature-card {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.stat-card:hover .stat-icon {
  background: var(--gold);
  color: var(--navy);
}
.stat-card:hover .stat-number {
  color: #fff;
}
.stat-card:hover .stat-label {
  color: rgba(255, 255, 255, 0.82);
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--navy);
  font-size: 1.2rem;
  transition: 0.25s var(--ease);
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-top: 10px;
  transition: 0.25s var(--ease);
}
.stat-label {
  font-weight: 700;
  color: white;
  font-size: 0.92rem;
  transition: 0.25s var(--ease);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.eyebrow.light {
  color: #f1eae5;
}
.eyebrow.light::before {
  background: #f1eae5;
}
.section-title {
  font-size: clamp(1.75rem, 1.2rem + 0.75vw, 2.65rem);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.06rem;
  max-width: 700px;
  color: var(--navy-soft);
}
.section-head {
  margin-bottom: 44px;
}
.section-head.center {
  text-align: center;
}
.section-head.center .section-sub {
  margin-inline: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 13px 25px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--line-gold);
}
.btn-outline:hover {
  background: var(--gold-tint);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-wide {
  width: 100%;
}
/* Custom cursor */
.custom-cursor,
.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(191, 168, 155, 0.15);
  transform: translate3d(var(--cursor-x, -120px), var(--cursor-y, -120px), 0);
}
.custom-cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  mix-blend-mode: multiply;
  transform: translate3d(
      var(--cursor-ring-x, -140px),
      var(--cursor-ring-y, -140px),
      0
    )
    scale(var(--cursor-scale, 1));
  transition:
    opacity 0.2s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.08s linear;
}
.cursor-ready .custom-cursor,
.cursor-ready .custom-cursor-ring {
  opacity: 1;
}
.cursor-hover .custom-cursor-ring {
  --cursor-scale: 1.55;
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(191, 168, 155, 0.14);
}
@media (hover: hover) and (pointer: fine) {
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready input,
  body.cursor-ready textarea,
  body.cursor-ready select {
    cursor: none;
  }
}

/* Font Awesome local fallback: activates only if external icon font is unavailable */
.fa-fallback i[class*="fa-"] {
  font-style: normal !important;
  font-family: Arial, "Cairo", sans-serif !important;
  font-weight: 800 !important;
  text-rendering: auto;
  line-height: 1;
}
.fa-fallback i[class*="fa-"]::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  content: "◆";
}
.fa-fallback .fa-phone::before {
  content: "☎";
}
.fa-fallback .fa-whatsapp::before {
  content: "☏";
}
.fa-fallback .fa-envelope::before,
.fa-fallback .fa-envelope-open-text::before {
  content: "✉";
}
.fa-fallback .fa-location-dot::before,
.fa-fallback .fa-map-location-dot::before {
  content: "⌖";
}
.fa-fallback .fa-house::before {
  content: "⌂";
}
.fa-fallback .fa-circle-info::before {
  content: "i";
}
.fa-fallback .fa-grip::before {
  content: "▦";
}
.fa-fallback .fa-xmark::before {
  content: "×";
}
.fa-fallback .fa-chevron-down::before {
  content: "⌄";
}
.fa-fallback .fa-arrow-left::before,
.fa-fallback .fa-angle-left::before {
  content: "←";
}
.fa-fallback .fa-building-circle-check::before {
  content: "▣";
}
.fa-fallback .fa-couch::before {
  content: "▰";
}
.fa-fallback .fa-landmark::before {
  content: "⌂";
}
.fa-fallback .fa-brush::before {
  content: "✦";
}
.fa-fallback .fa-chart-line::before {
  content: "⌁";
}
.fa-fallback .fa-pen-ruler::before,
.fa-fallback .fa-compass-drafting::before {
  content: "◫";
}
.fa-fallback .fa-layer-group::before {
  content: "▤";
}
.fa-fallback .fa-shield-halved::before,
.fa-fallback .fa-shield::before {
  content: "⬟";
}
.fa-fallback .fa-location-crosshairs::before {
  content: "◎";
}
.fa-fallback .fa-wand-magic-sparkles::before {
  content: "✧";
}
.fa-fallback .fa-fingerprint::before {
  content: "◌";
}
.fa-fallback .fa-gem::before {
  content: "◇";
}
.fa-fallback .fa-clipboard-check::before {
  content: "☑";
}
.fa-fallback .fa-check::before {
  content: "✓";
}
.fa-fallback .fa-award::before {
  content: "★";
}
.fa-fallback .fa-bullseye::before {
  content: "◉";
}
.fa-fallback .fa-clock::before {
  content: "◷";
}
.fa-fallback .fa-eye::before {
  content: "◉";
}
.fa-fallback .fa-handshake::before {
  content: "◇";
}
.fa-fallback .fa-lightbulb::before {
  content: "◌";
}
.fa-fallback .fa-star::before {
  content: "★";
}
.fa-fallback .fa-user-check::before {
  content: "✓";
}
.fa-fallback .fa-x-twitter::before {
  content: "𝕏";
}
.fa-fallback .fa-instagram::before {
  content: "◎";
}
.fa-fallback .fa-linkedin-in::before {
  content: "in";
}
.fa-fallback .fa-arrow-up::before {
  content: "↑";
}
.fa-fallback .fa-chevron-right::before {
  content: "›";
}
.fa-fallback .fa-chevron-left::before {
  content: "‹";
}
.fa-fallback .fa-expand::before {
  content: "⤢";
}
.fa-fallback .fa-images::before {
  content: "▦";
}
.fa-fallback .fa-file-pdf::before {
  content: "▤";
}
.fa-fallback .fa-download::before {
  content: "⭳";
}
.fa-fallback .fa-eye::before {
  content: "◉";
}
.fa-fallback .fa-folder-open::before {
  content: "▢";
}
/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgb(30 43 63);
    backdrop-filter: saturate(160%) blur(15px);
    border-bottom: 1px solid rgba(31, 43, 66, 0.08);
    height: 110px;
}
.header-shell {
  height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 150px;
}
.brand img {
    height: 110px;
    width: auto;
    /* object-fit: contain; */
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 22px;
  padding: 7px;
  box-shadow: 0 14px 34px -30px rgba(17, 26, 43, 0.4);
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 17px;
  border-radius: 16px;
  font-weight: 800;
  color: white;
  transition: 0.22s var(--ease);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  /* background: #fff; */
  color: white;
  box-shadow: 0 10px 22px -20px rgba(17, 26, 43, 0.3);
}
.nav-link.active::before {
  content: "";
  position: absolute;
  inset-inline: 17px;
  bottom: 5px;
  height: 2px;
  background: var(--gold);
  border-radius: 5px;
}
.nav-item {
  position: relative;
}
.services-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 50%;
  transform: translateX(50%) translateY(8px);
  width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 14px 16px 16px;
  opacity: 0;
  visibility: hidden;
  transition: 0.24s var(--ease);
}
.services-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: translateX(50%) rotate(-45deg);
}
.has-dropdown:hover .services-dropdown,
.has-dropdown:focus-within .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}
.dropdown-head {
  font-weight: 900;
  color: var(--navy);
  padding: 8px 10px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.services-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 10px;
  border-radius: 13px;
  color: var(--navy-soft);
  font-weight: 700;
  transition: 0.2s;
}
.services-dropdown a i {
  width: 24px;
  height: 24px;
  border-radius: 9px;
  background: var(--gold-tint);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}
.services-dropdown a:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateX(-3px);
}
.dropdown-group {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.dropdown-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.services-dropdown .dropdown-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}
.services-dropdown .dropdown-title i {
  width: 24px;
  height: 24px;
  border-radius: 9px;
  background: var(--gold-tint);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}
.dropdown-group ul {
  display: grid;
  gap: 4px;
  padding: 2px 48px 0 10px;
  margin: 0;
  list-style: none;
}
.dropdown-group li {
  position: relative;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}
.dropdown-group li a {
  display: block;
  padding: 3px 0;
  border-radius: 0;
  color: var(--muted);
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
}
.dropdown-group li a:hover {
  background: transparent;
  color: var(--navy);
  transform: translateX(-3px);
}
.dropdown-group li::before {
  content: "";
  position: absolute;
  right: -14px;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
    height: 50px;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid rgba(17, 42, 64, .18);
    border-radius: 18px;
    background: #fff;
    color: var(--navy, #112a40);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}

.language-switcher:hover,
.language-switcher:focus-visible {
  color: var(--gold, #b9965b);
  border-color: currentColor;
}

html body {
  transition: opacity .18s ease;
}

html.language-changing body {
  opacity: 0;
}

html[data-language="en"] body,
html[data-language="ar"] body {
  font-family: "Cairo", sans-serif;
}

html.language-changing .mobile-drawer,
html.language-changing .services-dropdown,
html.language-changing .services-dropdown::before,
html.language-changing .dropdown-group li::before,
html.language-changing .fa-arrow-left,
html.language-changing .fa-angle-left,
html.language-changing .fa-arrow-left::before,
html.language-changing .fa-angle-left::before {
  transition: none !important;
}

html[dir="ltr"] .lightbox-nav.prev i,
html[dir="ltr"] .lightbox-nav.next i {
  transform: scaleX(-1);
}

/* ── +966 يظهر على اليسار في الإنجليزي ── */
html[dir="ltr"] input[type="tel"] {
  direction: ltr;
  text-align: left;
}
/* ── أرقام التلفون في صفحة التواصل تبدأ من اليسار في الإنجليزي ── */
html[dir="ltr"] .contact-card a {
  direction: ltr;
  unicode-bidi: embed;
}

/* ── رقم process-card دايمًا على اليمين في العربي والإنجليزي ── */
.process-card::before {
  right: 20px;
  left: auto;
}

html[dir="ltr"] .fa-arrow-left::before,
html[dir="ltr"] .fa-angle-left::before {
  display: inline-block;
  transform: scaleX(-1);
}

html[dir="ltr"] .mobile-drawer {
  right: auto;
  left: 0;
  transform: translateX(-105%);
  border-left: 0;
  border-right: 1px solid var(--line);
  box-shadow: 30px 0 80px -45px rgba(17, 26, 43, 0.8);
}

html[dir="ltr"] .mobile-drawer.is-open {
  transform: translateX(0);
}

html[dir="ltr"] .services-dropdown {
  right: auto;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}

html[dir="ltr"] .has-dropdown:hover .services-dropdown,
html[dir="ltr"] .has-dropdown:focus-within .services-dropdown {
  transform: translateX(-50%) translateY(0);
}

html[dir="ltr"] .services-dropdown::before {
  right: auto;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

html[dir="ltr"] .dropdown-group li::before {
  right: auto;
  left: -14px;
}

html[dir="ltr"] .dropdown-group li a:hover,
html[dir="ltr"] .services-dropdown a:hover {
  transform: translateX(3px);
}

@media (max-width: 560px) {
  .language-switcher {
        min-width: 33px;
        padding: 0px 9px;
        height: 20px;
        border-radius: 15px; 
  }

  .language-switcher i {
    display: none;
  }
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--line-gold);
    border-radius: 18px;
    padding: 13px 15px;
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 14px 30px -25px rgba(17, 26, 43, 0.4);
    transition: 0.22s;
    height: 50px;
    font-size: 14px;
}
.header-contact i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-contact:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 26, 43, 0.42);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s var(--ease);
}
.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(370px, 88vw);
  height: 100dvh;
  background: #fff;
  z-index: 130;
  transform: translateX(105%);
  transition: transform 0.36s var(--ease);
  box-shadow: -30px 0 80px -45px rgba(17, 26, 43, 0.8);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.drawer-head {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, var(--cream));
}
.drawer-head img {
    height: 48px;
    width: auto;
    display: none;
}
.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-size: 1.15rem;
}
.drawer-nav {
  padding: 18px;
  display: grid;
  gap: 9px;
  overflow: auto;
}
.drawer-nav > a,
.drawer-services a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 16px;
  font-weight: 800;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(31, 43, 66, 0.08);
}
.drawer-nav > a i,
.drawer-services a i {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--gold-tint);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drawer-services {
  display: grid;
  gap: 8px;
  padding: 10px;
  margin: 3px 0 8px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px dashed var(--line-gold);
}
.drawer-services a {
  font-size: 0.94rem;
  background: #fff;
}
.drawer-service-group {
  display: grid;
  gap: 6px;
}
.drawer-service-group + .drawer-service-group {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line-gold);
}
.drawer-group-title {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 8px;
  color: var(--navy);
  font-weight: 900;
}
.drawer-group-title i {
  color: var(--gold-dark);
}
.drawer-service-group a {
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 0.84rem;
  line-height: 1.45;
}
.drawer-service-group a i {
  width: 26px;
  height: 26px;
  min-width: 26px;
}
.drawer-contact {
  margin-top: auto;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.drawer-contact span {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--navy-soft);
}
body.drawer-lock {
  overflow: hidden;
}
/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(191, 168, 155, 0.23),
      transparent 34%
    ),
    linear-gradient(135deg, #fff 0%, #f7f5f2 58%, #fff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 34px 0 auto auto;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.hero::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -160px;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  border: 70px solid rgba(191, 168, 155, 0.16);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-block: 70px;
}
.hero-copy {
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  font-weight: 800;
}
.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2rem, 1rem + 1.8vw, 4.4rem);
  max-width: 760px;
  letter-spacing: -0.02em;
}
.hero-kicker {
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.55rem);
  font-weight: 700;
  color: var(--gold);
  margin: 0;
  line-height: 1.3;
}
.lead {
  font-size: clamp(1.06rem, 0.98rem + 0.35vw, 1.25rem);
  max-width: 700px;
  margin: 22px 0 30px;
  color: var(--navy-soft);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
/* Hero video background + overlay */
.hero-video-section {
  background: var(--navy-deep);
  padding-bottom: 120px;
}
.hero-video-section::before,
.hero-video-section::after {
  display: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
     position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(179deg, rgb(29 43 62) 0%, rgb(29 44 62 / 85%) 32%, rgb(17 26 43 / 74%) 58%, rgb(29 43 62 / 66%) 100%), linear-gradient(0deg, rgb(17 26 43 / 61%) 0%, rgba(17, 26, 43, 0) 28%);
}
.hero-inner--video {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  margin: 0;
}
.hero-inner--video .hero-copy {
  max-width: 760px;
  text-align: center;
  margin-inline: auto;
}
.hero-inner--video .hero-actions {
  justify-content: center;
  margin: 28px 0 8px;
}
.hero-inner--video .hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(6px);
}
.hero-inner--video h1 {
  color: #fff;
}
.hero-art {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid var(--line-gold);
  border-radius: 34px;
  transform: rotate(-3deg);
  background: rgba(255, 255, 255, 0.48);
}
.saudi-tower-svg {
  width: min(100%, 520px);
  position: relative;
  z-index: 1;
}
.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.hero-note {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.hero-note strong {
  display: block;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1;
}
.hero-note span {
  font-weight: 700;
  color: var(--navy-soft);
  font-size: 0.92rem;
}
.signature-strip {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  background: var(--navy);
  color: #fff;
}
.signature-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.signature-item {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.signature-item i {
  color: var(--gold);
}
/* Cards and shared sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.media-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
  min-height: 400px;
}

.media-frame img{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--cream);
    min-height: 400px;
    height: 400px;
    object-fit: cover;
    object-position: center center;
} 

.media-frame-about{
    position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
}

.media-frame-about img{
  object-position: center center;
  height: 400px;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
}
.floating-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 11px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 900;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-label i {
  color: var(--gold-dark);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 40px -34px rgba(17, 26, 43, 0.45);
  transition: 0.25s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-card i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--gold-tint);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
}
.feature-card h3 {
  font-size: 1.16rem;
  margin-bottom: 8px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 45px -34px rgba(17, 26, 43, 0.4);
  transition: 0.26s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.service-card:hover::before {
  border-color: var(--gold);
}
.service-card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  background: var(--cream);
}
.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.service-card:hover .thumb img {
  transform: scale(1.06);
}
.custom-section {
  background: #1d2b3f;
}
.custom-section  .section-title {
  color: white !important;
}
.icon-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
  border-radius: 20px;
  background: #1f2b42ed;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px -18px rgba(17, 26, 43, 0.55);
  border: 3px solid #fff;
  z-index: 3;
  overflow: visible;
}
.icon-badge i {
  font-size: 1.35rem;
  line-height: 1;
  display: block;
}
.service-card .content {
  padding: 18px 18px 16px;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.service-category {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
}
@media (min-width: 769px) {
  .service-card h3 {
    /* min-height: 3.2em; */
  }
}
.service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 21px;
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 900;
  margin-top: 12px;
}
.more i {
  color: var(--gold-dark);
  transition: 0.2s;
}
.more:hover i {
  transform: translateX(-4px);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process-card {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, var(--cream));
  border: 1px solid var(--line);
  min-height: 190px;
  overflow: hidden;
}
.process-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  right: 20px;
  left: auto;
  top: 12px;
  font-size: 3.7rem;
  line-height: 1;
  color: rgba(191, 168, 155, 0.24);
  font-weight: 900;
}
.process-card h3 {
  margin-bottom: 9px;
}
.quality-list {
  display: grid;
  gap: 14px;
}
.quality-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.quality-item i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quality-item h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.cta-section {
  padding: 84px 0;
}
.cta-card {
  border-radius: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #dce2eb;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  left: -110px;
  top: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 70px solid rgba(191, 168, 155, 0.15);
}
.cta-card h2 {
  color: #fff;
  font-size: clamp(1.55rem, 1.1rem + 1.3vw, 2.25rem);
  margin-bottom: 10px;
}
.cta-card p {
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.cta-card .btn {
  position: relative;
  z-index: 1;
}
.inner-hero {
  position: relative;
  padding: 92px 0 58px;
  background: linear-gradient(135deg, #fff, var(--cream));
  overflow: hidden;
}
.inner-hero::after {
  content: "";
  position: absolute;
  left: -80px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 48px solid rgba(191, 168, 155, 0.13);
}
.inner-hero .container {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-weight: 800;
}
.breadcrumb a:hover {
  color: var(--navy);
}
.inner-hero h1 {
  font-size: clamp(2rem, 1.4rem + 1.1vw, 3.35rem);
  max-width: 760px;
}
.inner-hero p {
  max-width: 770px;
  font-size: 1.1rem;
  margin-top: 16px;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.service-hero-media {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 430px;
}
.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 34px;
  align-items: start;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 45px -38px rgba(17, 26, 43, 0.5);
}
.detail-card + .detail-card {
  margin-top: 22px;
}
.points-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 22px;
}
.points-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: var(--cream);
  font-weight: 700;
  color: var(--navy-soft);
}
.points-list i {
  color: var(--gold-dark);
  margin-top: 6px;
}
.side-card {
  position: sticky;
  top: 112px;
  background: var(--navy);
  color: #e7ebf0;
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.side-card h3 {
  color: #fff;
  margin-bottom: 16px;
}
.side-services {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}
.side-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  color: #fff;
}
.side-services a:hover {
  background: rgba(191, 168, 155, 0.18);
}
.side-services a.active {
  background: var(--gold);
  color: var(--navy);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
}
.contact-cards {
  display: grid;
  gap: 16px;
}
.contact-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px -40px rgba(17, 26, 43, 0.45);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-card i {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--gold-tint);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-weight: 800;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 13px 14px;
  background: var(--cream);
  color: var(--navy);
  outline: none;
  transition: 0.2s;
}
.field textarea {
  resize: vertical;
  min-height: 135px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(191, 168, 155, 0.13);
}
.map-placeholder {
  height: 330px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy), #2c3b58);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(191, 168, 155, 0.55);
  border-radius: 20px;
}
.map-placeholder div {
  position: relative;
}
.map-placeholder i {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.map-embed {
  height: 330px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px -40px rgba(17, 26, 43, 0.45);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 85;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 18px 30px -18px rgba(17, 26, 43, 0.55);
  transition: 0.22s;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.03);
}
.float-btn.whatsapp {
  background: #25d366;
}
.float-btn.phone {
  background: var(--navy);
  display: none;
}
.site-footer {
  background: #1d2b3f;
  color: #cad1dd;
  padding-top: 68px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 1fr;
  gap: 34px;
}
.footer-brand img {
  height: 100px;
  width: auto;
  border-radius: 12px;
  margin-bottom: 18px;
}
.footer-brand p {
  max-width: 270px;
}
.site-footer h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a {
  color: #cad1dd;
}
.footer-links a:hover {
  color: var(--gold);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-contact {
  display: grid;
  gap: 12px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--gold);
  margin-top: 6px;
  width: 18px;
}
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom a {
  color: var(--gold);
  font-weight: 900;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .main-nav {
    display: none;
  }
  .header-contact span {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .hero-inner,
  .split,
  .service-hero-grid,
  .contact-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-art {
    min-height: 420px;
  }
  .side-card {
    position: static;
  }
  .signature-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-inner--video .hero-badge{
    font-size: 13px;
  }
  .site-header {
    height: 78px;
  }
  .container {
    padding-inline: 15px;
  }
  .header-shell {
    height: 76px;
  }
  .brand img {
    height: 70px;
  }
  .header-contact {
    display: none;
  }
  .hero-inner {
    gap: 24px;
    padding-block: 44px;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .lead {
    font-size: 1rem;
  }
  .hero-actions {
    display: grid;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-art {
    min-height: 330px;
  }
  .hero-video-section {
    padding-bottom: 70px;
  }
  .stats-overlap {
    margin-top: -56px;
    padding-bottom: 36px;
  }
  .stats-section {
    padding: 36px 0;
  }
  .stats-grid {
       grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin: -50px 0 0 0;
  }
  .stat-card {
        padding: 20px 10px;
        border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  }
  .stat-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .stat-number {
      font-size: 1.3rem;
  }
  .stat-label {
    font-size: 0.72rem;
  }
  .hero-art::before {
    inset: 24px;
    border-radius: 24px;
  }
  .hero-notes {
    grid-template-columns: 1fr;
  }
  .signature-strip {
    position: relative;
  }
  .signature-inner {
    grid-template-columns: 1fr;
  }
  .section,
  .section-alt {
    padding: 64px 0;
  }
  .services-grid,
  .feature-grid,
  .process-grid,
  .points-list,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .service-card .thumb {
    height: 220px;
    aspect-ratio: 0;
  }
  .media-frame,
  .media-frame img {
    min-height: 300px;
  }
  .cta-card {
    display: grid;
    padding: 30px 22px;
    border-radius: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .inner-hero {
    padding: 64px 0 42px;
  }
  .service-hero-media {
    height: 300px;
  }
  .floating-actions {
    right: 18px;
    bottom: 18px;
  }
  .float-btn {
    width: 54px;
    height: 54px;
  }
  .float-btn.phone {
    display: flex;
  }
  .footer-bottom {
    text-align: center;
  }
  .mobile-drawer {
    width: min(355px, 92vw);
  }
}
@media (max-width: 430px) {
  .container {
        padding-inline: 25px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .section-title {
    font-size: 1.65rem;
  }
  .btn {
    padding: 12px 18px;
  }
  .drawer-nav {
    padding: 14px;
  }
  .drawer-services {
    padding: 8px;
  }
  .service-card .content {
    padding: 40px 20px 22px;
  }
  .points-list li {
    font-size: 0.95rem;
  }
  .icon-badge {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    right: 18px;
    bottom: 10px;
  }
  .icon-badge i {
    font-size: 1.22rem;
  }
  .hero-art {
    min-height: 300px;
  }
  .saudi-tower-svg {
    width: 110%;
  }
}

/* =========================================================
   ADDED — New sections (projects gallery, slider, documents,
   back-to-top, footer bottom, nav spacing)
   ========================================================= */

/* ---- Footer bottom: rights text + vectoorize link ---- */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 22px;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
}
.footer-bottom-inner .dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: inline-block;
}
@media (max-width: 560px) {
  .footer-bottom-inner .dot-sep {
    display: none;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
  }
}

/* ---- Nav: tighten spacing slightly once two extra links are added ---- */
@media (min-width: 1101px) and (max-width: 1320px) {
  .main-nav {
    gap: 2px;
  }
  .nav-link {
    padding: 10px 12px;
    font-size: 0.94rem;
  }
}

/* ---- Back to top button (left side) ---- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 85;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 18px 30px -18px rgba(17, 26, 43, 0.55);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s var(--ease);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .back-to-top {
    left: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
}

/* ---- Projects gallery (مشاريعنا) ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(17, 26, 43, 0.55) 100%
  );
  opacity: 0;
  transition: 0.25s;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item .expand-icon {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s;
  z-index: 2;
}
.gallery-item:hover .expand-icon {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(17, 26, 43, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.28s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox-figure {
  position: relative;
  max-width: 88vw;
  max-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-figure img {
  max-width: 88vw;
  max-height: 84vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: scale(0.97);
  transition: 0.25s var(--ease);
}
.lightbox.is-open .lightbox-figure img {
  opacity: 1;
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  z-index: 2;
}
.lightbox-close:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  z-index: 2;
}
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.lightbox-nav.prev {
  right: 18px;
}
.lightbox-nav.next {
  left: 18px;
}
.lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  direction: ltr;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 999px;
}
@media (max-width: 600px) {
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }
  .lightbox-close {
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
  }
  .lightbox-nav.prev {
    right: 8px;
  }
  .lightbox-nav.next {
    left: 8px;
  }
}

/* ---- Projects slider (homepage) ---- */
.projects-slider-section {
  overflow: hidden;
}
.project-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.slider-viewport {
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider-viewport::-webkit-scrollbar {
  display: none;
}
.slider-track {
  display: flex;
  gap: 20px;
  padding: 6px 2px 14px;
}
.slider-slide {
  position: relative;
  flex: 0 0 auto;
  width: 320px;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.slider-slide:hover img {
  transform: scale(1.07);
}
.slider-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(17, 26, 43, 0.6) 100%
  );
  opacity: 0;
  transition: 0.3s;
}
.slider-slide:hover::after {
  opacity: 1;
}
.slider-slide .expand-icon {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s;
  z-index: 2;
}
.slider-slide:hover .expand-icon {
  opacity: 1;
  transform: translateY(0);
}
.slider-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: 0.22s;
  cursor: pointer;
}
.slider-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.slider-cta {
  text-align: center;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .slider-slide {
    width: 250px;
  }
  .project-slider {
    padding: 0 12px;
    gap: 8px;
  }
  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
  }
}
@media (max-width: 480px) {
  .slider-btn {
    display: none;
  }
}

/* ---- Documents page (وثائق الشركة) ---- */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.doc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px -34px rgba(17, 26, 43, 0.4);
  transition: 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.doc-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.doc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.doc-thumb .doc-type {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.doc-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.doc-card h3 {
  font-size: 1.05rem;
  line-height: 1.5;
}
.doc-card p {
  font-size: 0.9rem;
  color: var(--navy-soft);
}
.doc-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}
.doc-actions .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 0.86rem;
  border-radius: 12px;
}
@media (max-width: 1100px) {
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }
}
