:root{
  --brand:#ff7a1a;
  --brand2:#ffb14a;
  --blue:#5d9cff;

  --bg1:#f7fbff;
  --bg2:#fff7f0;

  --ink:#0c1422;
  --muted: rgba(12,20,34,.62);

  --card: rgba(255,255,255,.78);
  --card2: rgba(255,255,255,.66);
  --stroke: rgba(12,20,34,.10);
  --shadow: 0 24px 70px rgba(12,20,34,.10);

  --r:22px;
  --r2:28px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color:var(--ink);
  overflow-x:hidden;
  background:
    radial-gradient(900px 460px at 15% 15%, rgba(255,122,26,.18), transparent 60%),
    radial-gradient(900px 460px at 85% 20%, rgba(93,156,255,.18), transparent 60%),
    radial-gradient(900px 460px at 70% 90%, rgba(255,198,74,.16), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

/* Top progress */
.progress{
  position:fixed; top:0; left:0; height:4px; width:0%;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  z-index:9999;
  box-shadow: 0 18px 40px rgba(255,122,26,.25);
  border-radius: 0 999px 999px 0;
}

/* Grain */
.grain{
  pointer-events:none;
  position:fixed; inset:0;
  opacity:.14;
  mix-blend-mode: soft-light;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  animation: grainMove 9s linear infinite;
  z-index:1;
}
@keyframes grainMove{
  0%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(-2%,1%,0)}
  100%{transform:translate3d(0,0,0)}
}

/* Header */
.header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:2000;
  padding:14px 0;
  transition: transform .25s ease;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;

  background: rgba(255,255,255,.62);
  border:1px solid var(--stroke);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding:10px 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--ink);
}
.brandMark{
  width:44px; height:44px;
  border-radius: 16px;
  background: rgba(255,122,26,.10);
  border:1px solid rgba(255,122,26,.18);
  display:grid; place-items:center;
  overflow:hidden;
}
.brandLogo{width:38px; height:38px; object-fit:contain}
.logoFallback{
  width:38px; height:38px;
  border-radius: 14px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#1a140f;
}
.brandText b{display:block; font-size:14px; line-height:1.15}
.brandText small{display:block; font-size:12px; color:rgba(12,20,34,.55)}

.menu{
  display:flex;
  align-items:center;
  gap:6px;
}
.menu a{
  text-decoration:none;
  color: rgba(12,20,34,.70);
  font-weight:900;
  font-size:13px;
  padding:10px 12px;
  border-radius:999px;
  transition:.18s ease;
}
.menu a:hover{background: rgba(255,122,26,.10); color: var(--ink)}

.navActions{display:flex; align-items:center; gap:10px}

/* Buttons */
.btn{
  border:none;
  cursor:pointer;
  text-decoration:none;
  color: var(--ink);
  background: rgba(255,255,255,.78);
  border:1px solid var(--stroke);
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 18px 40px rgba(12,20,34,.10)}
.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: transparent;
  color:#1a140f;
  box-shadow: 0 22px 60px rgba(255,122,26,.20);
}
.btn.icon{width:42px; height:42px; padding:0}

/* Drawer */
.drawer{
  position:fixed;
  inset:0;
  background: rgba(12,20,34,.26);
  backdrop-filter: blur(10px);
  display:none;
  z-index:2500;
}
.drawer.open{display:block}
.drawerPanel{
  position:absolute;
  top:16px; right:16px; left:16px;
  background: rgba(255,255,255,.82);
  border:1px solid var(--stroke);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 14px;
}
.drawerTop{
  display:flex; align-items:center; justify-content:space-between;
  padding: 8px 8px 12px;
}
.drawerTitle b{display:block}
.drawerTitle small{color: rgba(12,20,34,.55); font-weight:800}
.drawerLink{
  display:flex; justify-content:space-between; align-items:center;
  text-decoration:none;
  color: var(--ink);
  font-weight:900;
  padding:12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border:1px solid rgba(12,20,34,.08);
  margin: 10px 0;
}
.drawerLink span{color: rgba(12,20,34,.55); font-weight:800; font-size:13px}

/* HERO */
.hero{
  position:relative;
  padding-top: 92px;
  z-index:5;
}
.heroBg{position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:-1}
.blob{
  position:absolute;
  width: 520px; height: 520px;
  filter: blur(18px);
  opacity:.55;
  border-radius: 45% 55% 55% 45% / 50% 45% 55% 50%;
  animation: morph 10s ease-in-out infinite, floaty 12s ease-in-out infinite;
}
.b1{top:-210px; right:-160px; background: radial-gradient(circle at 30% 30%, rgba(255,122,26,.55), rgba(255,198,74,.22), transparent 70%)}
.b2{top:110px; left:-180px; width:460px; height:460px; background: radial-gradient(circle at 30% 30%, rgba(93,156,255,.48), rgba(138,216,255,.18), transparent 70%); animation-duration: 13s, 14s}
.b3{bottom:-260px; right:12%; width:620px; height:620px; background: radial-gradient(circle at 30% 30%, rgba(255,198,74,.44), rgba(255,122,26,.20), transparent 70%); animation-duration: 15s, 16s}
@keyframes floaty{0%{transform:translate3d(0,0,0)}50%{transform:translate3d(0,-18px,0)}100%{transform:translate3d(0,0,0)}}
@keyframes morph{0%,100%{border-radius:45% 55% 55% 45% / 50% 45% 55% 50%}50%{border-radius:55% 45% 45% 55% / 45% 55% 45% 55%}}

.gridGlow{
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(800px 400px at 60% 30%, rgba(255,122,26,.12), transparent 62%),
    radial-gradient(700px 360px at 30% 75%, rgba(93,156,255,.10), transparent 62%),
    repeating-linear-gradient(90deg, rgba(12,20,34,.04) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(12,20,34,.04) 0 1px, transparent 1px 120px);
  opacity:.55;
}

.heroGrid{
  min-height: calc(100vh - 92px);
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:center;
  padding: 36px 0 42px;
}
@media (max-width: 980px){
  .menu{display:none}
  .heroGrid{grid-template-columns:1fr; min-height:auto}
}

/* Hero Copy */
.heroCopy{
  padding: 26px 6px;
}
.pill{
  width:fit-content;
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border:1px solid rgba(12,20,34,.10);
  color: rgba(12,20,34,.68);
  font-weight:900;
  font-size:13px;
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 12px 24px rgba(255,122,26,.20);
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height:1.15;
  letter-spacing:.2px;
}
.break{display:block; margin-top:6px; font-size: clamp(22px, 2.2vw, 34px); color: rgba(12,20,34,.78)}
.lead{
  margin: 0 0 16px;
  color: var(--muted);
  line-height:1.95;
  font-size: 16px;
  max-width: 70ch;
}

.shine{
  background: linear-gradient(90deg, var(--brand), var(--blue), var(--brand2));
  background-size: 220% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation: shine 5s linear infinite;
}
@keyframes shine{
  0%{background-position:0% 50%}
  100%{background-position:220% 50%}
}
.heroActions{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}

.trustRow{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 720px){
  .trustRow{grid-template-columns:1fr}
}
.trust{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(12,20,34,.10);
  border-radius: 18px;
  padding:14px;
  display:flex; gap:12px; align-items:center;
  box-shadow: 0 18px 40px rgba(12,20,34,.08);
}
.trustIc{
  width:42px; height:42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,122,26,.12);
  border:1px solid rgba(255,122,26,.18);
  color: var(--brand);
  font-weight:900;
}
.trust b{display:block; font-size:14px}
.trust span{display:block; font-size:12px; color: rgba(12,20,34,.56); margin-top:2px}

/* Right hero vector card */
.heroArt .glassCard{
  background: var(--card);
  border:1px solid var(--stroke);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow:hidden;
  padding: 16px;
}
.artTop{
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:12px;
  padding-bottom: 10px;
}
.artTitle b{display:block}
.artTitle small{display:block; color: rgba(12,20,34,.55); font-weight:800}
.tag{
  font-size:12px;
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,122,26,.10);
  border:1px solid rgba(255,122,26,.16);
  color: rgba(12,20,34,.70);
}
.illustration{
  border-radius: 22px;
  background: rgba(255,255,255,.70);
  border:1px solid rgba(12,20,34,.08);
  overflow:hidden;
  margin: 10px 0 12px;
}
.illuSvg{width:100%; height:auto; display:block}

/* Animate SVG parts */
.route{animation: dash 2.8s linear infinite}
@keyframes dash{to{stroke-dashoffset:-48}}
.plane{transform-origin: 560px 255px; animation: planeFloat 3.6s ease-in-out infinite}
@keyframes planeFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.pin{transform-origin:center; animation: pinBounce 2.2s ease-in-out infinite}
.pin2{animation-delay:.25s}
@keyframes pinBounce{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

.featureChips{display:flex; flex-wrap:wrap; gap:8px}
.chip{
  background: rgba(255,255,255,.76);
  border:1px solid rgba(12,20,34,.10);
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color: rgba(12,20,34,.70);
}
.artActions{display:flex; gap:10px; margin-top:12px}

/* Sections */
.section{padding: 84px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.10));
  border-top: 1px solid rgba(12,20,34,.06);
  border-bottom: 1px solid rgba(12,20,34,.06);
}
.sectionHead{max-width: 80ch}
.kicker{
  display:flex; align-items:center; gap:10px;
  color: rgba(12,20,34,.62);
  font-weight:900;
}
.kicker span{
  height:1px; flex:1;
  background: linear-gradient(90deg, rgba(12,20,34,.10), rgba(255,122,26,.20), rgba(12,20,34,.04));
}
h2{margin:10px 0 8px; font-size: clamp(24px, 2.3vw, 36px); line-height:1.25}
.sectionHead p{margin:0; color: var(--muted); line-height:1.95}

/* Cards grid */
.cards{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.cards.three .card{grid-column: span 4}
.card{
  grid-column: span 4;
  background: var(--card);
  border:1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow:hidden;
  position:relative;
  transform-style: preserve-3d;
}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(520px 220px at 80% 10%, rgba(255,122,26,.14), transparent 58%);
  pointer-events:none;
  opacity:.9;
}
.card h3{margin:12px 0 6px; position:relative}
.card p{margin:0; color: var(--muted); line-height:1.9; position:relative}
.card ul{margin: 12px 0 0; padding: 0 18px 0 0; color: var(--muted); line-height:1.9; position:relative}
.card li{margin:6px 0}

.cardIcon{
  width:52px; height:52px;
  border-radius: 18px;
  background: rgba(255,122,26,.12);
  border:1px solid rgba(255,122,26,.18);
  display:grid; place-items:center;
  color: var(--brand);
  position:relative;
}
.cardIcon svg{width:34px; height:34px}

@media (max-width: 980px){
  .card{grid-column: span 6}
  .cards.three .card{grid-column: span 6}
}
@media (max-width: 620px){
  .card{grid-column: span 12}
  .cards.three .card{grid-column: span 12}
}

/* Embassy block */
.glassBlock{
  margin-top: 16px;
  background: var(--card);
  border:1px solid var(--stroke);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 16px;
}
.embGrid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
@media (max-width: 820px){ .embGrid{grid-template-columns:1fr} }
.embCol{
  background: rgba(255,255,255,.70);
  border:1px solid rgba(12,20,34,.08);
  border-radius: 20px;
  padding: 12px;
}
.embRow{
  display:flex; justify-content:space-between; gap:10px;
  padding: 10px 10px;
  border-radius: 14px;
  transition: .18s ease;
}
.embRow:hover{background: rgba(255,122,26,.08)}
.embRow b{font-size:14px}
.embRow span{font-size:13px; color: rgba(12,20,34,.58)}
.note{margin-top:10px; color: rgba(12,20,34,.62); font-weight:800}

/* Programs pills */
.flag{
  width:48px; height:48px;
  border-radius: 16px;
  background: rgba(93,156,255,.12);
  border:1px solid rgba(93,156,255,.18);
  display:grid; place-items:center;
  font-size: 22px;
  position:relative;
}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; position:relative}
.pillSmall{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.76);
  border:1px solid rgba(12,20,34,.10);
  font-size:12px;
  font-weight:900;
  color: rgba(12,20,34,.70);
}

/* Steps */
.steps{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){ .steps{grid-template-columns:1fr} }
.step{
  background: var(--card);
  border:1px solid var(--stroke);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 16px;
  position:relative;
  overflow:hidden;
}
.step::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(520px 220px at 75% 10%, rgba(93,156,255,.12), transparent 60%);
  pointer-events:none;
}
.stepNum{
  width:44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,122,26,.14);
  border:1px solid rgba(255,122,26,.18);
  color: var(--brand);
  font-weight:900;
  position:relative;
}
.step h3{margin:12px 0 8px; position:relative}
.step p{margin:0; color: var(--muted); line-height:1.9; position:relative}

/* Contact */
.contactGrid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){ .contactGrid{grid-template-columns:1fr} }
.contactCard{
  background: var(--card);
  border:1px solid var(--stroke);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 16px;
  position:relative;
  overflow:hidden;
}
.contactCard::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(520px 220px at 85% 10%, rgba(255,122,26,.14), transparent 60%);
  pointer-events:none;
}
.contactTop{
  display:flex; justify-content:space-between; align-items:center; gap:10px;
  position:relative;
}
.contactTop b{font-size:16px}
.contactTag{
  font-size:12px;
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(93,156,255,.10);
  border:1px solid rgba(93,156,255,.16);
  color: rgba(12,20,34,.70);
}
.contactCard p{margin:10px 0 12px; color: var(--muted); line-height:1.9; position:relative}
.btn.full{width:100%}

/* Footer bar */
.footerBar{
  margin-top: 18px;
  background: rgba(255,255,255,.70);
  border:1px solid rgba(12,20,34,.08);
  border-radius: 22px;
  padding: 14px;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
}
@media (max-width: 820px){
  .footerBar{flex-direction:column; align-items:stretch}
  .footerRight{display:flex; gap:10px}
}
.footerLeft b{display:block}
.footerLeft small{display:block; color: rgba(12,20,34,.55); font-weight:800}
.footerRight{display:flex; gap:10px; justify-content:flex-end}
.copyright{margin-top:12px; color: rgba(12,20,34,.55); font-weight:800; font-size:12px}

/* Floating WA */
.floatWA{
  position:fixed;
  bottom:18px;
  left:18px;
  width:54px; height:54px;
  border-radius: 18px;
  background:#24D366;
  color:#08110b;
  display:grid; place-items:center;
  text-decoration:none;
  font-weight:900;
  box-shadow: 0 18px 50px rgba(36,211,102,.25);
  z-index:2200;
  transition: transform .18s ease;
}
.floatWA:hover{transform: translateY(-2px)}

/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

/* Tilt base (JS adds transform on hover) */
.tilt{will-change: transform}

/* Responsive nav button */
#openDrawer{display:none}
@media (max-width: 980px){
  #openDrawer{display:inline-flex}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important; scroll-behavior:auto !important}
}
