/* ============================================================
   PEMBROKESHIRE PADEL — site.css
   Colours: #1C3651 (navy) | #6EADB4 (teal) | #CDE074 (lime)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Exo+2:wght@300;400;500;600;700&display=swap');

:root {
  --navy:       #1C3651;
  --navy-dark:  #142840;
  --navy-light: #253f5c;
  --teal:       #6EADB4;
  --teal-light: #8ec5cb;
  --teal-dark:  #4e8d94;
  --lime:       #CDE074;
  --lime-dark:  #afc14f;
  --white:      #FFFFFF;var(--navy)
  --off-white:  #F4F8FA;
  --text-light: #e8f0f4;
  --text-muted: #a0bbc4;

  --font-display: 'Audiowide', sans-serif;
  --font-body:    'Exo 2', sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 4px 24px rgba(28,54,81,0.18);
  --shadow-lg: 0 12px 48px rgba(28,54,81,0.28);

  --nav-height: 92px;
  --max-width:  1200px;
  --section-pad: 96px;
}

@media(max-width:767px){
    :root {
        --max-width: 100%;
    }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.03em;
}
h1 { font-size: clamp(1.8rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; }
p  { font-weight: 300; }

/* ── Utility ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.section--navy   { background: var(--navy); }
.section--teal   { background: var(--teal); }
.section--lime   { background: var(--lime); }
.section--offwhite { background: var(--off-white); }

.text-centre { text-align: center; }
.text-teal   { color: var(--teal); }
.text-lime   { color: var(--lime); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-lime {
  background: var(--lime);
  color: var(--navy) !important;
  border-color: var(--lime);
}
.btn-lime:hover {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(205,224,116,0.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(110,173,180,0.4);
}
.btn-lg { padding: 18px 44px; font-size: 0.88rem; }
.btn svg { width: 18px; height: 18px; }

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
  display: block;
}
.section-label--teal { color: var(--teal); }
.section-label--navy { color: var(--navy); }

/* ── Section Header ── */
.section-header { margin-bottom: 56px; }
.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  max-width: 560px;
  font-weight: 300;
}
.section-header.text-centre p { margin-left: auto; margin-right: auto; }

/* ── Divider accent ── */
.accent-line {
  width: 48px;
  height: 3px;
  background: var(--lime);
  margin: 20px 0;
  border-radius: 2px;
}
.accent-line--teal { background: var(--teal); }
.accent-line--centre { margin: 20px auto; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(28, 54, 81, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(110,173,180,0.2);
  transition: background 0.3s ease;
}
.site-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 64px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.3;
}
.nav-logo-text span {
  display: block;
  color: var(--teal);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--lime) !important;
  background: rgba(205,224,116,0.08);
}
.nav-links .btn { margin-left: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--nav-height) + 40px);
  left: 0; right: 0;
  background: var(--navy-dark);
  padding: 24px;
  z-index: 999;
  border-bottom: 2px solid var(--teal);
  transform: translateY(-8px);
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(110,173,180,0.15);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--lime); }
.mobile-nav .btn { margin-top: 20px; width: 100%; justify-content: center; padding: 1rem 2rem; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--navy-dark);
}
@media(max-width:767px){
    .hero {
        min-height: 90vh;
    }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-image: url('/media/yupjmkl0/padel.jpg');
  opacity: 0.75;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(28,54,81,0.95) 40%, rgba(28,54,81,0.4) 100%);
}
/* Geometric accent */
.hero-geo {
  position: absolute;
  top: -80px; right: -80px;
  width: 600px; height: 600px;
  border: 1px solid rgba(110,173,180,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-geo::before {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(205,224,116,0.1);
  border-radius: 50%;
}
.hero-geo::after {
  content: '';
  position: absolute;
  inset: 120px;
  border: 1px solid rgba(110,173,180,0.1);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--lime);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar {
  background: var(--teal);
  padding: 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(28,54,81,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────
   INTRO / ABOUT SECTION
───────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}
.intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.intro-image:hover img { transform: scale(1.04); }
.intro-image-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius);
}
.intro-content h2 { color: var(--navy); margin-bottom: 8px; }
.intro-content p { color: #4a6070; margin-bottom: 20px; }
.intro-features {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 40px; height: 40px;
  background: var(--lime);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.feature-text span { font-size: 0.85rem; color: #5a7080; }

/* ─────────────────────────────────────────
   SPORT EXPLAINER — DARK SECTION
───────────────────────────────────────── */
.sport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.sport-card {
  background: var(--navy-light);
  padding: 40px 32px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.sport-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.sport-card:hover::before { transform: scaleX(1); }
.sport-card:hover { background: var(--navy-dark); }
.sport-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(110,173,180,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.sport-card h3 { color: var(--lime); margin-bottom: 12px; font-size: 1rem; }
.sport-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; font-weight: 300; }

/* ─────────────────────────────────────────
   BOOK SECTION
───────────────────────────────────────── */
.book-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.book-image {
  position: relative;
  overflow: hidden;
}
.book-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.book-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(28,54,81,0.3));
}
.book-content {
  background: var(--navy);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.book-content h2 { color: var(--white); margin-bottom: 8px; }
.book-content p { color: var(--text-light); font-weight: 300; margin-bottom: 16px; }
.book-steps {
  margin: 28px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.book-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.book-step-num {
  width: 36px; height: 36px;
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.book-step-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.book-step-text span { color: var(--text-muted); font-size: 0.82rem; }

/* ─────────────────────────────────────────
   TESTIMONIALS / SOCIAL PROOF
───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(110,173,180,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--lime);
  position: absolute;
  top: 12px; left: 24px;
  opacity: 0.6;
}
.testimonial-text {
  margin-top: 32px;
  font-style: italic;
  color: #4a6070;
  font-size: 0.92rem;
  line-height: 1.7;
}
.testimonial-author {
  margin-top: 20px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
}
.testimonial-author span {
  display: block;
  font-weight: 300;
  color: var(--teal);
  font-size: 0.78rem;
}

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-banner {
  background: var(--lime);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border: 1px solid rgba(28,54,81,0.08);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px; height: 240px;
  border: 1px solid rgba(28,54,81,0.06);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--navy); margin-bottom: 12px; }
.cta-banner p { color: var(--navy-light); font-size: 1rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 8px; }
.contact-info p { color: var(--text-light); font-weight: 300; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(205,224,116,0.12);
  border: 1px solid rgba(205,224,116,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lime);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-detail-text strong {
  display: block;
  color: var(--text-light);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 0.65rem;
}
.contact-detail-text span { color: var(--text-muted); font-size: 0.9rem; }
.contact-social { margin-top: 36px; }
.contact-social-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 44px; height: 44px;
  background: rgba(110,173,180,0.12);
  border: 1px solid rgba(110,173,180,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all 0.2s ease;
}
.social-link:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.social-link svg { width: 18px; height: 18px; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(110,173,180,0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
  width: 100%;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(160,187,196,0.5); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.09);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(110,173,180,0.15);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(110,173,180,0.1);
  margin-bottom: 32px;
}
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: rgba(160,187,196,0.5); font-size: 0.78rem; }
.footer-bottom a { color: var(--teal); font-size: 0.78rem; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--lime); }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border: 1px solid rgba(110,173,180,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: var(--teal-light); font-size: 1.05rem; max-width: 540px; font-weight: 300; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--teal); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb span { color: rgba(160,187,196,0.4); }

/* ─────────────────────────────────────────
   THE SPORT PAGE
───────────────────────────────────────── */
.sport-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.sport-vs {
  display: flex;
  gap: 20px;
  margin: 32px 0;
}
.vs-pill {
  flex: 1;
  text-align: center;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.vs-pill:hover { border-color: var(--teal); }
.vs-pill-icon { font-size: 2rem; margin-bottom: 8px; }
.vs-pill h4 { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 4px; }
.vs-pill p  { font-size: 0.78rem; color: #5a7080; }
.vs-divider {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  padding: 0 4px;
}

.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-bottom: 1px solid rgba(110,173,180,0.15);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal-dark); }
.faq-question.open { color: var(--teal-dark); }
.faq-arrow {
  width: 20px; height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: #4a6070;
  font-size: 0.92rem;
  line-height: 1.7;
  padding-bottom: 0;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  text-align: center;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  width: 80px; height: 80px;
  background: var(--teal);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}
.team-card h3 { font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.team-card span { font-size: 0.78rem; color: var(--teal); }

.location-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.location-block h3 { color: var(--lime); margin-bottom: 12px; }
.location-block p { color: var(--text-light); font-weight: 300; line-height: 1.7; }
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-light);
  aspect-ratio: 4/3;
}
.location-map iframe { width: 100%; height: 100%; border: none; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --section-pad: 64px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .intro-grid,
  .sport-intro-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .book-split { grid-template-columns: 1fr; }
  .book-image { height: 280px; }
  .book-content { padding: 48px 40px; }

  .stats-bar .container { grid-template-columns: repeat(3, 1fr); }

  .sport-grid { grid-template-columns: 1fr; gap: 2px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .location-block { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 640px) {
  :root { --section-pad: 48px; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-bar .container { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(28,54,81,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .sport-vs { flex-direction: column; }
  .vs-divider { display: none; }
  .book-content { padding: 36px 24px; }
  .location-block { padding: 36px 24px; }
}

@media(max-width:960px){
    .court-rates {
        grid-template-columns: 1fr !important;
    }
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-4 { animation-delay: 0.55s; opacity: 0; }
