:root {
  --forest: #1b3a2f;
  --forest-dark: #0f241c;
  --gold: #f5a623;
  --gold-light: #ffc84a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Noto Sans Arabic", sans-serif;
  background: var(--forest-dark);
  color: #fff;
  overflow-x: hidden;
}

.arabic {
  font-family: "Noto Sans Arabic", sans-serif;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

nav.scrolled {
  background: rgba(15, 36, 28, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.3);
  padding: 0.75rem 0;
}

.nav-c {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
  display: block;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(245, 166, 35, 0.1);
}

.nav-links a .ar {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest-dark);
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-cta:hover {
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
}

.mob-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/3.png") center/cover;
  opacity: 0.2;
}

.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 36, 28, 0.9),
    rgba(27, 58, 47, 0.85),
    rgba(15, 36, 28, 0.95)
  );
}

.hero-c {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 2rem;
  text-align: center;
}

.hero-logo {
  width: 24rem;
  max-width: 90%;
  margin: 0 auto 2rem auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  animation: fadeIn 1s ease;
  display: block;
}

.date-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(27, 58, 47, 0.8);
  border: 1px solid rgba(245, 166, 35, 0.5);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  margin: 0 auto 1.5rem auto;
  width: fit-content;
  animation: slideUp 0.6s ease 0.2s both;
}

.loc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  animation: slideUp 0.6s ease 0.3s both;
  flex-wrap: wrap;
}

/* ===== COUNTDOWN ===== */
.cd-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  animation: slideUp 0.6s ease 0.35s both;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  animation: slideUp 0.6s ease 0.4s both;
}

.cd-box {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
  animation: countPulse 1s ease-in-out infinite;
}

.cd-box span {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--forest-dark);
}

.cd-label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

.cd-label .ar {
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest-dark);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
  animation: pulseGlow 2s ease-in-out infinite;
  transition: all 0.3s;
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.5);
}

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

.btn-s:hover {
  background: var(--gold);
  color: var(--forest-dark);
}

/* ===== SECTIONS ===== */
.sec {
  position: relative;
}

.sec-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--forest-dark),
    var(--forest),
    var(--forest-dark)
  );
}

.c {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 10;
}

.sh {
  text-align: center;
  margin-bottom: 4rem;
}

.stag {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.st {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.tg {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.star {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
}

/* ===== CARDS ===== */
.cgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pres-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
  text-align: center;
}

.card {
  background: linear-gradient(
    135deg,
    rgba(27, 58, 47, 0.8),
    rgba(15, 36, 28, 0.9)
  );
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cicon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.card .ar {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===== TSHIRT CAROUSEL ===== */
.tsc {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.tsc img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: all 0.5s;
}

.tsnav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: rgba(27, 58, 47, 0.8);
  border: none;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 5;
  transition: all 0.3s;
}

.tsnav:hover {
  background: var(--gold);
  color: var(--forest-dark);
}

.tsp {
  left: 0.5rem;
}

.tsn {
  right: 0.5rem;
}

.tsdots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.tsdot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.tsdot.a {
  background: var(--gold);
  width: 1.5rem;
  border-radius: 0.25rem;
}

.tslab {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(27, 58, 47, 0.8);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tslab .ar {
  color: var(--gold);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.bp {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--forest-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

/* ===== TRACKS ===== */
.trk {
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  border: 2px solid rgba(245, 166, 35, 0.3);
  border-radius: 1.5rem;
  overflow: hidden;
}

.trkh {
  padding: 2rem;
  position: relative;
}

.trkb {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

.trkb span {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--forest-dark);
}

.trkp {
  display: inline-block;
  background: rgba(245, 166, 35, 0.2);
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  margin: 0.5rem 0 1rem;
}

.trkp span {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}

.trkst {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.trkst span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
}

.lvl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  color: #fff;
}

.lvl-b {
  background: #22c55e;
}

.lvl-a {
  background: var(--gold);
  color: var(--forest-dark);
}

.trkbar {
  height: 0.5rem;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
}

/* ===== FORM ===== */
.fcon {
  background: linear-gradient(
    135deg,
    rgba(27, 58, 47, 0.9),
    rgba(15, 36, 28, 0.95)
  );
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
}

.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fg.c2 {
  grid-column: span 2;
}

.fg label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.fg .al {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--forest-dark);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
  font-family: inherit;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.fg input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

option {
  background: var(--forest);
}

/* Radio */
.rc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rcd {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid rgba(245, 166, 35, 0.2);
  border-radius: 0.75rem;
  background: var(--forest-dark);
  cursor: pointer;
  transition: all 0.3s;
}

.rcd:hover {
  border-color: rgba(245, 166, 35, 0.4);
}

.rcd.a {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.1);
}

.rcd input {
  display: none;
}

.ric {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.rcd h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.rcd p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.15rem 0;
}

.rcd .ar {
  font-size: 0.75rem;
  color: var(--gold);
}

.rcd .pr {
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

/* Price */
.psum {
  background: var(--forest-dark);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.prw {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.prw.t {
  border-top: 1px solid rgba(245, 166, 35, 0.3);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.prw.t .am {
  font-size: 1.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== PARTNERS ===== */
.pcard {
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  border: 2px solid rgba(245, 166, 35, 0.4);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.plogo {
  width: 8rem;
  height: 8rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plogo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.scell {
  background: rgba(27, 58, 47, 0.6);
  border: 2px solid rgba(245, 166, 35, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s;
}

.scell:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.5);
}

/* ===== FAQ ===== */
.fqi {
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.fqq {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  background: none;
  color: #fff;
  width: 100%;
  text-align: left;
}

.fqq .ar {
  font-size: 0.8rem;
  color: var(--gold);
  margin-left: auto;
  flex-shrink: 0;
}

.fqa {
  padding: 0 1.25rem 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  display: none;
}

.fqa.o {
  display: block;
}

.fqi svg,
.fqi .fi {
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ===== MODAL ===== */
.mov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.mov.o {
  display: flex;
}

.mod {
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  border: 1px solid rgba(245, 166, 35, 0.5);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.mic {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mod h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.abx {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 1rem 0;
}

.abx p {
  color: #fca5a5;
  margin: 0;
  font-weight: 600;
}

.abx .ar {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.ibx {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 0.75rem 0;
}

.ibx p {
  color: var(--gold);
  margin: 0;
  font-weight: 600;
}

.ibx .sb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 0.35rem;
}

/* ===== STICKY ===== */
.stk {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 36, 28, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(245, 166, 35, 0.3);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 0.5s;
}

.stk.v {
  transform: translateY(0);
}

.stki {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, var(--forest-dark), #0a1a14);
  padding: 4rem 0 2rem;
}

footer .fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

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

.fb {
  border-top: 1px solid rgba(245, 166, 35, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.soc {
  display: flex;
  gap: 0.75rem;
}

.soc a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(245, 166, 35, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
  color: var(--gold);
  text-decoration: none;
}

.soc a:hover {
  background: var(--gold);
  color: var(--forest-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(245, 166, 35, 0.8);
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--forest-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mob-toggle {
    display: block;
  }

  .hero-logo {
    width: 16rem;
  }

  .cd-box {
    width: 4rem;
    height: 4rem;
  }

  .cd-box span {
    font-size: 1.25rem;
  }

  footer .fgrid, .fgrid {
    grid-template-columns: 1fr;
  }

  .fg.c2 {
    grid-column: span 1;
  }

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

  .sgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pres-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
  }

  footer .fgrid, .fgrid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trkb {
    width: 4rem;
    height: 4rem;
    top: 1rem;
    right: 1rem;
  }

  .trkb span {
    font-size: 1.1rem;
  }

  .btn-p,
  .btn-s {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }

  .trkh {
    padding: 1.5rem;
  }
}