@font-face {
  font-family: 'Almarai-Regular';
  src: url('../fonts/Almarai-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'alsamt-diwani';
  src: url('../fonts/alsamt-diwani.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
:root {
/* Backgrounds */
--bg-page: #050806;
--bg-section: #0b120e;
--bg-glass: rgba(12, 20, 16, 0.72);

/* Accent */
--green-main: #1fd27a;
--green-soft: #0fa35b;
--green-neon: #38ff9c;

/* Text */
--text-main: #eafff3;
--text-muted: #9fb6ad;
--text-dim: #7f978e;

/* Borders & Effects */
--border-soft: rgba(255,255,255,0.08);
--glow-green: rgba(31,210,122,0.35);
}


body {
background:
  radial-gradient(circle at top, #132019, var(--bg-page));
color: var(--text-main);
font-family: "Almarai-Regular", sans-serif;
direction: rtl;
text-align: center;
}

a {
  text-decoration: none;
}

.text-muted{
  color: var(--text-muted) !important;
}

/* ================= GLOBAL GLASS CARD ================= */
.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow:
    0 18px 45px rgba(0,0,0,0.55),
    inset 0 0 30px rgba(31,210,122,0.08);
  color: var(--text-main);
  transition: 0.3s ease;
}

.card-glass:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 65px rgba(0,0,0,0.7),
    inset 0 0 40px rgba(31,210,122,0.12);
}

/* بداية الهيدررررر  */

/* خلفية النافبار */
.ghiras-navbar {
  background-color: rgb(10, 19, 16 );

  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 210, 122, 0.15);
}

/* روابط القائمة */
.navbar .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  transition: 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--green-main) !important;
}

/* خط أخضر نيون تحت الرابط */

.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--green-soft);
  transition: 0.3s;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

/* أزرار الهيدر */
.header-btn {
  background: linear-gradient(90deg, var(--green-soft), var(--green-main));
  box-shadow: 0 0 18px var(--green-soft);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

/* زر ثانوي */
.header-btn.outline {
  background: transparent;
  border: 1px solid var(--green-soft);
  box-shadow: none;
}

/* هوفر */
.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(31, 210, 122, 0.7);
}

/* الكرة */
.header-btn::after {
  content: "⚽";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  animation: kickBall 4s infinite ease-in-out;
  
}

/* حركة الكرة + الضربة */
@keyframes kickBall {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(0) scale(0.9);
  }
  10% {
    opacity: 1;
  }
  40% {
    transform: translateY(-50%) translateX(45px) rotate(90deg);
  }
  43% {
    transform: translateY(-50%) translateX(55px) rotate(140deg);
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* توهّج يحدث عند لحظة الضربة */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(15, 163, 91, 0);
  }
  39% {
    box-shadow: 0 0 0 rgba(15, 163, 91, 0);
  }
  42% {
    box-shadow: 0 0 18px rgba(15, 163, 91, 0.8);
  } /* لحظة الضربة */
  50% {
    box-shadow: 0 0 0 rgba(15, 163, 91, 0);
  }
  100% {
    box-shadow: 0 0 0 rgba(15, 163, 91, 0);
  }
}

/* نهاية الهيدر   */

/* ===================== Home Hero ( Circle Box )  ===================== */

.home-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("image/stadium.jpg");
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.95)),
    url("image/stadium.jpg") center/cover no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
  padding-top: 20px;
  padding-bottom: 40px;
  overflow: hidden;
}

.orbit-container {
  position: relative;
  width: 450px;
  height: 450px;
  margin: auto;
  margin-top: 50px;
}

/* اللاعب في المنتصف */
.orbit-container .player-box {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.orbit-container .player-box::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 0;
  background: url("image/stadium.jpg") center/cover;
  filter: blur(3px) brightness(0.65);
  z-index: -1;
}

.orbit-container .player-box .player-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* المسار الدائري */
.orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 450px;
  height: 450px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 3px dashed var(--green-soft);
  animation: rotateOrbit 16s linear infinite;
}

/* حركة الدوران */
@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-small-ball {
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.hero-small-ball:nth-child(1) {
  transform: rotate(0deg) translateY(-244px);
}
.hero-small-ball:nth-child(2) {
  transform: rotate(90deg) translateY(-205px);
}
.hero-small-ball:nth-child(3) {
  transform: rotate(180deg) translateY(-205px);
}
.hero-small-ball:nth-child(4) {
  transform: rotate(270deg) translateY(-244px);
}

/* خلفية الجزء الأيمن */
/* ===== HERO RIGHT AREA ===== */


 @font-face {
    font-family: 'alsamt-diwani';
    src: url('./alsamt\ diwani.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.platform-title, .navbar-brand{
  font-family: 'alsamt-diwani';
}

.hero-right {
  position: relative;
  /* background: rgba(0, 0, 0, 0.45); */
  /* backdrop-filter: blur(6px); */
  border-radius: 18px;
  padding: 60px 45px;
  /* overflow: hidden; */
  animation: fadeRight 0.8s ease-out forwards;
}

/* إضاءة خلف النص */
.hero-light {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(42, 209, 99, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* ===== وصف العنوان ===== */
.platform {
  font-size: 42px;
  color: var(--text-main);
  text-shadow: 0 0 25px var(--green-soft);
  z-index: 2;
  animation: slideUp 0.8s ease-out forwards;
}
/* ===== TITLE ===== */
.platform-title {
  color:#00f2c3;
  font-size: 80px !important;
  z-index: 2;
  animation: slideUp 0.8s ease-out forwards;
    font-weight: 900;
    text-shadow:
        0px 4px 12px rgba(0,0,0,0.6),      /* ظل أسود قوي */
        0px 0px 18px rgba(0,255,85,0.55),  /* توهج خارجي أخضر */
        0px 8px 25px rgba(0,0,0,0.45);     /* عمق إضافي */
  font-family: 'alsamt-diwani';
  

}

/* ===== SUBTITLE ===== */
.platform-subtitle {
  color: var(--text-muted);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.3s;
}

/* ===== DESCRIPTION ===== */
.platform-desc {
  color: #bfbfbf;
  line-height: 1.9;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.6s;
}

/* ===== BUTTON ===== */

.hero-btn-start {
  background: linear-gradient(90deg, #0c8c53, var(--green-main));
  color: #fff;
  padding: 14px 40px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(42, 209, 99, 0.4);
  transition: 0.3s;
  margin-top: 20px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.9s;
}

.hero-btn-start:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(42, 209, 99, 0.6);
}

/* ===== ANIMATIONS ===== */

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* بدايةة الشاشة الخضرا r*/

.green-bg {
  background: linear-gradient(180deg, #0c8c53, #29c764);
    background:
    linear-gradient(180deg, rgba(15,163,91,0.25), rgba(0,0,0,0.4)),
    radial-gradient(circle at top, rgba(42,209,99,0.45), transparent 70%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(42,209,99,0.35);
  padding: 80px 20px;
  color: #fff;
  border-radius: 20px;
}

.main-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.feature-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 25px 10px;
  color: #fff;
  transition: 0.2s;
}

.feature-box:hover {
  background: rgba(184, 178, 178, 0.22);
  transform: translateY(-5px);
}

.feature-box img {
  width: 28px;
}

/* نهاية الشاشة الخضرا r*/

/*  كيف تعمل المنصصصصصصصصصصصصصصصصصصصة  r*/

.howitworks-wrapper {
  border-radius: 26px;
  padding: 50px 40px;
  margin: 40px auto;
  max-width: 1200px;

  /* ظل ناعم */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06), 0 4px 0px rgba(0, 180, 100, 0.35);

  position: relative;

  /* حركة تنفس خفيفة */
  animation: sectionPulse 6s ease-in-out infinite;
}

/* ضوء خلفي */
.howitworks-wrapper::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 580px;
  height: 200px;

  background: radial-gradient(circle, rgba(0, 255, 130, 0.25), transparent 70%);
  filter: blur(60px);
  opacity: 0.8;
  z-index: -1;
}

/* خطوط تكتيكية بسيطة */
.howitworks-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  animation: tacticMove 12s linear infinite;

  /* SVG Base64 جاهز */
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='300' cy='300' r='120' stroke='%2300c16a' stroke-width='8' fill='none' stroke-dasharray='15 20'/%3E%3Cpath d='M150 150 L450 450' stroke='%2300c16a' stroke-width='6' stroke-dasharray='10 12' fill='none'/%3E%3C/svg%3E");
}

.work-box {
  background: #fff;
  border: 2px solid #e6f3ea;
  border-radius: 14px;
  padding: 60px 25px 25px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

/* دائرة الأيقونة */
.work-icon {
  width: 75px;
  height: 75px;
  background: #e8f8ef;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(0, 150, 80, 0.2);
}

.work-icon img {
  width: 40px;
}

/* عنوان النص */
.work-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f5132;
  margin-bottom: 10px;
}

/* فقرة النص */
.work-desc {
  font-size: 15px;
  line-height: 1.8;
}

/* حركة عند الاقتراب */
.work-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  border-color: var(--green-soft);
}

/*  بداية المميزات   r*/

/* ================= FEATURE BOX STYLING ================= */

.feature-box-pro {
  border: 2px solid #d9f2e3;
  border-radius: 16px;
  padding: 30px 18px 55px;
  text-align: center;
  position: relative;
  transition: 0.25s ease;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  /* ظل 3D */
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.06),
    0px 18px 35px rgba(0, 0, 0, 0.05), 0px 3px 0px var(--green-soft);

  overflow: hidden;
}

/* ✨ خلفية تتحرك بلون أخضر لطيف */
.feature-box-pro::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;
  background: radial-gradient(circle, rgba(0, 255, 120, 0.12), transparent 70%);
  animation: softMove 6s infinite linear;
  z-index: 0;
}

/* حركة البلور المتنقل */
@keyframes softMove {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(35px, 35px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* تأثير جمااال عند الوقوف */
.feature-box-pro:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 22px rgba(0, 0, 0, 0.09),
    0px 25px 40px rgba(0, 0, 0, 0.08), 0px 3px 0px var(--green-soft);
}

/* أيقونة */
.feature-icon-pro {
  width: 78px;
  height: 78px;
  background: #e7f7ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.feature-icon-pro img {
  width: 38px;
}

/* العنوان */
.feature-title-pro {
  font-size: 20px;
  font-weight: 800;
  margin-top: 15px;
  z-index: 3;
}

/* الوصف */
.feature-desc-pro {
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.6;
  z-index: 3;
}

.section-title-pro {
  font-weight: 800;
  color: #0f2214;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25),
    0px 4px 8px rgba(15, 163, 91, 0.5), 0px 0px 12px rgba(15, 163, 91, 0.5);
}

.section-desc-pro {
  color: #4e5b57;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12);
}

/* نهاية المميزات  r*/

/* بداية  قصصصصصص النحاح */

/* كرت النجاح – بدون حركة للكورة */
.success-card {
  background: #ffffff;

  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  border: 1px solid #eee;
  min-height: 310px;
  position: relative;
}

.success-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--green-soft);
}

/* الصورة الشخصية */
.person-img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 3px solid var(--green-soft);
  object-fit: cover;
}

.role {
  color: var(--green-soft);
  font-weight: 600;
  margin-top: -4px;
}

.comment {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 10px;
}

/* ⚽ كورة ثابتة — بدون حركة */
.success-card::after {
  content: "⚽";
  font-size: 28px;
  position: absolute;
  bottom: -12px;
  right: -12px;

  opacity: 1; /* ثابتة ومرئية دائمًا */
  transform: none; /* بدون ميلان أو دوران */
}




/*   هنا بداية الاندية   */

.clubs-box {
  background:
  linear-gradient(180deg, #101715, #030504),
  radial-gradient(circle at top, rgba(198,169,106,0.08), transparent 65%);
border-radius: 30px;
padding: 50px 40px;

border: 1px solid rgba(255,255,255,0.05);
backdrop-filter: blur(22px);

box-shadow:
  0 50px 120px rgba(0,0,0,0.9),
  inset 0 0 80px rgba(198,169,106,0.04);

}

.club-card {
  padding: 18px;
  border-radius: 14px;
  transition: 0.3s ease;
  cursor: pointer;
  
}

.club-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 8px;
}

.club-card p {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.club-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.success-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  border: 1px solid #eee;
  min-height: 310px;
  position: relative;
}

.success-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--green-soft);
}

.success-card:hover::after {
  opacity: 1;
  transform: rotate(20deg);
}



/*   الاداء الافضل */

/* الصندوق الكامل */
.best-card {
  background: #ffffff;
  border: 2px solid #dff3e5;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* تأثير عند المرور */
.best-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-color: #1cab53;
}

/* صور داخل الصندوق */
.img-box {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  /* border: 3px solid #13a14b; */
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* عنوان */
.best-title {
  font-size: 20px;
  font-weight: 800;
  margin-top: 18px;
  color: #0b3d2e;
}

/* الوصف */
.best-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}

/* أيقونة الكأس */
.trophy-icon {
  width: 35px;
  position: absolute;
  bottom: 10px;
  left: 9px;
  opacity: 0.9;
  transition: 0.3s;
}

/* عند الـ hover الكأس يلمع */
.best-card:hover .trophy-icon {
  transform: rotate(-10deg) scale(1.15);
  filter: drop-shadow(0 0 8px gold);
}

/* ===================== FOOTER Box & Cta Box  ===================== */

/* --> Footer Box */
.footer-box {
  overflow-x: hidden;
  /* background: url("image/stadium.jpg") center/cover no-repeat; */
}

/* حركة دخول */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* توهج خلف الكرة */
.ball-glow {
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(15, 163, 91, 0.6), transparent 70%);
  filter: blur(35px);
  z-index: 1;
}

/* ضباب ملاعب */
.fog-layer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 160px;
  background: url("fog.png") repeat-x;
  opacity: 0.35;
  animation: fogMove 12s linear infinite;
}

@keyframes fogMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1600px 0;
  }
}

/* اضاءة ملاعب */
.stadium-lights {
  position: absolute;
  top: 0;
  left: 50%;
  width: 180%;
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.45),
    transparent 70%
  );
  filter: blur(35px);
  opacity: 0.5;
  z-index: 0;
}

/* Particles */
.particles::before,
.particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: particleMove 4s infinite ease-in-out;
}

.particles::after {
  left: 80%;
  top: 40%;
}
.particles::before {
  left: 20%;
  top: 55%;
}

@keyframes particleMove {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-25px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}

/* --> CTA */
/* الخلفية */
/* الأرضية (العشب) */
.cta-section {
  position: relative;
  /* padding: 80px 20px 160px; */
  background: url("image/stadium-3.jpg") top/cover no-repeat;
    background:
    linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.85)),
    url("image/stadium-3.jpg") top/cover no-repeat;
  box-shadow: inset 0 0 80px rgba(42,209,99,0.35);
  color: white;
  padding: 63px;
  /* width: 90%; */
  margin: auto;
  border-radius: 30px;
  margin-bottom: 100px;
  overflow: hidden;
  /* min-height: 520px; */
}

/* نصوص */
.cta-title {
  font-size: 34px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease forwards;
}

.cta-subtitle {
  font-size: 17px;
  animation: fadeInUp 1.4s ease forwards;
  opacity: 0;
}

/* أزرار */
.cta-btn {
  padding: 12px 26px;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: 0.3s;
  font-size: 16px;
  cursor: pointer !important;
}

.cta-btn.primary {
  background: white;
  color: #0fa35b;
  font-weight: bold;
}
.cta-btn.primary:hover {
  background: #d8ffe0;
  transform: translateY(-4px);
}

.cta-btn.outline {
  border: 2px solid white;
  color: white;
}
.cta-btn.outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* ===================== FOOTER 2 ===================== */

.footer-section {
  position: relative;
  background: url("image/stadium.jpg") center/cover no-repeat;
  background:
    linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6)),
    url("image/stadium.jpg") center/cover no-repeat;
  z-index: 10;
  direction: rtl;
  padding-top: 60px;
  padding-bottom: 40px;
  overflow: hidden;
}

/* ===== FOOTER GLASS CONTAINER ===== */
.footer-section .container {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  /* ظل داخلي يعطي إحساس ملعب */
  box-shadow: inset 0 0 25px rgba(15, 163, 91, 0.25);
  /* خطوط ملعب خفيفة */
  background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 55px 55px;
}

/* توسيط الشعار والنص تحته */
.footer-logo-box {
  text-align: center !important;
}

.footer-logo-box img {
  display: block;
  margin: 0 auto 12px auto;
}

/* ===== TITLES (FIXED UNDERLINE) ===== */
.footer-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--green-soft);
  color: #dffff1;
  display: inline-flex;
  align-items: center;
  position: relative;
}

/* الخط الأخضر تحت العنوان – مضبوط 100% */
.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green-soft);
  border-radius: 5px;

  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== LINKS ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links a {
  color: #eaeaea;
  transition: 0.3s;
  position: relative;
  padding-right: 2px;
}

/* خط أخضر عند المرور */
.footer-links a:hover {
  color: var(--green-soft);
  padding-right: 8px;
}

.footer-links a:hover::before {
  content: "•";
  position: absolute;
  right: -5px;
  color: var(--green-soft);
}

/* ===== SOCIAL ICONS ===== */
/* ===== SOCIAL ICONS (محسّنة) ===== */
.social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--green-soft);
  color: white;
  border-radius: 50%;
  font-size: 19px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
  text-decoration: none;
  line-height: 1;
  
  /* ✅ إزالة margin-left */
  margin: 0 !important;
  padding: 0;
}

/* الأيقونات نفسها */
.social-icons a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
}

/* هوفر */
.social-icons a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--green-soft);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(15, 163, 91, 0.5);
  border-color: var(--green-soft);
}

/* تنسيق عناصر الاتصال */
.contact-info li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #eaeaea;
}

/* تنسيق الأيقونات */
.contact-info li i {
  font-size: 16px;
  color: var(--green-soft);
  width: 20px;
  text-align: center;
  transition: 0.3s;
}

.contact-info li:hover i {
  transform: translateX(-4px);
  color: #15c46c;
}

/* ===== BOTTOM LINE ===== */
.footer-line {
  border-color: rgba(255, 255, 255, 0.15);
  margin-top: 15px;
}

/* ============ Ball =========== */
/* الكرة */
.footer-ball {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;

  animation: floatBall 2.4s ease-in-out infinite;
  filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.5));
  z-index: -2;
}

/* حركة الكرة */
@keyframes floatBall {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-18px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

.feature-box-pro,
.success-card,
.best-card,
.club-card,
.work-box,
.clubs-box {
  background: var(--stadium-glass) !important;
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-soft);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.55),
    inset 0 0 40px rgba(31,210,122,0.08);
  color: var(--text-main);
}


.feature-title-pro,
.best-title,
.work-title,
h2, h3, h4 {
  color: var(--text-main) !important;
}

.feature-desc-pro,
.best-desc,
.work-desc,
.comment,
p {
  color: var(--text-muted) !important;
}

.role,
.navbar .nav-link.active,
.footer-title {
  color: var(--neon-green) !important;
}

.hero-btn-start,
.header-btn {
  background:
    linear-gradient(135deg, #0b3d28, var(--green-main));
  box-shadow:
    0 0 25px rgba(31,210,122,0.45);
}


/* ================= TYPOGRAPHY ================= */

h1, h2, h3, h4, h5 {
  color: var(--text-main);
}

p,
.feature-desc-pro,
.work-desc,
.best-desc,
.comment {
  color: var(--text-muted);
}

.small,
.section-desc,
.section-desc-pro {
  color: var(--text-dim);
}

/* Accent text only */
.role,
.navbar .nav-link.active,
.footer-title {
  color: var(--green-neon);
}
