/* ─── ROOT VARIABLES ─── */
:root {
  --bg: #0a0d0a;
  --bg2: #0f130f;
  --bg3: #141914;
  --accent: #b5f23e;
  --accent2: #7ec82a;
  --text: #f0f5ea;
  --muted: #6b7a63;
  --card-bg: #131813;
  --border: rgba(181, 242, 62, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* html { scroll-behavior: smooth; } */

html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: none;
}


/* ─── SCROLLBAR ─── */
/* ─── SCROLLBAR (Desktop Only) ─── */
@media (min-width: 992px) {
  ::-webkit-scrollbar {
    width: 6px;
  }
  ::-webkit-scrollbar-track {
    background: var(--bg);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
  }
}

/* Ensure body doesn't bounce horizontally */
body {
  overscroll-behavior-x: none;
}


/* ─── NAVBAR ─── */
.navbar {
  background: rgba(10, 13, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(10, 13, 10, 0.98);
}

.navbar-brand {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text) !important;
  letter-spacing: -0.02em;
}
.navbar-brand span {
  color: var(--accent);
}

.nav-link {
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.5rem 1.2rem !important;
  opacity: 0.9;
}
.nav-link:hover {
  color: var(--accent) !important;
}
.nav-link i {
  color: var(--accent);
  font-size: 0.85rem;
  opacity: 0.8;
}

.navbar-toggler {
  border: none !important;
  padding: 0.25rem !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(181, 242, 62)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(10, 13, 10, 0.98);
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(181, 242, 62, 0.1);
    backdrop-filter: blur(20px);
  }
  .navbar-nav {
    gap: 0.5rem;
  }
  .nav-link {
    padding: 0.8rem 1rem !important;
    border-radius: 10px;
  }
  .nav-link:hover {
    background: rgba(181, 242, 62, 0.05);
  }
  .dropdown-menu {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(181, 242, 62, 0.1) !important;
    border-radius: 15px !important;
    margin-top: 0.5rem !important;
    padding: 0.5rem !important;
    backdrop-filter: blur(10px) !important;
  }
  .dropdown-menu.show {
    display: block !important;
  }
  .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.85rem !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
  }
  .dropdown-item i {
    color: var(--accent) !important;
    width: 25px;
    font-size: 0.9rem;
  }
  .dropdown-item:hover,
  .dropdown-item:focus {
    background: rgba(181, 242, 62, 0.1) !important;
    color: var(--accent) !important;
  }
  .btn-book-nav {
    display: inline-block;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
  .nav-link.show,
  .nav-link:active {
    color: var(--accent) !important;
    background: rgba(181, 242, 62, 0.08) !important;
  }
  .dropdown-toggle::after {
    border-top-color: rgba(181, 242, 62, 0.8) !important;
    vertical-align: middle;
    margin-left: 0.5rem;
  }
}

/* Hover Dropdown */
@media all and (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 0;
    background: rgba(10, 13, 10, 0.95);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
  }
  .navbar .dropdown-item {
    color: var(--text);
    font-size: 0.85rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
  }
  .navbar .dropdown-item i {
    color: var(--accent);
    width: 20px;
    font-size: 0.9rem;
  }
  .navbar .dropdown-item:focus,
  .navbar .dropdown-item:hover {
    background: rgba(181, 242, 62, 0.1);
    color: var(--accent);
  }
}

.btn-book-nav {
  background: var(--accent);
  color: var(--bg) !important;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.btn-book-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181, 242, 62, 0.35);
  background: var(--accent) !important;
  color: var(--bg) !important;
  opacity: 0.9;
}
.btn-book-nav i {
  color: inherit !important;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-slider-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slider-wrap .carousel,
.hero-slider-wrap .carousel-inner,
.hero-slider-wrap .carousel-item {
  height: 100%;
}
.hero-slider-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(181, 242, 62, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  animation: fadeDown 0.8s ease both;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--text);
  animation: fadeUp 1s ease 0.2s both;
}
.hero-title .highlight {
  color: var(--accent);
  position: relative;
}
.hero-title .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineIn 1s ease 1.2s forwards;
}
@keyframes lineIn {
  to {
    transform: scaleX(1);
  }
}

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-cta {
  animation: fadeUp 1s ease 0.6s both;
}

.btn-primary-custom {
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(181, 242, 62, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(240, 245, 234, 0.15);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* stat ticker */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  animation: fadeUp 1s ease 0.8s both;
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeLeft 1.2s ease 0.3s both;
}
.court-card-3d {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s ease;
  box-shadow:
    30px 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(181, 242, 62, 0.06);
}
.court-card-3d:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.court-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.court-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.court-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--card-bg));
}
.court-sport-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.court-info {
  padding: 1.2rem 1.4rem 1.4rem;
}
.court-name {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.fac-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.court-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.4rem;
}
.court-meta span {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.court-meta i {
  color: var(--accent);
  font-size: 0.75rem;
}
.court-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--accent);
}
.court-price small {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
}

.booking-quick {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.bq-field {
  background: rgba(181, 242, 62, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
}
.bq-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bq-val {
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 2px;
}
.btn-book-card {
  grid-column: span 2;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  border-radius: 10px;
  padding: 0.75rem;
  cursor: pointer;
  transition: opacity 0.25s;
}
.btn-book-card:hover {
  opacity: 0.85;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, opacity;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, opacity;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── SPORTS TICKER ─── */
.sports-ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
  background: rgba(181, 242, 62, 0.03);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 20s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.ticker-item i {
  color: var(--accent);
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ─── SECTION STYLES ─── */
section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--text);
}

/* ─── SPORTS SECTION ─── */
#sports {
  background: var(--bg2);
}

.sport-card {
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  cursor: pointer;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}
.sport-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
}
.sport-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.sport-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.sport-card:hover .sport-img img {
  transform: scale(1.05);
}
.sport-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 18, 14, 0.95) 0%,
    rgba(14, 18, 14, 0.5) 40%,
    rgba(14, 18, 14, 0.1) 100%
  );
  pointer-events: none;
  z-index: 1;
  transition: all 0.5s ease;
}
.sport-card:hover .sport-overlay {
  background: linear-gradient(
    to top,
    rgba(14, 18, 14, 0.98) 0%,
    rgba(181, 242, 62, 0.1) 60%,
    rgba(14, 18, 14, 0) 100%
  );
}

.sport-badge {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 2;
  background: rgba(10, 13, 10, 0.6);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(181, 242, 62, 0.5);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sport-body {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sport-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.sport-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sport-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sport-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}
.sport-meta-item i,
.sport-meta-item svg {
  color: var(--accent);
  width: 14px;
  height: 14px;
}

/* ─── SPORTS HORIZONTAL SCROLL ─── */
.sports-scroller {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 0.5rem;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 1rem;
  scroll-behavior: smooth;
}
.sports-scroller::-webkit-scrollbar {
  display: none;
}
.sports-scroller {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sport-card-wrap {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 300px;
  scroll-snap-align: start;
}

/* ─── RENTALS HORIZONTAL SCROLL ─── */
.rentals-scroller {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 1rem;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 1rem;
  padding-bottom: 2rem;
}
.rentals-scroller::-webkit-scrollbar {
  display: none;
}
.rentals-scroller {
  scrollbar-width: none;
}
.rental-card-wrap {
  flex: 0 0 calc(33.333% - 1.5rem);
  min-width: 300px;
  scroll-snap-align: start;
}

@media (max-width: 1200px) {
  .rental-card-wrap {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (max-width: 768px) {
  .rental-card-wrap {
    flex: 0 0 85%;
  }
}

/* ─── RENTAL PRICING STYLES ─── */
.rental-item {
  background: rgba(19, 24, 19, 0.4);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  padding: 2.5rem 1.25rem;

  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}
.rental-item:hover {
  background: rgba(19, 24, 19, 0.9);
  border-color: var(--accent);
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(181, 242, 62, 0.1);
}
.rental-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.rental-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181, 242, 62, 0.08);
  border: 1px solid rgba(181, 242, 62, 0.2);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

/* ─── PREMIUM PROMO TAG (INLINE/CLEAN FORMAT) ─── */
.offer-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center; /* Center horizontally in the flex column */
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px; /* Fully rounded pill shape */
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.5px;
}

.offer-tag-upcoming {
  background: linear-gradient(135deg, #111, #222);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(181, 242, 62, 0.2);
}

.offer-tag small {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.2);
  color: inherit;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 800;
  margin-left: 8px; /* Flows horizontally */
}

/* slider controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
}
.slider-btn {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.slider-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.slider-btn:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(181, 242, 62, 0.2);
  color: var(--bg);
}
.slider-btn:hover::before {
  opacity: 1;
}
.slider-btn i {
  position: relative;
  z-index: 1;
}

.slider-pagination {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.slider-pagination .label {
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 0.2rem;
}
.slider-pagination .count {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.slider-pagination .count b {
  color: #fff;
  font-weight: 700;
  transition: all 0.3s;
}

.price-tier-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  justify-content: center;
}

.price-tier {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.price-tier:hover {
  background: rgba(181, 242, 62, 0.05);
  border-color: rgba(181, 242, 62, 0.3);
}
.tier-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.tier-icon {
  width: 44px;
  height: 44px;
  background: rgba(181, 242, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}
.tier-label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.tier-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.tier-price span {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 800;
  margin-left: 5px;
  text-transform: uppercase;
}

.btn-rental-book {
  width: 100%;
  background: rgba(181, 242, 62, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 1.2rem;
  border-radius: 50px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  margin-top: auto;
}

.rental-item:hover .btn-rental-book {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 10px 30px rgba(181, 242, 62, 0.3);
}

/* ─── HOW IT WORKS ─── */
.step-line {
  position: relative;
}
.step-line::before {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 1px;
  background: var(--border);
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(181, 242, 62, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  transition:
    background 0.3s,
    transform 0.3s;
}
.step-card:hover .step-num {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.1);
}
.step-title {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.step-desc {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.6;
}

/* ─── BOOKING SECTION ─── */
.booking-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
}
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.form-control,
.form-select {
  background: rgba(181, 242, 62, 0.04) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 12px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.9rem !important;
}

.time-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: rgba(181, 242, 62, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s;
  margin: 0.25rem;
}
.time-slot:hover,
.time-slot.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: 600;
}

/* ─── FEATURES ─── */
.feature-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.feature-item:hover {
  border-color: var(--border);
  background: rgba(181, 242, 62, 0.03);
}
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(181, 242, 62, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}
.feature-title {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.big-feature {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.big-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(181, 242, 62, 0.15);
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
}

/* ─── TESTIMONIALS ─── */
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition:
    transform 0.3s,
    border-color 0.3s;
  height: 100%;
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(181, 242, 62, 0.25);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg);
}

/* ─── CTA ─── */
#cta {
  background: var(--accent);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--bg);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.cta-sub {
  font-size: 1.1rem;
  color: rgba(10, 13, 10, 0.7);
  font-weight: 500;
  margin: 0;
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--bg);
  color: #fff;
  padding: 1.1rem 2.4rem;
  border-radius: 50px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.btn-cta-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  color: var(--accent);
}
.btn-cta-dark i {
  font-size: 1.1rem;
}

/* Global Button Text Decoration Fix */
.btn-primary-custom,
.btn-ghost,
.btn-book-nav,
.btn-cta-dark,
.btn-book,
.btn-rental-book,
.btn-book-card {
  text-decoration: none !important;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer-logo {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 320px;
}

.footer-heading {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 1.8rem;
  position: relative;
  display: inline-block;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--accent);
  transform: translateX(6px);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(181, 242, 62, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 10px 20px rgba(181, 242, 62, 0.2);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ─── FACILITY CARDS ─── */
.fac-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.fac-card {
  background: rgba(19, 24, 19, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(181, 242, 62, 0.08);
  border-radius: 30px;
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fac-card:hover {
  transform: translateY(-20px) scale(1.02);
  border-color: rgba(181, 242, 62, 0.3);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(181, 242, 62, 0.1);
}
.fac-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: rgba(10, 13, 10, 0.6);
  border: 1px solid rgba(181, 242, 62, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--accent);
}
.fac-card:hover .fac-icon-wrap {
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
}

/* ─── LOADER ─── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s;
}
#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  animation: loaderBlink 1s ease infinite;
}
@keyframes loaderBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ─── PADEL SPECIFIC ─── */
.info-card {
  background: rgba(20, 25, 20, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  padding: 3rem 2.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.card-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(181, 242, 62, 0.1);
  border: 1px solid rgba(181, 242, 62, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.5s ease;
  color: var(--accent);
}
.info-card:hover .card-icon-box {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.1) rotate(10deg);
  border-radius: 50%;
}

/* Staggered Rules Scroller */
.rules-scroller-container {
  position: relative;
  margin: 4rem 0;
  padding: 0 0 4rem;
}
.rules-scroller {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4rem 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rules-scroller::-webkit-scrollbar {
  display: none;
}
.rule-card-wrapper {
  flex: 0 0 380px;
  scroll-snap-align: center;
  transition: all 0.5s ease;
}
.rule-card-wrapper:nth-child(even) {
  transform: translateY(40px);
}
.rule-card-wrapper:nth-child(odd) {
  transform: translateY(-40px);
}
@media (max-width: 768px) {
  .rule-card-wrapper {
    flex: 0 0 85%;
    transform: none !important;
  }
}

/* Rule Card Typography & List */
.info-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.info-card:hover h3 {
  color: var(--accent);
}
.info-card ul {
  list-style: none;
  padding: 0;
  flex-grow: 1;
}
.info-card ul li {
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.3s;
}
.info-card ul li::before {
  content: "→";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 1rem;
  top: 0;
  transition: transform 0.3s;
}
.info-card:hover ul li {
  color: rgba(240, 245, 234, 0.9);
}
.info-card:hover ul li::before {
  transform: translateX(5px);
}

.penalty-panel {
  background: rgba(255, 69, 58, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 69, 58, 0.15);
  border-radius: 35px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.penalty-badge {
  background: rgba(255, 69, 58, 0.1);
  color: #ff453a;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}
.penalty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.penalty-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.pi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff453a;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 69, 58, 0.5);
}
.penalty-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

/* BOOK YOUR SESSION BUTTON */
.btn-book {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: var(--bg) !important;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(181, 242, 62, 0.2);
  border: none;
}
.btn-book:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(181, 242, 62, 0.4);
  background: var(--accent) !important;
  color: var(--bg) !important;
}

/* FAQ ACCORDION STYLES */
.faq-section .accordion-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-section .accordion-button {
  background: transparent !important;
  color: #fff !important;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  padding: 1.5rem;
  box-shadow: none !important;
}
.faq-section .accordion-button:not(.collapsed) {
  color: var(--accent) !important;
}
.faq-section .accordion-button::after {
  filter: invert(1);
}
.faq-section .accordion-body {
  color: var(--muted);
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .fac-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .penalty-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .fac-grid {
    grid-template-columns: 1fr;
  }
  .rule-card-wrapper {
    flex: 0 0 85%;
  }
}
/* ── Contact Info Cards ── */
.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 255, 60, 0.3);
  box-shadow: 0 12px 40px rgba(180, 255, 60, 0.08);
}
.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(180, 255, 60, 0.1);
  border: 1px solid rgba(180, 255, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0 auto 1.2rem;
  transition: background 0.3s ease;
}
.contact-info-card:hover .contact-info-icon {
  background: rgba(180, 255, 60, 0.18);
}
.contact-info-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.contact-info-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.contact-info-link {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.contact-info-link:hover {
  opacity: 0.75;
}

/* ── Contact Form ── */
/* ─── MOBILE RESPONSIVENESS OVERRIDES ─── */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-content {
    padding-top: 120px !important;
    padding-bottom: 60px !important;
    text-align: center;
  }

  #hero {
    min-height: 75vh !important;
    padding: 0 !important;
  }

  .hero-title {
    font-size: 2.4rem !important;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 2rem !important;
  }

  .hero-cta {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .btn-primary-custom,
  .btn-ghost,
  .btn-cta-dark {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.85rem !important;
    white-space: normal !important;
    text-align: center;
  }

  .rental-item {
    padding: 1.5rem !important;
    border-radius: 30px !important;
  }

  .rental-card-wrap {
    flex: 0 0 85% !important;
    scroll-snap-align: center !important;
  }

  .rentals-scroller {
    scroll-padding: 0 7.5% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .price-tier {
    padding: 0.8rem 1rem !important;
    border-radius: 16px !important;
  }

  .tier-label {
    font-size: 0.85rem !important;
  }

  .tier-price {
    font-size: 1.4rem !important;
  }

  .tier-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .sport-card-wrap {
    flex: 0 0 85% !important;
    min-width: 280px !important;
    scroll-snap-align: center !important;
  }

  .sports-scroller {
    scroll-padding: 0 7.5% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .sport-card {
    height: 400px !important;
  }

  .sport-body {
    padding: 1.2rem !important;
  }

  .sport-name {
    font-size: 1.8rem !important;
  }

  .fac-card {
    padding: 2rem 1rem !important;
    border-radius: 20px !important;
  }

  .footer-logo img {
    margin-left: 0 !important;
    margin-top: 20px !important;
    height: 80px !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem !important;
  }

  .price-tier {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start !important;
  }

  .tier-value {
    width: 100%;
    text-align: right;
  }
}
.form-input-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  outline: none;
  appearance: none;
}
.form-input-custom::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.form-input-custom:focus {
  border-color: var(--accent);
  background: rgba(180, 255, 60, 0.04);
  box-shadow: 0 0 0 3px rgba(180, 255, 60, 0.12);
}
select.form-input-custom option {
  background: #1a1a0a;
  color: #fff;
}

/* Responsive tweak */
@media (max-width: 576px) {
  .contact-info-card {
    padding: 1.5rem 1rem;
  }
}

/* ─── FLOATING WHATSAPP BUTTON ─── */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: waPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  color: #fff;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
  content: "Chat with us";
  position: absolute;
  right: 80px;
  background: rgba(10, 13, 10, 0.9);
  padding: 8px 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover::before {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}


/* ─── FLOATING OFFER BUTTON (Above WhatsApp) ─── */
.offer-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 115px; /* Positioned above WhatsApp */
  right: 30px;
  background: linear-gradient(135deg, #b4ff3c 0%, #7ec82a 100%);
  color: #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(181, 242, 62, 0.3);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: waPulse 2s infinite; /* Reusing the pulse animation */
}

.offer-float:hover {
  transform: scale(1.1) translateY(-5px);
  color: #000;
  box-shadow: 0 15px 35px rgba(181, 242, 62, 0.5);
}

.offer-float::before {
  content: "Exclusive Offers";
  position: absolute;
  right: 80px;
  background: rgba(10, 13, 10, 0.9);
  padding: 8px 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  color: #fff;
  border: 1px solid var(--accent);
}

.offer-float:hover::before {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .offer-float {
    width: 55px;
    height: 55px;
    bottom: 95px; /* Increased gap: (20px bottom + 55px height + 20px gap) */
    right: 20px;
    font-size: 24px;
  }
}




/* UNIQUE FLOATING LEFT BUTTON */
.floating-left-btn {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 9999;
  width: 70px;
  height: 70px;
  background: rgba(20, 25, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(181, 242, 62, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(181, 242, 62, 0.2);
  text-decoration: none;
  animation: float-left-ani 3s ease-in-out infinite;
}

.floating-ann-btn {
  position: fixed;
  left: 39px;
  bottom: 155px; /* Moved slightly higher requested */
  z-index: 9999;
  width: 70px;
  height: 70px;
  background: rgba(20, 25, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(181, 242, 62, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(181, 242, 62, 0.2);
  text-decoration: none;
  animation: float-left-ani 3.5s ease-in-out infinite; /* Slightly different timing */
}

/* Glowing Pulse Ring */
.floating-left-btn::before,
.floating-ann-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ring-pulse 2s linear infinite;
  opacity: 0;
  pointer-events: none;
}

.floating-left-btn img,
.floating-ann-btn img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(181, 242, 62, 0.4));
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.floating-left-btn:hover,
.floating-ann-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(181, 242, 62, 0.1);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(181, 242, 62, 0.4);
}

.floating-left-btn:hover img,
.floating-ann-btn:hover img {
  transform: scale(1.25);
}

.floating-left-btn::after {
  content: "Tournament";

  position: absolute;
  left: 85px;
  background: var(--accent);
  color: #000;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 900;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.floating-ann-btn::after {
  content: "Check Updates";
  position: absolute;
  left: 85px;
  background: var(--accent);
  color: #000;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 900;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.floating-left-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@keyframes ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes float-left-ani {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ─── GLOBAL MOBILE PERFECTION (FINAL POLISH) ─── */
@media (max-width: 768px) {
  /* Prevent horizontal scroll at all costs */
  html, body {
    width: 100%;
    overflow-x: hidden !important;
  }
  
  /* Hero Section Reset */
  #hero {
    min-height: 480px !important;
    padding: 140px 0 40px !important; /* Pushed down more to avoid overlap */
    height: auto !important;
    display: flex !important;
    align-items: flex-start !important;
  }
  .hero-content {
    padding-top: 0 !important;
    margin-top: 20px !important;
  }
  .hero-title {
    font-size: 2.22rem !important;
    line-height: 1.15 !important;
    margin-bottom: 25px !important;
  }
  .hero-sub {
    font-size: 0.95rem !important;
    max-width: 280px !important;
    margin-bottom: 35px !important;
  }

  /* Force Override Footer Logo Inline Margins on Mobile */
  .footer-logo img {
    margin-left: 0 !important;
    margin-top: 20px !important;
    height: 80px !important;
    width: auto !important;
    display: block !important;
    margin-right: auto !important;
    margin: 20px auto 40px !important; /* Proper centering */
  }


  /* Coach Page Fixes */
  .coach-img-wrapper {
    height: 350px !important;
  }
  .coach-name {
    font-size: 2.5rem !important;
  }
  .coach-info {
    padding: 30px 20px !important;
  }

  /* Membership Page Fixes */
  .member-card {
    padding: 30px 20px !important;
  }
  .member-title {
    font-size: 2.8rem !important;
  }

  /* Match Board Fixes */
  .filter-container {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
  }
  .filter-btn {
    padding: 10px 20px !important;
    font-size: 0.75rem !important;
  }

  /* Common Utility fixes */
  .container, .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Floating Buttons Symmetry */
  .offer-float, .whatsapp-float, .floating-left-btn, .floating-ann-btn {
    width: 48px !important;
    height: 48px !important;
    z-index: 10000 !important;
    transform: translateZ(0); /* Force GPU acceleration */
    will-change: transform;
  }

  .offer-float { bottom: 89px !important; right: 15px !important; }
  .whatsapp-float { bottom: 20px !important; right: 15px !important; }
  .floating-ann-btn { bottom: 89px !important; left: 23px !important; }
  .floating-left-btn { bottom: 20px !important; left: 15px !important; }

  /* Disable expensive 3D effects on mobile for performance */
  .court-card-3d {
    transform: none !important;
    perspective: none !important;
  }

  /* Perfect Smooth Scrolling */
  html, body {
    height: auto !important;
    overflow-y: auto !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch !important;
  }
}

/* Fix for Tablet/Medium Screens */
@media (min-width: 769px) and (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr !important; }
  .fac-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ─── PERFORMANCE: SMOOTH MOMENTUM ─── */
@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
}





