/* ============================================
   GULF WINGS TRADING AND SERVICES
   Global Stylesheet
   ============================================ */

/* ---- FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Outfit:wght@300;400;500;600&family=Noto+Kufi+Arabic:wght@300;400;500;600;700&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  /* Palette */
  --navy:        #0E1428;
  --navy-deep:   #080C1A;
  --navy-soft:   #1A2138;
  --navy-line:   #232B47;
  --gold:        #C5A253;
  --gold-light:  #E2C886;
  --gold-deep:   #A6863C;
  --cream:       #F6F3EC;
  --cream-soft:  #EDE8DC;
  --ink:         #12151F;
  --grey:        #6B7080;
  --grey-light:  #9CA0AD;
  --white:       #FCFBF8;

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Outfit', sans-serif;
  --arabic:'Noto Kufi Arabic', sans-serif;

  /* Spacing */
  --container: 1280px;
  --gutter: clamp(24px, 5vw, 80px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
}

body.ar { font-family: var(--arabic); direction: rtl; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--navy); }

/* ---- CUSTOM SCROLLBAR ---- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
.ar h1, .ar h2, .ar h3, .ar h4 { font-family: var(--arabic); font-weight: 600; letter-spacing: 0; line-height: 1.4; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.ar .eyebrow { font-family: var(--arabic); letter-spacing: 0.1em; }
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.display { font-size: clamp(2.6rem, 6vw, 5.4rem); }
.display-sm { font-size: clamp(2rem, 4vw, 3.4rem); }

/* ---- LAYOUT ---- */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }

section { position: relative; }

.section-pad { padding-block: clamp(80px, 11vw, 160px); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.ar .btn { font-family: var(--arabic); letter-spacing: 0.04em; }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(197,162,83,0.3); }

.btn-ghost { border-color: rgba(255,255,255,0.25); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-soft); transform: translateY(-2px); }

.btn-arrow::after { content: '→'; transition: transform 0.3s var(--ease); }
.btn-arrow:hover::after { transform: translateX(5px); }
.ar .btn-arrow::after { content: '←'; }
.ar .btn-arrow:hover::after { transform: translateX(-5px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  height: 84px;
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  height: 68px;
  background: rgba(14,20,40,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197,162,83,0.12);
}

.nav-logo { display: flex; align-items: center; gap: 13px; z-index: 1002; }
.nav-logo-mark {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}
.nav-logo:hover .nav-logo-mark { transform: rotate(90deg); }
.nav-logo-mark svg { width: 19px; height: 19px; }
.nav-logo-text { font-family: var(--serif); color: var(--white); font-size: 1.25rem; font-weight: 600; line-height: 1; letter-spacing: 0.02em; }
.nav-logo-text span {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}
.ar .nav-logo-text span { font-family: var(--arabic); letter-spacing: 0.08em; }

.nav-links { display: flex; align-items: center; gap: 2.4rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: rgba(252,251,248,0.8);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}
.ar .nav-links > li > a { letter-spacing: 0.04em; font-size: 0.85rem; }
.nav-links > li > a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links > li > a:hover { color: var(--gold-light); }
.nav-links > li > a:hover::after { width: 100%; }
.nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a.active::after { width: 100%; }

/* Dropdown */
.has-dropdown > a::before {
  content: '⌄'; margin-inline-start: 6px; font-size: 0.7rem; opacity: 0.6;
}
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: rgba(14,20,40,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(197,162,83,0.15);
  min-width: 240px;
  padding: 12px;
  opacity: 0; visibility: hidden;
  transition: all 0.35s var(--ease);
  list-style: none;
}
.ar .dropdown { left: auto; right: 50%; transform: translateX(50%) translateY(10px); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.ar .has-dropdown:hover .dropdown { transform: translateX(50%) translateY(0); }
.dropdown li a {
  display: block;
  padding: 11px 16px;
  color: rgba(252,251,248,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  border-inline-start: 1px solid transparent;
}
.dropdown li a:hover { color: var(--gold-light); background: rgba(197,162,83,0.06); border-inline-start-color: var(--gold); padding-inline-start: 22px; }

.nav-right { display: flex; align-items: center; gap: 1.4rem; z-index: 1002; }
.lang-toggle {
  background: transparent;
  border: 1px solid rgba(197,162,83,0.4);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.3s;
}
.lang-toggle:hover { background: var(--gold); color: var(--navy); }

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Mobile toggle */
.nav-burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; z-index: 1002; padding: 6px; }
.nav-burger span { width: 26px; height: 1.5px; background: var(--white); transition: all 0.4s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  z-index: 1001;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu > ul > li { overflow: hidden; }
.mobile-menu > ul > li > a {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 7vw, 3rem);
  color: var(--cream);
  display: block;
  padding: 10px 0;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}
.mobile-menu > ul > li > a:hover { color: var(--gold); transform: translateX(12px); }
.ar .mobile-menu > ul > li > a:hover { transform: translateX(-12px); }
.mobile-submenu { padding-inline-start: 20px; }
.mobile-submenu li a { font-family: var(--sans); font-size: 0.95rem; color: var(--grey-light); padding: 6px 0; display: block; letter-spacing: 0.05em; }
.mobile-submenu li a:hover { color: var(--gold-light); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 35%, rgba(197,162,83,0.10), transparent 60%),
    radial-gradient(ellipse 60% 70% at 15% 85%, rgba(197,162,83,0.05), transparent 55%),
    linear-gradient(140deg, var(--navy-deep) 0%, var(--navy-soft) 55%, var(--navy-deep) 100%);
}

/* Animated architectural lines */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(197,162,83,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,162,83,0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 60% 50%, black 10%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 90% at 60% 50%, black 10%, transparent 75%);
}

/* Concentric rings ornament */
.hero-rings {
  position: absolute; right: -180px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; z-index: 1;
  opacity: 0.5;
}
.ar .hero-rings { right: auto; left: -180px; }
.hero-rings span {
  position: absolute; inset: 0; margin: auto;
  border: 1px solid rgba(197,162,83,0.10);
  border-radius: 50%;
  animation: ringPulse 8s var(--ease) infinite;
}
.hero-rings span:nth-child(1) { width: 700px; height: 700px; animation-delay: 0s; }
.hero-rings span:nth-child(2) { width: 540px; height: 540px; animation-delay: 0.5s; }
.hero-rings span:nth-child(3) { width: 380px; height: 380px; animation-delay: 1s; }
.hero-rings span:nth-child(4) { width: 220px; height: 220px; animation-delay: 1.5s; border-color: rgba(197,162,83,0.2); }

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.04); opacity: 0.7; }
}

.hero-content { position: relative; z-index: 3; width: 100%; }
.hero-grid-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: center; }

.hero h1 { color: var(--white); margin: 2rem 0 1.8rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-lead { color: rgba(252,251,248,0.6); font-size: 1.1rem; font-weight: 300; max-width: 480px; line-height: 1.8; }
.hero-actions { display: flex; gap: 1.2rem; margin-top: 2.8rem; flex-wrap: wrap; }

/* Hero stats */
.hero-stats { display: flex; flex-direction: column; gap: 2.2rem; border-inline-start: 1px solid rgba(197,162,83,0.2); padding-inline-start: 2.5rem; }
.hero-stat .num { font-family: var(--serif); font-size: 3.4rem; font-weight: 600; color: var(--gold-light); line-height: 1; }
.hero-stat .label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(252,251,248,0.45); margin-top: 8px; }
.ar .hero-stat .label { letter-spacing: 0.05em; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(252,251,248,0.4); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(0.4); opacity: 0.5; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================
   SECTION HEADERS
   ============================================ */
.sec-head { max-width: 640px; margin-bottom: 4rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { margin: 1.3rem 0; color: var(--ink); }
.sec-head.light h2 { color: var(--white); }
.sec-head p { color: var(--grey); font-size: 1.05rem; line-height: 1.8; }
.sec-head.light p { color: rgba(252,251,248,0.55); }
.sec-head h2 em { font-style: italic; color: var(--gold-deep); }
.sec-head.light h2 em { color: var(--gold-light); }

/* ============================================
   INTRO / ABOUT SNAPSHOT
   ============================================ */
.intro { background: var(--cream); overflow: hidden; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }

.intro-visual { position: relative; aspect-ratio: 4/5; }
.intro-visual-frame {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, var(--navy-soft), var(--navy-deep));
  overflow: hidden;
}
/* Abstract building lines inside frame */
.intro-visual-frame::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(197,162,83,0.07) 38px, rgba(197,162,83,0.07) 39px);
}
.intro-visual-frame::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(197,162,83,0.05) 38px, rgba(197,162,83,0.05) 39px);
}
.intro-visual-glyph {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
}
.intro-visual-glyph svg { width: 130px; height: 130px; opacity: 0.85; }
.intro-badge {
  position: absolute; bottom: -28px; inset-inline-start: -28px;
  background: var(--gold); color: var(--navy);
  padding: 24px 28px; z-index: 3;
}
.intro-badge .n { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; line-height: 1; }
.intro-badge .t { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; opacity: 0.7; }
.intro-frame-line { position: absolute; top: -22px; inset-inline-end: -22px; width: 130px; height: 130px; border: 1px solid var(--gold); z-index: 1; }

.intro h2 { margin: 1.4rem 0; color: var(--ink); }
.intro h2 em { font-style: italic; color: var(--gold-deep); }
.intro p { color: var(--grey); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.4rem; }

.intro-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 2.6rem; }
.pillar { padding-top: 1.5rem; border-top: 1px solid var(--cream-soft); }
.pillar-ico { width: 38px; height: 38px; color: var(--gold-deep); margin-bottom: 1rem; }
.pillar h4 { font-size: 1.15rem; color: var(--ink); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.9rem; color: var(--grey); margin: 0; line-height: 1.65; }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--cream-soft); border-inline-start: 1px solid var(--cream-soft); }
.service-card {
  border-inline-end: 1px solid var(--cream-soft);
  border-bottom: 1px solid var(--cream-soft);
  padding: 3rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; inset-inline-start: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: inline-start;
  transition: transform 0.5s var(--ease);
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: var(--serif); font-size: 2.4rem; color: rgba(197,162,83,0.25); font-weight: 600; line-height: 1; transition: color 0.4s; }
.service-card:hover .service-num { color: var(--gold); }
.service-ico { width: 40px; height: 40px; color: var(--gold-deep); margin: 1.4rem 0 1.2rem; }
.service-card h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.7rem; }
.service-card p { font-size: 0.92rem; color: var(--grey); line-height: 1.7; }
.service-link { margin-top: 1.4rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease); }
.service-card:hover .service-link { opacity: 1; transform: translateY(0); }
.service-link::after { content: '→'; }
.ar .service-link::after { content: '←'; }

/* ============================================
   STATS BAR
   ============================================ */
.statsbar { background: var(--navy); position: relative; overflow: hidden; }
.statsbar::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(197,162,83,0.08), transparent 70%);
}
.statsbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; }
.statbar-item { text-align: center; position: relative; }
.statbar-item:not(:last-child)::after { content: ''; position: absolute; inset-inline-end: -1rem; top: 15%; height: 70%; width: 1px; background: rgba(197,162,83,0.15); }
.statbar-num { font-family: var(--serif); font-size: clamp(3rem, 5vw, 4.4rem); font-weight: 600; color: var(--gold-light); line-height: 1; }
.statbar-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(252,251,248,0.5); margin-top: 12px; }
.ar .statbar-label { letter-spacing: 0.04em; }

/* ============================================
   SECTORS
   ============================================ */
.sectors { background: var(--cream); }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sector-card {
  background: var(--white);
  padding: 2.6rem 2rem;
  border: 1px solid var(--cream-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.sector-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(14,20,40,0.10); border-color: rgba(197,162,83,0.3); }
.sector-ico { width: 44px; height: 44px; color: var(--gold-deep); margin-bottom: 1.4rem; }
.sector-card h4 { font-size: 1.35rem; color: var(--ink); margin-bottom: 0.6rem; }
.sector-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.7; }
.sector-card .corner { position: absolute; top: 0; inset-inline-end: 0; width: 0; height: 0; border-style: solid; border-width: 0 40px 40px 0; border-color: transparent var(--cream) transparent transparent; transition: border-color 0.4s; }
.sector-card:hover .corner { border-color: transparent var(--gold) transparent transparent; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { background: var(--gold); position: relative; overflow: hidden; text-align: center; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(14,20,40,0.025) 30px, rgba(14,20,40,0.025) 31px);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); color: var(--navy); margin-bottom: 1rem; }
.cta-banner p { color: rgba(14,20,40,0.7); font-size: 1.1rem; max-width: 520px; margin: 0 auto 2.4rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-deep); color: rgba(252,251,248,0.6); padding-top: clamp(60px, 8vw, 100px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 4rem; }
.footer-brand .nav-logo { margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 280px; color: rgba(252,251,248,0.45); }
.footer-col h5 { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.ar .footer-col h5 { letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a { font-size: 0.9rem; color: rgba(252,251,248,0.55); transition: all 0.3s; }
.footer-col a:hover { color: var(--gold-light); padding-inline-start: 6px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 1.1rem; font-size: 0.9rem; color: rgba(252,251,248,0.55); }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--navy-line); padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(252,251,248,0.35); }

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
  background: var(--navy);
  padding-top: 180px; padding-bottom: 90px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(197,162,83,0.08), transparent 60%),
    linear-gradient(140deg, var(--navy-deep), var(--navy-soft));
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(197,162,83,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(197,162,83,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, black, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, black, transparent 75%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin: 1.6rem 0 1.2rem; font-size: clamp(2.6rem, 6vw, 4.6rem); }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: rgba(252,251,248,0.6); font-size: 1.1rem; max-width: 560px; line-height: 1.8; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.1em; color: rgba(252,251,248,0.4); }
.breadcrumb a { color: var(--gold-deep); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { margin: 0 8px; opacity: 0.4; }

/* ============================================
   CONTENT BLOCKS (interior)
   ============================================ */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--ink); margin: 2.5rem 0 1.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.5rem; color: var(--ink); margin: 2rem 0 1rem; }
.prose p { color: var(--grey); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.3rem; }
.prose ul { list-style: none; margin: 1.4rem 0; }
.prose li { position: relative; padding-inline-start: 28px; margin-bottom: 0.9rem; color: var(--grey); line-height: 1.7; }
.prose li::before { content: ''; position: absolute; inset-inline-start: 0; top: 11px; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }

/* Service detail blocks */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,6rem); align-items: center; padding-block: clamp(50px,7vw,90px); border-bottom: 1px solid var(--cream-soft); }
.svc-detail:nth-child(even) .svc-detail-visual { order: -1; }
.ar .svc-detail:nth-child(even) .svc-detail-visual { order: 0; }
.svc-detail-visual { aspect-ratio: 5/4; background: linear-gradient(150deg, var(--navy-soft), var(--navy-deep)); position: relative; overflow: hidden; display: grid; place-items: center; }
.svc-detail-visual::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(60deg, transparent, transparent 32px, rgba(197,162,83,0.06) 32px, rgba(197,162,83,0.06) 33px); }
.svc-detail-visual svg { width: 90px; height: 90px; color: var(--gold); opacity: 0.7; z-index: 1; }
.svc-detail-visual .big-num { position: absolute; bottom: 20px; inset-inline-end: 28px; font-family: var(--serif); font-size: 5rem; color: rgba(197,162,83,0.15); font-weight: 600; }
.svc-detail h3 { font-size: clamp(1.6rem,3vw,2.4rem); color: var(--ink); margin: 1rem 0; }
.svc-detail p { color: var(--grey); font-size: 1.02rem; line-height: 1.8; margin-bottom: 1rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.svc-tag { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: var(--gold-deep); background: rgba(197,162,83,0.1); padding: 6px 13px; }

/* ============================================
   WHY / FEATURES
   ============================================ */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--cream-soft); }
.why-item { padding: 3rem 2.5rem; border-bottom: 1px solid var(--cream-soft); position: relative; transition: background 0.4s; }
.why-item:nth-child(odd) { border-inline-end: 1px solid var(--cream-soft); }
.why-item:hover { background: var(--cream); }
.why-num { font-family: var(--serif); font-size: 1rem; color: var(--gold-deep); font-weight: 600; letter-spacing: 0.1em; }
.why-item h3 { font-size: 1.5rem; color: var(--ink); margin: 1rem 0 0.7rem; }
.why-item p { color: var(--grey); font-size: 0.95rem; line-height: 1.75; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(3rem,6vw,6rem); align-items: start; }
.contact-info h3 { font-size: 1.6rem; color: var(--ink); font-style: italic; margin-bottom: 1rem; }
.contact-info > p { color: var(--grey); line-height: 1.8; margin-bottom: 2.4rem; }
.contact-detail { display: flex; gap: 16px; padding: 1.4rem 0; border-top: 1px solid var(--cream-soft); }
.contact-detail svg { width: 22px; height: 22px; color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.contact-detail .label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 4px; }
.contact-detail .value { color: var(--ink); font-size: 1rem; }

.contact-form { background: var(--white); padding: clamp(2rem,4vw,3.2rem); border: 1px solid var(--cream-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.ar .field label { letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--cream);
  border: 1px solid var(--cream-soft);
  padding: 13px 15px;
  font-family: var(--sans); font-size: 0.92rem; color: var(--ink);
  transition: all 0.3s; outline: none;
}
.ar .field input, .ar .field select, .ar .field textarea { font-family: var(--arabic); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(197,162,83,0.1); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C5A253' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-inline-end: 38px; }
.ar .field select { background-position: left 15px center; padding-inline-end: 15px; padding-inline-start: 38px; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }
.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success.show { display: block; }
.form-success svg { width: 52px; height: 52px; color: var(--gold); margin: 0 auto 1rem; }
.form-success h4 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.5rem; }
.form-success p { color: var(--grey); }

/* Careers */
.careers-list { display: flex; flex-direction: column; gap: 1px; background: var(--cream-soft); border: 1px solid var(--cream-soft); }
.career-item { background: var(--white); padding: 2rem 2.4rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; transition: all 0.4s var(--ease); cursor: pointer; flex-wrap: wrap; }
.career-item:hover { background: var(--cream); padding-inline-start: 3rem; }
.career-info h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 0.4rem; }
.career-meta { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.career-meta span { font-size: 0.78rem; color: var(--grey); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 6px; }
.career-meta svg { width: 14px; height: 14px; color: var(--gold-deep); }
.career-apply { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.career-apply::after { content: '→'; transition: transform 0.3s; }
.career-item:hover .career-apply::after { transform: translateX(5px); }
.ar .career-apply::after { content: '←'; }

.careers-cta { text-align: center; margin-top: 3rem; padding: 3rem; background: var(--white); border: 1px solid var(--cream-soft); }
.careers-cta h3 { font-size: 1.6rem; color: var(--ink); font-style: italic; margin-bottom: 0.8rem; }
.careers-cta p { color: var(--grey); margin-bottom: 1.6rem; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* Hero load animations */
.hero-anim { opacity: 0; transform: translateY(30px); animation: heroUp 1s var(--ease-out) forwards; }
.hero-anim-1 { animation-delay: 0.2s; }
.hero-anim-2 { animation-delay: 0.38s; }
.hero-anim-3 { animation-delay: 0.54s; }
.hero-anim-4 { animation-delay: 0.7s; }
.hero-anim-5 { animation-delay: 0.86s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding-top: 100px; }
  .hero-grid-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 2rem; border-inline-start: none; border-top: 1px solid rgba(197,162,83,0.2); padding-inline-start: 0; padding-top: 2rem; }
  .hero-rings { opacity: 0.2; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .statsbar-grid { grid-template-columns: 1fr 1fr; gap: 3rem 1rem; }
  .statbar-item:nth-child(2)::after { display: none; }
  .svc-detail { grid-template-columns: 1fr; gap: 2rem; }
  .svc-detail:nth-child(even) .svc-detail-visual { order: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item:nth-child(odd) { border-inline-end: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .statsbar-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .num { font-size: 2.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   ADDITIONAL STYLES — UPDATES
   ============================================ */

/* ---- MOBILE MENU — prevent flash ---- */
.mobile-menu {
  visibility: hidden;
}
.mobile-menu.open {
  visibility: visible;
}

/* Mobile menu footer with WA button */
.mobile-menu-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(197,162,83,0.2);
}
.mobile-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}
.mobile-wa-btn svg { width: 20px; height: 20px; }
.mobile-wa-btn:hover { background: #1da851; }

/* ---- WHATSAPP FLOATING BUTTON ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.wa-float-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: pointer;
  position: relative;
}
.wa-float-btn svg { width: 30px; height: 30px; fill: #fff; }
.wa-float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
.wa-float-label {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s var(--ease);
  pointer-events: none;
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
}
.wa-float-btn:hover .wa-float-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ---- CONTACT PAGE WA CTAs ---- */
.contact-wa-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.btn-wa-en, .btn-wa-ar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 22px;
  transition: background 0.3s, transform 0.3s;
}
.btn-wa-en:hover, .btn-wa-ar:hover { background: #1da851; transform: translateY(-2px); }

/* Inline WA link in phone details */
.wa-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #25D366;
  font-size: 0.75rem;
  font-weight: 500;
  margin-inline-start: 10px;
  transition: opacity 0.2s;
}
.wa-inline-btn svg { width: 14px; height: 14px; }
.wa-inline-btn:hover { opacity: 0.8; }
.contact-phones { margin-top: 4px; }
.phone-line { display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }

/* Footer WA link */
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #25D366;
  font-size: 0.75rem;
  margin-top: 3px;
}
.footer-wa-link:hover { opacity: 0.8; }
.footer-legal { margin-top: 0.5rem; font-size: 0.78rem; }
.footer-legal a { color: var(--grey-light); }
.footer-legal a:hover { color: var(--gold); }

/* ---- LOGO REDESIGN (inline SVG nav) ---- */
/* Override the simple nav logo mark with the new brand emblem feel */
.nav-logo-mark {
  background: transparent;
  border-color: rgba(197,162,83,0.5);
}

/* ---- IMAGES IN SERVICES / INTRO SECTIONS ---- */
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}
.intro-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  opacity: 0.92;
}
.sector-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  transition: opacity 0.4s;
  z-index: 0;
}
.sector-card:hover .sector-card-img { opacity: 0.2; }
.sector-card { position: relative; overflow: hidden; }
.sector-card > *:not(.sector-card-img) { position: relative; z-index: 1; }

/* Image strip section */
.img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 320px;
  overflow: hidden;
}
.img-strip-item {
  position: relative;
  overflow: hidden;
}
.img-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.img-strip-item:hover img { transform: scale(1.05); }
.img-strip-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,20,40,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .img-strip { grid-template-columns: 1fr; height: auto; }
  .img-strip-item { height: 200px; }
  .contact-wa-ctas { flex-direction: column; }
}

/* ---- LOGO SVG EMBLEM (new design) ---- */
.gw-emblem {
  display: block;
}
