/* ============================================================
   İlk Adım Futbol Akademisi — styles.css
   ============================================================ */

/* --- Variables ------------------------------------------------ */
:root {
  --bg: #F0F4FF;
  --surface: #FFFFFF;
  --surface-2: #E3EAFF;
  --ink: #1A2138;
  --ink-soft: #4A5068;
  --accent: #3D5AFE;
  --accent-hover: #2440E4;
  --accent-2: #FF9100;
  --accent-2-hover: #E07F00;
  --line: rgba(26,33,56,0.10);
  --line-strong: rgba(26,33,56,0.22);
  --success: #2E7D32;
  --error: #C62828;

  --font-heading: 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'Fira Code', 'Consolas', monospace;

  --header-h: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --max-w: 1400px;
  --pad: clamp(16px, 4vw, 32px);

  interpolate-size: allow-keywords;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { :root { scroll-behavior: auto; } }
@media (max-width:768px) { :root { --header-h: 60px; } }

/* --- Reset ---------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px,1vw,17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; letter-spacing: -0.012em; }

/* --- Layout --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--pad);
}
main { padding-top: var(--header-h); }
section { padding: clamp(48px,8vw,96px) 0; position: relative; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--ink); color: var(--surface); }
.section-dark .section-title { color: var(--surface); }
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

.section-title {
  font-size: clamp(1.75rem,4vw,2.75rem);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: clamp(0.95rem,1.1vw,1.1rem);
}

/* --- Skip link ------------------------------------------------ */
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 10000;
  background: var(--accent); color: #fff; padding: 8px 18px;
  border-radius: var(--radius-sm); font-weight: 700;
}
.skip-link:focus { left: 16px; }

/* --- Header --------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  background: rgba(240, 244, 255, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(240,244,255,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink); z-index: 2;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.05rem; line-height: 1.15;
  display: flex; flex-direction: column;
}
.logo-sub { font-size: 0.7rem; font-weight: 400; color: var(--ink-soft); letter-spacing: 0.04em; }

/* Desktop nav */
.nav-desktop {
  display: none; align-items: center; gap: clamp(18px,2vw,32px);
}
@media (min-width:1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
  position: relative; transition: color 200ms;
}
.nav-desktop a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transform-origin: center; transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--accent); }
.nav-desktop a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-desktop a:not(.nav-cta).is-active { color: var(--accent); }
.nav-desktop a:not(.nav-cta).is-active::after { transform: scaleX(1); }

/* Nav CTA */
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 9px 22px; border-radius: 99px;
  font-weight: 700; font-size: 0.88rem;
  transition: background 240ms, transform 240ms, color 240ms;
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent-hover); color: #fff;
  transform: translateY(-2px);
}
.nav-desktop .nav-cta::after { display: none; }

/* Nav toggle (hamburger) */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 48px; height: 48px; z-index: 1100;
  padding: 11px 9px;
  border-radius: var(--radius-sm);
  background: rgba(61,90,254,0.06);
  border: 1.5px solid var(--line);
  transition: background 200ms, border-color 200ms;
}
.nav-toggle:hover, .nav-toggle:active {
  background: rgba(61,90,254,0.12);
  border-color: var(--accent);
}
@media (min-width:1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 100%; height: 3.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 200ms;
  transform-origin: center;
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* --- Mobile drawer (OUTSIDE header) --------------------------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 32px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-drawer a {
  display: block; padding: 14px 16px; font-size: 1.05rem; font-weight: 500;
  border-radius: var(--radius-sm); transition: background 200ms, color 200ms;
  color: var(--ink);
}
.mobile-drawer a:hover { background: var(--surface-2); color: var(--accent); }
.mobile-drawer a.is-active { color: var(--accent); background: rgba(61,90,254,0.06); }
.mobile-drawer .nav-cta {
  margin-top: 12px; text-align: center;
  background: var(--accent); color: #fff !important;
  border-radius: 99px; padding: 14px 24px;
}
.mobile-drawer .nav-cta:hover { background: var(--accent-hover); color: #fff; }

/* --- Buttons -------------------------------------------------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 14px 32px; border-radius: 99px;
  font-weight: 700; font-size: 1rem;
  transition: background 240ms, transform 240ms, box-shadow 240ms, color 240ms;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-hover); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -8px rgba(61,90,254,0.4);
}
.btn-primary .ball-icon { transition: transform 280ms; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line-strong);
  padding: 12px 28px; border-radius: 99px;
  font-weight: 600; font-size: 0.95rem;
  transition: background 240ms, border-color 240ms, transform 240ms, color 240ms;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--accent); transform: translateY(-2px);
}

.btn-accent2 {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-2); color: #fff;
  padding: 14px 32px; border-radius: 99px;
  font-weight: 700; font-size: 1rem;
  transition: background 240ms, transform 240ms, color 240ms;
  text-decoration: none;
}
.btn-accent2:hover, .btn-accent2:focus-visible {
  background: var(--accent-2-hover); color: #fff;
  transform: translateY(-2px);
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Hero ----------------------------------------------------- */
.hero {
  padding-top: clamp(40px,6vw,80px);
  padding-bottom: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.035;
  pointer-events: none;
}
.hero::before {
  content: ''; position: absolute; top: -180px; right: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,90,254,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -60px; left: -180px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,145,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 16px;
  padding: 6px 18px;
  background: rgba(255,145,0,0.08);
  border-radius: 99px;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero-title span {
  display: inline-block;
  opacity: 0; transform: translateY(36px);
  animation: wordReveal 700ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: calc(var(--w, 0) * 120ms + 200ms);
}
.hero-cta-wrap {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 32px;
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem,1.3vw,1.2rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px;
  margin-bottom: 48px;
}
.trust-strip span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink-soft);
  padding: 5px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 99px;
}
.trust-strip span::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent);
}

/* --- Configurator --------------------------------------------- */
.configurator-section {
  padding-top: 20px;
  padding-bottom: clamp(48px,8vw,96px);
}
.configurator {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px,4vw,40px);
  box-shadow: 0 16px 48px -12px rgba(26,33,56,0.10);
  border: 1px solid var(--line);
  position: relative;
}

/* Step indicator */
.step-indicator {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 32px;
}
.step-dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: var(--ink-soft);
  transition: all 320ms cubic-bezier(.2,.7,.2,1);
  position: relative; flex-shrink: 0;
}
.step-dot.active {
  background: var(--accent); border-color: var(--accent);
  color: #fff; transform: scale(1.12);
  box-shadow: 0 4px 16px -4px rgba(61,90,254,0.4);
}
.step-dot.done {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.step-line {
  width: clamp(32px,6vw,64px); height: 2px;
  background: var(--line-strong);
  transition: background 320ms;
}
.step-line.active { background: var(--accent); }
.step-labels {
  display: flex; justify-content: center; gap: clamp(24px,4vw,56px);
  font-size: 0.75rem; color: var(--ink-soft);
  margin-top: -20px; margin-bottom: 24px; font-weight: 500;
}

/* Step viewport */
.step-viewport { overflow: hidden; }
.step-track {
  display: flex;
  transition: transform 480ms cubic-bezier(.2,.7,.2,1);
}
.step-panel {
  min-width: 100%; padding: 8px 0;
}
.step-heading {
  font-size: 1.15rem; text-align: center;
  margin-bottom: 20px; color: var(--ink);
}

/* Option cards */
.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.option-card {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px; text-align: center;
  cursor: pointer;
  transition: all 280ms cubic-bezier(.2,.7,.2,1);
}
.option-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px rgba(61,90,254,0.18);
}
.option-card.selected {
  border-color: var(--accent);
  background: rgba(61,90,254,0.06);
  box-shadow: 0 0 0 3px rgba(61,90,254,0.12);
}
.option-card .option-icon {
  width: 44px; height: 44px; margin: 0 auto 12px;
  color: var(--accent);
}
.option-card .option-label {
  display: block; font-weight: 700; font-size: 1.05rem; margin-bottom: 4px;
}
.option-card .option-desc {
  display: block; font-size: 0.82rem; color: var(--ink-soft);
}

/* Config result */
.config-result {
  display: none;
  text-align: center;
  padding-top: 24px;
  animation: resultFadeIn 500ms cubic-bezier(.2,.7,.2,1);
}
.config-result.is-visible { display: block; }
@keyframes resultFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-summary {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 20px;
}
.result-tag {
  display: inline-block; padding: 5px 14px;
  background: var(--surface-2); border-radius: 99px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
}

/* SVG badge */
.camp-badge {
  width: 140px; height: auto; margin: 0 auto 20px;
  transition: all 400ms cubic-bezier(.2,.7,.2,1);
}
.camp-badge .badge-shield { fill: var(--accent); transition: fill 400ms; }
.config-result[data-accommodation="yatili"] .badge-shield { fill: var(--accent-2); }
.badge-ball { fill: #fff; }
.badge-star { fill: #FFD54F; opacity: 0; transition: opacity 300ms; }
.badge-star.visible { opacity: 1; }

/* Price */
.price-block { margin: 20px 0; }
.price-label { display: block; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 4px; }
.price-original {
  display: block; font-family: var(--font-mono); font-weight: 500;
  font-size: 1.1rem; color: var(--ink-soft);
  text-decoration: line-through; margin-bottom: 2px;
}
.price-value {
  display: block;
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(2rem,5vw,3rem);
  color: var(--accent);
}
.price-value.morphing { animation: priceMorph 600ms cubic-bezier(.2,.7,.2,1); }
@keyframes priceMorph {
  0% { transform: scale(0.75); opacity: 0.3; color: var(--accent-2); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; color: var(--accent); }
}
.price-discount {
  display: block; font-size: 0.82rem; color: var(--accent-2);
  font-weight: 600; margin-top: 4px;
}
.price-note {
  display: block; font-size: 0.75rem; color: var(--ink-soft);
  margin-top: 8px; font-style: italic;
}

/* Config nav */
.config-nav {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 24px;
}
.config-nav button { min-width: 100px; }
.config-nav button:disabled { opacity: 0.35; cursor: not-allowed; }

.result-cta { margin-top: 24px; }
#config-reset { margin-top: 12px; }

/* --- Stats strip ---------------------------------------------- */
.stats-strip { padding: clamp(32px,6vw,64px) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width:640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-number {
  display: block;
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(1.8rem,4vw,2.8rem);
  color: var(--accent);
  line-height: 1.2;
}
.stat-label {
  display: block; font-size: 0.85rem; color: var(--ink-soft);
  margin-top: 4px; font-weight: 500;
}

/* --- Camp cards ------------------------------------------------ */
.camp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.camp-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.camp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px -8px rgba(61,90,254,0.18);
}
.camp-card-img {
  height: 180px; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 0.85rem; position: relative;
  overflow: hidden;
}
.camp-card-img img { width: 100%; height: 100%; object-fit: cover; }
.camp-badge-capacity {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 12px; border-radius: 99px;
  font-size: 0.75rem; font-weight: 700;
  background: rgba(255,255,255,0.92); color: var(--ink);
  backdrop-filter: blur(4px);
}
.camp-badge-capacity.hot { background: var(--accent-2); color: #fff; }
.camp-card-body { padding: 20px; }
.camp-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.camp-card-meta {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-size: 0.82rem; color: var(--ink-soft);
}
.camp-card-meta span { display: flex; align-items: center; gap: 4px; }
.camp-card-price {
  margin-top: 12px; font-family: var(--font-mono); font-weight: 500;
  font-size: 1.1rem; color: var(--accent);
}

/* --- Includes grid -------------------------------------------- */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width:768px) { .includes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:480px) { .includes-grid { grid-template-columns: 1fr; } }
.include-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px,3vw,32px);
  text-align: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.include-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -6px rgba(61,90,254,0.12);
}
.include-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: rgba(61,90,254,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: background 280ms, transform 280ms;
}
.include-card:hover .include-icon {
  background: var(--accent); color: #fff;
  transform: scale(1.08);
}
.include-icon svg { width: 26px; height: 26px; }
.include-card h3 { font-size: 1rem; margin-bottom: 6px; }
.include-card p { font-size: 0.85rem; color: var(--ink-soft); }

/* --- Pricing packages ----------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width:768px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }
.pkg-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px,3vw,36px);
  text-align: center;
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px -8px rgba(61,90,254,0.18);
}
.pkg-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px -8px rgba(61,90,254,0.18);
}
.pkg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 4px 18px; border-radius: 99px;
  background: var(--accent-2); color: #fff;
  font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.pkg-name { font-size: 1.25rem; margin-bottom: 4px; }
.pkg-type { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 16px; }
.pkg-price {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(1.6rem,3vw,2.2rem);
  color: var(--accent); margin-bottom: 4px;
}
.pkg-period { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 20px; }
.pkg-list { text-align: left; margin-bottom: 20px; }
.pkg-list li {
  padding: 6px 0; font-size: 0.88rem;
  display: flex; align-items: flex-start; gap: 8px;
}
.pkg-list li::before {
  content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.pkg-list .excluded { color: var(--ink-soft); }
.pkg-list .excluded::before { content: '—'; color: var(--ink-soft); }
.pricing-note {
  text-align: center; font-size: 0.8rem; color: var(--ink-soft);
  margin-top: 28px; font-style: italic;
}

/* --- Testimonials --------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width:768px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: clamp(20px,3vw,28px);
  position: relative;
}
.testimonial-card:first-child {
  grid-row: span 2;
  padding: clamp(28px,4vw,40px);
}
.section-dark .testimonial-card { color: rgba(255,255,255,0.92); }
.testimonial-quote {
  font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 16px; font-style: italic;
}
.testimonial-author { font-weight: 700; font-size: 0.88rem; }
.testimonial-meta { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* --- Gallery masonry ------------------------------------------ */
.masonry-grid {
  columns: 3;
  column-gap: 16px;
}
@media (max-width:768px) { .masonry-grid { columns: 2; } }
@media (max-width:480px) { .masonry-grid { columns: 1; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}
.masonry-item img {
  width: 100%; display: block;
  transition: transform 480ms cubic-bezier(.2,.7,.2,1);
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 0.82rem;
  min-height: 200px;
}

/* --- FAQ accordion -------------------------------------------- */
.faq-list {
  max-width: 760px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-weight: 700; font-size: 1rem;
  cursor: pointer;
  list-style: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 24px;
}
.faq-body p {
  font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* --- Process / timeline --------------------------------------- */
.process-timeline {
  max-width: 680px; margin: 0 auto;
  position: relative;
  padding-left: 48px;
}
.process-timeline::before {
  content: ''; position: absolute; left: 18px; top: 0; bottom: 0;
  width: 2px; background: var(--line-strong);
}
.process-step {
  position: relative;
  padding-bottom: 40px;
}
.process-step:last-child { padding-bottom: 0; }
.process-dot {
  position: absolute; left: -48px; top: 2px;
  width: 38px; height: 38px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  z-index: 2;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.process-step .process-time {
  font-size: 0.78rem; color: var(--accent-2); font-weight: 600; margin-bottom: 6px;
}
.process-step p { font-size: 0.9rem; color: var(--ink-soft); }

/* --- Team ----------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -6px rgba(61,90,254,0.12);
}
.team-photo {
  height: 220px; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 0.82rem;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 20px; }
.team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.team-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.team-bio { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }

/* --- News strip ----------------------------------------------- */
.news-strip { padding: clamp(32px,4vw,56px) 0; }
.news-strip h3 { font-size: 1.1rem; margin-bottom: 16px; }
.news-strip ul { max-width: 680px; }
.news-strip li {
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: 0.9rem; color: var(--ink-soft);
}
.news-strip time {
  font-weight: 700; color: var(--ink); margin-right: 8px;
}

/* --- CTA strip ------------------------------------------------ */
.cta-strip {
  background: var(--accent);
  color: #fff; text-align: center;
  padding: clamp(48px,8vw,80px) 0;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip h2 { font-size: clamp(1.6rem,4vw,2.5rem); margin-bottom: 12px; }
.cta-strip p { font-size: 1.05rem; opacity: 0.85; max-width: 480px; margin: 0 auto 28px; }
.cta-strip .btn-primary {
  background: #fff; color: var(--accent);
}
.cta-strip .btn-primary:hover, .cta-strip .btn-primary:focus-visible {
  background: var(--surface-2); color: var(--accent-hover);
  transform: translateY(-2px);
}

/* --- Contact page cards --------------------------------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px,3vw,28px);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px rgba(61,90,254,0.12);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: rgba(61,90,254,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 14px;
  transition: background 280ms, color 280ms;
}
.contact-card:hover .contact-card-icon { background: var(--accent); color: #fff; }
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 0.92rem; margin-bottom: 8px; color: var(--ink); }
.contact-card a {
  color: var(--accent); font-weight: 600; font-size: 0.95rem;
  word-break: break-word; overflow-wrap: anywhere; transition: color 200ms;
}
.contact-card a:hover { color: var(--accent-hover); }
.contact-card p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; }

/* Hours table */
.hours-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px 20px; font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}
.hours-grid .day { font-weight: 600; }
.hours-grid .time { color: var(--ink-soft); }

/* --- Forms ---------------------------------------------------- */
.form-section { max-width: 640px; margin: 0 auto; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width:640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full-width { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.85rem; font-weight: 600; color: var(--ink);
}
.field input:not([type="checkbox"]),
.field select,
.field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font: inherit; font-size: 0.95rem;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(61,90,254,0.12);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }
.field.kvkk {
  flex-direction: row; align-items: flex-start; gap: 10px;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field.kvkk label { font-weight: 400; font-size: 0.82rem; color: var(--ink-soft); }
.form-submit {
  margin-top: 8px;
}
.form-submit .btn-primary { width: 100%; justify-content: center; }
@media (min-width:640px) { .form-submit .btn-primary { width: auto; } }

/* --- Footer --------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(48px,8vw,72px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px,4vw,48px);
  margin-bottom: 40px;
}
@media (max-width:768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p { font-size: 0.85rem; line-height: 1.6; margin-top: 12px; }
.footer-logo {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.15rem; color: #fff;
}
.footer-contact a { word-break: break-word; overflow-wrap: anywhere; }
.site-footer h4 {
  color: #fff; font-size: 0.88rem; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.site-footer nav a, .footer-legal a, .footer-nav a {
  display: block; padding: 4px 0; font-size: 0.85rem;
  transition: color 200ms;
}
.site-footer a:hover { color: var(--accent); }
.footer-contact a { display: block; padding: 4px 0; font-size: 0.85rem; }
.footer-contact p { font-size: 0.82rem; margin-top: 8px; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  padding-bottom: 80px;
  text-align: center; font-size: 0.78rem;
}
@media (min-width:641px) { .footer-bottom { padding-bottom: 0; } }

/* --- Cookie banner -------------------------------------------- */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.18);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width:640px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h4 { font-size: 0.95rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 14px; }
.cookie-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cookie-actions button {
  flex: 1; min-width: 100px; min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.85rem;
  cursor: pointer; transition: background 200ms, color 200ms;
}
.cookie-actions .cookie-accept {
  background: var(--accent); color: #fff; border: none;
  box-shadow: 0 4px 12px -2px rgba(61,90,254,0.3);
  font-weight: 700;
}
.cookie-actions .cookie-accept:hover {
  background: var(--accent-hover); color: #fff;
  box-shadow: 0 6px 16px -2px rgba(61,90,254,0.4);
  transform: translateY(-1px);
}
.cookie-actions .cookie-reject {
  background: var(--surface); color: var(--ink); border: 1.5px solid var(--line-strong);
  font-weight: 600;
}
.cookie-actions .cookie-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--accent); transform: translateY(-1px); }
.cookie-actions .cookie-settings {
  background: transparent; color: var(--ink-soft); border: 1.5px solid var(--line);
}
.cookie-actions .cookie-settings:hover { background: var(--surface-2); color: var(--ink); }
@media (max-width:640px) {
  .cookie-banner {
    bottom: 0; left: 0; right: 0; max-width: none;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 24px -4px rgba(0,0,0,0.18);
  }
  .cookie-banner p { margin-bottom: 10px; font-size: 0.78rem; }
  .cookie-actions { gap: 6px; }
  .cookie-actions button { min-height: 46px; font-size: 0.84rem; }
}

/* --- Table scroll wrapper ------------------------------------- */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
.table-scroll table { border-collapse: collapse; }
.table-scroll th, .table-scroll td {
  padding: 10px 16px; text-align: left;
  border-bottom: 1px solid var(--line); font-size: 0.88rem;
}
.table-scroll th { font-weight: 700; background: var(--surface-2); }

/* --- Cancellation policy tiers -------------------------------- */
.cancel-tiers {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin: 24px 0;
}
.cancel-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px; text-align: center;
}
.cancel-tier .tier-period { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.cancel-tier .tier-refund { font-family: var(--font-mono); color: var(--accent); font-weight: 500; }
.cancel-tier.no-refund { border-color: var(--error); }
.cancel-tier.no-refund .tier-refund { color: var(--error); }

/* --- Utility classes ------------------------------------------ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mono { font-family: var(--font-mono); }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.page-hero {
  padding-top: clamp(40px,6vw,64px);
  padding-bottom: clamp(32px,5vw,56px);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--ink-soft); max-width: 520px;
  margin: 0 auto; font-size: clamp(0.95rem,1.1vw,1.1rem);
}
.prose {
  max-width: 760px; margin: 0 auto;
}
.prose h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); line-height: 1.7; }
.prose ul, .prose ol { margin: 12px 0 16px 20px; }
.prose li { margin-bottom: 6px; color: var(--ink-soft); line-height: 1.6; padding-left: 4px; }
.prose ol { list-style: decimal; }
.prose ul { list-style: disc; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose a:hover { color: var(--accent-hover); }
.prose strong { color: var(--ink); }

/* --- Thank you page ------------------------------------------- */
.thank-you-content {
  text-align: center;
  padding: clamp(32px,8vw,80px) 0;
}
.thank-you-content h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.thank-you-content p { color: var(--ink-soft); font-size: 1.1rem; max-width: 440px; margin: 0 auto 28px; }

/* Sitemap page */
.sitemap-list { max-width: 600px; margin: 0 auto; }
.sitemap-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.sitemap-list a { color: var(--accent); font-weight: 500; font-size: 1rem; }
.sitemap-list a:hover { color: var(--accent-hover); text-decoration: underline; }

/* --- Reveal animation ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 750ms cubic-bezier(.16,1,.3,1),
              transform 750ms cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-title span { opacity: 1; transform: none; animation: none; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* --- Niche animations (football) ------------------------------ */
@keyframes ballBounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-10px); }
  45% { transform: translateY(-3px); }
  65% { transform: translateY(-7px); }
  85% { transform: translateY(-1px); }
}

@keyframes grassSway {
  0%, 100% { transform: rotate(-1.5deg) scaleY(1); }
  25% { transform: rotate(1deg) scaleY(1.02); }
  50% { transform: rotate(2deg) scaleY(0.98); }
  75% { transform: rotate(-0.5deg) scaleY(1.01); }
}
.grass-decor {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40px; overflow: hidden; pointer-events: none;
}
.grass-blade {
  position: absolute; bottom: 0;
  width: 3px; background: linear-gradient(to top, #4CAF50, #81C784);
  border-radius: 2px 2px 0 0;
  transform-origin: bottom center;
  animation: grassSway 3.5s ease-in-out infinite;
}

@keyframes fieldLineDraw {
  from { stroke-dashoffset: 600; }
  to { stroke-dashoffset: 0; }
}
.field-line-svg { stroke-dasharray: 600; stroke-dashoffset: 600; }
.field-line-svg.is-in { animation: fieldLineDraw 1.8s cubic-bezier(.4,0,.2,1) forwards; }

@keyframes netShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.net-pattern {
  background-image:
    linear-gradient(45deg, rgba(61,90,254,0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(61,90,254,0.04) 25%, transparent 25%);
  background-size: 24px 24px;
}

@keyframes goalPostGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,90,254,0); }
  50% { box-shadow: 0 0 20px 4px rgba(61,90,254,0.15); }
}
.goal-glow { animation: goalPostGlow 4s ease-in-out infinite; }

@keyframes stadiumWave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.15); }
}

/* Pitch-stripe hover for camp cards */
.camp-card::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0, transparent 48%,
    rgba(76,175,80,0.04) 48%, rgba(76,175,80,0.04) 52%,
    transparent 52%, transparent 100%
  );
  opacity: 0;
  transition: opacity 400ms;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}
.camp-card:hover::before { opacity: 1; }
.camp-card { position: relative; }

/* Featured pricing card glow */
.pkg-card.featured { animation: goalPostGlow 4s ease-in-out infinite; }

/* Stats hover lift */
.stat { transition: transform 300ms cubic-bezier(.16,1,.3,1); }
.stat:hover { transform: translateY(-4px); }

/* Include-card icon spin on hover */
@keyframes iconKick {
  0% { transform: scale(1.08) rotate(0deg); }
  25% { transform: scale(1.12) rotate(-8deg); }
  75% { transform: scale(1.12) rotate(6deg); }
  100% { transform: scale(1.08) rotate(0deg); }
}
.include-card:hover .include-icon { animation: iconKick 500ms ease-in-out; }

/* FAQ item active accent bar */
.faq-item[open] summary {
  color: var(--accent);
}
.faq-item[open] {
  border-bottom-color: var(--accent);
}

/* Contact card hover icon pulse */
@keyframes contactPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,90,254,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(61,90,254,0); }
}
.contact-card:hover .contact-card-icon { animation: contactPulse 800ms ease-out; }

/* Focus ring on dark sections */
.section-dark :focus-visible,
.site-footer :focus-visible { outline-color: #fff; }

/* CTA strip button glow on hover */
.cta-strip .btn-primary:hover {
  box-shadow: 0 8px 32px -4px rgba(255,255,255,0.3);
}

/* CTA strip whistle-blow glow */
.cta-strip::after {
  content: ''; position: absolute; bottom: -60px; left: 50%;
  width: 400px; height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Testimonial card hover */
.testimonial-card {
  transition: transform 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms, border-color 300ms;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px -6px rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}

/* Masonry item overlay label on hover */
.masonry-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,33,56,0.35) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,1,.3,1);
  border-radius: inherit;
}
.masonry-item:hover::after { opacity: 1; }

/* Masonry item zoom is smoother */
.masonry-item img {
  transition: transform 600ms cubic-bezier(.16,1,.3,1);
}
.masonry-item:hover img { transform: scale(1.06); }

/* --- Cookie banner transition on buttons -------------------- */
.cookie-actions button {
  transition: background 200ms, color 200ms, border-color 200ms, transform 200ms, box-shadow 200ms;
}

/* Option card pulse when selected */
@keyframes optionSelect {
  0% { box-shadow: 0 0 0 0 rgba(61,90,254,0.3); }
  100% { box-shadow: 0 0 0 12px rgba(61,90,254,0); }
}
.option-card.selected { animation: optionSelect 600ms ease-out; }

/* Enhanced grass blades */
.grass-blade { width: 4px; }

/* --- Football spotlight sweep on camp card image -------------- */
.camp-card-img::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.08) 60%, transparent 100%);
  transition: none; pointer-events: none; z-index: 1;
}
.camp-card:hover .camp-card-img::after {
  animation: spotlightSweep 800ms cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes spotlightSweep {
  to { left: 140%; }
}

/* --- Stadium floodlight shimmer on pricing featured card ----- */
.pkg-card.featured::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(61,90,254,0.15) 0%, transparent 40%, transparent 60%, rgba(255,145,0,0.10) 100%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
  z-index: 0;
}
.pkg-card.featured:hover::before { opacity: 1; }

/* --- Kick-spin on CTA ball icon ------------------------------ */
.btn-primary:hover .ball-icon {
  animation: ballKickSpin 600ms cubic-bezier(.16,1,.3,1);
}
@keyframes ballKickSpin {
  0% { transform: translateY(0) rotate(0deg); }
  30% { transform: translateY(-8px) rotate(-60deg); }
  60% { transform: translateY(-3px) rotate(-180deg); }
  100% { transform: translateY(0) rotate(-360deg); }
}

/* --- Process dot pulse on hover ------------------------------ */
.process-step:hover .process-dot {
  box-shadow: 0 0 0 6px rgba(61,90,254,0.15);
  transition: box-shadow 300ms cubic-bezier(.16,1,.3,1);
}

/* --- FAQ summary hover indent -------------------------------- */
.faq-item summary:hover {
  padding-left: 6px;
  transition: padding-left 280ms cubic-bezier(.16,1,.3,1), color 200ms;
}

/* --- Cancel tier hover --------------------------------------- */
.cancel-tier {
  transition: transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms;
}
.cancel-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px -4px rgba(61,90,254,0.10);
}

/* --- Nav link underline smoother ----------------------------- */
.nav-desktop a:not(.nav-cta)::after {
  transition: transform 320ms cubic-bezier(.16,1,.3,1);
}

/* --- Stat number counter shimmer ----------------------------- */
.stat-number {
  background: linear-gradient(90deg, var(--accent) 0%, #5C7AFF 50%, var(--accent) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Include card border glow on hover ----------------------- */
.include-card:hover {
  border-color: rgba(61,90,254,0.25);
}

/* --- Team card photo zoom on hover --------------------------- */
.team-photo img {
  transition: transform 600ms cubic-bezier(.16,1,.3,1);
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .grass-blade, .field-line-svg, .goal-glow { animation: none; }
  .grass-blade { transform: none; }
  .field-line-svg { stroke-dashoffset: 0; }
  .pkg-card.featured { animation: none; }
  .include-card:hover .include-icon { animation: none; }
  .contact-card:hover .contact-card-icon { animation: none; }
  .option-card.selected { animation: none; }
  .stat:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .camp-card:hover::before { opacity: 0; }
  .camp-card:hover .camp-card-img::after { animation: none; }
  .masonry-item:hover::after { opacity: 0; }
  .masonry-item:hover img { transform: none; }
  .btn-primary:hover .ball-icon { animation: none; }
  .pkg-card.featured::before { opacity: 0; }
  .team-card:hover .team-photo img { transform: none; }
  .cancel-tier:hover { transform: none; }
  .faq-item summary:hover { padding-left: 0; }
}

/* --- Responsive ----------------------------------------------- */
@media (max-width:1024px) {
  .hero-title { font-size: clamp(2.2rem,7vw,3.8rem); }
}
@media (max-width:768px) {
  .camp-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:first-child { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:640px) {
  section { padding: clamp(36px,6vw,56px) 0; }
  .hero { padding-top: 32px; }
  .hero-title { font-size: clamp(2rem,9vw,3rem); }
  .trust-strip { gap: 8px; }
  .trust-strip span { font-size: 0.75rem; padding: 4px 10px; }
  .option-cards { grid-template-columns: 1fr; }
  .camp-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .cancel-tiers { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .config-nav { flex-direction: column; }
  .config-nav button { width: 100%; }
  .step-labels { gap: 12px; font-size: 0.68rem; }
}
@media (max-width:360px) {
  .hero-title { font-size: 1.85rem; }
  .configurator { padding: 18px 14px; }
}

/* --- Enhanced football-themed micro-effects ------------------- */

/* Logo ball subtle pulse on hover */
.logo:hover .logo-icon circle:last-child {
  animation: logoBallPulse 600ms cubic-bezier(.16,1,.3,1);
}
@keyframes logoBallPulse {
  0% { r: 5.5; }
  40% { r: 7; }
  100% { r: 5.5; }
}

/* Camp card — smoother lift with green pitch accent border */
.camp-card:hover {
  box-shadow: 0 20px 48px -12px rgba(61,90,254,0.15), 0 0 0 1px rgba(76,175,80,0.12);
}

/* Include card — pitch-stripe flash on hover */
.include-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    transparent 0%, transparent 46%,
    rgba(76,175,80,0.06) 46%, rgba(76,175,80,0.06) 54%,
    transparent 54%, transparent 100%
  );
  opacity: 0;
  transition: opacity 380ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.include-card { position: relative; overflow: hidden; }
.include-card:hover::before { opacity: 1; }

/* Pricing card — subtle goal-net hover overlay */
.pkg-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(45deg, rgba(61,90,254,0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(61,90,254,0.02) 25%, transparent 25%);
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity 400ms;
  pointer-events: none;
  z-index: 0;
}
.pkg-card:hover::after { opacity: 1; }

/* CTA strip — stadium floodlight radial sweep */
@keyframes floodlightSweep {
  0% { opacity: 0.03; transform: translateX(-50%) scale(0.9); }
  50% { opacity: 0.08; transform: translateX(-50%) scale(1.1); }
  100% { opacity: 0.03; transform: translateX(-50%) scale(0.9); }
}
.cta-strip::after { animation: floodlightSweep 6s ease-in-out infinite; }

/* Testimonial quote — subtle left accent bar */
.testimonial-card::before {
  content: ''; position: absolute; left: 0; top: 12px; bottom: 12px;
  width: 3px; background: var(--accent); border-radius: 2px;
  opacity: 0; transform: scaleY(0.4);
  transition: opacity 320ms, transform 320ms cubic-bezier(.16,1,.3,1);
}
.testimonial-card:hover::before { opacity: 0.6; transform: scaleY(1); }

/* Process dot — referee card glow on hover */
.process-dot {
  transition: box-shadow 300ms cubic-bezier(.16,1,.3,1), transform 300ms cubic-bezier(.16,1,.3,1);
}
.process-step:hover .process-dot {
  transform: scale(1.08);
}

/* Form submit button kick animation */
.form-submit .btn-primary:hover {
  box-shadow: 0 12px 32px -6px rgba(61,90,254,0.35);
}

/* Stat hover — subtle underline draw */
.stat::after {
  content: ''; display: block;
  width: 0; height: 2px;
  background: var(--accent);
  margin: 8px auto 0;
  border-radius: 1px;
  transition: width 320ms cubic-bezier(.16,1,.3,1);
}
.stat:hover::after { width: 40px; }

/* Contact card — warm glow ring on hover */
.contact-card:hover {
  box-shadow: 0 8px 24px -6px rgba(61,90,254,0.14), 0 0 0 1px rgba(61,90,254,0.08);
}

/* FAQ — smoother open/close with subtle accent dot */
.faq-item summary::before {
  content: ''; display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0; flex-shrink: 0;
  transition: opacity 240ms;
}
.faq-item[open] summary::before,
.faq-item summary:hover::before { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .logo:hover .logo-icon circle:last-child { animation: none; }
  .include-card:hover::before { opacity: 0; }
  .pkg-card:hover::after { opacity: 0; }
  .cta-strip::after { animation: none; }
  .testimonial-card:hover::before { opacity: 0; }
  .process-step:hover .process-dot { transform: none; }
  .stat:hover::after { width: 0; }
}

/* --- Print ---------------------------------------------------- */
@media print {
  .site-header, .nav-toggle, .mobile-drawer, .drawer-backdrop,
  .cookie-banner, .cta-strip { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  main { padding-top: 0; }
  .reveal { opacity: 1; transform: none; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
