/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* Slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.5s ease;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,26,47,0.85),
    rgba(10,26,47,0.45)
  );
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Content */
.slide-content {
  position: relative;
  max-width: 600px;
  padding: 0 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.slide-content .tag {
  display: inline-block;
  background: var(--red);
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.slide-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.slide-content h1 span {
  color: var(--red);
  font-style: italic;
}

.slide-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 30px;
}

/* DOTS */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}

.slider-dots span.active {
  background: var(--red);
}
/* Desktop */
@media (min-width: 768px) {
  .slide-content {
    padding-left: 80px;
  }
  .slide-content h1 {
    font-size: 3.4rem;
  }
}


:root {
  --navy: #0A1A2F;
  --red: #C1121F;
  --white: #FFFFFF;
  --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.sports-slider {
    background: #f8fafc;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND WATERMARK */
.bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(10, 26, 47, 0.03);
    z-index: 0;
    user-select: none;
    letter-spacing: 20px;
}

/* SECTION HEAD */
.section-head {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%); /* Angled tag */
    margin-bottom: 15px;
}

.section-head h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -2px;
}

.section-head h2 span {
    color: var(--red);
    font-style: italic;
    -webkit-text-stroke: 1px var(--red);
    background: linear-gradient(to bottom, var(--red) 50%, transparent 50%);
    -webkit-background-clip: text;
}

.head-line {
    width: 80px;
    height: 5px;
    background: var(--red);
    margin: 15px auto;
}

/* SPORTS TRACK */
.sports-track {
    display: flex;
    gap: 40px;
    justify-content: center;
    perspective: 1000px; /* Essential for 3D */
    z-index: 1;
    position: relative;
}

/* THE 3D CARD */
.sport-card {
    flex: 1;
    max-width: 350px;
    height: 500px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 20px 40px rgba(10, 26, 47, 0.1);
}

.sport-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Glass Badge */
.sport-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

/* OVERLAY MODS */
.sport-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 26, 47, 0.95) 10%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    transition: var(--transition-smooth);
}

.overlay-content {
    transform: translateZ(50px); /* Makes text float forward */
    transition: var(--transition-smooth);
}

.sport-overlay h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.sport-overlay p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 25px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

/* FLOATING BUTTON */
.btn-card {
    display: inline-block;
    padding: 12px 25px;
    background: var(--red);
    color: white;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

/* HOVER ANIMATIONS */
.sport-card:hover {
    transform: translateY(-15px) rotateX(5deg);
}

.sport-card:hover img {
    transform: scale(1.1);
}

.sport-card:hover .sport-badge {
    background: var(--red);
    transform: rotateY(360deg);
}

.sport-card:hover h3, 
.sport-card:hover p, 
.sport-card:hover .btn-card {
    transform: translateY(0);
    opacity: 1;
}

.btn-card:hover {
    background: white;
    color: var(--red);
}

/* Responsive */
@media (max-width: 992px) {
    .sports-track {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    .sport-card {
        width: 100%;
        max-width: 100%;
        height: 400px;
    }
    .section-head h2 { font-size: 2.2rem; }
}


/* Journey */


/* ================= PLAYER JOURNEY ================= */
.journey-pro {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.section-head.center {
  text-align: center;
  margin-bottom: 70px;
}

/* MOBILE FIRST: VERTICAL LIST */
.journey-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Item */
.journey-item {
  display: flex;
  gap: 22px;
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  position: relative;
  transition: var(--transition);
}

.journey-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Left Number */
.journey-left {
  flex-shrink: 0;
}

.step-no {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--red), var(--red-hover));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 25px rgba(193,18,31,0.45);
}

/* Content */
.journey-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.journey-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* ================= DESKTOP TIMELINE ================= */
@media (min-width: 992px) {
  .journey-list {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
  }

  .journey-list::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--red),
      transparent
    );
  }

  .journey-item {
    flex-direction: column;
    text-align: center;
    max-width: 320px;
    padding: 40px 25px;
    z-index: 1;
  }

  .journey-left {
    margin: 0 auto 18px;
  }
}


/* Form Section */


:root {
    --navy: #0A1A2F;
    --red: #C1121F;
    --white: #FFFFFF;
    --form-bg: rgba(255, 255, 255, 0.9);
    --input-focus: rgba(193, 18, 31, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enroll-section {
    padding: 100px 0;
    background: radial-gradient(circle at top left, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* DECORATIVE ELEMENT (Optional Background Detail) */
.enroll-section::before {
    content: "REGISTER";
    position: absolute;
    bottom: -50px;
    right: -20px;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    z-index: 0;
}

.enroll-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* LEFT SIDE: INFO */
.enroll-info h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--navy);
}
.enroll-info h2 span { color: var(--red); font-style: italic; }

.enroll-points { margin-top: 40px; }
.point-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    transition: var(--transition);
}
.point-item:hover { transform: translateX(10px); }

.point-icon {
    width: 60px; height: 60px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center; justify-content: center;
    color: var(--red);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.point-item h4 { color: var(--navy); margin-bottom: 5px; font-size: 1.1rem; }
.point-item p { font-size: 0.9rem; color: #64748b; }

/* RIGHT SIDE: FORM WRAPPER */
.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(10, 26, 47, 0.1);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}
.form-header i { font-size: 2.5rem; color: var(--red); margin-bottom: 10px; }
.form-header h3 { font-size: 1.8rem; font-weight: 800; color: var(--navy); text-transform: uppercase; }

/* THE FORM GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.full-width { grid-column: span 2; }

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.form-group label i { color: var(--red); margin-right: 5px; }

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 18px;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--navy);
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    background: var(--white);
    border-color: var(--red);
    box-shadow: 0 0 20px var(--input-focus);
    transform: translateY(-2px);
}

/* 3D SUBMIT BUTTON */
.btn-3d-submit {
    width: 100%;
    margin-top: 30px;
    background: var(--red);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 8px 0 #8a0d16;
    transition: 0.2s;
    display: flex;
    align-items: center; justify-content: center;
    gap: 15px;
}

.btn-3d-submit:hover { transform: translateY(-2px); }
.btn-3d-submit:active {
    transform: translateY(6px);
    box-shadow: 0 2px 0 #8a0d16;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .enroll-grid { grid-template-columns: 1fr; gap: 50px; }
    .enroll-info { text-align: center; }
    .point-item { justify-content: center; text-align: left; }
    .form-wrapper { padding: 30px 20px; }
}

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .enroll-info h2 { font-size: 2.2rem; }
}
