:root{
  --bg1:#04162f;
  --bg2:#0b2c5f;
  --card: rgba(255,255,255,.07);
  --card2: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.12);
  --text: #eaf1ff;
  --muted: rgba(234,241,255,.75);
  --accent: #b9ff4e;     /* neon green */
  --accent2:#44c0ff;     /* cyan */
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% 15%, rgba(68,192,255,.18), transparent 55%),
              radial-gradient(900px 500px at 80% 30%, rgba(185,255,78,.14), transparent 55%),
              linear-gradient(135deg, var(--bg1), var(--bg2));
  font-family: "Tajawal", system-ui, -apple-system, Segoe UI, Arial;
  overflow-x:hidden;
}

.container{
  width:min(1120px, 92%);
  margin-inline:auto;
}

/* Background orbs */
.bg-orbs .orb{
  position: fixed;
  filter: blur(28px);
  opacity: .65;
  border-radius: 50%;
  pointer-events:none;
  z-index:-1;
}
.orb-1{ width:420px; height:420px; left:-160px; top:120px; background:rgba(185,255,78,.20); animation: float 10s ease-in-out infinite; }
.orb-2{ width:520px; height:520px; right:-220px; top:40px; background:rgba(68,192,255,.18); animation: float 12s ease-in-out infinite reverse; }
.orb-3{ width:520px; height:520px; left:30%; bottom:-280px; background:rgba(185,255,78,.12); animation: float 14s ease-in-out infinite; }

@keyframes float{
  0%,100%{ transform: translateY(0) translateX(0) scale(1); }
  50%{ transform: translateY(-20px) translateX(12px) scale(1.03); }
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(4,22,47,.55);
  border-bottom: 1px solid var(--stroke);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
}
.brand-logo{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent), #d7ff88);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-name{ font-weight:800; font-size:18px; }
.brand-sub{ font-size:12px; color:var(--muted); }

.nav{
  display:flex;
  gap:16px;
  align-items:center;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  padding:10px 10px;
  border-radius: 12px;
  transition:.25s;
}
.nav a:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.primary-btn, .secondary-btn, .ghost-btn{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 14px;
  cursor:pointer;
  font-weight:800;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition: transform .18s ease, background .25s ease, border-color .25s ease;
}
.primary-btn{
  background: linear-gradient(90deg, var(--accent), #d7ff88);
  color:#061226;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(185,255,78,.18);
}
.primary-btn:hover{ transform: translateY(-2px); }
.secondary-btn:hover, .ghost-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
}
.primary-btn.full{ width:100%; }

.menu-btn{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  cursor:pointer;
}
.menu-btn span{
  display:block;
  width:18px; height:2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav{
  display:none;
  border-top: 1px solid var(--stroke);
  background: rgba(4,22,47,.70);
}
.mobile-nav a{
  display:block;
  padding:14px 18px;
  color:var(--muted);
  text-decoration:none;
  font-weight:800;
}
.mobile-nav a:hover{ color:var(--text); background: rgba(255,255,255,.06); }
.mobile-actions{
  display:flex;
  gap:10px;
  padding: 12px 18px 18px;
}

/* Hero */
.hero{ padding: 56px 0 22px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--muted);
  font-weight:800;
  font-size:13px;
}
.badge .dot{
  width:8px; height:8px;
  border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(185,255,78,.45);
}
.hero-title{
  margin: 16px 0 10px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.15;
  font-weight: 900;
}
.hero-title span:last-child{
  color: var(--accent);
  text-shadow: 0 0 22px rgba(185,255,78,.12);
}
.hero-desc{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 18px;
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; }

.hero-stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.stat{
  padding: 14px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--stroke);
  border-radius: 18px;
}
.stat-num{ font-weight: 900; font-size: 14px; }
.stat-label{ color: var(--muted); font-size: 12px; margin-top: 5px; }

/* Hero card */
.hero-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-media{
  height: 240px;
  position:relative;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05);
}
.hero-card-inner{ padding: 16px 16px 18px; }
.mini-title{ font-weight: 900; margin-bottom: 10px; }
.checklist{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  gap: 8px;
}
.checklist li{
  position:relative;
  padding-inline-start: 26px;
  color: var(--muted);
  font-weight: 700;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  inset-inline-start: 0;
  top:0;
  color: var(--accent);
  font-weight: 900;
}
.pill-row{ display:flex; gap:10px; margin-top: 14px; flex-wrap:wrap; }
.pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  font-weight: 900;
  font-size: 12px;
  color: var(--text);
}

/* Quick strip */
.quick-strip{
  margin-top: 18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.quick-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight: 800;
}
.qi-icon{ filter: drop-shadow(0 0 12px rgba(185,255,78,.10)); }

/* Sections */
.section{ padding: 58px 0; }
.section-head{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 24px;
}
.section h2{
  margin:0 0 10px;
  font-size: 30px;
  font-weight: 950;
}
.section-head p{
  margin:0;
  color: var(--muted);
  line-height: 1.9;
}

.section-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}

.highlights{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.highlight{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.05);
}
.hl-title{ font-weight: 950; }
.hl-text{ margin-top: 6px; color: var(--muted); line-height: 1.8; }

.about-cards{
  display:grid;
  gap: 12px;
}
.info-card{
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
}
.ic-title{ font-weight: 950; }
.ic-text{ margin-top: 6px; color: var(--muted); line-height: 1.8; }

/* Services grid */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-card{
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  transition: transform .18s ease, background .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  background: rgba(255,255,255,.08);
  border-color: rgba(185,255,78,.25);
}
.service-card .icon{ font-size: 22px; }
.service-card h3{ margin: 10px 0 6px; font-weight: 950; }
.service-card p{ margin:0; color: var(--muted); line-height: 1.8; }

/* Training */
.training-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.track-card{
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.05);
}
.track-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}
.track-tag{
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 950;
  background: rgba(185,255,78,.12);
  border: 1px solid rgba(185,255,78,.20);
  color: var(--text);
}
.track-level{
  font-weight: 900;
  color: var(--muted);
  font-size: 12px;
}
.track-card h3{ margin: 8px 0 8px; font-weight: 950; }
.track-card ul{
  margin: 0;
  padding-inline-start: 18px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
}
.note-box{
  margin-top: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(68,192,255,.25);
  background: linear-gradient(135deg, rgba(68,192,255,.10), rgba(255,255,255,.04));
}
.note-title{ font-weight: 950; margin-bottom: 6px; }
.note-box p{ margin:0; color: var(--muted); line-height: 1.9; }

/* Plans */
.plan-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.plan-card{
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  position:relative;
  overflow:hidden;
}
.plan-card.featured{
  border-color: rgba(185,255,78,.35);
  background: linear-gradient(180deg, rgba(185,255,78,.12), rgba(255,255,255,.05));
}
.plan-card.vip{
  border-color: rgba(68,192,255,.30);
  background: linear-gradient(180deg, rgba(68,192,255,.12), rgba(255,255,255,.05));
}
.plan-badge{
  position:absolute;
  top: 14px;
  inset-inline-end: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 950;
  background: rgba(185,255,78,.20);
  border: 1px solid rgba(185,255,78,.25);
}
.plan-name{ font-weight: 950; font-size: 16px; }
.plan-price{
  margin: 10px 0 8px;
  font-size: 44px;
  font-weight: 1000;
  letter-spacing: .5px;
}
.plan-price span{ font-size: 16px; opacity:.9; }
.plan-list{
  list-style:none;
  padding:0;
  margin: 0 0 14px;
  display:grid;
  gap: 8px;
}
.plan-list li{
  padding-inline-start: 26px;
  position:relative;
  color: var(--muted);
  font-weight: 800;
}
.plan-list li::before{
  content:"•";
  position:absolute;
  inset-inline-start: 10px;
  color: var(--accent);
  font-size: 18px;
  top:-1px;
}
.cards-row{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.small-card{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  text-align:center;
}
.sc-title{ font-weight: 950; }
.sc-text{ margin-top: 6px; color: var(--muted); font-weight: 800; }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  align-items: start;
}
.contact-details{
  margin-top: 18px;
  display:grid;
  gap: 10px;
}
.cd{
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.05);
}
.cd-title{ font-weight: 950; }
.cd-val{ margin-top: 6px; color: var(--muted); line-height: 1.8; font-weight: 800; }

.contact-form{
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.field{ display:grid; gap:8px; margin-bottom: 12px; }
label{ font-weight: 950; }
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{ color: rgba(234,241,255,.55); }
.form-note{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

/* Footer */
.footer{
  padding: 26px 0;
  border-top: 1px solid var(--stroke);
  background: rgba(4,22,47,.55);
  backdrop-filter: blur(14px);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.foot-brand{ font-weight: 1000; font-size: 16px; }
.foot-sub{ color: var(--muted); font-weight: 800; font-size: 12px; }
.foot-links{ display:flex; gap: 12px; flex-wrap:wrap; }
.foot-links a{ color: var(--muted); text-decoration:none; font-weight: 950; }
.foot-links a:hover{ color: var(--text); }

.wa-fab{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(185,255,78,.25);
  background: rgba(185,255,78,.14);
  color: var(--text);
  text-decoration:none;
  font-weight: 1000;
}

/* Back to top */
.to-top{
  position: fixed;
  bottom: 18px;
  inset-inline-end: 18px;
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--stroke);
  color: var(--text);
  text-decoration:none;
  opacity: .85;
  transition: .2s;
}
.to-top:hover{ transform: translateY(-3px); opacity: 1; }

/* Reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}
.delay-1{ transition-delay: .12s; }
.delay-2{ transition-delay: .24s; }

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .menu-btn{ display:block; }
  .hero-grid, .section-grid, .training-grid, .plan-grid, .cards-grid, .contact-grid, .cards-row{
    grid-template-columns: 1fr;
  }
  .hero-media{ height: 220px; }
  .hero-stats{ grid-template-columns: 1fr; }
  .mobile-nav.show{ display:block; }
}
