@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  --bg:#fbfaf8;
  --bg-panel:#f4f2ee;
  --bg-panel-alt:#ffffff;
  --bg-raised:#eeece6;
  --line:rgba(20,20,20,0.08);
  --line-strong:rgba(20,20,20,0.16);
  --ink:#191a1e;
  --ink-dim:#5b5d66;
  --ink-faint:#8d8f97;
  --gold-1:#c99a4b;
  --gold-2:#a97a2e;
  --gold-3:#7c5a1e;
  --radius:3px;
  --shadow-sm:0 2px 10px rgba(20,20,20,0.05);
  --shadow-md:0 14px 34px rgba(20,20,20,0.08);
  --serif:'Playfair Display', serif;
  --sans:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:'IBM Plex Mono', monospace;
  --maxw:1240px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none;}
ul{list-style:none;}
img{max-width:100%;display:block;}
section{position:relative;}

.wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}
@media (max-width:640px){ .wrap{padding:0 20px;} }

.eyebrow{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--gold-2);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:22px;height:1px;
  background:var(--gold-2);
  display:inline-block;
}

h1,h2,h3,h4{
  font-family:var(--serif);
  font-weight:700;
  line-height:1.08;
  letter-spacing:-0.01em;
}

.section-title{
  font-size:clamp(30px,4vw,46px);
  color:var(--ink);
  margin-bottom:16px;
}
.section-title em{
  font-style:normal;
  background:linear-gradient(100deg,var(--gold-1),var(--gold-3));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.section-lede{
  color:var(--ink-dim);
  font-size:16.5px;
  max-width:640px;
  margin-bottom:52px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--mono);
  font-size:13px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:15px 28px;
  border-radius:var(--radius);
  border:1px solid var(--line-strong);
  transition:all .25s ease;
  cursor:pointer;
  background:var(--bg-panel-alt);
  color:var(--ink);
}
.btn:hover{border-color:var(--gold-2); color:var(--gold-2); box-shadow:var(--shadow-sm); transform:translateY(-1px);}
.btn:focus-visible{outline:2px solid var(--gold-2); outline-offset:3px;}
.btn.primary{
  background:linear-gradient(120deg,var(--gold-1),var(--gold-3));
  color:#fffaf1;
  border:none;
  font-weight:600;
  box-shadow:0 8px 22px rgba(169,122,46,0.28);
}
.btn.primary:hover{filter:brightness(1.06); color:#fffaf1; transform:translateY(-1px); box-shadow:0 12px 28px rgba(169,122,46,0.34);}
.btn.small{padding:10px 18px; font-size:11.5px;}

/* ---------- NAV ---------- */
header{
  position:fixed; top:0; left:0; right:0; z-index:300;
  background:rgba(251,250,248,0.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  max-width:var(--maxw); margin:0 auto; padding:0 32px;
  display:flex; align-items:center; justify-content:space-between;
  height:82px;
}
.brand{display:flex; align-items:center; gap:14px;}
.brand img{
  height:46px; width:auto;
  background:#14161d;
  padding:9px 14px;
  border-radius:6px;
}
.brand-divider{width:1px; height:30px; background:var(--line-strong);}
.brand-tagline{
  font-family:var(--mono); font-size:10.5px; line-height:1.35;
  letter-spacing:0.05em; text-transform:uppercase; color:var(--ink-dim);
}

nav.links{display:flex; gap:8px; align-items:center;}
nav.links > a, .has-dropdown > button{
  font-size:13.5px; color:var(--ink-dim); font-weight:500;
  position:relative; padding:10px 14px;
  transition:color .2s ease;
  background:none; border:none; cursor:pointer; font-family:var(--sans);
  display:flex; align-items:center; gap:6px;
}
nav.links > a::after{
  content:""; position:absolute; left:14px; right:14px; bottom:4px; height:1px; width:0;
  background:var(--gold-2); transition:width .25s ease;
}
nav.links > a:hover, nav.links > a.active{color:var(--ink);}
nav.links > a:hover::after, nav.links > a.active::after{width:calc(100% - 28px);}
.has-dropdown{position:relative;}
.has-dropdown > button:hover, .has-dropdown.open > button{color:var(--ink);}
.has-dropdown svg{width:10px;height:10px; transition:transform .2s ease;}
.has-dropdown.open svg{transform:rotate(180deg);}

.dropdown{
  position:absolute; top:calc(100% + 10px); left:50%; transform:translateX(-50%);
  background:var(--bg-panel-alt); border:1px solid var(--line-strong);
  min-width:290px; padding:10px; display:none;
  box-shadow:var(--shadow-md); border-radius:var(--radius);
}
.has-dropdown.open .dropdown{display:block;}
.dropdown a{
  display:flex; flex-direction:column; gap:2px;
  padding:12px 14px; font-size:13.5px; color:var(--ink-dim);
  border-left:2px solid transparent; border-radius:2px;
}
.dropdown a:hover{background:var(--bg-panel); color:var(--gold-2); border-left-color:var(--gold-2);}
.dropdown a small{font-family:var(--mono); font-size:10.5px; color:var(--ink-faint); letter-spacing:0.04em;}
.dropdown a:hover small{color:var(--ink-faint);}

.nav-cta{display:flex; align-items:center; gap:14px;}
.lang-toggle{
  display:flex; align-items:center; gap:5px; font-family:var(--mono); font-size:11.5px;
  letter-spacing:0.04em; padding:8px 12px; border:1px solid var(--line-strong); border-radius:20px;
  background:var(--bg-panel-alt); cursor:pointer; color:var(--ink-faint);
}
.lang-toggle .lt-en, .lang-toggle .lt-ar{padding:2px 4px; border-radius:10px; transition:all .2s ease;}
.lang-toggle .lt-sep{color:var(--line-strong);}
.lang-toggle .lt-en{color:var(--ink); font-weight:700;}
.lang-toggle.is-ar .lt-en{color:var(--ink-faint); font-weight:500;}
.lang-toggle.is-ar .lt-ar{color:var(--ink); font-weight:700;}
.lang-toggle:hover{border-color:var(--gold-2);}
.menu-toggle{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;}
.menu-toggle span{width:22px;height:2px;background:var(--ink);}

@media (max-width:980px){
  nav.links{
    position:fixed; inset:82px 0 0 0; height:calc(100vh - 82px); overflow-y:auto;
    background:var(--bg-panel); flex-direction:column; align-items:stretch; justify-content:flex-start;
    padding:20px 24px 60px; gap:4px;
    transform:translateX(100%); transition:transform .35s ease;
  }
  nav.links.open{transform:translateX(0);}
  nav.links > a, .has-dropdown > button{font-size:16px; width:100%; padding:16px 4px; justify-content:space-between; border-bottom:1px solid var(--line);}
  .has-dropdown{width:100%;}
  .dropdown{position:static; transform:none; width:100%; box-shadow:none; border:none; background:none; display:none; padding:0 0 0 12px;}
  .has-dropdown.open .dropdown{display:block;}
  .dropdown a{border-left:1px solid var(--line);}
  .menu-toggle{display:flex;}
  .nav-cta .btn{display:none;}
  .nav-cta .lang-toggle{margin-right:0;}
  .brand-tagline{display:none;}
  .brand-divider{display:none;}
}

/* ---------- PAGE HEADER (subpages) ---------- */
.page-header{
  padding:228px 0 90px;
  background:
    radial-gradient(ellipse at 85% 0%, rgba(169,122,46,0.08), transparent 55%),
    var(--bg-panel);
  border-bottom:1px solid var(--line);
  position:relative;
  overflow:hidden;
}
.page-header.has-photo{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.page-header.has-photo .eyebrow{color:var(--gold-1);}
.page-header.has-photo .eyebrow::before{background:var(--gold-1);}
.page-header.has-photo h1{color:#fffaf1;}
.page-header.has-photo h1 em{
  background:linear-gradient(100deg,#ffe1a8,var(--gold-1));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.page-header.has-photo p{color:rgba(255,250,241,0.82);}
.page-header.has-photo .breadcrumb{color:rgba(255,250,241,0.55);}
.page-header.has-photo .breadcrumb a:hover{color:#fff;}
.page-header.has-photo .tagset span{border-color:rgba(255,250,241,0.35); color:#ffe1a8;}
.breadcrumb{
  font-family:var(--mono); font-size:11.5px; color:var(--ink-faint);
  letter-spacing:0.06em; margin-bottom:22px; display:flex; gap:8px; align-items:center;
}
.breadcrumb a:hover{color:var(--gold-2);}
.page-header h1{font-size:clamp(34px,5vw,58px); max-width:820px;}
.page-header h1 em{
  font-style:normal;
  background:linear-gradient(100deg,var(--gold-1),var(--gold-3));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.page-header p{color:var(--ink-dim); max-width:600px; margin-top:20px; font-size:16.5px;}
.page-header .tagset{display:flex; gap:10px; flex-wrap:wrap; margin-top:28px;}
.page-header .tagset span{font-family:var(--mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase; border:1px solid var(--line-strong); padding:8px 14px; color:var(--gold-2); border-radius:2px;}

/* ---------- HERO (home) ---------- */
.hero{
  min-height:100vh;
  display:flex; align-items:center;
  padding-top:120px;
  padding-bottom:100px;
  position:relative;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(169,122,46,0.07), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(169,122,46,0.06), transparent 45%),
    var(--bg);
  overflow:hidden;
}
.hex-field{position:absolute; inset:0; opacity:0.6; pointer-events:none; z-index:1;}
.hero-slides{position:absolute; inset:0; z-index:0;}
.hero-slide{
  position:absolute; inset:0; opacity:0; background-size:cover; background-position:center;
  transition:opacity 1.6s ease; filter:saturate(0.55) sepia(0.1) contrast(1.05);
}
.hero-slide.active{opacity:1;}
.hero-slide::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(15,13,10,0.88) 0%, rgba(15,13,10,0.72) 40%, rgba(15,13,10,0.55) 100%);
}
.hero-airport-badge{
  position:absolute; left:32px; bottom:24px; z-index:3;
  display:flex; align-items:center; gap:8px;
  font-family:var(--mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--gold-1); background:rgba(20,18,14,0.55); border:1px solid rgba(255,255,255,0.25);
  padding:10px 16px; backdrop-filter:blur(6px); border-radius:2px;
}
.hero-airport-badge .sep{color:rgba(255,250,241,0.4);}
.hero-airport-badge .dot{width:6px; height:6px; border-radius:50%; background:var(--gold-1); box-shadow:0 0 8px 2px rgba(255,216,115,0.5); flex-shrink:0;}
@media (max-width:700px){ .hero-airport-badge{left:16px; bottom:16px; font-size:8.5px; padding:7px 10px; flex-wrap:wrap; max-width:calc(100% - 32px);} }
.hero.has-photo{background-size:cover; background-position:center; background-repeat:no-repeat;}
.hero.has-photo .hex-field{opacity:0.15;}
.hero.has-photo .eyebrow{color:var(--gold-1);}
.hero.has-photo .eyebrow::before{background:var(--gold-1);}
.hero.has-photo .hero h1, .hero.has-photo h1{color:#fffaf1;}
.hero.has-photo .hero-sub{color:rgba(255,250,241,0.85);}
.hero.has-photo .hero-stats{border-top-color:rgba(255,255,255,0.22);}
.hero.has-photo .hero-stats div{border-left-color:rgba(255,255,255,0.22);}
.hero.has-photo .hero-stats b{color:var(--gold-1);}
.hero.has-photo .hero-stats span{color:rgba(255,250,241,0.65);}
.hero.has-photo .btn:not(.primary){background:rgba(255,250,241,0.94); border-color:rgba(255,255,255,0.5); color:#191a1e;}
.hero.has-photo .btn.primary{box-shadow:0 8px 26px rgba(0,0,0,0.35);}
.hero.has-photo .hero-panel{background:rgba(20,18,14,0.52); border-color:rgba(255,255,255,0.28); backdrop-filter:blur(10px); box-shadow:0 20px 50px rgba(0,0,0,0.28);}
.hero.has-photo .hero-panel h4{color:var(--gold-1);}
.hero.has-photo .radar-ring{border-color:rgba(255,255,255,0.28);}
.scan-line{
  position:absolute; left:0; right:0; height:1px;
  background:linear-gradient(90deg, transparent, rgba(169,122,46,0.45), transparent);
  animation:scan 7s linear infinite;
  box-shadow:0 0 12px 1px rgba(169,122,46,0.18);
}
@keyframes scan{ 0%{top:0%;} 100%{top:100%;} }
.hero-grid{display:grid; grid-template-columns:1.15fr 0.85fr; gap:40px; align-items:center; position:relative; z-index:2;}
@media (max-width:920px){ .hero-grid{grid-template-columns:1fr;} }
.hero h1{font-size:clamp(48px, 7.5vw, 96px); color:var(--ink); letter-spacing:-0.015em;}
.hero h1 .accent{
  display:block;
  background:linear-gradient(100deg,var(--gold-1) 10%,var(--gold-3) 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{margin-top:26px; max-width:480px; color:var(--ink-dim); font-size:17px;}
.hero-cta{display:flex; gap:16px; margin-top:40px; flex-wrap:wrap;}
.hero-stats{margin-top:60px; display:grid; grid-template-columns:repeat(3,1fr); gap:0; border-top:1px solid var(--line); padding-top:26px; max-width:520px;}
.hero-stats div{border-left:1px solid var(--line); padding-left:18px;}
.hero-stats div:first-child{border-left:none; padding-left:0;}
.hero-stats b{font-family:var(--serif); font-size:30px; color:var(--gold-2); display:block;}
.hero-stats span{font-family:var(--mono); font-size:10.5px; letter-spacing:0.1em; color:var(--ink-faint); text-transform:uppercase;}

.hero-panel{border:1px solid var(--line-strong); background:linear-gradient(160deg, var(--bg-panel-alt), var(--bg-panel)); padding:34px; position:relative; box-shadow:var(--shadow-md);}
.hero-panel::before{content:""; position:absolute; top:-1px;left:-1px; width:22px;height:22px; border-top:2px solid var(--gold-2); border-left:2px solid var(--gold-2);}
.hero-panel::after{content:""; position:absolute; bottom:-1px;right:-1px; width:22px;height:22px; border-bottom:2px solid var(--gold-2); border-right:2px solid var(--gold-2);}
.hero-panel h4{font-size:13px; font-family:var(--mono); letter-spacing:0.12em; text-transform:uppercase; color:var(--gold-2); margin-bottom:22px; font-weight:500;}
.radar-wrap{width:100%; aspect-ratio:1/1; position:relative; display:grid; place-items:center;}
.radar-ring{position:absolute; border:1px solid rgba(169,122,46,0.22); border-radius:50%;}
.radar-sweep{position:absolute; width:50%; height:1px; left:50%; top:50%; background:linear-gradient(90deg, rgba(169,122,46,0.55), transparent); transform-origin:left center; animation:sweep 4s linear infinite;}
@keyframes sweep{ to{ transform:rotate(360deg);} }
.radar-dot{position:absolute; width:6px;height:6px;border-radius:50%; background:var(--gold-2); box-shadow:0 0 8px 2px rgba(169,122,46,0.35);}
.radar-center{width:8px;height:8px;background:var(--gold-2); border-radius:50%; position:absolute; box-shadow:0 0 14px 4px rgba(169,122,46,0.3);}

/* ---------- GENERIC SECTION ---------- */
.section{padding:118px 0;}
.section.tight{padding:90px 0;}
.section.alt{background:var(--bg-panel); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}

.reveal{opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:none;}

/* ---------- STAT STRIP ---------- */
.stat-strip{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
@media (max-width:760px){ .stat-strip{grid-template-columns:repeat(2,1fr);} }
.stat-card{background:var(--bg-panel-alt); padding:30px 26px;}
.stat-card b{font-family:var(--serif); font-size:36px; color:var(--gold-2); display:block; margin-bottom:6px;}
.stat-card span{font-size:12.5px; color:var(--ink-dim); font-family:var(--mono); text-transform:uppercase; letter-spacing:0.04em;}

/* ---------- SERVICES GRID (linking cards) ---------- */
.services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
@media (max-width:920px){ .services-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .services-grid{grid-template-columns:1fr;} }
.service-card{background:var(--bg-panel-alt); transition:background .25s ease, transform .25s ease; display:flex; flex-direction:column; position:relative; overflow:hidden;}
.service-card:hover{background:var(--bg-panel); transform:translateY(-2px);}
.service-card .thumb{position:relative; width:100%; aspect-ratio:16/10; overflow:hidden; background:var(--bg-raised);}
.service-card .thumb img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease;}
.service-card:hover .thumb img{transform:scale(1.07);}
.service-card .thumb::after{content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(15,13,10,0) 55%, rgba(15,13,10,0.38) 100%);}
.service-card .thumb-icon{
  position:absolute; left:18px; bottom:-22px; width:46px; height:46px;
  background:var(--bg-panel-alt); border:1px solid var(--line-strong); border-radius:50%;
  display:grid; place-items:center; color:var(--gold-2); box-shadow:var(--shadow-sm); z-index:2;
}
.service-card .thumb-icon svg{width:20px;height:20px;}
.service-card .card-body{padding:36px 26px 30px; flex:1; display:flex; flex-direction:column;}
.service-card h4{font-family:var(--sans); font-weight:700; font-size:17px; color:var(--ink); margin-bottom:10px;}
.service-card p{font-size:13.5px; color:var(--ink-dim); margin-bottom:18px; flex:1;}
.service-card .go{font-family:var(--mono); font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold-2); display:flex; align-items:center; gap:6px;}
.service-card .go svg{width:12px;height:12px; transition:transform .2s ease;}
.service-card:hover .go svg{transform:translateX(4px);}

/* ---------- CONTENT BLOCKS (subpages) ---------- */
.content-grid{display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start;}
@media (max-width:860px){ .content-grid{grid-template-columns:1fr; gap:40px;} }
.content-grid p{color:var(--ink-dim); margin-bottom:18px; font-size:16px;}
.content-grid ul li{color:var(--ink-dim); font-size:15.5px; padding:11px 0 11px 22px; position:relative; border-top:1px solid var(--line);}
.content-grid ul li:first-child{border-top:none;}
.content-grid ul li::before{content:"—"; position:absolute; left:0; color:var(--gold-2);}
.content-grid h3{font-size:22px; margin-bottom:18px;}

.callout-box{border-left:2px solid var(--gold-2); padding:22px 28px; background:var(--bg-panel-alt); box-shadow:var(--shadow-sm); border-radius:0 var(--radius) var(--radius) 0;}
.callout-box p{color:var(--ink); font-size:17px; font-family:var(--serif); font-style:italic; margin:0;}

.two-col-list{display:grid; grid-template-columns:1fr 1fr; gap:50px;}
@media (max-width:700px){ .two-col-list{grid-template-columns:1fr;} }

.feature-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
@media (max-width:860px){ .feature-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .feature-grid{grid-template-columns:1fr;} }
.feature-card{background:var(--bg-panel-alt); padding:30px 24px;}
.feature-card .icon{width:32px;height:32px;color:var(--gold-2); margin-bottom:16px;}
.feature-card h4{font-size:15px; margin-bottom:8px; font-family:var(--sans); font-weight:700;}
.feature-card p{font-size:13px; color:var(--ink-dim);}

.tagrow{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:30px;}
.tagrow span{font-family:var(--mono); font-size:10.5px; letter-spacing:0.06em; text-transform:uppercase; border:1px solid var(--line-strong); padding:7px 13px; color:var(--gold-2); border-radius:2px;}

.numbered-row{display:grid; grid-template-columns:70px 1fr; gap:24px; padding:30px 0; border-top:1px solid var(--line);}
.numbered-row:first-child{border-top:none;}
.numbered-row .num{font-family:var(--serif); font-size:34px; color:var(--gold-2); opacity:0.55;}
.numbered-row h4{font-size:18px; margin-bottom:8px;}
.numbered-row p{color:var(--ink-dim); font-size:15px;}

/* ---------- EQUIPMENT GRID ---------- */
.equip-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
@media (max-width:860px){ .equip-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:480px){ .equip-grid{grid-template-columns:1fr;} }
.equip-card{background:var(--bg-panel); padding:30px 24px; text-align:center; transition:background .2s ease;}
.equip-card:hover{background:var(--bg-panel-alt);}
.equip-icon{width:58px;height:58px; margin:0 auto 18px; border:1px solid var(--line-strong); display:grid; place-items:center; color:var(--gold-2); border-radius:50%; background:var(--bg-panel-alt);}
.equip-card h5{font-size:14px; font-family:var(--sans); font-weight:700; margin-bottom:6px;}
.equip-card span{font-size:11.5px; color:var(--ink-faint); font-family:var(--mono); text-transform:uppercase; letter-spacing:0.05em;}

/* ---------- CLIENT / MINISTRY CARDS ---------- */
.client-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
@media (max-width:900px){ .client-grid{grid-template-columns:1fr;} }
.client-card{border:1px solid var(--line); padding:32px 28px; transition:border-color .25s ease, transform .25s ease, box-shadow .25s ease; border-radius:var(--radius); background:var(--bg-panel-alt);}
.client-card:hover{border-color:var(--gold-3); transform:translateY(-3px); box-shadow:var(--shadow-md);}
.client-card .tag{font-family:var(--mono); font-size:11px; color:var(--gold-2); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:14px; display:block;}
.client-card h3{font-size:21px; margin-bottom:18px;}
.client-card ul li{color:var(--ink-dim); font-size:14.5px; padding:9px 0; border-top:1px solid var(--line);}
.client-card ul li:first-child{border-top:none;}

/* ---------- HIGHLIGHT TABLE ---------- */
.highlight-table{border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--bg-panel-alt);}
.highlight-row{display:grid; grid-template-columns:280px 1fr; gap:30px; padding:28px 32px; border-top:1px solid var(--line); align-items:start;}
.highlight-row:first-child{border-top:none;}
@media (max-width:700px){ .highlight-row{grid-template-columns:1fr; gap:8px;} }
.highlight-row h4{font-family:var(--sans); font-weight:700; font-size:15.5px; color:var(--gold-2);}
.highlight-row p{color:var(--ink-dim); font-size:15px;}

/* ---------- COVERAGE MAP ---------- */
.coverage-wrap{display:grid; grid-template-columns:1.3fr 1fr; gap:60px; align-items:center;}
@media (max-width:920px){ .coverage-wrap{grid-template-columns:1fr;} }
.hexmap{position:relative; width:100%; aspect-ratio:16/12;}
.hexnode{position:absolute; transform:translate(-50%,-50%); display:flex; flex-direction:column; align-items:center; gap:8px;}
.hexnode .dot{width:14px;height:14px; border-radius:50%; background:var(--bg-raised); border:1.5px solid var(--ink-faint); transition:all .25s ease;}
.hexnode.live .dot{background:var(--gold-2); border-color:var(--gold-1); animation:pulse 2.4s infinite;}
@keyframes pulse{ 0%{box-shadow:0 0 0 0 rgba(169,122,46,0.4);} 70%{box-shadow:0 0 0 14px rgba(169,122,46,0);} 100%{box-shadow:0 0 0 0 rgba(169,122,46,0);} }
.hexnode label{font-family:var(--mono); font-size:10px; letter-spacing:0.04em; color:var(--ink-faint); white-space:nowrap;}
.hexnode.live label{color:var(--gold-2);}
.hexlines{position:absolute; inset:0; z-index:-1;}
.coverage-legend{display:flex; gap:26px; margin-top:30px; flex-wrap:wrap;}
.legend-item{display:flex; align-items:center; gap:10px; font-size:13px; color:var(--ink-dim);}
.legend-item .sw{width:12px;height:12px;border-radius:50%;}
.legend-item .sw.on{background:var(--gold-2);}
.legend-item .sw.off{background:var(--bg-raised); border:1.5px solid var(--ink-faint);}
.license-list{display:flex; flex-direction:column; gap:0; border:1px solid var(--line); margin-top:26px; border-radius:var(--radius); overflow:hidden; background:var(--bg-panel-alt);}
.license-list div{padding:16px 20px; border-top:1px solid var(--line); display:flex; justify-content:space-between; font-size:14px;}
.license-list div:first-child{border-top:none;}
.license-list span.status{font-family:var(--mono); font-size:11px; color:var(--gold-2); letter-spacing:0.05em;}

/* ---------- WHY US ---------- */
.why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
@media (max-width:860px){ .why-grid{grid-template-columns:1fr;} }
.why-card{background:var(--bg-panel-alt); padding:38px 30px; transition:background .2s ease;}
.why-card:hover{background:var(--bg-panel);}
.why-card .num{font-family:var(--mono); color:var(--gold-3); font-size:12px; letter-spacing:0.1em;}
.why-card h4{font-size:19px; margin:14px 0 10px;}
.why-card p{color:var(--ink-dim); font-size:14.5px;}

/* ---------- CTA BAND ---------- */
.cta-band{padding:100px 0; text-align:center; background:linear-gradient(180deg, var(--bg-panel), var(--bg)); border-top:1px solid var(--line);}
.cta-band h2{font-size:clamp(28px,4vw,44px); margin-bottom:20px;}
.cta-band p{color:var(--ink-dim); max-width:520px; margin:0 auto 36px;}
.cta-buttons{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}

/* ---------- CONTACT PAGE ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px;}
@media (max-width:860px){ .contact-grid{grid-template-columns:1fr;} }
.contact-info-list{border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--bg-panel-alt);}
.contact-info-row{display:flex; gap:18px; padding:22px 26px; border-top:1px solid var(--line);}
.contact-info-row:first-child{border-top:none;}
.contact-info-row .icon{width:20px;height:20px; color:var(--gold-2); flex-shrink:0; margin-top:2px;}
.contact-info-row b{display:block; font-size:14px; margin-bottom:4px;}
.contact-info-row span, .contact-info-row a{color:var(--ink-dim); font-size:14px;}
.contact-info-row a:hover{color:var(--gold-2);}

.form-field{margin-bottom:20px;}
.form-field label{display:block; font-family:var(--mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:var(--ink-faint); margin-bottom:10px;}
.form-field input, .form-field select, .form-field textarea{
  width:100%; background:var(--bg-panel-alt); border:1px solid var(--line-strong); color:var(--ink);
  padding:14px 16px; font-family:var(--sans); font-size:14.5px; border-radius:var(--radius);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{outline:none; border-color:var(--gold-2); box-shadow:0 0 0 3px rgba(169,122,46,0.12);}
.form-field textarea{resize:vertical; min-height:120px;}

/* ---------- LOCATION MAP ---------- */
.map-section{border-top:1px solid var(--line);}
.map-frame{
  width:100%; height:440px; border:1px solid var(--line-strong); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-md); filter:grayscale(0.15) contrast(1.02);
}
.map-frame iframe{width:100%; height:100%; border:0; display:block;}
.map-caption{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; margin-top:18px;}
.map-caption span{font-family:var(--mono); font-size:12.5px; color:var(--ink-dim);}
.map-caption a{font-family:var(--mono); font-size:12px; letter-spacing:0.05em; text-transform:uppercase; color:var(--gold-2);}
.map-caption a:hover{color:var(--gold-3);}

/* ---------- FOOTER ---------- */
footer{background:var(--bg-panel); border-top:1px solid var(--line); padding:70px 0 30px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:60px;}
@media (max-width:800px){ .footer-grid{grid-template-columns:1fr 1fr; row-gap:36px;} }
@media (max-width:480px){ .footer-grid{grid-template-columns:1fr;} }
.footer-grid h5{font-family:var(--mono); font-size:11.5px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold-2); margin-bottom:20px;}
.footer-grid p, .footer-grid li{color:var(--ink-dim); font-size:14px; margin-bottom:10px;}
.footer-grid a:hover{color:var(--gold-2);}
.footer-brand{display:flex; align-items:center; gap:12px; margin-bottom:20px;}
.footer-brand img{height:40px; background:#14161d; padding:8px 12px; border-radius:6px;}
.footer-brand .brand-tagline{font-size:10px;}
.footer-bottom{border-top:1px solid var(--line); padding-top:26px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:var(--ink-faint); font-family:var(--mono);}

::selection{background:var(--gold-1); color:#191a1e;}
a:focus-visible, button:focus-visible{outline:2px solid var(--gold-2); outline-offset:3px;}

/* ---------- ARABIC / RTL SUPPORT ---------- */
body.lang-ar, body.lang-ar h1, body.lang-ar h2, body.lang-ar h3, body.lang-ar h4,
body.lang-ar .eyebrow, body.lang-ar .btn, body.lang-ar .brand-tagline{
  font-family:'Cairo', var(--sans);
}
body.lang-ar .section-title em, body.lang-ar .page-header h1 em{font-style:normal;}

html[dir="rtl"] .eyebrow::before{order:2;}
html[dir="rtl"] .eyebrow{flex-direction:row-reverse;}
html[dir="rtl"] .content-grid ul li{padding:11px 22px 11px 0;}
html[dir="rtl"] .content-grid ul li::before{left:auto; right:0;}
html[dir="rtl"] .service-card .go{flex-direction:row-reverse;}
html[dir="rtl"] .service-card .go svg{transform:scaleX(-1);}
html[dir="rtl"] .service-card:hover .go svg{transform:scaleX(-1) translateX(4px);}
html[dir="rtl"] .service-card .thumb-icon{left:auto; right:18px;}
html[dir="rtl"] .breadcrumb{flex-direction:row-reverse; justify-content:flex-end;}
html[dir="rtl"] .btn{flex-direction:row-reverse;}
html[dir="rtl"] .callout-box{border-left:none; border-right:2px solid var(--gold-2);}
html[dir="rtl"] .highlight-row, html[dir="rtl"] .numbered-row{direction:rtl;}
html[dir="rtl"] .map-caption a{flex-direction:row-reverse;}
html[dir="rtl"] .hero-stats div{border-left:none; border-right:1px solid var(--line); padding-left:0; padding-right:18px;}
html[dir="rtl"] .hero-stats div:first-child{border-right:none; padding-right:0;}
html[dir="rtl"] .dropdown a{border-left:none; border-right:2px solid transparent;}
html[dir="rtl"] .dropdown a:hover{border-left-color:transparent; border-right-color:var(--gold-2);}

/* ---------- AIRPORT CAROUSEL ---------- */
.airport-carousel{
  position:relative; width:100%; aspect-ratio:16/7; overflow:hidden;
  border:1px solid var(--line-strong); border-radius:var(--radius); box-shadow:var(--shadow-md);
}
@media (max-width:700px){ .airport-carousel{aspect-ratio:4/5;} }
.airport-slide{
  position:absolute; inset:0; opacity:0; background-size:cover; background-position:center;
  transition:opacity 1.1s ease;
}
.airport-slide.active{opacity:1;}
.airport-slide::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,10,8,0.05) 40%, rgba(10,10,8,0.82) 100%);
}
.airport-slide-caption{position:absolute; left:0; bottom:0; right:0; padding:34px 40px; z-index:2;}
@media (max-width:600px){ .airport-slide-caption{padding:24px 22px;} }
.airport-slide-caption .tag{
  font-family:var(--mono); font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase;
  border:1px solid rgba(255,250,241,0.4); color:var(--gold-1); padding:6px 12px; display:inline-block;
}
.airport-slide-caption h3{color:#fffaf1; font-size:clamp(24px,3.4vw,34px); margin:14px 0 4px;}
.airport-slide-caption p{color:rgba(255,250,241,0.82); font-family:var(--mono); font-size:12.5px; letter-spacing:0.04em;}
.carousel-dots{position:absolute; right:30px; bottom:30px; z-index:3; display:flex; gap:10px;}
@media (max-width:600px){ .carousel-dots{right:20px; bottom:20px;} }
.carousel-dots button{
  width:9px; height:9px; border-radius:50%; border:1px solid rgba(255,250,241,0.5);
  background:transparent; cursor:pointer; padding:0; transition:all .2s ease;
}
.carousel-dots button.active{background:var(--gold-1); border-color:var(--gold-1); transform:scale(1.2);}

/* ---------- DEV CREDIT (contact page only) ---------- */
.dev-credit{
  text-align:center; padding:14px 0; font-family:var(--mono); font-size:10px;
  letter-spacing:0.03em; color:var(--ink-faint); background:var(--bg-panel); opacity:0.7;
}
.dev-credit a{color:var(--ink-faint);}
.dev-credit a:hover{color:var(--gold-2);}

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar{width:10px; height:10px;}
::-webkit-scrollbar-track{background:var(--bg-panel);}
::-webkit-scrollbar-thumb{background:var(--line-strong); border-radius:6px;}
::-webkit-scrollbar-thumb:hover{background:var(--gold-3);}
html{scrollbar-color:var(--line-strong) var(--bg-panel);}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress{
  position:fixed; top:0; left:0; height:2.5px; width:0%;
  background:linear-gradient(90deg, var(--gold-2), var(--gold-1));
  z-index:400; transition:width .1s ease-out;
}

/* ---------- NAV SCROLLED STATE ---------- */
header{transition:box-shadow .3s ease, background .3s ease;}
header.scrolled{box-shadow:0 6px 24px rgba(20,20,20,0.08); background:rgba(251,250,248,0.96);}

/* ---------- FLOATING ACTION BUTTONS ---------- */
.floating-actions{
  position:fixed; right:26px; bottom:26px; z-index:250;
  display:flex; flex-direction:column; gap:12px; align-items:center;
}
@media (max-width:600px){ .floating-actions{right:16px; bottom:16px;} }
.fab{
  width:50px; height:50px; border-radius:50%; display:grid; place-items:center;
  box-shadow:0 10px 24px rgba(20,20,20,0.22); transition:transform .2s ease, box-shadow .2s ease, opacity .3s ease;
  border:none; cursor:pointer;
}
.fab svg{width:24px; height:24px;}
.fab:hover{transform:translateY(-3px); box-shadow:0 14px 30px rgba(20,20,20,0.28);}
.fab-whatsapp{background:#25D366; color:#fff;}
.fab-top{
  background:var(--bg-panel-alt); color:var(--gold-2); border:1px solid var(--line-strong);
  opacity:0; pointer-events:none; transform:translateY(8px);
}
.fab-top.visible{opacity:1; pointer-events:auto; transform:translateY(0);}

/* ---------- COUNT-UP READY STATE ---------- */
.hero-stats b, .stat-card b{display:inline-block; min-width:1ch;}

/* ---------- GRAIN TEXTURE (site-wide) ---------- */
body::before{
  content:"";
  position:fixed; inset:0; z-index:9999; pointer-events:none;
  opacity:0.035; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- VIEW TRANSITIONS (progressive enhancement) ---------- */
@view-transition{ navigation: auto; }

/* ---------- CREDENTIAL TICKER ---------- */
.credential-ticker{
  position:fixed; top:82px; left:0; right:0; height:38px; z-index:290;
  background:var(--bg-panel-alt); border-bottom:1px solid var(--line); overflow:hidden;
}
.ticker-track{display:flex; width:max-content; animation:ticker-scroll 32s linear infinite;}
@media (prefers-reduced-motion: reduce){ .ticker-track{animation:none;} }
.ticker-seq{display:flex; align-items:center; height:38px; white-space:nowrap; padding-right:40px;}
.ticker-seq span{
  font-family:var(--mono); font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--ink-faint); padding:0 6px;
}
.ticker-dot{color:var(--gold-2);}
@keyframes ticker-scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ---------- MEGA MENU ---------- */
.dropdown.mega{
  min-width:560px; padding:22px; grid-template-columns:1fr 1fr auto; gap:0;
}
.has-dropdown.open .dropdown.mega{display:grid;}
@media (max-width:980px){ .dropdown.mega{min-width:0; grid-template-columns:1fr; padding:8px;} }
.mega-col h6{
  font-family:var(--mono); font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--gold-2); padding:8px 14px; margin-bottom:2px;
}
.mega-col{border-right:1px solid var(--line); padding-right:10px;}
.mega-col:nth-child(2){border-right:1px solid var(--line); padding-right:10px; padding-left:6px;}
@media (max-width:980px){ .mega-col, .mega-col:nth-child(2){border-right:none; padding:0;} }
.mega-cta{
  padding:16px 20px; margin-left:14px; display:flex; flex-direction:column; justify-content:center;
  gap:14px; min-width:180px;
}
@media (max-width:980px){ .mega-cta{margin-left:0; border-top:1px solid var(--line); margin-top:8px;} }
.mega-cta p{font-size:12.5px; color:var(--ink-dim); line-height:1.4;}
.mega-cta .btn{justify-content:center;}

/* ---------- DUOTONE PHOTO TREATMENT ---------- */
.page-header.has-photo, .hero.has-photo{filter:saturate(0.55) sepia(0.1) contrast(1.05);}

/* ---------- BENTO SERVICES GRID (home) ---------- */
.services-grid.bento{display:grid; grid-template-columns:repeat(4, 1fr); grid-auto-rows:minmax(180px, auto); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
@media (max-width:980px){ .services-grid.bento{grid-template-columns:repeat(2, 1fr);} }
@media (max-width:600px){ .services-grid.bento{grid-template-columns:1fr;} }
.services-grid.bento .service-card.featured{grid-column:span 2; grid-row:span 2;}
@media (max-width:600px){ .services-grid.bento .service-card.featured{grid-column:span 1; grid-row:span 1;} }
.services-grid.bento .service-card.featured .thumb{aspect-ratio:auto; height:100%; position:absolute; inset:0;}
.services-grid.bento .service-card.featured{position:relative; min-height:100%;}
.services-grid.bento .service-card.featured .card-body{position:relative; z-index:2; margin-top:auto; padding-top:60px;}
.services-grid.bento .service-card.featured .card-body h4{font-size:22px; color:#fffaf1;}
.services-grid.bento .service-card.featured .card-body p{color:rgba(255,250,241,0.82);}
.services-grid.bento .service-card.featured .card-body::before{
  content:""; position:absolute; inset:-60px -26px auto -26px; height:calc(100% + 60px);
  background:linear-gradient(180deg, transparent, rgba(10,10,8,0.88) 60%); z-index:-1;
}
.services-grid.bento .service-card.featured .thumb-icon{display:none;}
.services-grid.bento .service-card:not(.featured){display:flex; flex-direction:column;}

/* ---------- EDITORIAL NUMERAL WATERMARK (why-us cards) ---------- */
.why-card{position:relative; overflow:hidden;}
.why-card::before{
  content:attr(data-num); position:absolute; top:-18px; right:-4px;
  font-family:var(--serif); font-size:96px; font-weight:800; color:var(--ink); opacity:0.04;
  line-height:1; pointer-events:none;
}

/* ---------- FOOTER BIG STATEMENT ---------- */
.footer-statement{
  font-family:var(--serif); font-size:clamp(22px,3vw,32px); color:var(--ink);
  max-width:720px; margin-bottom:50px; line-height:1.3;
}
.footer-statement em{
  font-style:normal;
  background:linear-gradient(100deg,var(--gold-1),var(--gold-3));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ---------- GACA CERTIFICATION SEAL ---------- */
.gaca-seal{color:var(--gold-2); flex-shrink:0;}
.cert-block{display:flex; gap:44px; align-items:center; flex-wrap:wrap;}
@media (max-width:700px){ .cert-block{flex-direction:column; align-items:flex-start; gap:28px;} }
.cert-block .cert-text{flex:1; min-width:260px;}

/* ---------- ACCESSIBILITY: SKIP LINK ---------- */
.skip-link{
  position:fixed; top:-60px; left:16px; z-index:500;
  background:var(--ink); color:#fffaf1; padding:12px 20px;
  font-family:var(--mono); font-size:12px; letter-spacing:0.05em; text-transform:uppercase;
  border-radius:2px; transition:top .2s ease;
}
.skip-link:focus{top:16px;}

/* ---------- PRINT STYLESHEET ---------- */
@media print{
  header, .credential-ticker, footer, .floating-actions, .scroll-progress,
  .hex-field, .scan-line, .skip-link, .hero-panel, .cta-band, .btn, .dev-credit{
    display:none !important;
  }
  body{background:#fff; color:#000;}
  .hero{min-height:auto; padding:20px 0;}
  .hero-slides{display:none;}
  .section{padding:20px 0;}
  a[href]::after{content:" (" attr(href) ")"; font-size:10px; color:#555;}
  .services-grid, .why-grid, .feature-grid{display:block;}
  .service-card, .why-card, .feature-card{break-inside:avoid; margin-bottom:16px; border:1px solid #ccc; padding:12px;}
}
