/* ============================================================
   FALCON CRICKET CLUB — styles.css
   ============================================================ */

/* 1. GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* 2. CSS VARIABLES
   ============================================================ */
:root {
  --primary:      #DB5928;
  --primary-dark: #b84420;
  --secondary:    #2C504D;
  --secondary-dark: #1e3a38;
  --white:        #FFFFFF;
  --near-black:   #111111;
  --light-bg:     #F9F5F3;
  --mid-grey:     #6b7280;
  --border:       rgba(0,0,0,0.08);

  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.15);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.08);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-pill:  100px;

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height:   80px;
  --section-pad:  100px;
}

/* 3. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--near-black);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

/* 4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--near-black);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  font-size: 1.05rem;
  color: #444;
}

.text-white p,
.text-white h1,
.text-white h2,
.text-white h3 {
  color: var(--white);
}

.text-white p { color: rgba(255,255,255,0.82); }

.lead {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
}

/* 5. LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-pad) 0;
}

.section--sm {
  padding: 60px 0;
}

.section--dark {
  background: var(--secondary);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p { color: rgba(255,255,255,0.80); }

.section--deeper {
  background: var(--secondary-dark);
  color: var(--white);
}

.section--deeper h2,
.section--deeper h3,
.section--deeper h4 { color: var(--white); }
.section--deeper p { color: rgba(255,255,255,0.78); }

.section--light {
  background: var(--light-bg);
}

.section__header {
  margin-bottom: 3.5rem;
}

.section__header--center {
  text-align: center;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section--dark .section__label,
.section--deeper .section__label {
  color: rgba(219, 89, 40, 0.9);
}

.section__title {
  margin-bottom: 1.1rem;
}

.section__subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
}

.section__header--center .section__subtitle {
  margin: 0 auto;
}

.section--dark .section__subtitle,
.section--deeper .section__subtitle {
  color: rgba(255,255,255,0.72);
}

/* 6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(219, 89, 40, 0.35);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 6px 28px rgba(219, 89, 40, 0.50);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn--secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--near-black);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--near-black);
  border-color: var(--near-black);
}

.btn--outline-dark:hover {
  background: var(--near-black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* 7. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.nav--scrolled {
  background: rgba(44, 80, 77, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

/* Logo + link legibility when nav is transparent over the hero image */
.nav:not(.nav--scrolled) .nav__logo img {
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
}

.nav:not(.nav--scrolled) .nav__link {
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}

.nav__inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: calc(100% - 24px);
}

.nav__link:hover {
  color: rgba(255,255,255,0.85);
}

.nav__link--cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(219,89,40,0.35);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(219,89,40,0.5);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 8. HERO (HOMEPAGE)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a1a18;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('stadium-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* Vignette: dark edges, clear center */
    radial-gradient(ellipse at 50% 45%, transparent 30%, rgba(0,0,0,0.52) 100%),
    /* Bottom gradient: transparent at top-center → dark at bottom third */
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent 42%,
      rgba(0, 0, 0, 0.45) 65%,
      rgba(0, 0, 0, 0.75) 100%
    );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1040px;
  padding-top: var(--nav-height);
}

.hero__headline {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero__subheadline {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero__buttons {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.hero__scroll-hint span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-hint .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* 9. HERO PARTICLES
   ============================================================ */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
  animation: floatOrb var(--orb-dur, 14s) ease-in-out infinite;
  will-change: transform;
}

.hero__orb--warm {
  background: radial-gradient(
    circle at 40% 35%,
    rgba(219, 89, 40, 0.55) 0%,
    rgba(219, 89, 40, 0.20) 50%,
    rgba(219, 89, 40, 0) 70%
  );
  filter: blur(14px);
}

.hero__orb--cool {
  background: radial-gradient(
    circle at 40% 35%,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0) 70%
  );
  filter: blur(22px);
}

.hero__orb--teal {
  background: radial-gradient(
    circle at 40% 35%,
    rgba(44, 80, 77, 0.6) 0%,
    rgba(44, 80, 77, 0.2) 50%,
    rgba(44, 80, 77, 0) 70%
  );
  filter: blur(18px);
}

@keyframes floatOrb {
  0%   { transform: translate(0, 0) scale(1); }
  20%  { transform: translate(18px, -28px) scale(1.06); }
  40%  { transform: translate(-14px, -55px) scale(0.94); }
  60%  { transform: translate(26px, -38px) scale(1.08); }
  80%  { transform: translate(-8px, -18px) scale(0.97); }
  100% { transform: translate(0, 0) scale(1); }
}

/* 10. HERO ANIMATIONS
   ============================================================ */
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

/* 11. INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 90px;
  background: linear-gradient(135deg, #172e2b 0%, var(--secondary) 60%, #1e3a38 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
}

.page-hero--dark-end::after {
  background: linear-gradient(to bottom, transparent, var(--near-black));
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto;
}

.page-hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.page-hero__headline {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.page-hero__subheadline {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* 12. INTRO STRIP (3 PILLARS)
   ============================================================ */
.intro-strip {
  padding: var(--section-pad) 0;
}

.intro-strip__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.pillar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.8rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar:hover {
  transform: translateY(-8px);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 18px 48px rgba(219, 89, 40, 0.38);
}

/* Text + button turn white on hover */
.pillar:hover .pillar__title,
.pillar:hover .pillar__body {
  color: var(--white);
}

.pillar:hover .btn--outline-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Icon strokes turn white on hover */
.pillar:hover .pillar__icon svg path,
.pillar:hover .pillar__icon svg circle {
  stroke: var(--white);
}

.pillar__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(219,89,40,0.12), rgba(219,89,40,0.06));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: var(--transition);
}

.pillar__icon svg path,
.pillar__icon svg circle {
  transition: stroke var(--transition);
}

.pillar:hover .pillar__icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

.pillar__title {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.pillar__body {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

/* 13. ABOUT STRIP
   ============================================================ */
.about-strip {
  padding: var(--section-pad) 0;
  background: var(--light-bg);
}

.about-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-strip__text .section__label {
  display: block;
  margin-bottom: 0.6rem;
}

.about-strip__text h2 {
  margin-bottom: 1.4rem;
}

.about-strip__text p {
  margin-bottom: 1.1rem;
}

.about-strip__text p:last-of-type { margin-bottom: 1.8rem; }

.about-strip__visual {
  position: relative;
}

.about-strip__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-strip__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-strip__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-strip__badge .badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.about-strip__badge .badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* 14. FACILITIES TEASER
   ============================================================ */
.facilities-teaser {
  padding: var(--section-pad) 0;
  background: var(--secondary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.facilities-teaser::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(219,89,40,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.facilities-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.facilities-teaser__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.facility-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  cursor: default;
}

.facility-feature:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.facility-feature::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7.5L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--transition);
}

.facility-feature:hover::before {
  transform: scale(1.2);
}

/* 15. ACADEMY TEASER
   ============================================================ */
.academy-teaser {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.academy-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.academy-teaser__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.academy-teaser__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academy-teaser__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.academy-teaser__badge span {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

/* 16. CORPORATE TEASER
   ============================================================ */
.corporate-teaser {
  padding: var(--section-pad) 0;
  background: var(--light-bg);
}

/* Widened intro column to match the rest of the page */
.corporate-teaser__intro {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.corporate-teaser__intro p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Align all four cards: consistent heading + text start position */
.corporate-teaser .card {
  display: flex;
  flex-direction: column;
}

.corporate-teaser .card__icon {
  min-height: 2.6rem;
}

.corporate-teaser .card__title {
  min-height: 2.6rem;
}

/* Interactive hover — same treatment as the offer cards */
.corporate-teaser .card {
  transition: var(--transition);
}

.corporate-teaser .card:hover {
  transform: translateY(-8px);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 18px 48px rgba(219, 89, 40, 0.38);
}

.corporate-teaser .card:hover .card__title,
.corporate-teaser .card:hover p {
  color: var(--white) !important;
}

/* 17. CTA BANNER
   ============================================================ */
.cta-banner {
  width: 100%;
  padding: var(--section-pad) 0;
  /* Heavy dark overlay keeps text legible over the stadium photo */
  background:
    linear-gradient(rgba(10, 14, 13, 0.86), rgba(10, 14, 13, 0.88)),
    url('stadium-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(219,89,40,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* 18. CARDS (GENERAL)
   ============================================================ */
.cards {
  display: grid;
  gap: 2rem;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__accent {
  width: 44px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1.4rem;
}

.card__icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.card__body {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

.card__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.6rem;
  padding: 1rem 1.2rem;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
}

.card__price strong {
  color: var(--near-black);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.card__price em {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--mid-grey);
}

.card--featured {
  border-color: var(--primary);
  border-width: 2px;
}

.card--featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 1.5rem;
  right: -1.8rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 24px;
  transform: rotate(45deg);
}

/* 19. BOOKING CARDS
   ============================================================ */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.8rem 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.booking-card__emoji {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.booking-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.booking-card__who {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.booking-card__body {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

.price-list {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.6rem;
}

.price-list__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-grey);
  margin-bottom: 0.8rem;
}

.price-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.price-list li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--near-black);
  display: flex;
  justify-content: space-between;
}

.price-list li span { color: var(--primary); }

.price-note {
  font-size: 0.82rem;
  color: var(--mid-grey);
  font-style: italic;
  margin-bottom: 1.6rem;
}

/* 20. FAQ ACCORDION
   ============================================================ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--near-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--primary); }

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq__item.open .faq__icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
  padding-bottom: 1.4rem;
  font-size: 0.98rem;
  color: #555;
  line-height: 1.75;
}

/* 21. FORMS
   ============================================================ */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--near-black);
  letter-spacing: 0.02em;
}

.form input,
.form select,
.form textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--near-black);
  background: var(--white);
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #aaa;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(219,89,40,0.12);
}

.form textarea {
  resize: vertical;
  min-height: 120px;
}

.form select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23111111' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form--dark input,
.form--dark select,
.form--dark textarea {
  /* background-color (not the `background` shorthand) so the select's
     chevron background-image / no-repeat / position are not wiped out */
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.form--dark input::placeholder,
.form--dark textarea::placeholder { color: rgba(255,255,255,0.4); }

.form--dark input:focus,
.form--dark select:focus,
.form--dark textarea:focus {
  border-color: var(--primary);
  background-color: rgba(255,255,255,0.12);
}

.form--dark label { color: rgba(255,255,255,0.85); }

.form--dark select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  color: rgba(255,255,255,0.8);
}

.form--dark select option { background: var(--secondary-dark); }

/* Honeypot — visually hidden (not display:none) so bots still fill it */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Inline form error (shown near the submit button on failure) */
.form-error {
  display: none;
  margin-top: 0.9rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(219, 89, 40, 0.12);
  border: 1px solid rgba(219, 89, 40, 0.4);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* Success message shown in place of the form after a successful send.
   Heading/paragraph colours inherit from the surrounding section, so this
   reads correctly on both the light (Contact) and dark (Academy/Corporate) cards. */
.form-success {
  text-align: center;
  padding: 1.5rem 0;
}

.form-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 20px rgba(219, 89, 40, 0.4);
}

.form-success__icon svg { width: 30px; height: 30px; }

.form-success h3 { margin-bottom: 0.5rem; }

.form-success p { font-size: 0.97rem; }

/* 22. CONTACT INFO
   ============================================================ */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(219,89,40,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.contact-item__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--near-black);
  line-height: 1.5;
}

.contact-item__value a:hover { color: var(--primary); }

/* 23. FEATURE CARDS (WHY CHOOSE, BRAND TRAITS)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-card__icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.feature-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.feature-card__body {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.68;
}

/* 24. STEPS (HOW IT WORKS)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(219,89,40,0.3));
}

.step {
  text-align: center;
  position: relative;
}

.step__num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 1.4rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(219,89,40,0.35);
}

.step__title {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.step__body {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.68;
}

/* 25. TAG CLOUD / IDEAL-FOR
   ============================================================ */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.tag:hover {
  background: rgba(219,89,40,0.25);
  border-color: var(--primary);
  color: var(--white);
}

/* 26. QUOTE BLOCK
   ============================================================ */
.quote-block {
  border-left: 4px solid var(--primary);
  padding: 1.2rem 1.8rem;
  background: rgba(219,89,40,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
}

.quote-block p {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--near-black);
  line-height: 1.7;
}

.quote-block--dark {
  background: rgba(255,255,255,0.08);
  border-left-color: var(--primary);
}

.quote-block--dark p {
  color: rgba(255,255,255,0.88);
}

/* 27. MISSION/VISION TWO-COL
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.two-col__item {
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
}

.two-col__item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.two-col__item p {
  font-size: 0.98rem;
  line-height: 1.75;
}

/* 28. PROGRAMME CARDS
   ============================================================ */
.programme-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.programme-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.programme-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  background: rgba(219,89,40,0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}

.programme-card__title {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.programme-card__who {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}

.programme-card__includes {
  margin-bottom: 1.8rem;
}

.programme-card__includes h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-grey);
  margin-bottom: 0.8rem;
}

.programme-card__includes ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.programme-card__includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.programme-card__includes li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.programme-card__schedule {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.programme-card__schedule span {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--near-black);
}

.programme-card__fee {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  white-space: nowrap;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1.8rem;
}

.programme-card__fee-per {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid-grey);
  white-space: nowrap;
}

/* 29. LOCATION SECTION
   ============================================================ */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 30. SOCIAL ICONS
   ============================================================ */
.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(219,89,40,0.4);
}

/* 31. FOOTER
   ============================================================ */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand .footer__logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.footer__brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.72;
  max-width: 280px;
  margin-bottom: 1.4rem;
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.3rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav a {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.68);
  transition: var(--transition);
  font-weight: 500;
}

.footer__nav a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer__contact-list li a:hover { color: var(--white); }

.footer__contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__contact-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer__bottom {
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.40);
}

.footer__copy a {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.footer__copy a:hover { color: var(--white); }

/* 32. WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.15);
  z-index: 800;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.2);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.4s ease infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* 33. STAT STRIP
   ============================================================ */
.stat-strip {
  padding: 60px 0;
  background: var(--near-black);
}

.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* 34. REASSURANCE STRIP
   ============================================================ */
.reassurance-strip {
  /* Darkened stadium photo so white text stays legible (item 11) */
  background:
    linear-gradient(rgba(20,30,29,0.84), rgba(20,30,29,0.88)),
    url('stadium-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
}

/* 35. UTILITIES
   ============================================================ */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-center { text-align: center; }
.text-white { color: var(--white); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-auto { margin-top: auto; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.divider {
  width: 56px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1.6rem;
}

.divider--center { margin-left: auto; margin-right: auto; }

/* 36. RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-strip__grid { grid-template-columns: 1fr; gap: 3rem; }
  .facilities-teaser__grid { grid-template-columns: 1fr; gap: 3rem; }
  .academy-teaser__grid { grid-template-columns: 1fr; gap: 3rem; }
  .cards--3 { grid-template-columns: 1fr 1fr; }
  .cards--4 { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stat-strip__grid { grid-template-columns: 1fr 1fr; }
  .about-strip__badge { bottom: 0.5rem; right: 0.5rem; }
}

/* 37. RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
    --nav-height: 70px;
  }

  /* Nav */
  .nav__toggle { display: flex; }

  .nav__logo img { height: 52px; }

  .nav__menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .nav__menu.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav__link::after { display: none; }

  .nav__link:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
  }

  .nav__link--cta {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  /* Hero */
  .hero__content {
    padding: calc(var(--nav-height) + 20px) 0 0;
  }

  .hero__headline { font-size: clamp(2.3rem, 9vw, 3.5rem); }
  .hero__subheadline { font-size: 1rem; }

  /* Cards */
  .cards--2,
  .cards--3,
  .cards--4 { grid-template-columns: 1fr; }

  .pillars { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-strip__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form__row { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }

  .about-strip__badge {
    width: 90px;
    height: 90px;
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .about-strip__badge .badge-num { font-size: 1.4rem; }
  .about-strip__badge .badge-text { font-size: 0.55rem; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .stat-strip__grid { grid-template-columns: 1fr 1fr; }
  .tag-cloud { gap: 0.5rem; }
}

/* ============================================================
   38. ABOUT PAGE
   ============================================================ */

/* Hero with stadium background + dark overlay (item 2) */
.page-hero--image {
  background-image:
    linear-gradient(135deg, rgba(23,46,43,0.90) 0%, rgba(44,80,77,0.82) 55%, rgba(30,58,56,0.90) 100%),
    url('stadium-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Intro stat cards — compact so they don't overwhelm the text (item 4) */
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  transition: var(--transition);
}

.about-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(219, 89, 40, 0.4);
}

.about-stat__icon {
  font-size: 1.7rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.about-stat__text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.about-stat__text p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #555;
}

/* Mission & Vision cards (item 7) */
.mv-card {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.mv-card:hover::before { transform: scaleY(1); }

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(219, 89, 40, 0.35);
}

.mv-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(219,89,40,0.12), rgba(219,89,40,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
  transition: var(--transition);
}

.mv-card:hover .mv-card__icon {
  background: var(--primary);
  transform: scale(1.06);
}

/* Part of Something Bigger — supporting image pair (item 8) */
.bigger__text { max-width: 760px; }

.bigger__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.bigger__figure { margin: 0; }

.bigger__figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.bigger__figure:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bigger__figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  letter-spacing: 0.02em;
}

/* What Falcon Stands For — icon-led value cards (item 9) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.value-card:hover::before { transform: scaleX(1); }

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(219,89,40,0.12), rgba(219,89,40,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--primary);
  margin: 0 auto 1.3rem;
  transition: var(--transition);
}

.value-card__icon svg { width: 32px; height: 32px; }

.value-card:hover .value-card__icon {
  background: linear-gradient(135deg, rgba(219,89,40,0.22), rgba(219,89,40,0.10));
  transform: scale(1.08);
}

/* Academy "Why Parents Trust Falcon" — premium solid-orange icon on hover */
.academy-page .value-card:hover .value-card__icon {
  background: var(--primary);
  color: #fff;
}

.value-card__title { font-size: 1.15rem; margin-bottom: 0.7rem; }

.value-card__body {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
}

/* Tighter desktop spacing across the inner content pages */
@media (min-width: 1025px) {
  .about-page .section,
  .facilities-page .section,
  .bookings-page .section,
  .academy-page .section,
  .corporate-page .section { padding-top: 72px; padding-bottom: 72px; }
  .about-page .page-hero,
  .facilities-page .page-hero,
  .bookings-page .page-hero,
  .academy-page .page-hero,
  .corporate-page .page-hero { padding-bottom: 60px; }
  .about-page .page-hero + .section,
  .facilities-page .page-hero + .section,
  .bookings-page .page-hero + .section,
  .academy-page .page-hero + .section,
  .corporate-page .page-hero + .section { padding-top: 44px; }
}

@media (max-width: 1024px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .bigger__media { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
}
