:root {
  --bg: #081116;
  --bg-soft: #0f1d22;
  --card: rgba(18, 31, 36, 0.82);
  --card-strong: #12242c;
  --text: #f2f5f4;
  --muted: #c7d0cd;
  --line: rgba(255, 255, 255, 0.1);
  --primary: #1f8d63;
  --primary-deep: #156147;
  --gold: #e7c04f;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(231, 192, 79, 0.07), transparent 25%),
    radial-gradient(circle at bottom left, rgba(31, 141, 99, 0.12), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-tag::before,
.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #fff3bf);
  box-shadow: 0 0 22px rgba(231, 192, 79, 0.5);
}

h1,
h2,
h3,
strong {
  font-weight: 800;
}

h1,
h2 {
  margin: 0 0 18px;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 12, 16, 0.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.22));
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1.08rem;
  color: #fff;
}

.brand span,
.footer-brand span {
  display: block;
  font-size: 0.88rem;
  color: #ced7d4;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: #edf2f0;
  font-weight: 700;
  font-size: 0.96rem;
  transition: color .25s ease, opacity .25s ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  color: #fff;
  cursor: pointer;
}

.hero-section {
  position: relative;
  padding: 76px 0 84px;
  overflow: clip;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("../img/sport-pattern.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  pointer-events: none;
}

.hero-grid,
.two-col-grid,
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-text {
  max-width: 720px;
  font-size: 1.08rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.hero-stats article,
.feature-list article,
.contact-card,
.price-card,
.video-card,
.sport-card,
.cta-box,
.media-card,
.schedule-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-stats article {
  padding: 18px 16px;
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
}

.hero-stats span {
  color: #d2dad8;
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 14px 34px rgba(31, 141, 99, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.hero-note {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  color: #e8eeeb;
}

.hero-note span {
  color: var(--gold);
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-art {
  width: 100%;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 70px rgba(0,0,0,0.32);
}

.two-col-grid {
  grid-template-columns: 1fr 1fr;
}

.align-center {
  align-items: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.feature-list article {
  padding: 22px;
  border-radius: 24px;
}

.feature-list h3,
.sport-card h3,
.video-card h3,
.price-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.media-card,
.schedule-card {
  border-radius: 30px;
  overflow: hidden;
}

.media-card img,
.schedule-card img {
  width: 100%;
  height: auto;
}

.section-head {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sport-card {
  border-radius: 26px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease;
}

.sport-card:hover,
.gallery-item:hover,
.video-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 192, 79, 0.3);
}

.sport-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.sport-card-body {
  padding: 20px 18px 22px;
}

.schedule-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 12px;
}

.schedule-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(231, 192, 79, 0.12);
  border: 1px solid rgba(231, 192, 79, 0.24);
  color: #fff2bf;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  border-radius: 28px;
  padding: 26px;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(31, 141, 99, 0.22), rgba(18, 36, 44, 0.88));
  border-color: rgba(231, 192, 79, 0.2);
}

.price-top {
  margin-bottom: 18px;
}

.price {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 16px;
}

.price small {
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: "Tajawal", sans-serif;
}

.price-card ul {
  margin: 0;
  padding: 0 18px 0 0;
  color: var(--muted);
}

.gallery-grid.images-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.gallery-item,
.video-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform .22s ease, border-color .22s ease;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  padding: 14px;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 16px;
  background: #000;
}

.video-card h3 {
  margin: 14px 6px 4px;
}

.cta-section {
  padding-top: 24px;
}

.cta-box {
  border-radius: 34px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(31, 141, 99, 0.16), rgba(15, 29, 34, 0.92)),
    rgba(18, 31, 36, 0.88);
}

.cta-box p {
  max-width: 720px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-card {
  border-radius: 28px;
  padding: 28px;
}

.contact-items {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.contact-items strong {
  display: block;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-items a {
  font-size: 1.6rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.promo-copy {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.site-footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-wrap,
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-wrap p {
  margin: 0;
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-action {
  min-width: 118px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}

.call-btn {
  background: #ffffff;
  color: #0d1820;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: grid;
  place-items: center;
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 100;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(100%, 1200px);
  max-height: 90vh;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }

@media (max-width: 1080px) {
  .hero-grid,
  .two-col-grid,
  .contact-grid,
  .sports-grid,
  .pricing-grid,
  .video-grid,
  .gallery-grid.images-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .two-col-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-wrap,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(8, 17, 22, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .sports-grid,
  .pricing-grid,
  .gallery-grid.images-grid,
  .video-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand span {
    font-size: 0.78rem;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .btn,
  .floating-action {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box,
  .contact-card,
  .price-card {
    padding: 22px;
  }

  .floating-actions {
    right: 16px;
    left: 16px;
  }
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d8e1de;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.meta-note {
  margin-top: 12px;
  color: #f2e0a1;
}

.inner-hero {
  padding-bottom: 34px;
}

.policy-layout {
  max-width: 920px;
}

.policy-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.policy-card h2 {
  font-size: clamp(1.3rem, 2vw, 2rem);
  margin-top: 0;
  margin-bottom: 10px;
}

.policy-card h2:not(:first-child) {
  margin-top: 28px;
}

.policy-list {
  margin: 0;
  padding-right: 20px;
  color: var(--muted);
}

.policy-card a {
  color: var(--gold);
}
