:root {
  --bg: #07111a;
  --bg-2: #0c1824;
  --panel: #0f202d;
  --panel-2: #112a37;
  --text: #f7fbff;
  --muted: #a7b7c4;
  --ink: #101a22;
  --light: #f4f7f9;
  --white: #fff;
  --blue: #1f8fd6;
  --blue-2: #38b6ea;
  --green: #21aa53;
  --green-2: #5fd323;
  --red: #eb382b;
  --line: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(7, 17, 26, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
section {
  scroll-margin-top: 92px;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus {
  top: 20px;
}
.section {
  padding: 110px 0;
  position: relative;
}
.section-dark {
  background: var(--bg);
}
.section-light {
  background: var(--light);
  color: var(--ink);
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-2);
  margin-bottom: 14px;
}
.section-kicker:before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  display: inline-block;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head h2,
.about-copy h2,
.booking-intro h2,
.subscription-main h2,
.tournament-copy h2,
.contact-copy h2,
.cta-inner h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(40px, 6vw, 40px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}
.section-head h2 span,
.about-copy h2 span,
.booking-intro h2 span,
.subscription-main h2 span,
.tournament-copy h2 span,
.contact-copy h2 span,
.cta-inner h2 span {
  color: var(--green-2);
}
.section-head p {
  max-width: 420px;
  color: var(--muted);
  margin: 0;
}
.section-light .section-head p {
  color: #5d6c75;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  border: 1px solid transparent;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #07111a;
  background: linear-gradient(135deg, var(--blue-2), var(--green-2));
  box-shadow: 0 12px 28px rgba(28, 169, 93, 0.2);
}
.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(31, 143, 214, 0.22);
}
.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-light {
  background: #fff;
  color: #0b1720;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}
.btn-outline {
  background: transparent;
  color: inherit;
  border-color: var(--line-dark);
}
.btn-lg {
  padding: 15px 24px;
  font-size: 15px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 115px;
  transition:
    background 0.25s ease,
    height 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}
.site-header.scrolled {
  height: 110px;
  background: rgba(7, 17, 26, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  width: 100px;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  mix-blend-mode: screen;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: auto;
}
.primary-nav a {
  font-size: 15px;
  color: #d8e3ea;
  font-weight: 700;
  position: relative;
  padding: 8px 0;
}
.primary-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 0.25s ease;
}
.primary-nav a:hover:after,
.primary-nav a.active:after {
  width: 100%;
}
.nav-cta {
  white-space: nowrap;
  font-size: 16px;
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 99px;
  transition: 0.2s;
}
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 82px;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 12, 18, 0.92) 0%,
      rgba(5, 12, 18, 0.78) 35%,
      rgba(5, 12, 18, 0.32) 100%
    ),
    url("https://images.unsplash.com/photo-1517927033932-b3d18e61fb3a?auto=format&fit=crop&w=2200&q=88");
  background-size: cover;
  background-position: center;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 32%,
      rgba(38, 172, 93, 0.16),
      transparent 34%
    ),
    radial-gradient(
      circle at 20% 78%,
      rgba(31, 143, 214, 0.18),
      transparent 28%
    );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100svh - 80px);
  padding-bottom: 120px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b7c6d0;
  font-size: 15px;
  letter-spacing: 0.16em;
  font-weight: 800;
}
.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 18px rgba(95, 211, 35, 0.7);
}
.hero-copy h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(50px, 10vw, 56px);
  line-height: 0.78;
  letter-spacing: -0.055em;
  margin: 24px 0 26px;
  text-transform: uppercase;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #fff, #8ccff4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  margin: 0;
  color: #f3f8fb;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero-sub strong {
  color: var(--green-2);
}
.hero-text {
  color: #b1c0ca;
  max-width: 620px;
  font-size: 20px;
  margin: 14px 0 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  min-height: 400px;
}
.hero-orbit {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 90px rgba(31, 143, 214, 0.07),
    0 0 80px rgba(21, 165, 89, 0.06);
}
.hero-orbit:before,
.hero-orbit:after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.hero-orbit:after {
  inset: 90px;
  border-style: solid;
  border-color: rgba(95, 211, 35, 0.16);
}
.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-2);
  top: 18px;
  left: 50%;
  box-shadow: 0 0 30px 10px rgba(95, 211, 35, 0.22);
  transform: translateX(-50%);
}
.mini-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 14px;
  z-index: 1;
}
.mini-card {
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 25, 36, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  box-shadow: var(--shadow);
}
.mini-card.accent {
  border-color: rgba(235, 56, 43, 0.36);
}
.mini-icon {
  font-size: 18px;
}
.mini-card span:last-child {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 12, 18, 0.35);
  backdrop-filter: blur(8px);
}
.hero-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  color: #90a5b2;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.image-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d9e1e7;
}
.image-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 52%, rgba(0, 0, 0, 0.65));
  pointer-events: none;
}
.image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.image-tag {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.image-tag span {
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 800;
}
.image-tag strong {
  font-family: "Barlow Condensed";
  font-size: 18px;
  line-height: 0.95;
}
.about-copy > p {
  max-width: 650px;
  color: #586770;
  font-size: 18px;
  margin: 0 0 30px;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.highlight-card {
  padding: 18px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(11, 25, 36, 0.05);
}
.highlight-card span {
  font-family: "Barlow Condensed";
  font-size: 18px;
  color: #86a1b0;
}
.highlight-card strong {
  display: block;
  font-size: 23px;
  margin-top: 6px;
}
.highlight-card small {
  display: block;
  color: #7a8891;
  margin-top: 3px;
  font-size: 18px;
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sport-card {
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.sport-card:hover {
  transform: translateY(-7px);
  border-color: rgba(95, 211, 35, 0.35);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.24);
}
.sport-image {
  position: relative;
  overflow: hidden;
}
.sport-image img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 0.6s ease;
}
.sport-card:hover .sport-image img {
  transform: scale(1.06);
}
.sport-number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(5, 12, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed";
  font-size: 17px;
}
.sport-body {
  padding: 24px;
}
.sport-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sport-icon {
  font-size: 18px;
}
.sport-body h3,
.service-body h3,
.facility-card h3,
.why-card h3 {
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  margin: 0;
}
.sport-body p {
  color: var(--muted);
  font-size: 18px;
  min-height: 58px;
  margin: 12px 0 20px;
}
.link-btn {
  border: 0;
  background: transparent;
  padding: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 9px;
  align-items: center;
}
.link-btn span {
  transition: transform 0.2s ease;
}
.link-btn:hover span {
  transform: translateX(4px);
}
.booking-section {
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #091520, #0d1f2c);
}
.booking-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(31, 143, 214, 0.18),
      transparent 28%
    ),
    radial-gradient(circle at 90% 80%, rgba(95, 211, 35, 0.12), transparent 28%);
  pointer-events: none;
}
.booking-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: center;
}
.booking-intro h2 {
  font-size: clamp(45px, 6vw, 50px);
}
.booking-intro > p {
  max-width: 520px;
  color: #a9bbc6;
  font-size: 17px;
}
.booking-note {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  max-width: 470px;
}
.booking-note > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(95, 211, 35, 0.12);
  color: var(--green-2);
  font-weight: 900;
}
.booking-note strong,
.booking-note small {
  display: block;
}
.booking-note strong {
  font-size: 15px;
}
.booking-note small {
  color: #91a5b2;
  margin-top: 3px;
  font-size: 16px;
}
.booking-steps {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.booking-steps div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b1c2cc;
  font-size: 17px;
}
.booking-steps b {
  font-family: "Barlow Condensed";
  color: var(--blue-2);
  font-size: 18px;
}
.booking-card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}
.form-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid #e6ebee;
  padding-bottom: 18px;
  margin-bottom: 22px;
}
.form-head span:first-child {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: #74848e;
}
.form-head strong {
  display: block;
  font-family: "Barlow Condensed";
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 2px;
}
.live-dot {
  font-size: 15px !important;
  letter-spacing: 0.08em;
  color: #158444 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  border: 1px solid #dceee4;
  padding: 7px 9px;
  border-radius: 999px;
}
.live-dot:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #1bad61;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(27, 173, 97, 0.12);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field label {
  display: block;
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 7px;
}
.field label sup {
  color: var(--red);
}
.field input,
.field select {
  width: 100%;
  height: 50px;
  border: 1px solid #d8e0e5;
  border-radius: 14px;
  padding: 0 14px;
  background: #fbfcfd;
  color: var(--ink);
  outline: none;
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus {
  border-color: #73b6db;
  box-shadow: 0 0 0 4px rgba(31, 143, 214, 0.1);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: rgba(235, 56, 43, 0.55);
  box-shadow: 0 0 0 4px rgba(235, 56, 43, 0.08);
}
.error {
  display: block;
  color: #cb2e24;
  min-height: 18px;
  font-size: 14px;
  margin-top: 5px;
}
.players-field {
  grid-column: span 2;
}
.stepper {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 0;
}
.stepper .step-btn {
  border: 1px solid #d8e0e5;
  background: #f2f5f7;
  color: #1a2831;
}
.stepper .step-btn:first-child {
  border-radius: 14px 0 0 14px;
}
.stepper .step-btn:last-child {
  border-radius: 0 14px 14px 0;
}
.stepper input {
  border-radius: 0;
  text-align: center;
}
.submit-btn {
  width: 100%;
  margin-top: 4px;
}
.form-footnote {
  font-size: 14px;
  color: #7a8891;
  text-align: center;
  margin: 12px 0 0;
}
.subscription-card {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0f2430, #0c1720);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
}
.subscription-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  right: -180px;
  top: -200px;
  background: radial-gradient(
    circle,
    rgba(31, 143, 214, 0.33),
    transparent 65%
  );
  pointer-events: none;
}
.subscription-main {
  position: relative;
  z-index: 1;
}
.subscription-main p {
  max-width: 720px;
  color: #acbec9;
  margin: 16px 0 24px;
}
.subscription-badges {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.subscription-badges span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.subscription-action {
  position: relative;
  z-index: 1;
  justify-self: end;
  text-align: right;
}
.subscription-label {
  display: block;
  color: #8ca1ae;
  font-size: 14px;
  letter-spacing: 0.13em;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
}
/* Single Football Coaching Card */
.service-grid.single-service {
  display: flex;
  justify-content: center;
}

.service-grid.single-service .service-card {
  width: 100%;
  max-width: 460px;
}
.service-image {
  position: relative;
}
/* Football Coaching - Image Only Card Full Cover */
.service-image.image-only {
  height: 100%;
  min-height: 460px;
}

.service-image.image-only img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}
.service-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.service-image span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5, 12, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.service-body {
  padding: 22px;
}
.service-body p {
  color: var(--muted);
  font-size: 18px;
  margin: 10px 0 18px;
}
.tournament-section {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #08131c;
}
.tournament-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 17, 26, 0.95) 0%,
      rgba(7, 17, 26, 0.73) 52%,
      rgba(7, 17, 26, 0.3)
    ),
    url("https://images.unsplash.com/photo-1459865264687-595d652de67e?auto=format&fit=crop&w=2200&q=88");
  background-position: center;
  background-size: cover;
}
.tournament-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.tournament-copy h2 {
  max-width: 760px;
}
.tournament-copy p {
  color: #afc0ca;
  max-width: 660px;
  margin: 18px 0 26px;
}
.tournament-mark {
  display: grid;
  place-items: center;
}
.tournament-ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(
    circle,
    rgba(31, 143, 214, 0.18),
    rgba(5, 12, 18, 0.1)
  );
  box-shadow:
    inset 0 0 40px rgba(255, 255, 255, 0.03),
    0 0 70px rgba(31, 143, 214, 0.1);
}
.tournament-ring span,
.tournament-ring strong {
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  line-height: 0.8;
}
.tournament-ring span {
  font-size: 45px;
  color: #6dc8f3;
}
.tournament-ring strong {
  font-size: 38px;
  color: #68d02c;
}
.tournament-ring small {
  margin-top: 10px;
  color: #9eb0ba;
  font-size: 15px;
  letter-spacing: 0.13em;
  font-weight: 800;
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.facility-card {
  padding: 28px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 12px 40px rgba(5, 17, 26, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(5, 17, 26, 0.09);
}
.facility-icon {
  font-size: 35px;
  margin-bottom: 18px;
}
.facility-card p {
  color: #6d7b84;
  font-size: 18px;
  margin: 8px 0 0;
}
.why-section {
  padding-bottom: 100px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.why-card {
  position: relative;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.why-card:before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.why-card b {
  font-family: "Barlow Condensed";
  color: var(--blue-2);
  font-size: 18px;
}
.why-card p {
  color: var(--muted);
  font-size: 16px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 190px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #dce5e9;
  min-height: 190px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5, 12, 18, 0.68);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.gallery-item-wide {
  grid-column: span 2;
}
.gallery-item-tall {
  grid-row: span 2;
}
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(4, 9, 13, 0.94);
  z-index: 300;
  padding: 30px;
}
.lightbox.open {
  display: grid;
}
.lightbox figure {
  width: min(100%, 1100px);
  margin: 0;
}
.lightbox figure img {
  max-height: 78vh;
  width: 100%;
  object-fit: contain;
  border-radius: 18px;
}
.lightbox figcaption {
  color: #cbd8df;
  text-align: center;
  margin-top: 10px;
  font-size: 17px;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 30px;
}
.lightbox-close {
  top: 24px;
  right: 24px;
}
.lightbox-prev {
  left: 24px;
}
.lightbox-next {
  right: 24px;
}
.cta-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #061019;
  overflow: hidden;
}
.cta-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6, 16, 25, 0.9), rgba(6, 16, 25, 0.48)),
    url("https://images.unsplash.com/photo-1579952363873-27f3bade9f55?auto=format&fit=crop&w=2200&q=88");
  background-position: center;
  background-size: cover;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}
.cta-inner p {
  color: #b8c6cf;
  margin: 14px 0 0;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: stretch;
}
.contact-copy > p {
  font-size: 18px;
  color: #53636c;
  margin: 20px 0 28px;
}
.contact-lines {
  display: grid;
  gap: 11px;
}
.contact-line {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: #fff;
}
.contact-line > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31, 143, 214, 0.08);
  color: var(--blue);
  font-size: 17px;
}

.contact-line > span i {
  line-height: 1;
}
.contact-line small,
.contact-line strong {
  display: block;
}
.contact-line small {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #82919a;
}
.contact-line strong {
  margin-top: 3px;
  font-size: 17px;
}
.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.map-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 400px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #dfe7ea;
}

.map-embed {
  flex: 1;
  min-height: 0;
  width: 100%;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}
.map-placeholder {
  flex: 1;
  min-height: 320px;
  position: relative;
  background:
    radial-gradient(circle at 52% 50%, #eef2f3 0 12%, transparent 13%),
    linear-gradient(
      35deg,
      rgba(31, 143, 214, 0.14) 0 12%,
      transparent 12% 36%,
      rgba(33, 170, 83, 0.1) 36% 48%,
      transparent 48% 73%,
      rgba(235, 56, 43, 0.06) 73%
    );
  display: grid;
  place-items: center;
}
.map-placeholder:before,
.map-placeholder:after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(20, 42, 55, 0.12);
  border-radius: 50%;
}
.map-placeholder:before {
  width: 260px;
  height: 260px;
}
.map-placeholder:after {
  width: 380px;
  height: 160px;
  transform: rotate(16deg);
}
.map-placeholder > div:last-child {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 13px 16px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.map-placeholder strong,
.map-placeholder span {
  display: block;
}
.map-placeholder strong {
  font-family: "Barlow Condensed";
  font-size: 20px;
  text-transform: uppercase;
}
.map-placeholder span {
  font-size: 14px;
  color: #75858f;
}
.map-pin {
  position: absolute;
  z-index: 2;
  color: var(--red);
  font-size: 30px;
  top: 42%;
  left: 51%;
  filter: drop-shadow(0 8px 10px rgba(235, 56, 43, 0.28));
}
.map-caption {
  padding: 14px 16px;
  background: #fff;
  color: #6c7b83;
  font-size: 15px;
}
.map-caption code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #223844;
}
.site-footer {
  background: #040b11;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 0.9fr;
  gap: 38px;
}
.footer-brand img {
  width: 150px;
  border-radius: 18px;
  mix-blend-mode: screen;
}
.footer-brand p,
.footer-contact p {
  color: #82939e;
  font-size: 17px;
  margin-top: 15px;
}
.site-footer h3 {
  font-family: "Barlow Condensed";
  font-size: 17px;
  text-transform: uppercase;
  margin: 0 0 15px;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-links a {
  color: #9aacb7;
  font-size: 16px;
}
.footer-links a:hover {
  color: #fff;
}
.footer-wa {
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(95, 211, 35, 0.12);
  color: #7be644;
  font-weight: 800;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #6f808b;
  font-size: 14.5px;
}
.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1ebc66;
  color: #fff;
  box-shadow: 0 15px 30px rgba(18, 149, 79, 0.35);
  z-index: 90;
  border: 3px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2.6s infinite;
}
.floating-wa span {
  font-size: 20px;
  transform: rotate(-25deg);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: #0b8fdf;
  border-color: #0b8fdf;
  color: #fff;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow:
      0 15px 30px rgba(18, 149, 79, 0.35),
      0 0 0 0 rgba(30, 188, 102, 0.28);
  }
  50% {
    box-shadow:
      0 15px 30px rgba(18, 149, 79, 0.35),
      0 0 0 10px rgba(30, 188, 102, 0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.25, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
@media (max-width: 1050px) {
  .primary-nav {
    gap: 12px;
  }
  .primary-nav a {
    font-size: 17px;
  }
  .nav-wrap {
    gap: 12px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-side {
    justify-content: flex-start;
    min-height: 300px;
  }
  .hero-orbit {
    left: 40px;
  }
  .sports-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-contact {
    grid-column: span 3;
  }
  .subscription-card {
    grid-template-columns: 1fr;
  }
  .subscription-action {
    justify-self: start;
    text-align: left;
  }
  .tournament-grid {
    grid-template-columns: 1fr;
  }
  .tournament-mark {
    display: none;
  }
}
@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 14px;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .primary-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    background: rgba(7, 17, 26, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px;
    display: grid;
    gap: 4px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }
  .primary-nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav a {
    padding: 11px 10px;
    border-radius: 10px;
  }
  .primary-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .nav-cta {
    margin-left: 0;
    padding: 11px 16px;
    font-size: 16px;
  }
  .brand {
    width: 100px;
  }
  .hero {
    padding-top: 72px;
  }
  .hero-inner {
    min-height: auto;
    padding: 100px 0 130px;
  }
  .hero-side {
    min-height: 260px;
  }
  .hero-orbit {
    width: 270px;
    height: 270px;
    left: 0;
  }
  .mini-stats {
    grid-template-columns: repeat(2, 150px);
  }
  .about-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .sports-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .facility-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .players-field {
    grid-column: auto;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: span 2;
    grid-row: span 1;
  }
  .cta-inner {
    display: block;
  }
  .cta-actions {
    margin-top: 24px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }
  .footer-contact {
    grid-column: auto;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
  }
  .footer-bottom span + span {
    margin-top: 7px;
  }
  .subscription-card {
    padding: 34px 26px;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .site-header {
    height: 80px;
  }
  .site-header.scrolled {
    height: 77px;
  }
  .brand {
    width: 75px;
    padding: 3px;
  }
  .nav-cta {
    display: none;
  }
  .eyebrow {
    font-size: 12px;
  }
  .hero-inner {
    padding-top: 88px;
  }
  .hero-copy h1 {
    font-size: 30px;
  }
  .hero-text {
    font-size: 18px;
  }
  .hero-sub {
    font-size: 23px;
  }
  .hero-bottom-inner {
    padding: 12px 0;
    font-size: 12px;
  }
  .hero-bottom-inner span:nth-child(2) {
    display: none;
  }
  .hero-side {
    min-height: 220px;
  }
  .hero-orbit {
    width: 220px;
    height: 220px;
  }
  .mini-stats {
    grid-template-columns: repeat(2, 120px);
    gap: 8px;
  }
  .mini-card {
    padding: 14px 12px;
  }
  .mini-card span:last-child {
    font-size: 13px;
  }
  .booking-card {
    padding: 22px 17px;
    border-radius: 22px;
  }
  .highlight-grid,
  .facility-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 190px;
  }
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }
  .lightbox {
    padding: 15px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
  .subscription-card {
    padding: 30px 20px;
  }
  .floating-wa {
    right: 14px;
    bottom: 14px;
  }
  .tournament-section {
    min-height: 560px;
  }
  .tournament-copy h2 {
    font-size: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .floating-wa {
    animation: none;
  }
  .btn,
  .sport-card,
  .facility-card,
  .sport-image img,
  .gallery-item img {
    transition: none;
  }
}
