/* =============================================
   BSMH TRADING – LUXURY EDITION
   Brand: Deep Navy #162544 | Gold #C4A35A | Cream #FAFAF7
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cairo:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ──────────────────────────────── */
:root {
  /* Brand palette from logo.png */
  --navy:        #073756;
  --navy-dark:   #031c2c;
  --navy-mid:    #073756;
  --navy-light:  #0c4e78;

  /* Logo accent (Teal / Cyan) */
  --gold:        #55C6D2;
  --gold-dark:   #38a5b2;
  --gold-light:  #75d9e4;
  --gold-pale:   #e8f8fa;

  /* Retained teal aliases */
  --teal:        #55C6D2;
  --teal-pale:   #e8f8fa;

  /* Neutrals & Surfaces */
  --white:       #ffffff;
  --cream:       #F8FAFC;
  --off-white:   #F1F5F9;
  --light-gray:  #E2E8F0;
  --border:      #E2E8F0;
  --border-dark: #CBD5E1;
  --text-dark:   #0E1720;
  --text-body:   #334155;
  --text-muted:  #64748B;

  /* Radius */
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   12px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 16px rgba(14,23,32,.06);
  --shadow:      0 6px 32px rgba(14,23,32,.10);
  --shadow-lg:   0 16px 56px rgba(14,23,32,.16);

  /* Motion — slower, more deliberate */
  --trans:       all .42s cubic-bezier(.25,.46,.45,.94);
  --trans-fast:  all .22s cubic-bezier(.25,.46,.45,.94);

  /* Fonts */
  --ff-serif:    'Playfair Display', Georgia, serif;
  --ff-ar:       'Cairo', 'Segoe UI', system-ui, sans-serif;
  --ff-en:       'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --header-h:    88px;
  --topbar-h:    42px;
  --container:   1260px;
  --section-pad: 120px;
}

/* ── RESET & SCROLLBAR SUPPRESSION ───────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

body {
  font-family: var(--ff-en);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.lang-ar { font-family: var(--ff-ar); direction: rtl; }
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3 {
  font-family: var(--ff-serif);
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -.02em;
}
body.lang-ar h1, body.lang-ar h2, body.lang-ar h3 {
  font-family: var(--ff-ar);
  letter-spacing: 0;
}
h4, h5, h6 { line-height: 1.3; color: var(--text-dark); }

/* ── LANG VISIBILITY ─────────────────────── */
/* In English mode (default) */
body:not(.lang-ar) .lang-ar,
html[lang="en"] body:not(.lang-ar) .lang-ar,
html[dir="ltr"] body:not(.lang-ar) .lang-ar {
  display: none !important;
}

/* In Arabic mode */
body.lang-ar .lang-en,
html[lang="ar"] .lang-en,
html[dir="rtl"] .lang-en {
  display: none !important;
}

/* Arabic element specific display restores */
body.lang-ar div.lang-ar, html[dir="rtl"] div.lang-ar,
body.lang-ar p.lang-ar, html[dir="rtl"] p.lang-ar,
body.lang-ar h1.lang-ar, html[dir="rtl"] h1.lang-ar,
body.lang-ar h2.lang-ar, html[dir="rtl"] h2.lang-ar,
body.lang-ar h3.lang-ar, html[dir="rtl"] h3.lang-ar,
body.lang-ar h4.lang-ar, html[dir="rtl"] h4.lang-ar,
body.lang-ar h5.lang-ar, html[dir="rtl"] h5.lang-ar,
body.lang-ar h6.lang-ar, html[dir="rtl"] h6.lang-ar,
body.lang-ar ul.lang-ar, html[dir="rtl"] ul.lang-ar,
body.lang-ar ol.lang-ar, html[dir="rtl"] ol.lang-ar,
body.lang-ar section.lang-ar, html[dir="rtl"] section.lang-ar,
body.lang-ar .footer-col.lang-ar, html[dir="rtl"] .footer-col.lang-ar,
body.lang-ar .feat-card.lang-ar, html[dir="rtl"] .feat-card.lang-ar {
  display: block !important;
}

body.lang-ar li.lang-ar, html[dir="rtl"] li.lang-ar {
  display: block !important;
}

body.lang-ar span.lang-ar, html[dir="rtl"] span.lang-ar,
body.lang-ar strong.lang-ar, html[dir="rtl"] strong.lang-ar,
body.lang-ar b.lang-ar, html[dir="rtl"] b.lang-ar,
body.lang-ar em.lang-ar, html[dir="rtl"] em.lang-ar,
body.lang-ar label.lang-ar, html[dir="rtl"] label.lang-ar {
  display: inline !important;
}

body.lang-ar span.hero-tag.lang-ar, html[dir="rtl"] span.hero-tag.lang-ar,
body.lang-ar span.section-label.lang-ar, html[dir="rtl"] span.section-label.lang-ar,
body.lang-ar .section-label.lang-ar, html[dir="rtl"] .section-label.lang-ar,
body.lang-ar span.tag.lang-ar, html[dir="rtl"] span.tag.lang-ar,
body.lang-ar span.card-tag.lang-ar, html[dir="rtl"] span.card-tag.lang-ar {
  display: inline-flex !important;
}

body.lang-ar a.lang-ar, html[dir="rtl"] a.lang-ar,
body.lang-ar button.lang-ar, html[dir="rtl"] button.lang-ar {
  display: inline-flex !important;
}

body.lang-ar a.portrait-card-link.lang-ar, html[dir="rtl"] a.portrait-card-link.lang-ar,
body.lang-ar a.card-link.lang-ar, html[dir="rtl"] a.card-link.lang-ar,
body.lang-ar a.hero-btn.lang-ar, html[dir="rtl"] a.hero-btn.lang-ar,
body.lang-ar a.btn-teal.lang-ar, html[dir="rtl"] a.btn-teal.lang-ar,
body.lang-ar a.btn-primary.lang-ar, html[dir="rtl"] a.btn-primary.lang-ar,
body.lang-ar a.btn-secondary.lang-ar, html[dir="rtl"] a.btn-secondary.lang-ar,
body.lang-ar a.btn-outline-white.lang-ar, html[dir="rtl"] a.btn-outline-white.lang-ar,
body.lang-ar a.btn-outline-navy.lang-ar, html[dir="rtl"] a.btn-outline-navy.lang-ar,
body.lang-ar a.nav-contact-btn.lang-ar, html[dir="rtl"] a.nav-contact-btn.lang-ar {
  display: inline-flex !important;
}

body.lang-ar button.form-submit.lang-ar, html[dir="rtl"] button.form-submit.lang-ar {
  display: block !important;
}

body.lang-ar .nav-links li.lang-ar a, html[dir="rtl"] .nav-links li.lang-ar a {
  display: block !important;
}

/* ── RTL ENHANCEMENTS ────────────────────── */
body.lang-ar {
  direction: rtl;
  text-align: right;
}
body.lang-ar .hero-inner {
  text-align: right;
}
body.lang-ar .section-head {
  text-align: center;
}
body.lang-ar .art-body {
  text-align: right;
}
body.lang-ar .check-list li {
  justify-content: flex-start;
  text-align: right;
}
body.lang-ar .check-list li::before {
  margin-left: 10px;
  margin-right: 0;
}
body.lang-ar .why-list .why-item {
  text-align: right;
}
body.lang-ar .form-group label {
  text-align: right;
}
body.lang-ar .form-group input,
body.lang-ar .form-group select,
body.lang-ar .form-group textarea {
  text-align: right;
  direction: rtl;
}
body.lang-ar .contact-info-block {
  text-align: right;
}
body.lang-ar .contact-item {
  text-align: right;
}
body.lang-ar .footer-brand p,
body.lang-ar .footer-col ul,
body.lang-ar .footer-col {
  text-align: right;
}
body.lang-ar .footer-contact-item {
  justify-content: flex-start;
  text-align: right;
}
body.lang-ar .nav-contact-btn {
  margin-left: 0 !important;
  margin-right: 16px !important;
}

/* Phone numbers & LTR data in RTL mode */
body.lang-ar a[href^="tel:"],
body.lang-ar .topbar-contact a,
body.lang-ar .footer-contact-item a,
body.lang-ar .ci-text a,
[dir="rtl"] a[href^="tel:"],
[dir="rtl"] .topbar-contact a,
[dir="rtl"] .footer-contact-item a,
[dir="rtl"] .ci-text a {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-flex;
  align-items: center;
}

/* ── CONTAINER ───────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ═══════════════════════════════════════════
   HEADER / NAVBAR (WITH INTEGRATED LANG TOGGLE)
═══════════════════════════════════════════ */
.topbar { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 120px;
  transition: all .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(14,23,32,.08);
  height: 88px;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo-img {
  height: 102px;
  width: auto;
  max-height: 108px;
  object-fit: contain;
  display: block;
  transition: all .3s ease;
}
.site-header.scrolled .logo-img {
  height: 72px;
}
.logo:hover .logo-img {
  transform: scale(1.03);
}

/* Nav */
.main-nav { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; }
.nav-links li a {
  padding: 10px 16px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--trans-fast);
  display: block;
  border-bottom: 2px solid transparent;
}
.nav-links li a:hover { color: var(--navy); }
.nav-links li a.active { color: var(--navy); border-color: var(--gold); }

/* Header Actions & Lang Toggle */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 20px;
}
body.lang-ar .header-actions,
html[dir="rtl"] .header-actions {
  margin-left: 0;
  margin-right: 20px;
}

.header-lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px 4px;
  gap: 2px;
}

.header-lang-switch .lang-btn {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  transition: all .25s ease;
  cursor: pointer;
  border: none;
  background: transparent;
  text-transform: uppercase;
  font-family: inherit;
}

.header-lang-switch .lang-btn:hover {
  color: var(--navy);
}

.header-lang-switch .lang-btn.active {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(7,55,86,0.22);
}

.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff !important;
  padding: 11px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: .8rem !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  transition: var(--trans) !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(7,55,86,0.18);
}
.nav-contact-btn:hover {
  background: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(85,198,210,0.35);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--navy);
  padding: 8px;
  cursor: pointer;
}

.contact-sidebar {
  display: none !important;
}

/* ═══════════════════════════════════════════
   HERO — Full-bleed image with overlay
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(12,26,46,.82) 0%,
    rgba(12,26,46,.5) 55%,
    rgba(12,26,46,.15) 100%
  );
}
body.lang-ar .hero-overlay {
  background: linear-gradient(
    to right,
    rgba(12,26,46,.82) 0%,
    rgba(12,26,46,.5) 55%,
    rgba(12,26,46,.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.hero-inner {
  max-width: 640px;
  margin-left: auto; /* right side for LTR */
}
body.lang-ar .hero-inner { margin-left: 0; margin-right: auto; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 0 12px 0;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(85,198,210,.4);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: var(--ff-serif);
  letter-spacing: -.01em;
}
body.lang-ar .hero h1 {
  font-family: var(--ff-ar);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.88);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 16px 36px;
  border-radius: 0;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.hero-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.hero-btn:hover::after { transform: scaleX(1); }
.hero-btn span { position: relative; z-index: 1; }
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,.6);
  transition: var(--trans);
  margin-right: 14px;
}
body.lang-ar .hero-btn-outline { margin-right: 0; margin-left: 14px; }
.hero-btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.4);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section { padding: var(--section-pad) 0; }
.section-sm { padding: 64px 0; }
.bg-white  { background: var(--white); }
.bg-light  { background: var(--cream); }
.bg-navy   { background: var(--navy); color: #fff; }
.bg-navy-dark { background: var(--navy-dark); color: #fff; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: var(--ff-serif);
  letter-spacing: -.02em;
}
body.lang-ar .section-title {
  font-family: var(--ff-ar);
  letter-spacing: 0;
}
.bg-navy .section-title,
.bg-navy-dark .section-title { color: #fff; }
.section-sub {
  font-size: .97rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.85;
}
.bg-navy .section-sub,
.bg-navy-dark .section-sub { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════
   ABOUT SPLIT — half navy / half white
═══════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.about-split-navy {
  background: var(--navy);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split-white {
  background: var(--white);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.about-split-img {
  position: absolute;
  inset: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-split-img img { width: 100%; height: 100%; object-fit: cover; }
.about-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.about-split-navy .about-label { color: var(--gold-light); }
.about-h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  font-family: var(--ff-serif);
  letter-spacing: -.01em;
}
.about-h3 {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  font-weight: 400;
  margin-bottom: 24px;
  font-style: italic;
}
.about-p {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 12px;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .92rem;
  transition: var(--trans);
  margin-top: 24px;
  align-self: flex-start;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.about-split-right-text {
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.8;
}
.about-split-right-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.about-split-right-text p { margin-bottom: 14px; }

/* ═══════════════════════════════════════════
   PORTRAIT CARDS (like AlBaddad solutions grid)
═══════════════════════════════════════════ */
.portrait-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
}
.portrait-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.portrait-card:hover img { transform: scale(1.06); }
.portrait-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,26,46,.9) 0%, rgba(12,26,46,.2) 55%, transparent 100%);
  transition: var(--trans);
}
.portrait-card:hover .portrait-card-overlay { background: linear-gradient(to top, rgba(12,26,46,.94) 0%, rgba(12,26,46,.35) 55%, rgba(12,26,46,.05) 100%); }
.portrait-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
}
.portrait-card-body h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: var(--ff-serif);
  letter-spacing: -.01em;
}
.portrait-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--trans);
}
.portrait-card:hover .portrait-card-link { color: var(--gold-light); gap: 10px; }
.portrait-card-link svg { width: 12px; height: 12px; }

/* Carousel nav */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  font-size: 1rem;
}
.carousel-btn:hover { background: var(--navy); transform: scale(1.08); }

/* ═══════════════════════════════════════════
   HOW IT WORKS — Steps
═══════════════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--trans);
  font-family: var(--ff-serif);
}
.step-item:hover .step-circle {
  background: var(--gold);
  color: var(--navy-dark);
}
.step-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.step-item p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════
   WHY US — Feature List with icons
═══════════════════════════════════════════ */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-lg);
}
.why-img img { width: 100%; height: 100%; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: var(--trans);
}
.why-item:hover .why-icon-wrap { background: var(--gold); }
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.why-item p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════
   TESTIMONIALS GRID — premium navy section
═══════════════════════════════════════════ */
.testimonials-section {
  background: var(--navy);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(70,190,203,.06);
  pointer-events: none;
}
.testimonials-section .section-label { color: var(--teal); }
.testimonials-section .section-label::before,
.testimonials-section .section-label::after { background: var(--teal); opacity: .4; }
.testimonials-section .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.tcard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--trans);
  backdrop-filter: blur(4px);
}
.tcard:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(70,190,203,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.tcard-stars {
  display: flex;
  gap: 3px;
}
.tcard-stars span {
  color: #F5C518;
  font-size: 1rem;
}
.tcard-top { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tcard-quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: .7;
  color: var(--teal);
  opacity: .5;
  font-style: italic;
  user-select: none;
}
.tcard-text {
  font-size: .97rem;
  color: rgba(255,255,255,.85);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.tcard-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(70,190,203,.5);
}
.tcard-author-initials {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcard-author strong {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 2px;
}
.tcard-author span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════
   GALLERY MASONRY
═══════════════════════════════════════════ */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════════
   TESTIMONIALS — Focus carousel (like AlBaddad news)
═══════════════════════════════════════════ */
.testimonials-track-wrap { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  padding: 20px 0;
}
.testimonial-slide {
  min-width: calc(50% - 12px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--trans);
  flex-shrink: 0;
}
.testimonial-slide.active { box-shadow: var(--shadow-lg); transform: scale(1.02); }
.testimonial-quote {
  font-size: 3rem;
  color: var(--teal-pale);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal-pale);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-weight: 700; color: var(--text-dark); font-size: .95rem; }
.testimonial-author span { font-size: .82rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   PARTNERS STRIP
═══════════════════════════════════════════ */
.partners-section { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.partners-strip img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .5;
  transition: var(--trans);
}
.partners-strip img:hover { filter: none; opacity: 1; }

/* ═══════════════════════════════════════════
   SERVICES / BLOG CARDS
═══════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.card-body h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.card-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: .85rem;
  font-weight: 700;
  transition: var(--trans);
  margin-top: auto;
}
.card-link:hover { gap: 10px; color: var(--gold-dark); }

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(85,198,210,.2);
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(85,198,210,.05);
  top: -200px;
  right: -100px;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(85,198,210,.04);
  bottom: -150px;
  left: -50px;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-family: var(--ff-serif);
}
.cta-band p {
  color: rgba(255,255,255,.6);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: .97rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 15px 36px;
  border-radius: 0;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: var(--trans);
  position: relative;
  z-index: 1;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(85,198,210,.3); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.8);
  padding: 13px 32px;
  border-radius: 0;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.25);
  transition: var(--trans);
  margin-right: 14px;
}
body.lang-ar .btn-secondary { margin-right: 0; margin-left: 14px; }
.btn-secondary:hover { border-color: rgba(85,198,210,.6); color: var(--gold-light); }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  text-align: right;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  gap: 16px;
  transition: var(--trans);
  background: none;
  border: none;
  font-family: inherit;
}
body.lang-ar .faq-btn { text-align: right; }
body:not(.lang-ar) .faq-btn { text-align: left; }
.faq-btn:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--trans);
}
.faq-btn.open .faq-icon { background: var(--teal); border-color: var(--teal); color: #fff; }
.faq-answer {
  display: none;
  padding: 0 4px 22px;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-answer.open { display: block; }

/* ═══════════════════════════════════════════
   CONTACT LAYOUT
═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-block { padding: 0; }
.contact-info-block h2 { font-size: 1.9rem; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.contact-info-block .subtitle { color: var(--text-muted); margin-bottom: 36px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-text strong { display: block; font-weight: 700; color: var(--text-dark); font-size: .9rem; margin-bottom: 3px; }
.ci-text a, .ci-text span { color: var(--text-muted); font-size: .9rem; transition: var(--trans); display: block; line-height: 1.6; }
.ci-text a:hover { color: var(--gold); }

/* Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: var(--trans);
  background: var(--off-white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(85,198,210,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 15px;
  border-radius: 0;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  font-family: inherit;
}
.form-submit:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,32,64,.85) 0%, rgba(14,32,64,.4) 60%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 2; width: 100%; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb span { color: var(--gold-light); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.12;
  font-family: var(--ff-serif);
}

/* ═══════════════════════════════════════════
   ARTICLE LAYOUT (two col)
═══════════════════════════════════════════ */
.art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.art-grid.reverse .art-img { order: 2; }
.art-grid.reverse .art-body { order: 1; }
.art-img { border-radius: var(--radius-lg); overflow: hidden; height: 440px; box-shadow: var(--shadow-lg); }
.art-img img { width: 100%; height: 100%; }
.art-body { }
.art-body .tag { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.art-body h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; line-height: 1.25; }
.art-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 20px 0 8px; }
.art-body p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.check-list { margin: 16px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 9px;
  line-height: 1.6;
}
.check-list li::before { content: "—"; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 13px 30px;
  border-radius: 0;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: var(--trans);
  margin-top: 12px;
}
.btn-teal:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 11px 28px;
  border-radius: 0;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  transition: var(--trans);
  margin-top: 12px;
  margin-right: 12px;
}
body.lang-ar .btn-outline-navy { margin-right: 0; margin-left: 12px; }
.btn-outline-navy:hover { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }

/* ═══════════════════════════════════════════
   FEATURES GRID (4 col icons)
═══════════════════════════════════════════ */
.features-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--trans);
}
.feat-card:hover { box-shadow: var(--shadow); border-color: var(--gold-pale); transform: translateY(-3px); }
.feat-icon { font-size: 2rem; margin-bottom: 14px; }
.feat-card h4 { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.feat-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }


/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .4s ease, transform .4s ease;
}
.js .fade-up:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}
.fade-up.visible,
body.lang-ar .fade-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .portrait-grid { grid-template-columns: repeat(2, 1fr); }
  .features-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-pad: 64px; }
  .about-split { grid-template-columns: 1fr; }
  .about-split-navy { padding: 56px 32px; }
  .about-split-white { padding: 56px 32px; min-height: 340px; }
  .about-split-img { position: relative; inset: auto; height: 280px; border-radius: var(--radius); }
  .why-split { grid-template-columns: 1fr; }
  .why-img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .art-grid, .art-grid.reverse { grid-template-columns: 1fr; }
  .art-grid.reverse .art-img, .art-grid.reverse .art-body { order: unset; }
  .art-img { height: 300px; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-inner { padding: 0 20px; flex-wrap: wrap; gap: 8px; }
  .header-inner { padding: 0 20px; }
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: calc(var(--header-h) + var(--topbar-h));
    inset-inline: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 998;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { padding: 12px 16px; border-radius: var(--radius); }
  .nav-contact-btn { margin: 8px 16px; }
  .hero { height: 80vh; min-height: 520px; }
  .hero-content { padding: 0 20px; }
  .portrait-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
  .contact-sidebar { display: none; }
  .testimonial-slide { min-width: 90%; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .portrait-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .features-4 { grid-template-columns: 1fr 1fr; }
}

/* ── RTL MICRO-ADJUSTMENTS ────────────────── */
body.lang-ar .about-split { direction: rtl; }
body.lang-ar .footer-main { direction: rtl; }
body.lang-ar .steps-row::before { left: 15%; right: 15%; }
body.lang-ar .contact-grid { direction: rtl; }

/* ═══════════════════════════════════════════
   NEW CORPORATE COMPONENTS & LEADERSHIP
═══════════════════════════════════════════ */

/* ── 4 PRINCIPLES GRID ──────────────────── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.principle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: var(--trans);
  text-align: center;
}
.principle-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.principle-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: .4;
  margin-bottom: 8px;
  font-family: var(--ff-serif);
}
body.lang-ar .principle-num {
  font-family: var(--ff-ar);
}
.principle-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.principle-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 6-STEP WORKFLOW ─────────────────────── */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.workflow-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--trans);
}
.workflow-card:hover {
  transform: translateY(-3px);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.workflow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.workflow-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.workflow-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── LEADERSHIP PROFILES ─────────────────── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.leader-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.leader-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: #eef3f7;
  border-bottom: 1px solid var(--border);
}
.leader-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.leader-card:hover .leader-img-wrap img {
  transform: scale(1.03);
}
.leader-content {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.leader-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.leader-role {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.leader-subtitle {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.leader-bio {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}
.leader-quote-box {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .86rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}
body.lang-ar .leader-quote-box {
  border-left: none;
  border-right: 3px solid var(--gold);
  border-radius: var(--radius) 0 0 var(--radius);
  font-style: normal;
}

/* ── LUXURY VECTOR ICON SYSTEM ───────────── */
.why-item {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.why-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.why-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, rgba(85,198,210,0.18) 100%);
  border: 1px solid rgba(85,198,210,0.35);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: var(--trans);
}
.why-item:hover .why-icon-wrap {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.08) rotate(4deg);
  border-color: var(--gold);
}

.commitment-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  border: 1px solid rgba(85,198,210,0.3);
  transition: var(--trans);
}
.commitment-card:hover .commitment-icon {
  transform: scale(1.08) rotate(-4deg);
  background: var(--gold);
  color: var(--navy);
}

.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--gold-pale);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  border: 1px solid rgba(85,198,210,0.4);
  transition: var(--trans);
}
.feat-card:hover .feat-icon {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.08);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.ci-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--gold-pale);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(85,198,210,0.3);
  transition: var(--trans);
}
.contact-item:hover .ci-icon {
  background: var(--navy);
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--trans);
}
.social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ── EXECUTIVE LETTERS (CHAIRMAN & CEO) ──── */
.exec-letter-card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  margin-top: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.exec-letter-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 160px;
  line-height: 1;
  color: rgba(85,198,210,.08);
  font-family: var(--ff-serif);
  pointer-events: none;
}
body.lang-ar .exec-letter-card::before {
  right: auto;
  left: 30px;
}
.exec-letter-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.exec-letter-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.exec-letter-body p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.exec-letter-author {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(85,198,210,.25);
}
.exec-letter-author strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
}
.exec-letter-author span {
  font-size: .85rem;
  color: var(--gold-light);
}

/* ── CORPORATE COMMITMENTS (QUALITY, SAFETY, SUSTAINABILITY) ── */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.commitment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--trans);
}
.commitment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.commitment-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.commitment-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.commitment-subtitle {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.commitment-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── ROADMAP TIMELINE ────────────────────── */
.roadmap-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  position: relative;
}
.roadmap-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--trans);
}
.roadmap-card.active-phase {
  border-color: var(--gold);
  background: linear-gradient(to bottom, #ffffff, var(--gold-pale));
}
.roadmap-year {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  background: var(--gold-pale);
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  border: 1px solid rgba(85,198,210,.3);
}
.roadmap-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.roadmap-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── RESPONSIVE COMPONENT ADJUSTMENTS ────── */
@media (max-width: 1024px) {
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; }
  .commitments-grid { grid-template-columns: 1fr; }
  .roadmap-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .principles-grid { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; }
  .exec-letter-card { padding: 36px 24px; }
}

/* ── FLOATING ACTION BUTTONS (CIRCULAR) ─────────── */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

body.lang-ar .floating-actions,
html[dir="rtl"] .floating-actions {
  right: auto;
  left: 28px;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: all .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  text-decoration: none;
  border: none;
}

/* WhatsApp Circular Floating Button (+974 5588 8359) */
.floating-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  font-size: 2rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

/* Back to Top Circular Floating Button (Pictorial Logo Only, No Arrow) */
.floating-back-top {
  background: linear-gradient(145deg, #073756 0%, #031c2c 100%);
  border: 1.5px solid rgba(85, 198, 210, 0.5);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.85);
}

.floating-back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-back-top:hover {
  background: linear-gradient(145deg, #0a4970 0%, #073756 100%);
  border-color: var(--gold);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 14px 32px rgba(7, 55, 86, 0.45), 0 0 20px rgba(85, 198, 210, 0.45);
}

.floating-top-icon {
  width: 32px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(85, 198, 210, 0.4));
  transition: transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-back-top:hover .floating-top-icon {
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  body.lang-ar .floating-actions,
  html[dir="rtl"] .floating-actions {
    left: 20px;
    right: auto;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp {
    font-size: 1.7rem;
  }
  .floating-top-icon {
    width: 28px;
  }
}

/* ═══════════════════════════════════════════
   PREMIUM LUXURY FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #062338 0%, #02121d 100%);
  color: #e2e8f0;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid rgba(85, 198, 210, 0.25);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.85;
}

.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.3fr 1.5fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 145px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  margin-bottom: 28px;
  display: block;
}

.footer-brand p {
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.02em;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

body.lang-ar .footer-col h5::after,
html[dir="rtl"] .footer-col h5::after {
  left: auto;
  right: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

body.lang-ar .footer-col ul li a:hover,
html[dir="rtl"] .footer-col ul li a:hover {
  transform: translateX(-4px);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-contact-item span i {
  color: var(--gold) !important;
  font-size: 1.05rem;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(226, 232, 240, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

/* Footer Socials */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.footer-socials .social-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(85, 198, 210, 0.25);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-socials .social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(85, 198, 210, 0.35);
}

/* Footer Bottom Bar - Consistent Inter typography across English and Arabic */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
  padding: 22px 24px;
  max-width: 100%;
}

.footer-bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: center !important;
  align-items: center;
  text-align: center;
}

body.lang-ar .footer-bottom-inner,
body.lang-en .footer-bottom-inner,
.footer-bottom-inner,
.footer-bottom-inner span,
.footer-bottom-inner a {
  font-family: var(--ff-en) !important; /* 'Inter', sans-serif */
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.5 !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  color: rgba(226, 232, 240, 0.65) !important;
}

body.lang-ar .footer-bottom-inner a,
body.lang-en .footer-bottom-inner a,
.footer-bottom-inner a {
  color: var(--gold) !important;
  font-weight: 700 !important;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-left: 2px;
}

body.lang-ar .footer-bottom-inner a:hover,
body.lang-en .footer-bottom-inner a:hover,
.footer-bottom-inner a:hover {
  color: var(--gold-light) !important;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}



