/* =============================================
  ZEQVA - Premium Saudi Corporate Identity
  Traditional Luxury Stylesheet
  ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Cairo:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
  /* Core Palette */
  --navy:          #0F4C81;
  --navy-deep:     #0A3660;
  --navy-mid:      #135E9D;
  --navy-light:    #1D70B8;
  --gold:          #E28714;
  --gold-light:    #F1A80A;
  --gold-pale:     #FFF3D9;
  --gold-dark:     #C56F0D;
  --ivory:        #FAF7F2;
  --ivory-deep:   #F2EDE3;
  --cream:         #F7F0E3;
  --white:        #FFFFFF;
  --text-dark:    #1A1A2E;
  --text-mid:     #3D4B6A;
  --text-muted:   #7A8BA0;
  --border-light: #DDD5C8;
  --border-gold:   rgba(226,135,20,0.3);

  /* Shadows */
  --shadow-sm:  0 2px 16px rgba(15,76,129,0.10);
  --shadow-md:  0 8px 40px rgba(15,76,129,0.16);
  --shadow-lg:  0 20px 70px rgba(15,76,129,0.22);
  --shadow-gold: 0 8px 30px rgba(226,135,20,0.25);

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Cairo', 'Tajawal', sans-serif;
  --font-ar:      'Tajawal', 'Cairo', sans-serif;
  --fs-xs:   0.9rem;     /* labels, badges */
  --fs-sm:   1.0625rem;  /* secondary text */
  --fs-base: 1.2rem;     /* body / descriptions */
  --fs-md:   1.125rem;   /* card & feature titles */
  --fs-lg:   1.25rem;    /* emphasis titles */

  /* Spacing */
  --section-pad:  100px;
  --radius:       4px;
  --radius-md:    8px;
  --radius-lg:    12px;

  /* Transitions */
  --t-fast:   all 0.2s ease;
  --t-mid:    all 0.35s ease;
  --t-slow:   all 0.55s cubic-bezier(0.25,0.8,0.25,1);
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.rtl {
  font-family: var(--font-ar);
  direction: rtl;
  text-align: right;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===================== ORNAMENT PATTERNS ===================== */
.bg-pattern {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(226,135,20,0.15) 1px, transparent 0);
  background-size: 28px 28px;
}

.bg-geometric {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E28714' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

body.rtl h1, body.rtl h2, body.rtl h3,
body.rtl h4, body.rtl h5, body.rtl h6 {
  font-family: var(--font-ar);
  font-weight: 700;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

body.rtl .section-title { font-family: var(--font-ar); font-weight: 800; }

.section-subtitle {
  font-size: var(--fs-base);
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.85;
}

.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.2rem 0 1.8rem;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 80px;
}

.gold-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ===================== BUTTONS ===================== */
.btn-primary-z {
  background: var(--navy);
  color: var(--gold-light);
  padding: 14px 36px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--t-mid);
  position: relative;
  overflow: hidden;
}

.btn-primary-z::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  z-index: 0;
}

.btn-primary-z:hover {
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-primary-z:hover::before { transform: translateX(0); }
.btn-primary-z span, .btn-primary-z i { position: relative; z-index: 1; }

.btn-gold-z {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  padding: 14px 36px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--t-mid);
  position: relative;
  overflow: hidden;
}

.btn-gold-z:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-z {
  background: transparent;
  color: var(--navy);
  padding: 13px 34px;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--t-mid);
}

.btn-outline-z:hover {
  background: var(--navy);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  padding: 12px 32px;
  border: 1.5px solid rgba(226,135,20,0.6);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--t-mid);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

/* ===================== SECTION UTILITIES ===================== */
.section-pad { padding: var(--section-pad) 0; }
.section-pad-sm { padding: 70px 0; }
.section-pad > .container > .row.justify-content-center.text-center.mb-5 {
  margin-bottom: 3rem !important;
}
.bg-ivory { background: var(--ivory); }
.bg-navy { background: var(--navy); }
.bg-navy-deep { background: var(--navy-deep); }
.text-gold { color: var(--gold); }

/* ===================== TOPBAR ===================== */
#topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(226,135,20,0.35);
}

#topbar a {
  color: rgba(255,255,255,0.72);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--t-fast);
}

#topbar a:hover { color: var(--gold-light); }
#topbar i { color: var(--gold); font-size: 0.75rem; }

.social-topbar { display: flex; gap: 4px; }

.social-topbar a {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.72rem;
  transition: var(--t-fast);
}

.social-topbar a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep) !important;
}

.lang-switcher {
  background: rgba(226,135,20,0.15);
  border: 1px solid rgba(226,135,20,0.4);
  border-radius: var(--radius);
  padding: 4px 12px;
  cursor: pointer;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
}

.lang-switcher:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

/* ===================== NAVBAR ===================== */
#mainNav {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 24px rgba(12,28,58,0.06);
  transition: var(--t-mid);
}

#mainNav.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

#mainNav.scrolled .navbar-brand { padding: 10px 0; }

#mainNav .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 0;
  transition: var(--t-mid);
  flex: 0 0 auto;
}

#navbarMain {
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media (min-width: 992px) {
  #mainNav .container {
    min-height: 128px;
  }
  #navbarMain,
  .navbar-expand-lg .navbar-collapse#navbarMain {
    display: flex !important;
  }
  .navbar-nav .nav-link {
    min-height: auto;
    height: auto;
    align-self: center;
    margin: 0 4px;
    padding: 12px 20px !important;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .navbar-nav .nav-link::after {
    display: none !important;
  }
  .navbar-nav .nav-link:hover {
    background: rgba(226, 135, 20, 0.1);
    border-color: rgba(226, 135, 20, 0.25);
    color: var(--navy) !important;
  }
  .navbar-nav .nav-link.active {
    background: linear-gradient(180deg, rgba(226, 135, 20, 0.2), rgba(226, 135, 20, 0.1));
    border-color: rgba(226, 135, 20, 0.5);
    box-shadow: 0 2px 14px rgba(226, 135, 20, 0.18);
    color: var(--navy-deep) !important;
  }
}

@media (max-width: 991.98px) {
  body { overflow-x: hidden; }
  #mainNav .container {
    align-items: center;
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-toggler {
    margin-inline-start: auto;
    padding: 8px;
    z-index: 2;
  }
  #navbarMain .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }
  #navbarMain .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(15, 76, 129, 0.08);
  }
  #navbarMain .navbar-nav .nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: auto;
    padding: 14px 12px !important;
  }
  #navbarMain .navbar-actions {
    width: 100%;
    margin: 12px 0 4px;
    padding: 12px 0 0;
    border-top: 1px solid var(--border-light);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .navbar-actions .lang-switcher,
  .navbar-actions .nav-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .nav-cta-btn {
    text-transform: none;
    font-size: 0.95rem;
    margin: 0 !important;
  }
  .nav-link.has-mega {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  .nav-link.has-mega::before { display: none; }
  .nav-link.has-mega::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    margin-inline-start: 12px;
    color: var(--gold);
    transition: transform 0.25s ease;
  }
  .nav-item.show-mega > .nav-link.has-mega::after {
    transform: rotate(180deg);
  }
  .mega-menu-wrapper,
  body.rtl .mega-menu-wrapper {
    position: static;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    box-shadow: none;
    border: 0;
    border-top: 1px solid var(--border-light);
    padding: 10px 4px 4px;
    display: none;
    max-height: min(65vh, 440px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-item:hover .mega-menu-wrapper {
    transform: none !important;
  }
  .nav-item.show-mega .mega-menu-wrapper.mega-menu-trad {
    display: block;
    visibility: visible;
  }
  .mega-services-grid--all .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mega-services-grid--all .col-6:nth-child(odd) .mega-service-item,
  .mega-services-grid--all .col-6 .mega-service-item {
    border-inline-end: 0 !important;
  }
  .mega-service-item { padding: 12px 10px; }
  .mega-service-item h6 { font-size: 0.86rem; line-height: 1.4; }
  .mega-menu-wrapper .d-flex.mb-3 {
    flex-wrap: wrap;
    gap: 8px;
  }
  .mega-view-all-link { font-size: 0.82rem; }
}

.navbar-main-logo {
  height: auto;
  max-height: 92px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

#mainNav .navbar-toggler {
  padding: 10px 12px;
}

#mainNav .navbar-toggler i {
  font-size: 1.55rem;
  color: var(--navy);
}

.logo-emblem {
  width: 62px;
  height: 62px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-emblem::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 2px;
}

body.rtl .logo-name { font-family: var(--font-ar); }

.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 3px;
}

/* Nav Links */
.navbar-nav .nav-item { position: relative; }

@media (min-width: 992px) {
  #navbarMain,
  #navbarMain .navbar-nav {
    position: static;
  }
  .navbar-nav > .nav-item:has(.mega-menu-wrapper) {
    position: static;
  }
}

.navbar-nav {
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
}

.navbar-nav .nav-link {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-mid) !important;
  padding: 0 18px !important;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  transition: var(--t-fast);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--navy) !important;
}

/* Dropdown toggle arrow */
.nav-link.has-mega::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 1100;
}

.nav-item:hover > .nav-link.has-mega::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* CTA Nav Button */
.nav-cta-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep) !important;
  border: 1px solid rgba(197,111,13,0.45);
  min-height: auto !important;
  padding: 16px 30px !important;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-left: 0;
  text-transform: uppercase;
  transition: var(--t-mid) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
}

button.nav-cta-btn {
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: var(--navy-deep) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-lang-item {
  margin-left: 6px;
  display: flex;
  align-items: center;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
  margin-inline-start: 18px;
}

.navbar-actions .lang-switcher {
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--navy);
  background: rgba(15,76,129,0.06);
  border: 1px solid rgba(15,76,129,0.22);
}

.navbar-actions .lang-switcher:hover {
  background: linear-gradient(135deg, rgba(15,76,129,0.08), rgba(226,135,20,0.14));
  color: var(--navy-deep);
}

.navbar-actions .lang-switcher,
.navbar-actions .nav-cta-btn {
  margin: 0;
}

.nav-lang-item .lang-switcher {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(15,76,129,0.28);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.76rem;
  letter-spacing: 0.4px;
  height: auto;
  line-height: 1;
  min-height: auto;
  display: inline-flex;
  align-items: center;
}

.nav-lang-item .lang-switcher i {
  color: var(--gold);
}

.nav-lang-item .lang-switcher:hover {
  background: linear-gradient(135deg, rgba(15,76,129,0.08), rgba(226,135,20,0.12));
  border-color: rgba(226,135,20,0.5);
  color: var(--navy-deep);
}

/* ===================== MEGA MENU ===================== */
.mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(1320px, calc(100vw - 32px));
  background: var(--white);
  border: 1px solid rgba(15,76,129,0.14);
  border-top: 4px solid var(--navy);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 24px 56px rgba(10,54,96,0.2);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1099;
  pointer-events: none;
  overflow: hidden;
}

.mega-menu-wrapper::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226,135,20,0.45), transparent);
}

.nav-item:hover > .mega-menu-wrapper,
.nav-item:focus-within > .mega-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.mega-menu-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 16px;
}

.mega-view-all-link,
.mega-view-all-btn {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}

.mega-view-all-link:hover,
.mega-view-all-btn:hover {
  color: var(--gold-dark);
}

.mega-trad-diamond {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 2px rgba(226, 135, 20, 0.18);
}

/* Mega trad — desktop */
@media (min-width: 992px) {
  .mega-menu-trad.mega-menu-wrapper {
    display: block;
  }

  .mega-menu-trad .mega-trad-head {
    padding: 22px 36px 18px;
    margin: 0 !important;
    background: linear-gradient(180deg, rgba(15, 76, 129, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-light);
  }

  .mega-menu-trad .mega-menu-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--navy-deep);
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0 !important;
  }

  body.rtl .mega-menu-trad .mega-menu-title {
    font-family: var(--font-ar);
  }

  .mega-menu-trad .mega-view-all-btn,
  .mega-menu-trad .mega-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: var(--gold-light) !important;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy)) !important;
    border: 1px solid rgba(226, 135, 20, 0.4);
    border-radius: var(--radius);
    white-space: nowrap;
  }

  .mega-menu-trad .mega-view-all-btn:hover,
  .mega-menu-trad .mega-view-all-link:hover {
    color: var(--white) !important;
    box-shadow: 0 6px 20px rgba(10, 54, 96, 0.25);
  }

  .mega-menu-trad .mega-trad-list,
  .mega-menu-trad .mega-trad-list.mega-services-grid--all {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    border: none;
    max-height: none;
    overflow: visible;
    padding: 22px 32px 30px;
    background: var(--ivory);
  }

  .mega-menu-trad .mega-trad-list .mega-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    min-height: 56px;
    border: 1px solid rgba(15, 76, 129, 0.1) !important;
    border-radius: 10px;
    background: var(--white);
  }

  .mega-menu-trad .mega-trad-list .mega-service-item:nth-child(4n),
  .mega-menu-trad .mega-trad-list .mega-service-item:nth-last-child(-n+4) {
    border-inline-end: 1px solid rgba(15, 76, 129, 0.1) !important;
    border-bottom: 1px solid rgba(15, 76, 129, 0.1) !important;
  }

  .mega-menu-trad .mega-trad-diamond {
    width: 9px;
    height: 9px;
    margin-inline-start: 0;
  }

  .mega-menu-trad .mega-service-item h6 {
    font-size: 1rem;
    line-height: 1.45;
  }

  .mega-menu-trad .mega-service-item:hover {
    background: linear-gradient(135deg, rgba(226, 135, 20, 0.1), rgba(15, 76, 129, 0.04));
    border-color: rgba(226, 135, 20, 0.4) !important;
    box-shadow: 0 6px 18px rgba(10, 54, 96, 0.1);
  }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .mega-menu-trad .mega-trad-list,
  .mega-menu-trad .mega-trad-list.mega-services-grid--all {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 20px 28px 26px;
  }
}

.mega-services-grid--all .col-6:nth-child(odd) .mega-service-item {
  border-inline-end: 1px solid var(--border-light);
}

@media (min-width: 992px) {
  .mega-services-grid--all .col-lg-3:nth-child(4n+1) .mega-service-item,
  .mega-services-grid--all .col-lg-3:nth-child(4n+2) .mega-service-item,
  .mega-services-grid--all .col-lg-3:nth-child(4n+3) .mega-service-item {
    border-inline-end: 1px solid var(--border-light);
  }
  .mega-services-grid--all .col-lg-3:nth-child(4n) .mega-service-item {
    border-inline-end: 0;
  }
}

.mega-service-item {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  border-radius: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.mega-service-item h6 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0;
  line-height: 1.4;
}

body.rtl .mega-service-item h6 {
  font-family: var(--font-ar);
}

.mega-service-item:hover {
  background: var(--ivory);
  border-color: var(--border-light);
  transform: none;
  box-shadow: none;
}

.mega-icon { display: none; }

.mega-item-text h6 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 3px;
  line-height: 1.3;
}

.mega-item-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.mega-services-grid .col-md-6:nth-child(odd) .mega-service-item {
  border-inline-end: 1px solid var(--border-light);
}

.mega-sidebar {
  border-inline-start: 1px solid var(--border-light);
  padding-inline-start: 24px;
}

.mega-sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-sidebar-links li {
  border-bottom: 1px solid var(--border-light);
}

.mega-sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: var(--t-fast);
}

.mega-sidebar-links a:hover { color: var(--gold); }

.mega-sidebar-links a i {
  font-size: 0.65rem;
  color: var(--gold);
  opacity: 0.85;
}

.mega-cta-box {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  border: 1px solid rgba(241,168,10,0.28);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mega-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23E28714' fill-opacity='0.06'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-2.5c-.02-.28-.06-.57-.11-.86A4.97 4.97 0 0 0 20 30v.5V20.5zm0-10.5V5H0v5h20V10zm20 0V5H20v5h20V10zM0 0h20v5H0V0zm20 0h20v5H20V0zM0 20.5v2.5h5v-5H0v2.5zm20-2.5h-5v5h5v-5zm-10 0v5h5v-5h-5zM0 40h5v-5H0v5zm20 0h-5v-5h5v5zm-10 0v-5h5v5h-5zM35 40v-5h5v5h-5zm0-10v-5h5v5h-5zm0-10v-5h5v5h-5zm0-10V5h5v5h-5z'/%3E%3C/g%3E%3C/svg%3E");
}

.mega-cta-box h5 {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-family: var(--font-display);
  margin-bottom: 8px;
  position: relative;
}

.mega-cta-box p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  position: relative;
}

/* ===================== PAGE LOADER ===================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #f8f4ee 0%, #fffdf9 50%, #f2ede3 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s;
}

/* Subtle geometric pattern overlay on loader */
.page-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(226,135,20,0.10) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Gold accent borders on loader */
.page-loader::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(226,135,20,0.18);
  pointer-events: none;
}

.page-loader.hide { opacity: 0; visibility: hidden; }

.loader-emblem {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.loader-logo-text {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 6px;
}

.loader-logo-text span { color: var(--gold); }

.loader-tagline {
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 6px;
}

.loader-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.loader-ornament-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.loader-ornament-line.right {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.loader-ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  animation: diamondPulse 1.4s ease-in-out infinite;
}

@keyframes diamondPulse {
  0%, 100% { opacity: 1; transform: rotate(45deg) scale(1); }
  50% { opacity: 0.4; transform: rotate(45deg) scale(0.7); }
}

.loader-progress {
  width: 220px;
  height: 2px;
  background: rgba(15,76,129,0.12);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.loader-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: loaderFill 1.4s ease-out forwards;
}

@keyframes loaderFill {
  from { width: 0%; }
  to { width: 100%; }
}

/* ===================== HERO SHOWCASE ===================== */
#heroSlider.hero-showcase {
  position: relative;
  width: 100%;
  height: min(76vh, 760px);
  min-height: 520px;
  overflow: hidden;
  background: var(--navy-deep);
}

#heroCarousel {
  position: relative;
  width: 100%;
  height: 100%;
}

#heroCarousel,
#heroCarousel .carousel-inner {
  height: 100%;
}

#heroCarousel .carousel-inner {
  position: relative;
  height: 100%;
}

#heroCarousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#heroCarousel.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

#heroCarousel.carousel-fade .carousel-item.active {
  opacity: 1;
  z-index: 1;
}

#heroCarousel .carousel-item:nth-child(1) {
  background: linear-gradient(125deg, #061c34 0%, #0a3660 50%, #1d70b8 100%);
}
#heroCarousel .carousel-item:nth-child(2) {
  background: linear-gradient(125deg, #0a2a4a 0%, #154a7a 50%, #2a88c8 100%);
}
#heroCarousel .carousel-item:nth-child(3) {
  background: linear-gradient(125deg, #1a2840 0%, #0f4c81 50%, #3a9ad9 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5s ease;
  z-index: 0;
  background: linear-gradient(125deg, #061c34 0%, #0a3660 45%, #1d70b8 100%);
}

#heroCarousel .carousel-item.active .hero-bg-img {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,28,52,0.84) 0%, rgba(10,54,96,0.62) 50%, rgba(15,76,129,0.55) 100%);
  z-index: 2;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(241,168,10,0.15), transparent 38%);
}

.hero-center-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  max-width: 920px;
  padding: 28px 30px;
  background: rgba(7,24,44,0.50);
  border: 1px solid rgba(241,168,10,0.24);
  border-radius: var(--radius-md);
  backdrop-filter: blur(2px);
  box-shadow: 0 16px 36px rgba(7,18,40,0.34);
}

/* Force hero text visibility in all runtime states */
.hero-copy,
.hero-copy * {
  visibility: visible;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  opacity: 1;
  transform: none;
  text-shadow: 0 2px 12px rgba(0,0,0,0.38);
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  opacity: 1;
  transform: none;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}

body.rtl .hero-title {
  font-family: var(--font-ar);
  font-size: clamp(1.6rem, 3.8vw, 2.65rem);
}

.hero-title .accent { color: var(--gold-light); }

.hero-desc {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.88);
  max-width: 760px;
  margin: 0 auto 1.8rem;
  line-height: 1.75;
  opacity: 1;
  transform: none;
  text-shadow: 0 3px 16px rgba(0,0,0,0.32);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 1;
  transform: none;
}

.hero-badge,
.hero-title,
.hero-desc,
.hero-btns {
  opacity: 1 !important;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 4.5rem;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  opacity: 1;
  z-index: 5;
}

#heroCarousel .carousel-control-prev { left: 10px; }
#heroCarousel .carousel-control-next { right: 10px; }

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  background: rgba(7,18,40,0.12);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  width: 2.1rem;
  height: 2.1rem;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.5));
}

/* ===================== FLOATING SERVICES ===================== */
.floating-services-wrap {
  position: relative;
  z-index: 12;
  margin-top: -108px;
  margin-bottom: 12px;
  isolation: isolate;
  pointer-events: none;
}

.floating-services-wrap .container,
.floating-services-wrap .floating-service-card {
  pointer-events: auto;
}

.floating-services-wrap .row > [class*="col-"] {
  display: flex;
}

.floating-service-card {
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(29,112,184,0.14);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 18px 20px 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(10,54,96,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-service-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 8px 16px rgba(15,76,129,0.22);
  transition: transform 0.3s ease, background 0.3s ease;
}

.floating-service-title {
  font-family: var(--font-ar);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 0.5rem;
  line-height: 1.45;
}

body:not(.rtl) .floating-service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.floating-service-desc {
  font-family: var(--font-ar);
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0;
}

body:not(.rtl) .floating-service-desc {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.8;
}

.floating-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15,76,129,0.22);
}

.floating-service-card:hover .floating-service-icon {
  transform: scale(1.05);
  background: linear-gradient(145deg, var(--gold-dark), var(--gold-light));
  color: var(--navy-deep);
}

#heroServiceCards + #about.section-pad {
  margin-top: 28px;
  padding-top: 88px;
}

/* ===================== ABOUT SECTION ===================== */
#about {
  padding: var(--section-pad) 0;
  background: var(--white);
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: var(--ivory);
  z-index: 0;
}

#about .container { position: relative; z-index: 1; }

.premium-wrap {
  position: relative;
  padding: 24px;
}

.premium-frame {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 48px;
  left: 48px;
  border: 2px solid var(--gold);
  z-index: 1;
}

body.rtl .premium-frame {
  right: 48px;
  left: 0;
}

.about-img-main {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.premium-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  background: var(--navy-deep);
  padding: 30px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 4px solid var(--gold);
}

@media (max-width: 991.98px) {
  .premium-wrap { padding: 12px; margin-bottom: 2rem; }
  .premium-frame { bottom: 24px; left: 24px; right: 0; }
  body.rtl .premium-frame { right: 24px; left: 0; }
  .about-img-main { min-height: 400px; }
  .premium-badge { padding: 20px 24px; }
  .premium-badge .year { font-size: 2.4rem; }
  .premium-title { font-size: 1.8rem; }
}

body.rtl .premium-badge {
  left: auto;
  right: 0;
}

.premium-badge .year {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.premium-badge .year-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

.premium-title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.35;
  margin-bottom: 1.2rem;
}

.premium-text {
  color: var(--text-mid);
  line-height: 1.9;
  font-size: var(--fs-base);
  margin-bottom: 1.2rem;
}

.about-features-premium {
  border-top: 1px solid rgba(15, 76, 129, 0.1);
  padding-top: 2rem;
}

.premium-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-top: 4px;
}

.premium-feature h6 {
  font-size: var(--fs-md);
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.premium-feature p {
  font-size: var(--fs-base);
  color: var(--text-mid);
  margin: 0;
  line-height: 1.75;
}

.value-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ivory-deep);
  border-radius: 30px;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--navy);
  padding: 8px 14px;
  border-inline-start: 3px solid var(--gold);
}

.value-tag i { color: var(--gold); font-size: 0.8rem; }

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 1.5rem;
}

.about-split-row {
  align-items: center;
}

@media (max-width: 575.98px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}



/* ===================== SERVICES SECTION ===================== */
#services {
  padding: var(--section-pad) 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-deep), var(--gold), var(--navy-light), var(--gold-dark));
}

.service-card-trad {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--t-mid);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-trad:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--gold);
}

.service-card-trad .img-wrap {
  position: relative;
  overflow: hidden;
  /* 4:3 aspect ratio is ideal for these images */
  aspect-ratio: 4/3;
  width: 100%;
}

.service-card-trad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-trad:hover img {
  transform: scale(1.08);
}

/* Hover Overlay */
.service-card-trad .overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 76, 129, 0.9); /* navy-deep with opacity */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--t-mid);
  backdrop-filter: blur(2px);
}

.service-card-trad:hover .overlay {
  opacity: 1;
}

.service-card-trad .overlay p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  transform: translateY(15px);
  transition: transform 0.5s ease;
}

.service-card-trad:hover .overlay p {
  transform: translateY(0);
}

.service-card-trad .overlay .btn-sm {
  padding: 8px 24px;
  font-size: 0.9rem;
  transform: translateY(15px);
  transition: transform 0.6s ease;
  opacity: 0;
}

.service-card-trad:hover .overlay .btn-sm {
  transform: translateY(0);
  opacity: 1;
}

.service-card-trad .card-title {
  padding: 22px 15px;
  background: var(--white);
  position: relative;
  z-index: 2;
  border-top: 3px solid transparent;
  transition: var(--t-mid);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-trad:hover .card-title {
  border-top-color: var(--gold);
}

.service-card-trad .card-title h5 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.4;
}

body.rtl .service-card-trad {
  direction: rtl;
}

/* ===================== SERVICES CARDS GRID ===================== */
.services-cards-grid {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.services-cards-grid > [class*="col-"] {
  display: flex;
}

.services-cards-grid .service-card-trad {
  width: 100%;
}

.services-cards-grid--float .floating-service-card {
  height: 100%;
}

@media (min-width: 768px) {
  .services-cards-grid {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
  }
}

@media (min-width: 768px) {
  .services-cards-grid .service-card-trad .img-wrap {
    aspect-ratio: 4 / 3;
  }

  .services-cards-grid .service-card-trad .card-title h5 {
    font-size: 1rem;
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
  }
}

@media (min-width: 992px) {
  .services-cards-grid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }

  .services-cards-grid .service-card-trad .overlay {
    display: flex;
  }
}

/* ===================== WHY CHOOSE US (matches services) ===================== */
#why-us {
  padding: var(--section-pad) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-deep), var(--gold), var(--navy-light), var(--gold-dark));
}

.why-card-trad {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: var(--t-mid);
}

.why-card-trad:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--gold);
}

.why-card-icon {
  padding: 32px 20px 24px;
  background: linear-gradient(180deg, var(--ivory-deep) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border-light);
  transition: var(--t-mid);
}

.why-card-trad:hover .why-card-icon {
  background: linear-gradient(180deg, rgba(15,76,129,0.08) 0%, var(--white) 100%);
}

.why-card-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: var(--t-mid);
}

.why-card-trad:hover .why-card-icon i {
  background: linear-gradient(145deg, var(--gold-dark), var(--gold-light));
  color: var(--navy-deep);
}

.why-card-body {
  padding: 22px 20px 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  transition: var(--t-mid);
}

.why-card-trad:hover .why-card-body {
  border-top-color: var(--gold);
}

.why-card-body h5 {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.4;
}

body.rtl .why-card-body h5 {
  font-family: var(--font-ar);
}

.why-card-body p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--text-mid);
  flex-grow: 1;
}

body.rtl .why-card-trad {
  direction: rtl;
}

.why-commitment-box,
.cta-panel-box {
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--t-mid);
}

.cta-panel-box .row {
  align-items: stretch;
}

.cta-panel-box .cta-action-trad {
  height: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  padding-inline-start: clamp(20px, 3vw, 32px);
  border-inline-start: 1px solid var(--border-light);
}

.why-commitment-box:hover,
.cta-panel-box:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(226,135,20,0.35);
}

.why-commitment-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.why-commitment-copy {
  flex: 1 1 320px;
  max-width: 720px;
}

.why-commitment-copy .section-label {
  display: inline-flex;
}

.why-commitment-copy > p {
  color: var(--text-mid);
  font-size: var(--fs-base);
  line-height: 1.85;
  margin: 0 0 1rem;
}

.why-commitment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border-light);
}

.why-commitment-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-commitment-list li i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.why-commitment-action {
  flex: 0 0 260px;
  width: 100%;
  max-width: 280px;
}

@media (max-width: 991.98px) {
  .why-commitment-box {
    padding: 26px 24px;
  }
  .why-commitment-action {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Certifications panel */
.cert-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(226,135,20,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.cert-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cert-item:last-child { border-bottom: none; }

.cert-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(226,135,20,0.15);
  border: 1px solid rgba(226,135,20,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
}

.cert-item h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.commitment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.commitment-list li:last-child { border-bottom: none; }

.commitment-list li i {
  color: var(--gold-light);
  font-size: 0.75rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.cert-item p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.satisfaction-badge {
  text-align: center;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 16px;
}

.satisfaction-badge .pct {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.satisfaction-badge .pct-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ===================== STATISTICS ===================== */
#stats {
  padding: 0;
  background: var(--navy);
  border-top: 1px solid rgba(226,135,20,0.2);
}

.stat-card {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.stat-card:last-child { border-right: none; }

.stat-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(226,135,20,0.12);
  border: 1px solid rgba(226,135,20,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--gold-light);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===================== PROJECTS ===================== */
#projects {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--border-light);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t-fast);
  letter-spacing: 0.5px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-light);
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--t-mid);
}

.project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.project-img-wrap {
  position: relative;
  overflow: hidden;
  height: 270px;
}

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

.project-card:hover .project-img-wrap img { transform: scale(1.06); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,18,40,0.95) 0%, rgba(12,28,58,0.5) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  opacity: 0;
  transition: opacity 0.35s;
}

.project-card:hover .project-overlay { opacity: 1; }

.project-overlay h5 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.project-overlay span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
}

.proj-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(226,135,20,0.85);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-size: 0.85rem;
  transition: var(--t-fast);
}

.proj-zoom:hover { background: var(--gold-light); }

/* ===================== PARTNERS ===================== */
#partners {
  padding: 70px 0;
  background: var(--ivory);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partner-logo-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--t-fast);
  background: var(--white);
}

.partner-logo-wrap:hover {
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
}

.partner-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  transition: var(--t-fast);
}

.partner-logo-wrap:hover .partner-logo-text { color: var(--navy); }

.prt-logo-frame {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--t-mid);
  position: relative;
  overflow: hidden;
}

.prt-logo-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

body.rtl .prt-logo-frame::before { transform-origin: left; }

.prt-logo-frame:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.prt-logo-frame:hover::before { transform: scaleX(1); }

.prt-logo-frame img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.92;
  transition: var(--t-mid);
}

.prt-logo-frame:hover img {
  filter: none;
  opacity: 1;
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23E28714' fill-opacity='0.03'%3E%3Cpath d='M14 16H9v-2h5V9.87a4 4 0 1 1 2 0V14h5v2h-5v15.95A10 10 0 0 0 23.66 27l-3.46-2 8.2-4.74-1.15 9.33-3.45-2a12 12 0 0 1-22.4 4.48L3.1 30.76a10 10 0 0 0 14.44 6.14l4.74-8.2 2 3.46a12 12 0 0 1-8.28-11.4V16zm-2 6.44A8 8 0 1 0 4.86 9.22 10 10 0 0 1 12 22.44zM30 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zm0 37h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3zM8 37h-2v3H3v2h3v3h2v-3h3v-2H8v-3z'/%3E%3C/g%3E%3C/svg%3E");
}

#testimonials .section-title { color: var(--white); }

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  position: relative;
  transition: var(--t-mid);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(226,135,20,0.3);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}

.stars { color: var(--gold-light); font-size: 0.8rem; margin-bottom: 10px; gap: 2px; display: flex; }

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.author-initials {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-deep);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.author-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ===================== CTA SECTION (matches services) ===================== */
#cta {
  padding: var(--section-pad) 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-deep), var(--gold), var(--navy-light), var(--gold-dark));
}

.cta-points-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  align-content: center;
}

.cta-points-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 14px;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.5;
  background: var(--ivory-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--t-mid);
}

.cta-points-row li i {
  color: var(--gold);
  font-size: 1rem;
}

.cta-points-row li:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.cta-action-trad {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  background: var(--ivory-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.cta-action-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.cta-hint {
  margin: auto 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 991.98px) {
  .cta-points-row {
    grid-template-columns: 1fr;
    margin-bottom: 8px;
  }

  .cta-panel-box .cta-action-trad {
    padding-inline-start: 0;
    border-inline-start: none;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    margin-top: 4px;
  }
}

/* ===================== CONTACT SECTION ===================== */
#contact {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(226,135,20,0.15);
  border: 1px solid rgba(226,135,20,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.contact-item h6 { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 3px; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--white); margin: 0; line-height: 1.5; }

.contact-socials { display: flex; gap: 8px; margin-top: 1.5rem; }

.contact-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--t-fast);
}

.contact-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.form-control, .form-select {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: var(--t-fast);
  font-family: var(--font-body);
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(226,135,20,0.12);
  background: var(--white);
  outline: none;
}

.form-success-msg {
  display: none;
  background: rgba(15,76,129,0.08);
  border: 1px solid rgba(15,76,129,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.form-success-msg.is-visible {
  display: flex;
  animation: formSuccessIn 0.45s ease-out;
}

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

/* ===================== MAP ===================== */
#mapSection {
  height: 380px;
}

#mapSection iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

/* ===================== FOOTER ===================== */
#footer.site-footer {
  position: relative;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 42%, var(--cream) 100%);
  border-top: 3px solid var(--gold);
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230F4C81' fill-opacity='0.06'%3E%3Cpath d='M0 0h12v12H0zm36 0h12v12H36zm0 36h12v12H36zm-36 0h12v12H0z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.footer-shape--1 {
  width: min(380px, 55vw);
  height: min(380px, 55vw);
  top: -120px;
  inset-inline-end: -80px;
  background: radial-gradient(circle, rgba(15, 76, 129, 0.09) 0%, transparent 68%);
}

.footer-shape--2 {
  width: min(280px, 42vw);
  height: min(280px, 42vw);
  bottom: 8%;
  inset-inline-start: -70px;
  background: radial-gradient(circle, rgba(226, 135, 20, 0.08) 0%, transparent 70%);
}

.footer-shape--3 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: 38%;
  background: radial-gradient(circle, rgba(15, 76, 129, 0.06) 0%, transparent 72%);
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: clamp(3.25rem, 7vw, 5.75rem) 0 clamp(2.5rem, 5vw, 3.75rem);
}

.footer-main-grid > [class*="col-"] {
  min-width: 0;
}

.footer-col {
  height: 100%;
}

.footer-col--brand {
  max-width: 28rem;
  padding-inline-end: clamp(0px, 2vw, 20px);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.35rem;
}

.footer-logo {
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: min(210px, 72vw);
  transition: opacity 0.25s ease;
}

.footer-logo-link:hover .footer-logo {
  opacity: 0.88;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin: 0 0 1.75rem;
  max-width: 38ch;
}

.footer-social-label {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-light);
}

.footer-col-title,
.footer-col-title--static {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 1.1rem;
  padding-bottom: 0.7rem;
  position: relative;
  letter-spacing: 0.2px;
  line-height: 1.35;
}

body.rtl .footer-col-title,
body.rtl .footer-col-title--static {
  font-family: var(--font-ar);
  font-weight: 800;
}

.footer-col-title::after,
.footer-col-title--static::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 1px;
}

.footer-col-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--border-light);
  background: transparent;
  cursor: pointer;
  text-align: inherit;
}

.footer-col-toggle .footer-col-title {
  margin: 0;
  padding: 0;
  flex: 1;
  text-align: inherit;
}

.footer-col-toggle .footer-col-title::after {
  display: none;
}

.footer-col-chevron {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  transition: transform 0.25s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-col--fold.is-open .footer-col-chevron {
  transform: rotate(180deg);
  border-color: rgba(226, 135, 20, 0.45);
  color: var(--gold-dark);
}

.footer-col-title--static {
  display: block;
}

.footer-col-panel {
  padding-top: 0.15rem;
}

.footer-col--fold:not(.is-open) .footer-col-panel {
  display: none;
}

.footer-col--fold.is-open .footer-col-panel {
  display: block;
}

.footer-links li {
  margin-bottom: 0.15rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 0;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s ease, padding-inline-start 0.2s ease;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--gold);
  margin-inline-end: 0;
  transition: width 0.2s ease, margin-inline-end 0.2s ease;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--navy);
  padding-inline-start: 4px;
}

.footer-links a:hover::before {
  width: 8px;
  margin-inline-end: 8px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: var(--radius);
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.footer-contact-text {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.65;
  padding-top: 7px;
}

.footer-contact-list a.footer-contact-text {
  transition: color 0.2s ease;
}

.footer-contact-list a.footer-contact-text:hover {
  color: var(--navy);
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  margin-top: 1.35rem;
  padding: 14px 24px;
  min-height: 48px;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy-deep);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(226, 135, 20, 0.22);
  transition: box-shadow 0.2s ease, filter 0.2s ease;
}

.footer-cta-btn:hover {
  filter: brightness(1.04);
  box-shadow: 0 8px 24px rgba(226, 135, 20, 0.3);
  color: var(--navy-deep);
}

.footer-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.72);
  padding: 20px 0;
}

.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.footer-copy,
.footer-made {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-legal a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--navy);
}

.footer-legal-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .footer-col-toggle {
    display: none !important;
  }

  .footer-col-title--static {
    display: block !important;
  }

  .footer-col--fold .footer-col-panel,
  .footer-col--fold:not(.is-open) .footer-col-panel {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .footer-main-grid > .col-lg-2 .footer-col,
  .footer-main-grid > .col-lg-4:last-child .footer-col--contact {
    padding-inline-start: clamp(12px, 2vw, 24px);
    border-inline-start: 1px solid rgba(221, 213, 200, 0.85);
  }

  .footer-main-grid > .col-lg-4.col-md-6:first-child .footer-col--brand {
    border-inline-start: none;
    padding-inline-start: 0;
  }
}

@media (max-width: 991.98px) {
  .footer-col-toggle {
    display: flex;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(15, 76, 129, 0.08);
  }

  .footer-col-chevron {
    pointer-events: none;
  }

  .footer-col-title--static {
    display: none !important;
  }

  .footer-col--brand {
    max-width: none;
    padding-inline-end: 0;
    text-align: center;
    padding-bottom: 1.25rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
  }

  .footer-logo-link {
    display: flex;
    justify-content: center;
  }

  .footer-tagline {
    margin-inline: auto;
    max-width: 100%;
  }

  .footer-social-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col--fold {
    border-bottom: 1px solid var(--border-light);
  }

  .footer-col--fold:last-of-type {
    border-bottom: none;
  }

  .footer-col-panel {
    padding-bottom: 1.1rem;
  }

  .footer-links a {
    min-height: 44px;
    width: 100%;
  }

  .footer-contact-list li {
    align-items: flex-start;
  }

  .footer-cta-btn {
    max-width: none;
  }

  .footer-bar-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  #footer.site-footer .footer-main {
    padding-top: 2.75rem;
    padding-bottom: 2rem;
  }

  .footer-col-title,
  .footer-col-title--static {
    font-size: 1.08rem;
  }

  .footer-tagline {
    font-size: 0.95rem;
  }

  .footer-links a,
  .footer-contact-text {
    font-size: 0.94rem;
  }

  .footer-copy,
  .footer-made,
  .footer-legal a {
    font-size: 0.84rem;
  }
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--t-mid);
  animation: waPulse 2.2s infinite;
}

body.rtl .whatsapp-float { right: auto; left: 30px; }

.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--t-fast);
}

body.rtl .whatsapp-tooltip { right: auto; left: calc(100% + 12px); }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* ===================== SCROLL TOP ===================== */
#scrollTop {
  position: fixed;
  bottom: 96px;
  right: 30px;
  z-index: 9998;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border: 1px solid rgba(226,135,20,0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--t-mid);
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

body.rtl #scrollTop { right: auto; left: 30px; }
#scrollTop.show { opacity: 1; pointer-events: all; }
#scrollTop:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }

/* ===================== PAGE HEADER ===================== */
.page-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23E28714' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

body.rtl .page-header h1 { font-family: var(--font-ar); }

.page-header .breadcrumb {
  position: relative;
  z-index: 2;
  margin: 0;
}

.page-header .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 0.87rem; }
.page-header .breadcrumb-item.active { color: var(--gold-light); font-size: 0.87rem; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(226,135,20,0.5); }

/* ===================== AOS TWEAKS ===================== */
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos].aos-animate { transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (min-width: 992px) and (max-width: 1199.98px) {
  #mainNav .container {
    min-height: 108px;
  }
  .navbar-nav .nav-link {
    min-height: 108px;
    font-size: 1rem;
    padding: 0 14px !important;
  }
  .mega-menu-wrapper {
    width: min(1180px, calc(100vw - 24px));
  }
  .mega-menu-trad .mega-trad-head {
    padding: 18px 24px 14px;
  }
  .mega-menu-trad .mega-trad-list,
  .mega-menu-trad .mega-trad-list.mega-services-grid--all {
    padding: 18px 22px 24px;
    gap: 10px;
  }
  .mega-menu-trad .mega-service-item h6 {
    font-size: 0.94rem;
  }
}

@media (min-width: 1200px) {
  .mega-menu-wrapper {
    width: min(1320px, calc(100vw - 40px));
  }
}

@media (max-width: 991px) {
  .about-hero,
  .prt-hero,
  .projects-hero {
    background-attachment: scroll !important;
  }
  #mainNav .container { min-height: 76px; }
  .navbar-main-logo { height: 56px; max-width: min(180px, 48vw); }
  .mega-sidebar { border-inline-start: 0; padding-inline-start: 0; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-light); }
  .mega-services-grid .col-md-6:nth-child(odd) .mega-service-item { border-inline-end: 0; }
  #navbarMain .navbar-nav .nav-link::after { display: none !important; }
  #about::before { display: none; }
  .about-img-wrap { padding: 0 0 32px !important; }
  body.rtl .about-img-wrap { padding: 0 0 32px !important; }
  .premium-frame { display: none; }
  :root { --section-pad: 64px; }
  .filter-tabs-wrap { flex-direction: column; align-items: stretch; }
  .filter-tabs-wrap .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .filter-tabs-wrap .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }
}

@media (max-width: 767px) {
  html { font-size: 15px; }
  #topbar { display: none; }
  #mainNav .container { min-height: 68px; }
  .navbar-main-logo { height: 48px; max-width: 150px; }
  .about-img-wrap { padding: 0 0 40px; }
  body.rtl .about-img-wrap { padding-left: 0; }
  .about-year-badge { right: 10px; bottom: 0; }
  body.rtl .about-year-badge { left: 10px; right: auto; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  body.rtl .stat-card { border-left: none; }
  .stat-card:last-child { border-bottom: none; }
  .project-img-wrap { height: 220px; }
  #footer.site-footer .footer-main { padding-top: 2.5rem; padding-bottom: 2rem; }
  .cta-panel-box { padding: 28px 22px; }
  .contact-form-card,
  .contact-info-card { padding: 26px 20px; }
  .contact-channels-row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .whatsapp-float { bottom: 18px; right: 18px; width: 48px; height: 48px; font-size: 1.25rem; }
  body.rtl .whatsapp-float { right: auto; left: 18px; }
  #scrollTop { right: 18px; bottom: 80px; width: 42px; height: 42px; }
  body.rtl #scrollTop { right: auto; left: 18px; }
  :root { --section-pad: 56px; }
  .section-label { letter-spacing: 2px; }
  .page-header { padding: 52px 0 44px; }
  .page-header h1 { font-size: 1.75rem; }
}

@media (max-width: 576px) {
  #mainNav .container { min-height: 64px; }
  .navbar-main-logo { height: 42px; max-width: 130px; }
  .btn-gold-z,
  .btn-outline-gold,
  .btn-primary-z {
    padding: 12px 18px;
    font-size: 0.82rem;
  }
  .premium-wrap { padding: 8px; margin-bottom: 1.5rem; }
  .about-img-main { min-height: 280px; }
  .premium-badge { padding: 16px 18px; }
  .premium-badge .year { font-size: 2rem; }
  .prt-logo-frame { height: 90px; padding: 14px 18px; }
  .partner-logo-wrap { height: 64px; }
}

/* ===================== RTL FIXES ===================== */
body.rtl .hero-deco-panel { transform-origin: left; }
body.rtl .about-year-badge { right: auto; left: 40px; }
body.rtl .about-corner-accent { right: auto; left: 0; border-right: none; border-left: 2px solid var(--gold); border-radius: 0 0 0 var(--radius); }
@media (min-width: 992px) {
  body.rtl .mega-menu-wrapper {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(12px);
  }
  body.rtl .nav-item:hover > .mega-menu-wrapper,
  body.rtl .nav-item:focus-within > .mega-menu-wrapper {
    transform: translateX(-50%) translateY(0);
  }
}
body.rtl .nav-lang-item { margin-left: 0; margin-right: 8px; }
body.rtl .navbar-actions { margin-inline-start: 0; margin-inline-end: 12px; }

/* Project zoom button — flip to left in RTL */
body.rtl .proj-zoom { right: auto; left: 16px; }

/* Stat cards border — flip separator direction for RTL */
body.rtl .stat-card {
  border-right: none;
  border-left: 1px solid rgba(255,255,255,0.07);
}
body.rtl .stat-card:last-child { border-left: none; }

/* Hero carousel arrows — swap sides in RTL */
body.rtl #heroCarousel .carousel-control-prev { left: auto; right: 10px; }
body.rtl #heroCarousel .carousel-control-next { right: auto; left: 10px; }

/* Footer services heading key fix */
body.rtl .mega-sidebar-links a i { transform: scaleX(-1); }

/* Contact form card border-top stays on top regardless of direction */
body.rtl .contact-form-card { border-top: 3px solid var(--gold); border-inline-start: none; }




/* ===================== LOADER LOGO IMG ===================== */
.loader-logo-wrap {
  margin-bottom: 16px;
}
.loader-logo-img {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 18px rgba(15,76,129,0.15));
  opacity: 1;
  position: relative;
  z-index: 2;
}

/* ===================== HERO CENTER FIX ===================== */
.hero-copy {
  margin: 0 auto;
  text-align: center;
}

/* ===================== ABOUT TRADITIONAL STYLE ===================== */
.about-traditional-wrapper {
  position: relative;
}

.about-trad-header {
  padding-bottom: 2rem;
}

.about-trad-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 12px 0;
}

.about-trad-ornament .orn-line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.about-trad-ornament .orn-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-trad-ornament .orn-diamond {
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.8;
}

/* Image panel */
.about-trad-img-panel {
  position: relative;
  padding: 28px 28px 60px 0;
  height: 100%;
}

body.rtl .about-trad-img-panel {
  padding: 28px 0 60px 28px;
}

.about-trad-img-frame {
  position: relative;
  border: 2px solid var(--gold);
  padding: 12px;
  background: var(--ivory);
}

.about-trad-img-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-trad-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold-dark);
  border-style: solid;
}

.about-trad-corner.top-right {
  top: -8px;
  right: -8px;
  border-width: 3px 3px 0 0;
}

.about-trad-corner.bottom-left {
  bottom: -8px;
  left: -8px;
  border-width: 0 0 3px 3px;
}

body.rtl .about-trad-corner.top-right {
  right: auto;
  left: -8px;
  border-width: 3px 0 0 3px;
}

body.rtl .about-trad-corner.bottom-left {
  left: auto;
  right: -8px;
  border-width: 0 3px 3px 0;
}

.about-trad-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--navy-deep);
  border: 2px solid var(--gold);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

body.rtl .about-trad-badge {
  right: auto;
  left: -10px;
}

.about-trad-badge .badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-trad-badge .badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.about-trad-badge .badge-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  line-height: 1.4;
}

/* Content area */
.about-trad-content {
  padding: 20px 0 20px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.rtl .about-trad-content {
  padding: 20px 40px 20px 0;
}

.about-trad-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1rem 0 1.4rem;
}

.about-trad-rule span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  max-width: 100px;
}

.about-trad-rule span:last-child {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.about-trad-rule i {
  color: var(--gold);
  font-size: 0.75rem;
}

.about-trad-text {
  color: var(--text-muted);
  line-height: 2;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Features grid in about */
.about-trad-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.4rem 0;
  border-top: 1px solid var(--border-light);
  padding-top: 1.4rem;
}

.trad-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trad-feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.trad-feature-text h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 3px;
  line-height: 1.3;
}

.trad-feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .about-trad-content {
    padding: 30px 0 0;
  }
  body.rtl .about-trad-content {
    padding: 30px 0 0;
  }
  .about-trad-img-panel {
    padding: 16px 16px 50px 0;
  }
  .about-trad-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-trad-features {
    grid-template-columns: 1fr;
  }
  .about-trad-badge .badge-num {
    font-size: 2.2rem;
  }
}











/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — about.html
   ═══════════════════════════════════════════════════════════ */

/* ── ABOUT HERO ── */
.about-hero {
  position: relative;
  background: linear-gradient(158deg, #07152A 0%, #0A3660 45%, #0F4C81 100%);
  padding: 100px 0 90px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about-hero.with-bg-img {
  background-blend-mode: overlay;
}
.about-hero-bg-image,
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
  animation: heroImageSlideIn 0.8s ease-out forwards;
}
@keyframes heroImageSlideIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 0.4;
    transform: scale(1);
  }
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(200,146,42,.04) 0px, rgba(200,146,42,.04) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(-45deg, rgba(200,146,42,.04) 0px, rgba(200,146,42,.04) 1px, transparent 1px, transparent 20px);
  z-index: 2;
  animation: patternFadeIn 1.2s ease-out forwards;
}
@keyframes patternFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about-hero::after {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(200,146,42,.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.8;
    box-shadow: 0 0 40px rgba(200,146,42,.15);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 60px rgba(200,146,42,.25);
  }
}
.hero-frame-top, .hero-frame-bottom {
  position: absolute; left: 60px; right: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,146,42,.5), rgba(200,146,42,.8), rgba(200,146,42,.5), transparent);
}
.hero-frame-top    { top: 28px; }
.hero-frame-bottom { bottom: 28px; }
.hero-frame-corner {
  position: absolute; width: 40px; height: 40px;
  border-color: rgba(200,146,42,.45); border-style: solid;
}
.hero-frame-corner.tl { top: 18px; left: 18px;  border-width: 2px 0 0 2px; }
.hero-frame-corner.tr { top: 18px; right: 18px; border-width: 2px 2px 0 0; }
.hero-frame-corner.bl { bottom: 18px; left: 18px;  border-width: 0 0 2px 2px; }
.hero-frame-corner.br { bottom: 18px; right: 18px; border-width: 0 2px 2px 0; }

.about-hero-inner { position: relative; z-index: 2; text-align: center; }

.hero-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 22px;
}
.hero-ornament .orn-line {
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,146,42,.7));
}
.hero-ornament .orn-line:last-child {
  background: linear-gradient(90deg, rgba(200,146,42,.7), transparent);
}
.hero-ornament .orn-diamond {
  width: 8px; height: 8px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0;
  box-shadow: 0 0 10px rgba(200,146,42,.5);
  animation: diamondBounce 2s ease-in-out infinite;
}
@keyframes diamondBounce {
  0%, 100% {
    transform: rotate(45deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: rotate(45deg) scale(1.2);
    opacity: 0.8;
  }
}
.hero-ornament .orn-text {
  font-size: .68rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-light);
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700; color: var(--white);
  line-height: 1.25; margin-bottom: 1.2rem;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
  animation: titleFadeInUp 0.8s ease-out 0.2s both;
  opacity: 1;
  opacity: 0;
}
@keyframes titleFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.rtl .about-hero h1 {
  font-family: var(--font-ar); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}
.about-hero h1 .gold-text { color: var(--gold-light); }

.about-hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  max-width: 600px; margin: 0 auto 2rem; line-height: 1.85;
  animation: textFadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}
@keyframes textFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,146,42,.2);
  border-radius: 30px; padding: 8px 20px; margin-bottom: 2rem;
  animation: breadcrumbFadeIn 0.8s ease-out 0.6s both;
  opacity: 1;
}
@keyframes breadcrumbFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-breadcrumb a { color: var(--gold-light); transition: color .2s; }
.hero-breadcrumb a:hover { color: var(--white); }
.hero-breadcrumb .sep { color: rgba(200,146,42,.5); }

.hero-stats-row {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  animation: statsSlideIn 0.8s ease-out 0.8s forwards;
  opacity: 0;
}
@keyframes statsSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-stat-pill {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,146,42,.22);
  border-radius: 50px; padding: 12px 22px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  animation: pillHover 0.6s ease-out backwards;
}
.hero-stat-pill:nth-child(1) { animation-delay: 0.9s; }
.hero-stat-pill:nth-child(2) { animation-delay: 1s; }
.hero-stat-pill:nth-child(3) { animation-delay: 1.1s; }
.hero-stat-pill:nth-child(4) { animation-delay: 1.2s; }
@keyframes pillHover {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-stat-pill:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(200,146,42,.4);
  box-shadow: 0 8px 24px rgba(200,146,42,.15);
  transform: translateY(-3px);
}
.hero-stat-pill .pill-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(200,146,42,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: .9rem;
}
.hero-stat-pill .pill-num {
  font-family: var(--font-display); font-size: 1.55rem;
  font-weight: 700; color: var(--white); line-height: 1; display: block;
}
.hero-stat-pill .pill-lbl {
  font-size: .7rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: 1px; line-height: 1.3;
}

/* ── INTRO SECTION ── */
.ab-intro-section {
  padding: var(--section-pad) 0;
  background: var(--white); position: relative;
}
.ab-intro-section::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 38%; height: 100%;
  background: var(--ivory); z-index: 0;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
body.rtl .ab-intro-section::before {
  right: auto; left: 0;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}
.ab-intro-section .container { position: relative; z-index: 1; }

.ab-img-frame { position: relative; padding: 20px 20px 60px 0; }
body.rtl .ab-img-frame { padding: 20px 0 60px 20px; }

.ab-img-inner {
  position: relative;
  border: 2px solid var(--gold); padding: 10px; background: var(--ivory);
}
.ab-img-inner img { width: 100%; min-height: 480px; object-fit: cover; display: block; }

.ab-corner { position: absolute; width: 32px; height: 32px; border-color: var(--gold-dark); border-style: solid; }
.ab-corner.tr { top: -6px;    right: -6px; border-width: 3px 3px 0 0; }
.ab-corner.bl { bottom: -6px; left: -6px;  border-width: 0 0 3px 3px; }
body.rtl .ab-corner.tr { right: auto; left: -6px;  border-width: 3px 0 0 3px; }
body.rtl .ab-corner.bl { left: auto;  right: -6px; border-width: 0 3px 3px 0; }

.ab-year-badge {
  position: absolute; bottom: 2rem;
  right: -2rem;
  background-color: var(--gold-color);
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.ab-year-badge .yr-num {
  font-size: 2.5rem;
  font-weight: 700;
}
.ab-year-badge .yr-lbl {
  font-size: 0.9rem;
  font-weight: 300;
}
.ab-intro-section .ab-text-wrap {
  background-color: #fff;
  padding: 3rem;
  position: relative;
  height: 100%;
}
.ab-intro-section .ab-quote-mark {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 6rem;
  color: var(--light-grey-color);
  opacity: 0.3;
  line-height: 1;
  z-index: 1;
}
.ab-intro-section .ab-text-wrap > * {
  position: relative;
  z-index: 2;
}
.ab-intro-section .ab-gold-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  width: 80%;
}
.ab-intro-section .ab-gold-rule span {
  flex-grow: 1;
  height: 1px;
  background-color: var(--gold-color);
  opacity: 0.5;
}
.ab-intro-section .ab-gold-rule i {
  color: var(--gold-color);
}
.ab-intro-section .ab-lead {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1rem;
}
.ab-intro-section .ab-accent {
  font-weight: 700;
  color: var(--secondary-color);
}
.ab-intro-section .ab-body {
  color: var(--text-light-color);
}

@media (max-width: 991.98px) {
  .ab-intro-section .ab-text-wrap {
    padding: 2rem;
  }
  .ab-intro-section .ab-year-badge {
    width: 100px;
    height: 100px;
    padding: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .ab-intro-section .ab-year-badge .yr-num {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .ab-intro-section .ab-year-badge {
    width: 90px;
    height: 90px;
    right: 0.5rem;
    bottom: 0.5rem;
  }
  .ab-intro-section .ab-year-badge .yr-num {
    font-size: 1.8rem;
  }
  .ab-intro-section .ab-year-badge .yr-lbl {
    font-size: 0.8rem;
  }
}

/* ── VALUES ── */
.ab-values-section {
  padding: var(--section-pad) 0; background: var(--ivory); position: relative;
}
.ab-values-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy-deep), var(--gold), var(--navy-mid), var(--gold-dark));
}
.ab-value-card {
  text-align: center; padding: 38px 26px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 4px solid transparent;
  border-radius: var(--radius-md);
  height: 100%; position: relative; overflow: hidden;
  transition: var(--t-mid);
}
.ab-value-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(226,135,20,.03) 0%, transparent 50%);
  opacity: 0; transition: opacity .35s;
}
.ab-value-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.ab-value-card:hover::before { opacity: 1; }

.ab-value-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy-mid));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(15,76,129,.2);
  transition: var(--t-mid); position: relative; z-index: 1;
}
.ab-value-card:hover .ab-value-icon {
  background: linear-gradient(145deg, var(--gold-dark), var(--gold));
  color: var(--navy-deep);
}
.ab-value-card h4 {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
  color: var(--navy-deep); margin-bottom: 12px; position: relative; z-index: 1;
}
.ab-value-card p {
  font-size: .87rem; color: var(--text-muted); line-height: 1.8;
  margin: 0; position: relative; z-index: 1;
}
.ab-pillar-num {
  font-family: var(--font-display); font-size: 5rem; font-weight: 800;
  color: var(--navy-deep); opacity: .04;
  position: absolute; bottom: -10px; right: 16px;
  line-height: 1; pointer-events: none;
}
body.rtl .ab-pillar-num { right: auto; left: 16px; }

/* ── TIMELINE ── */
.ab-timeline-section {
  padding: var(--section-pad) 0;
  background: var(--navy-deep); position: relative; overflow: hidden;
}
.ab-timeline-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(226,135,20,.03) 0px, rgba(226,135,20,.03) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(-45deg, rgba(226,135,20,.03) 0px, rgba(226,135,20,.03) 1px, transparent 1px, transparent 24px);
}
.ab-label-light { color: var(--gold-light) !important; }
.ab-label-light::before, .ab-label-light::after { background: var(--gold-light) !important; }
.ab-title-white { color: var(--white) !important; }

.ab-timeline-wrap { position: relative; padding: 3rem 0; }
.ab-timeline-wrap::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200,146,42,.5) 10%, rgba(200,146,42,.5) 90%, transparent);
}

.ab-tl-item {
  display: flex; gap: 0; margin-bottom: 56px;
  position: relative; align-items: flex-start;
}
.ab-tl-item:last-child { margin-bottom: 0; }
.ab-tl-left  { flex-direction: row; }
.ab-tl-right { flex-direction: row-reverse; }

.ab-tl-content {
  width: calc(50% - 50px);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,146,42,.2);
  border-radius: var(--radius-md);
  padding: 28px 26px; position: relative;
  transition: var(--t-mid);
}
.ab-tl-content:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(200,146,42,.4);
  transform: translateY(-3px);
}
.ab-tl-left  .ab-tl-content::after {
  content: ''; position: absolute; top: 26px; right: -10px;
  border: 10px solid transparent;
  border-left-color: rgba(200,146,42,.3);
}
.ab-tl-right .ab-tl-content::after {
  content: ''; position: absolute; top: 26px; left: -10px;
  border: 10px solid transparent;
  border-right-color: rgba(200,146,42,.3);
}

.ab-tl-dot {
  position: absolute; left: 50%; top: 22px; transform: translateX(-50%);
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-deep); font-size: .95rem; font-weight: 700;
  box-shadow: 0 0 0 6px rgba(200,146,42,.15), 0 0 0 12px rgba(200,146,42,.06);
  z-index: 2;
}

.ab-tl-year {
  font-family: var(--font-display); font-size: .7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 7px;
}
.ab-tl-title {
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 9px; line-height: 1.4;
}
.ab-tl-desc { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.75; margin: 0; }

/* ── ACHIEVEMENTS ── */
.ab-achievements-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.ab-achievements-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,  rgba(200,146,42,.04) 0px, rgba(200,146,42,.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(200,146,42,.04) 0px, rgba(200,146,42,.04) 1px, transparent 1px, transparent 40px);
}

.ab-achieve-item { text-align: center; position: relative; z-index: 1; }
.ab-achieve-item + .ab-achieve-item::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 60px; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200,146,42,.4), transparent);
}
body.rtl .ab-achieve-item + .ab-achieve-item::before { left: auto; right: 0; }

.ab-achieve-icon {
  width: 62px; height: 62px; margin: 0 auto 14px;
  background: rgba(200,146,42,.12);
  border: 1px solid rgba(200,146,42,.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.3rem;
}
.ab-achieve-num {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white); line-height: 1;
  display: block; margin-bottom: 6px;
}
.ab-achieve-lbl { font-size: .78rem; color: rgba(255,255,255,.55); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── TEAM ── */
.ab-team-section { padding: var(--section-pad) 0; background: var(--white); }

.ab-team-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; height: 100%;
  transition: var(--t-mid); box-shadow: var(--shadow-sm);
}
.ab-team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: var(--border-gold); }

.ab-team-img {
  position: relative; overflow: hidden; aspect-ratio: 4/4.5;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
}
.ab-team-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(226,135,20,.35);
}
.ab-team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,21,42,.88) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 18px; opacity: 0; transition: opacity .35s;
}
.ab-team-card:hover .ab-team-overlay { opacity: 1; }
.ab-team-socials { display: flex; gap: 8px; }
.ab-team-socials a {
  width: 34px; height: 34px; background: rgba(226,135,20,.85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-deep); font-size: .78rem; transition: var(--t-fast);
}
.ab-team-socials a:hover { background: var(--gold-light); transform: scale(1.1); }

.ab-team-gold-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.ab-team-info { padding: 20px 18px; }
.ab-team-info h4 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; color: var(--navy-deep); margin-bottom: 4px; }
.ab-team-role { font-size: .75rem; color: var(--gold-dark); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 9px; }
.ab-team-info p { font-size: .83rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── WHY US (TRUST) ── */
.ab-trust-section {
  padding: var(--section-pad) 0; background: var(--cream); position: relative;
}
.ab-trust-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ab-trust-row {
  display: flex; align-items: center; gap: 36px;
  padding: 36px 0; border-bottom: 1px solid rgba(226,135,20,.15);
}
.ab-trust-row:last-child { border-bottom: none; }

.ab-trust-row-rev { flex-direction: row-reverse; }
body.rtl .ab-trust-row      { flex-direction: row-reverse; }
body.rtl .ab-trust-row-rev  { flex-direction: row; }

.ab-trust-num {
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 800;
  color: var(--navy-deep); opacity: .06; flex-shrink: 0;
  line-height: 1; width: 90px; text-align: center;
}
.ab-trust-icon {
  width: 88px; height: 88px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy-mid));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold-light);
  box-shadow: 0 12px 28px rgba(15,76,129,.18);
}
.ab-trust-text h4 {
  font-family: var(--font-body); font-size: 1.12rem; font-weight: 700;
  color: var(--navy-deep); margin-bottom: 9px;
}
.ab-trust-text p { font-size: .92rem; color: var(--text-muted); line-height: 1.85; margin: 0; }

/* ── CERTIFICATIONS ── */
.ab-certs-section { padding: var(--section-pad) 0; background: var(--ivory); }

.ab-cert-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 34px 30px;
  height: 100%; position: relative; overflow: hidden;
  display: flex; gap: 20px; align-items: flex-start;
  transition: var(--t-mid);
}
.ab-cert-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s ease;
}
body.rtl .ab-cert-card::before { transform-origin: left; }
.ab-cert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border-gold); }
.ab-cert-card:hover::before { transform: scaleX(1); }

.ab-cert-icon {
  width: 56px; height: 56px; min-width: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.25rem;
  transition: var(--t-fast);
}
.ab-cert-card:hover .ab-cert-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy-deep);
}
.ab-cert-info h5 { font-family: var(--font-body); font-size: .98rem; font-weight: 700; color: var(--navy-deep); margin-bottom: 6px; }
.ab-cert-info p  { font-size: .84rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.ab-cert-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .7rem; font-weight: 600; color: var(--gold-dark);
  background: var(--gold-pale); border: 1px solid rgba(226,135,20,.25);
  border-radius: 20px; padding: 3px 10px; margin-top: 8px;
}

/* ── CLIENTS GRID ── */
.ab-clients-section { padding: var(--section-pad) 0; background: var(--white); }

.ab-clients-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden;
}
.ab-client-cell {
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-fast); position: relative;
}
.ab-client-cell:nth-child(5n) { border-right: none; }
.ab-client-cell:hover { background: var(--ivory); }
.ab-client-cell:hover::before {
  content: ''; position: absolute; inset: 0;
  border: 2px solid rgba(226,135,20,.28); border-radius: 2px; pointer-events: none;
}
.ab-client-name {
  font-family: var(--font-display); font-size: .92rem; font-weight: 700;
  color: var(--text-muted); letter-spacing: .5px; text-align: center;
  transition: color .3s ease;
}
.ab-client-cell:hover .ab-client-name { color: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .about-hero { padding: 76px 0 66px; }
  .ab-intro-section::before { display: none; }
  .ab-img-frame { padding: 14px 14px 50px 0; margin-bottom: 36px; }
  body.rtl .ab-img-frame { padding: 14px 0 50px 14px; }
  .ab-img-inner img { min-height: 340px; }
  .ab-timeline-wrap::before { left: 26px; transform: none; }
  .ab-tl-item, .ab-tl-right { flex-direction: column !important; }
  .ab-tl-content { width: 100%; margin-inline-start: 60px; }
  .ab-tl-dot { left: 0; transform: none; top: 0; }
  .ab-tl-left  .ab-tl-content::after,
  .ab-tl-right .ab-tl-content::after { display: none; }
  .ab-clients-grid { grid-template-columns: repeat(3, 1fr); }
  .ab-client-cell:nth-child(5n) { border-right: 1px solid var(--border-light); }
  .ab-client-cell:nth-child(3n) { border-right: none; }
}
@media (max-width: 767px) {
  .about-hero h1 { font-size: 1.85rem; }
  .hero-stats-row { gap: 10px; }
  .hero-stat-pill { padding: 10px 14px; }
  .ab-trust-row, .ab-trust-row-rev { flex-direction: column !important; align-items: flex-start; }
  .ab-trust-num { display: none; }
  .ab-achieve-item + .ab-achieve-item::before { display: none; }
  .ab-clients-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-client-cell:nth-child(3n) { border-right: 1px solid var(--border-light); }
  .ab-client-cell:nth-child(2n) { border-right: none; }
}











/* ______________________________________________________________ */


    /* ══ PARTNERS PAGE EXTRA ══ */
    .prt-hero {
      position: relative;
      background: linear-gradient(158deg, #07152A 0%, #0A3660 45%, #0F4C81 100%);
      padding: 100px 0 90px;
      overflow: hidden;
      text-align: center;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    .prt-hero.with-bg-img {
      background-blend-mode: overlay;
    }
    .prt-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(45deg,  rgba(226,135,20,.04) 0px, rgba(226,135,20,.04) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, rgba(226,135,20,.04) 0px, rgba(226,135,20,.04) 1px, transparent 1px, transparent 20px);
      z-index: 2;
      animation: patternFadeIn 1.2s ease-out forwards;
    }
    .prt-hero-ft, .prt-hero-fb { position: absolute; left: 60px; right: 60px; height: 1px; background: linear-gradient(90deg,transparent,rgba(226,135,20,.5),rgba(226,135,20,.8),rgba(226,135,20,.5),transparent); }
    .prt-hero-ft { top: 28px; }
    .prt-hero-fb { bottom: 28px; }
    .prt-hero-c { position: absolute; width: 40px; height: 40px; border-color: rgba(226,135,20,.45); border-style: solid; }
    .prt-hero-c.tl { top:18px; left:18px;  border-width: 2px 0 0 2px; }
    .prt-hero-c.tr { top:18px; right:18px; border-width: 2px 2px 0 0; }
    .prt-hero-c.bl { bottom:18px; left:18px;  border-width: 0 0 2px 2px; }
    .prt-hero-c.br { bottom:18px; right:18px; border-width: 0 2px 2px 0; }
    .prt-hero-inner { position: relative; z-index: 2; }
    .prt-hero h1 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 1rem; animation: titleFadeInUp 0.8s ease-out 0.2s both; opacity: 1; }
    body.rtl .prt-hero h1 { font-family: var(--font-ar); font-weight: 800; }
    .prt-hero p { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 580px; margin: 0 auto 2rem; line-height: 1.85; animation: textFadeInUp 0.8s ease-out 0.4s both; opacity: 1; }
    .prt-breadcrumb { display: inline-flex; align-items: center; gap: 10px; font-size: .8rem; color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); border: 1px solid rgba(226,135,20,.2); border-radius: 30px; padding: 8px 20px; margin-bottom: 2rem; animation: breadcrumbFadeIn 0.8s ease-out 0.6s both; opacity: 1; }
    .prt-breadcrumb a { color: var(--gold-light); }
    .prt-breadcrumb .sep { color: rgba(226,135,20,.5); }

    /* ── STATS MINI STRIP ── */
    .prt-stats-strip {
      background: var(--navy-deep);
      border-top: 1px solid rgba(226,135,20,.2);
      border-bottom: 1px solid rgba(226,135,20,.2);
      padding: 36px 0;
    }
    .prt-stat { text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
    .prt-stat:last-child { border-right: none; }
    body.rtl .prt-stat { border-right: none; border-left: 1px solid rgba(255,255,255,.08); }
    body.rtl .prt-stat:last-child { border-left: none; }
    .prt-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; display: block; }
    .prt-stat-lbl { font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 5px; display: block; }

    /* ── SECTOR TABS ── */
    .prt-sector-tabs { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
    .prt-sector-btn {
      padding: 9px 22px; border-radius: 30px;
      border: 1.5px solid var(--border-light);
      background: transparent; color: var(--text-muted);
      font-size: .82rem; font-weight: 600; cursor: pointer;
      transition: var(--t-fast); letter-spacing: .5px;
    }
    .prt-sector-btn.active, .prt-sector-btn:hover {
      background: var(--navy); border-color: var(--navy); color: var(--gold-light);
    }

    /* ── CLIENT CARD ── */
    .prt-client-card {
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      text-align: center;
      height: 100%;
      transition: var(--t-mid);
      position: relative;
      overflow: hidden;
    }
    .prt-client-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
      transform: scaleX(0); transform-origin: right;
      transition: transform .4s ease;
    }
    body.rtl .prt-client-card::before { transform-origin: left; }
    .prt-client-card:hover {
      box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--border-gold);
    }
    .prt-client-card:hover::before { transform: scaleX(1); }

    .prt-client-emblem {
      width: 80px; height: 80px; margin: 0 auto 16px;
      background: var(--ivory);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
      color: var(--navy); transition: var(--t-mid); letter-spacing: 1px;
    }
    .prt-client-card:hover .prt-client-emblem {
      background: var(--navy); color: var(--gold-light); border-color: var(--navy);
    }
    .prt-client-name { font-family: var(--font-body); font-size: .95rem; font-weight: 700; color: var(--navy-deep); margin-bottom: 5px; }
    .prt-client-sector {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: .68rem; font-weight: 600; color: var(--gold-dark);
      background: var(--gold-pale); border: 1px solid rgba(226,135,20,.25);
      border-radius: 20px; padding: 3px 10px;
    }
    .prt-client-since { font-size: .75rem; color: var(--text-muted); margin-top: 8px; display: block; }

    /* ── SECTOR SEPARATOR ── */
    .prt-sector-head {
      display: flex; align-items: center; gap: 16px;
      margin: 3rem 0 1.8rem;
    }
    .prt-sector-head span { font-size: .72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
    .prt-sector-head::before, .prt-sector-head::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
    .prt-sector-head::after { background: linear-gradient(90deg, transparent, var(--gold)); }

    /* ── TESTIMONIAL ROW ── */
    .prt-quote-section { padding: 80px 0; background: var(--ivory); position: relative; }
    .prt-quote-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
    .prt-quote-card {
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 36px 32px;
      position: relative;
    }
    .prt-quote-mark { font-family: Georgia, serif; font-size: 6rem; color: var(--gold); opacity: .12; line-height: .7; position: absolute; top: 16px; right: 20px; }
    body.rtl .prt-quote-mark { right: auto; left: 20px; }
    .prt-quote-text { font-size: .97rem; color: var(--text-muted); line-height: 1.9; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
    body.rtl .prt-quote-text { font-style: normal; }
    .prt-quote-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border-light); padding-top: 16px; }
    .prt-author-init { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; color: var(--navy-deep); flex-shrink: 0; }
    .prt-author-name { font-weight: 700; font-size: .88rem; color: var(--navy-deep); }
    .prt-author-role { font-size: .75rem; color: var(--text-muted); }

    /* ── PARTNER WITH US ── */
    .prt-collab-section { padding: var(--section-pad) 0; background: var(--white); }
    .prt-collab-card {
      background: linear-gradient(160deg, var(--navy-deep), var(--navy));
      border: 1px solid rgba(226,135,20,.2);
      border-radius: var(--radius-lg);
      padding: 56px 48px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .prt-collab-card::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(45deg,rgba(226,135,20,.03) 0px,rgba(226,135,20,.03) 1px,transparent 1px,transparent 24px),
        repeating-linear-gradient(-45deg,rgba(226,135,20,.03) 0px,rgba(226,135,20,.03) 1px,transparent 1px,transparent 24px);
    }
    .prt-collab-card h2 { font-family: var(--font-display); color: var(--white); font-size: clamp(1.7rem,3vw,2.4rem); margin-bottom: 1rem; position: relative; z-index: 1; }
    body.rtl .prt-collab-card h2 { font-family: var(--font-ar); }
    .prt-collab-card p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 540px; margin: 0 auto 2rem; line-height: 1.85; position: relative; z-index: 1; }
    .prt-collab-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
    .prt-collab-features { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; position: relative; z-index: 1; }
    .prt-collab-feat { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .84rem; }
    .prt-collab-feat i { color: var(--gold-light); font-size: .8rem; }

    @media (max-width: 767px) {
      .prt-hero { padding: 76px 0 60px; }
      .prt-collab-card { padding: 36px 24px; }
      .prt-stat { border-right: none !important; border-left: none !important; border-bottom: 1px solid rgba(255,255,255,.08); padding: 16px 0; }
      .prt-stat:last-child { border-bottom: none; }
    }







/* __________________________________________________________________ */
    /* ══ SERVICES PAGE EXTRA ══ */
    .srv-hero {
      position: relative;
      background: linear-gradient(158deg, #07152A 0%, #0A3660 45%, #0F4C81 100%);
      padding: 100px 0 90px;
      overflow: hidden;
      text-align: center;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    .srv-hero.with-bg-img {
      background-blend-mode: overlay;
    }
    .srv-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(45deg,  rgba(226,135,20,.04) 0px, rgba(226,135,20,.04) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, rgba(226,135,20,.04) 0px, rgba(226,135,20,.04) 1px, transparent 1px, transparent 20px);
      z-index: 2;
      animation: patternFadeIn 1.2s ease-out forwards;
    }
    .srv-hero-frame-top, .srv-hero-frame-bottom {
      position: absolute; left: 60px; right: 60px; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(226,135,20,.5), rgba(226,135,20,.8), rgba(226,135,20,.5), transparent);
    }
    .srv-hero-frame-top    { top: 28px; }
    .srv-hero-frame-bottom { bottom: 28px; }
    .srv-hero-corner {
      position: absolute; width: 40px; height: 40px;
      border-color: rgba(226,135,20,.45); border-style: solid;
    }
    .srv-hero-corner.tl { top: 18px; left: 18px;  border-width: 2px 0 0 2px; }
    .srv-hero-corner.tr { top: 18px; right: 18px; border-width: 2px 2px 0 0; }
    .srv-hero-corner.bl { bottom: 18px; left: 18px;  border-width: 0 0 2px 2px; }
    .srv-hero-corner.br { bottom: 18px; right: 18px; border-width: 0 2px 2px 0; }
    .srv-hero-inner { position: relative; z-index: 2; }
    .srv-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700; color: var(--white);
      line-height: 1.25; margin-bottom: 1rem;
      animation: titleFadeInUp 0.8s ease-out 0.2s both;
      opacity: 1;
    }
    body.rtl .srv-hero h1 { font-family: var(--font-ar); font-weight: 800; }
    .srv-hero p {
      font-size: 1.05rem; color: rgba(255,255,255,.72);
      max-width: 580px; margin: 0 auto 2rem; line-height: 1.85;
      animation: textFadeInUp 0.8s ease-out 0.4s both;
      opacity: 1;
    }
    .srv-breadcrumb {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .8rem; color: rgba(255,255,255,.5);
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(226,135,20,.2);
      border-radius: 30px; padding: 8px 20px; margin-bottom: 2rem;
      animation: breadcrumbFadeIn 0.8s ease-out 0.6s both;
      opacity: 1;
    }
    .srv-breadcrumb a { color: var(--gold-light); }
    .srv-breadcrumb .sep { color: rgba(226,135,20,.5); }

    /* ── SERVICE CATEGORY HEADER ── */
    .srv-cat-header {
      display: flex; align-items: center; gap: 18px;
      margin-bottom: 2.5rem;
    }
    .srv-cat-icon {
      width: 64px; height: 64px; flex-shrink: 0;
      background: linear-gradient(145deg, var(--navy-deep), var(--navy-mid));
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; color: var(--gold-light);
      box-shadow: 0 8px 24px rgba(15,76,129,.2);
    }
    .srv-cat-title { font-family: var(--font-body); font-size: 1.4rem; font-weight: 800; color: var(--navy-deep); margin-bottom: 4px; }
    body.rtl .srv-cat-title { font-family: var(--font-ar); }
    .srv-cat-sub  { font-size: .88rem; color: var(--text-muted); margin: 0; }
    .srv-cat-rule { height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 2.5rem; }

    /* ── DETAILED SERVICE CARD ── */
    .srv-detail-card {
      background: var(--white);
      border: 1px solid var(--border-light);
      border-top: 3px solid transparent;
      border-radius: var(--radius-md);
      padding: 32px 28px;
      height: 100%;
      transition: var(--t-mid);
      position: relative;
      overflow: hidden;
    }
    .srv-detail-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(226,135,20,.03) 0%, transparent 50%);
      opacity: 0; transition: opacity .35s;
    }
    .srv-detail-card:hover {
      border-top-color: var(--gold);
      box-shadow: var(--shadow-md);
      transform: translateY(-5px);
    }
    .srv-detail-card:hover::before { opacity: 1; }
    .srv-detail-icon {
      width: 56px; height: 56px; margin-bottom: 18px;
      background: linear-gradient(145deg, var(--navy-deep), var(--navy-mid));
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: var(--gold-light);
      transition: var(--t-mid); position: relative; z-index: 1;
    }
    .srv-detail-card:hover .srv-detail-icon {
      background: linear-gradient(145deg, var(--gold-dark), var(--gold));
      color: var(--navy-deep);
    }
    .srv-detail-card h5 {
      font-family: var(--font-body); font-size: 1rem; font-weight: 700;
      color: var(--navy-deep); margin-bottom: 10px; position: relative; z-index: 1;
    }
    .srv-detail-card p {
      font-size: .87rem; color: var(--text-muted); line-height: 1.85;
      margin: 0; position: relative; z-index: 1;
    }
    .srv-detail-card .srv-tags {
      display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px;
      position: relative; z-index: 1;
    }
    .srv-tag {
      font-size: .7rem; font-weight: 600; color: var(--navy);
      background: var(--ivory-deep); border: 1px solid var(--border-light);
      border-radius: 20px; padding: 3px 10px;
    }

    /* ── PROCESS SECTION ── */
    .srv-process-section { padding: var(--section-pad) 0; background: var(--navy-deep); position: relative; overflow: hidden; }
    .srv-process-section::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(45deg,  rgba(226,135,20,.03) 0px, rgba(226,135,20,.03) 1px, transparent 1px, transparent 24px),
        repeating-linear-gradient(-45deg, rgba(226,135,20,.03) 0px, rgba(226,135,20,.03) 1px, transparent 1px, transparent 24px);
    }
    .srv-process-step {
      text-align: center; padding: 32px 20px; position: relative;
    }
    .srv-process-step::after {
      content: ''; position: absolute;
      top: 54px; right: -30px;
      width: 60px; height: 1px;
      background: linear-gradient(90deg, rgba(226,135,20,.5), transparent);
    }
    body.rtl .srv-process-step::after { right: auto; left: -30px; background: linear-gradient(90deg, transparent, rgba(226,135,20,.5)); }
    .col-md-3:last-child .srv-process-step::after { display: none; }
    .srv-step-num {
      width: 70px; height: 70px; margin: 0 auto 18px;
      background: rgba(226,135,20,.12);
      border: 2px solid rgba(226,135,20,.35);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gold-light);
    }
    .srv-step-title { font-family: var(--font-body); font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .srv-step-desc  { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.7; margin: 0; }

    /* ── CATEGORY SECTIONS ── */
    .srv-category-section { padding: var(--section-pad) 0; }
    .srv-category-section.bg-ivory { background: var(--ivory); }

    @media (max-width: 767px) {
      .srv-hero { padding: 76px 0 60px; }
      .srv-process-step::after { display: none; }
      .srv-cat-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — contact.html
   ═══════════════════════════════════════════════════════════ */

#contact-channels,
#contact-map {
  position: relative;
  overflow: hidden;
}

#contact-channels::before,
#contact-map::before,
.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-deep), var(--gold), var(--navy-light), var(--gold-dark));
}

.contact-form-section {
  position: relative;
  overflow: hidden;
}

.contact-channels-row {
  max-width: 920px;
  margin-inline: auto;
}

.contact-channel-card .why-card-body p {
  line-height: 1.85;
}

.contact-channel-emails {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}

.contact-channel-card .why-card-body p a,
.contact-channel-emails a {
  color: var(--navy-mid);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--t-fast);
}

.contact-channel-card .why-card-body p a:hover,
.contact-channel-emails a:hover {
  color: var(--gold-dark);
}

.contact-form-title {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

body.rtl .contact-form-title {
  font-family: var(--font-ar);
}

.contact-form-lead {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.contact-submit-btn {
  padding: 14px 20px !important;
}

.contact-hours-box {
  margin-top: 1.25rem;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(226, 135, 20, 0.18);
  border-radius: var(--radius);
}

.contact-hours-box h6 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-hours-row:last-child {
  border-bottom: none;
}

.contact-hours-row .day {
  color: rgba(255, 255, 255, 0.55);
}

.contact-hours-row .time {
  color: var(--white);
  font-weight: 600;
}

.contact-map-frame {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(12%);
}

.contact-map-overlay {
  position: absolute;
  top: 24px;
  inset-inline-start: 24px;
  z-index: 2;
  max-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-md);
  border-inline-start: 4px solid var(--gold);
}

.contact-map-overlay h6 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.contact-map-overlay p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.contact-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid rgba(226, 135, 20, 0.25);
  border-radius: 20px;
  padding: 4px 12px;
}

@media (max-width: 991px) {
  .contact-map-overlay {
    display: none;
  }
  .contact-map-frame {
    height: 340px;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 28px 22px;
  }
}

@media (max-width: 767px) {
  .contact-map-frame {
    height: 300px;
  }
}

/* ===================== MESSAGE MODAL ===================== */
.zeqva-message-modal .modal-backdrop,
.modal-backdrop.show {
  transition: opacity 0.35s ease;
}

.zeqva-message-modal .modal-dialog {
  opacity: 0;
  transform: scale(0.94) translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.zeqva-message-modal.show .modal-dialog {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.zeqva-message-modal .modal-content.message-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(10, 35, 66, 0.28),
              0 8px 24px rgba(10, 35, 66, 0.12);
}

.message-modal-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--t-mid);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.message-modal-close:hover {
  background: var(--white);
  color: var(--gold-dark);
  transform: rotate(90deg);
}

.message-modal-row {
  min-height: 520px;
}

.message-modal-aside {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 55%, #0a3d6e 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.message-modal-aside::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(226, 135, 20, 0.18), transparent 55%),
              radial-gradient(ellipse 50% 40% at 0% 100%, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.message-modal-aside-inner {
  position: relative;
  z-index: 1;
  padding: 48px 40px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.message-modal-logo {
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.message-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(226, 135, 20, 0.15);
  border: 1px solid rgba(226, 135, 20, 0.35);
  border-radius: 30px;
  padding: 6px 14px;
  width: fit-content;
  margin-bottom: 16px;
}

.message-modal-aside h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--white);
}

.message-modal-aside p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

.message-modal-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}

.message-modal-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
}

.message-modal-feats li i {
  color: var(--gold-light);
  font-size: 1rem;
}

.message-modal-contact-hint {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.message-modal-contact-hint > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.message-modal-contact-hint i {
  color: var(--gold-light);
  margin-top: 3px;
}

.message-modal-contact-hint a {
  color: var(--gold-light);
  text-decoration: none;
}

.message-modal-contact-hint a:hover {
  text-decoration: underline;
}

.message-modal-form-wrap {
  background: var(--white);
}

.message-modal-form-inner {
  padding: 48px 44px 40px;
}

.message-modal-form-head {
  margin-bottom: 28px;
}

.message-modal-form-head h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.message-modal-form-head p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.message-modal-form .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.message-modal-form .form-control,
.message-modal-form .form-select {
  border-radius: 10px;
  border-color: rgba(15, 76, 129, 0.18);
  padding: 11px 14px;
  font-size: 0.92rem;
}

.message-modal-submit {
  padding: 14px 24px !important;
  font-size: 1rem;
}

.message-modal-success {
  margin-top: 1rem;
}

body.rtl .message-modal-form-head,
body.rtl .message-modal-aside h3 {
  text-align: right;
}

@media (max-width: 991px) {
  .message-modal-aside-inner {
    padding: 36px 28px 28px;
  }
  .message-modal-form-inner {
    padding: 36px 28px 32px;
  }
  .message-modal-row {
    min-height: auto;
  }
  .message-modal-close {
    top: 12px;
    inset-inline-end: 12px;
    background: rgba(255, 255, 255, 0.95);
  }
}

@media (max-width: 575px) {
  .zeqva-message-modal .modal-dialog {
    margin: 0;
    max-width: 100%;
    min-height: 100%;
    align-items: flex-end;
  }
  .zeqva-message-modal .modal-content.message-modal-content {
    border-radius: 18px 18px 0 0;
    max-height: 94dvh;
  }
  .zeqva-message-modal .modal-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .message-modal-aside-inner {
    padding: 24px 20px 18px;
  }
  .message-modal-aside h3 { font-size: 1.2rem; }
  .message-modal-feats li { font-size: 0.86rem; padding: 6px 0; }
  .message-modal-form-inner {
    padding: 28px 18px 24px;
  }
  .message-modal-close {
    top: 10px;
    width: 40px;
    height: 40px;
  }
}

/* Page heroes + partners/services touch layouts */
@media (max-width: 767px) {
  .about-hero,
  .prt-hero {
    padding: 58px 0 48px !important;
  }
  .about-hero h1,
  .prt-hero h1 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    line-height: 1.3;
  }
  .about-hero p,
  .prt-hero p {
    font-size: 0.94rem;
    padding: 0 6px;
  }
  .hero-frame-top,
  .hero-frame-bottom,
  .hero-frame-corner,
  .prt-hero-c {
    display: none;
  }
  .hero-stats-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-stat-pill {
    width: 100%;
    justify-content: center;
  }
  .prt-stats-strip .prt-stat {
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
    margin-bottom: 14px;
  }
  .prt-stats-strip .prt-stat:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .prt-sector-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    margin-bottom: 2rem;
  }
  .prt-sector-tabs::-webkit-scrollbar { display: none; }
  .prt-sector-btn { flex-shrink: 0; }
  .testimonial-card {
    padding: 24px 20px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
