:root {
  --bg: #08111f;
  --bg-soft: #0f1d33;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: #111d31;
  --surface: #f5f7fb;
  --text: #eaf0ff;
  --text-dark: #142033;
  --muted: #aab8d3;
  --accent: #f7b500;
  --accent-2: #ff7a18;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Tajawal", sans-serif;
  background: linear-gradient(180deg, #06101d 0%, #0d1729 35%, #f5f7fb 35%, #f5f7fb 100%);
  color: var(--text-dark);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(6, 16, 29, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-wrap, .footer-wrap, .cta-box, .section-grid, .hero-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-wrap { min-height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand-mark {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 16px; background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #09111f; font-size: 1.4rem; font-weight: 900;
}
.brand strong { display: block; font-size: 1.2rem; }
.brand small { color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--text); }
.nav-links a { white-space: nowrap; }
.nav-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 14px 24px; font-weight: 800; transition: 0.25s ease;
}
.nav-cta, .btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #08111f; }
.btn-secondary { border: 1px solid rgba(255,255,255,0.2); color: var(--text); }
.btn:hover { transform: translateY(-2px); }

.hero { padding: 72px 0 96px; color: var(--text); position: relative; overflow: hidden; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.6;
}
.hero::before { width: 340px; height: 340px; background: rgba(247, 181, 0, 0.12); top: -80px; right: -80px; }
.hero::after { width: 260px; height: 260px; background: rgba(255, 122, 24, 0.12); bottom: 10px; left: -40px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.9fr); align-items: stretch; gap: 32px; }
.hero-copy, .hero-card { min-width: 0; }
.hero-copy { flex: 1.2; }
.hero-card {
  flex: 0.9; background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: var(--shadow);
}
.eyebrow, .section-tag, .sport-label, .card-top {
  display: inline-block; padding: 8px 14px; border-radius: 999px; font-weight: 800; font-size: 0.9rem;
  background: rgba(247, 181, 0, 0.14); color: #ffd778;
}
.hero h1 { font-size: clamp(2.5rem, 4vw, 4.7rem); line-height: 1.08; margin: 16px 0 20px; }
.hero h1 span, .hero-card h2, .section h2, .section h3 { color: var(--accent); }
.hero p, .hero-card p { color: var(--muted); font-size: 1.08rem; line-height: 1.9; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hero-points li::before { content: "✓"; color: var(--accent); margin-left: 10px; font-weight: 900; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.stats div { background: rgba(255,255,255,0.06); border-radius: 20px; padding: 18px 12px; text-align: center; }
.stats strong { display: block; font-size: 1.6rem; color: #fff; }
.stats span { color: var(--muted); font-size: 0.92rem; }

.section { padding: 88px 0; }
.section-dark { background: #0d1729; color: var(--text); }
.section-soft { background: #eef3fb; }
.section-grid { display: grid; grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr); align-items: start; gap: 32px; }
.section-heading.centered { text-align: center; margin-bottom: 36px; }
.section h2 { font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.2; margin: 0; }
.section-text { max-width: 760px; color: #44516a; font-size: 1.08rem; line-height: 2; }

.sports-grid, .cards-grid, .values-grid {
  display: grid; gap: 22px;
}
.sports-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cards-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.values-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.sport-card, .info-card, .value-box {
  border-radius: 24px; padding: 28px; box-shadow: 0 14px 40px rgba(10, 19, 35, 0.08);
}
.sport-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
}
.sport-card.featured {
  background: linear-gradient(135deg, rgba(247,181,0,0.18), rgba(255,122,24,0.12));
  border-color: rgba(247, 181, 0, 0.2);
}
.sport-card h3, .info-card h3, .value-box h3 { margin: 0 0 12px; font-size: 1.5rem; }
.sport-card p, .info-card p, .value-box p { margin: 0; line-height: 1.9; }
.info-card { background: #fff; }
.info-card.accent { background: linear-gradient(135deg, #101c31, #172842); color: var(--text); }
.info-card.accent p { color: var(--muted); }
.value-box { background: #fff; border: 1px solid #e1e8f3; }

.cta-section { padding-top: 24px; }
.cta-box {
  display: block;
  background: linear-gradient(135deg, #0c1628, #162947); color: var(--text);
  border-radius: 28px; padding: 34px; box-shadow: var(--shadow);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}
.contact-copy p { max-width: 680px; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.contact-details {
  display: grid;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 0;
}
.contact-item strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
  font-size: 1.05rem;
}
.contact-item small {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}
.contact-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(247,181,0,0.18), rgba(255,122,24,0.22));
  font-size: 1.35rem;
}
.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.38);
  z-index: 30;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 48px rgba(18, 140, 126, 0.46);
}
.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}
.site-footer { background: #0a1220; color: var(--muted); padding: 24px 0 40px; }
.footer-wrap { flex-wrap: wrap; }

@media (max-width: 1100px) {
  .hero { padding: 64px 0 84px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 720px; }
  .section-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .cta-box, .nav-wrap, .footer-wrap { flex-direction: column; align-items: stretch; }
  .nav-wrap { padding: 14px 0; }
  .nav-links { flex-wrap: wrap; justify-content: center; width: 100%; row-gap: 12px; }
  .cta-box { text-align: center; }
  .contact-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .container { width: calc(100% - 24px); }
  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .nav-links a {
    text-align: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
  }
  .nav-links a.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #08111f;
  }
  .nav-links .nav-cta { grid-column: 1 / -1; }
  .hero { padding: 42px 0 72px; }
  .hero-copy { text-align: center; }
  .hero-actions { justify-content: center; }
  .section { padding: 72px 0; }
  .stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .cta-box { padding: 28px; }
  .contact-item { text-align: right; }
}

@media (max-width: 540px) {
  .site-header { position: static; }
  .brand { justify-content: center; text-align: center; }
  .brand small { display: block; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero p, .hero-card p, .section-text { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .btn, .nav-cta { width: 100%; }
  .sports-grid, .values-grid, .cards-grid, .stats { grid-template-columns: 1fr; }
  .sport-card, .info-card, .value-box, .hero-card { padding: 22px; border-radius: 20px; }
  .section { padding: 64px 0; }
  .footer-wrap { text-align: center; justify-content: center; }
  .contact-item { padding: 18px; gap: 12px; }
  .contact-icon { width: 48px; height: 48px; flex-basis: 48px; border-radius: 16px; }
  .whatsapp-float { width: 58px; height: 58px; left: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}