/*
Theme Name: The Padel Farm
Theme URI: https://thepadelfarm.club
Author: The Padel Farm
Author URI: https://thepadelfarm.club
Description: A custom WordPress theme for The Padel Farm — York's first indoor padel & social club.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: padelfarm
*/

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-impact: "Anton", sans-serif;
  --color-black: #0a0a0a;
  --color-red: #dc2626;
  --color-red-hover: #b91c1c;
  --color-white: #ffffff;
  --color-gray: #f5f5f5;
  --color-dark-gray: #1a1a1a;
  --shadow-hard: 6px 6px 0 rgba(0,0,0,0.9);
  --shadow-red: 6px 6px 0 var(--color-red);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); background: var(--color-white); color: var(--color-black); line-height: 1.6; }

/* HEADER & NAVIGATION */
.site-headerzz {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 2px solid var(--color-black);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo { display: flex; align-items: center; text-decoration: none; }
.site-logo img { max-width: 80px; height: auto; transition: var(--transition); }
.site-logo:hover img { transform: scale(1.02); }

.main-nav { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; list-style: none; gap: 35px; padding: 0; margin: 0; }
.nav-links li { list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: var(--transition);
  padding: 5px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--color-red); }
.nav-links a:hover::after { width: 100%; }

.book-btn {
  background: var(--color-red);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  border: 2px solid var(--color-red);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  transition: var(--transition);
  z-index: -1;
}
.book-btn:hover { color: white; border-color: var(--color-black); }
.book-btn:hover::before { left: 0; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 1001;
}
.mobile-menu-btn span { width: 28px; height: 2px; background: var(--color-black); transition: var(--transition); transform-origin: center; }

/* PAGE HERO (shared across inner pages) */
.page-hero {
  margin-top: 80px;
  background: var(--color-red);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
  background-size: 80px;
  opacity: 0.3;
}
.page-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-label {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  opacity: 0.9;
}
.page-heading {
  font-family: var(--font-impact);
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.page-subtext {
  font-size: 18px;
  color: var(--color-white);
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* HERO SECTION (homepage only) */
.hero-section {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.hero-content {
  background: var(--color-red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
}

.hero-label {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0.9;
}

.hero-label::before {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--color-white);
}

.hero-heading {
  font-family: var(--font-impact);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.hero-subtext {
  font-family: var(--font-primary);
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-white);
  margin-bottom: 40px;
  max-width: 90%;
  font-weight: 500;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-black);
  color: white;
  text-decoration: none;
  padding: 18px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  border: 2px solid var(--color-black);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}

.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(255,255,255,0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--color-white);
  text-decoration: none;
  padding: 18px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  border: 2px solid var(--color-white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transition: var(--transition);
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--color-red);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard);
}

.btn-secondary:hover::before { left: 0; }

.hero-visual {
  position: relative;
  background: var(--color-black);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.8s ease;
  min-height: 600px;
}

.hero-visual:hover .hero-image { transform: scale(1.05); }

/* STATS SECTION */
.stats-section {
  background: var(--color-black);
  padding: 80px 0;
  border-bottom: 4px solid var(--color-red);
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.stat-intro {
  padding-right: 40px;
  border-right: 2px solid rgba(255,255,255,0.2);
}

.stat-label {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.stat-intro-text {
  color: var(--color-white);
  font-family: var(--font-impact);
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -1px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
  transition: var(--transition);
}

.stat-item:hover { transform: translateY(-5px); }

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stat-number {
  color: var(--color-red);
  font-family: var(--font-impact);
  font-size: 48px;
  font-weight: 400;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.stat-text {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* SPONSOR SECTION */
.sponsor-section {
  background: var(--color-white);
  padding: 80px 0;
  border-bottom: 2px solid var(--color-black);
  overflow: hidden;
}

.sponsor-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.sponsor-heading {
  text-align: center;
  margin-bottom: 50px;
}

.sponsor-heading h2 {
  font-family: var(--font-impact);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #666;
  margin: 0;
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
}

.sponsor-heading h2::before,
.sponsor-heading h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #ddd;
}

.sponsor-heading h2::before { right: calc(100% + 20px); }
.sponsor-heading h2::after { left: calc(100% + 20px); }

.sponsor-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.sponsor-track {
  display: flex;
  gap: 80px;
  animation: scroll 25s linear infinite;
  will-change: transform;
}

.sponsor-track:hover { animation-play-state: paused; }

.sponsor-logo {
  flex-shrink: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.sponsor-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.sponsor-logo img {
  max-height: 50px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SPONSORSHIP CTA SECTION */
.sponsorship-section {
  background: var(--color-red);
  padding: 80px 40px;
  text-align: center;
}

.sponsorship-container {
  max-width: 800px;
  margin: 0 auto;
}

.sponsorship-section h2 {
  font-family: var(--font-impact);
  font-size: 42px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.sponsorship-section p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-black);
  color: white;
  text-decoration: none;
  padding: 18px 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  border: 2px solid var(--color-black);
  transition: var(--transition);
  box-shadow: var(--shadow-hard);
}

.btn-sponsor:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(255,255,255,0.2);
}

/* STORY SECTION */
.story-section {
  background: var(--color-white);
  padding: 120px 0;
  position: relative;
}

.story-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.story-content { position: relative; }

.section-label {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.story-heading {
  font-family: var(--font-impact);
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--color-black);
  margin-bottom: 40px;
  letter-spacing: -2px;
}

.story-body {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
  font-weight: 400;
}

.story-body strong {
  color: var(--color-black);
  font-weight: 700;
}

.story-highlight {
  background: var(--color-black);
  color: var(--color-white);
  padding: 35px;
  margin-top: 40px;
  border-left: 4px solid var(--color-red);
  position: relative;
  box-shadow: var(--shadow-red);
}

.story-highlight-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.story-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-image-main {
  grid-column: 1 / -1;
  aspect-ratio: 4/3;
  background: var(--color-gray);
  overflow: hidden;
  position: relative;
  border: 2px solid var(--color-black);
  box-shadow: var(--shadow-hard);
  transition: var(--transition);
}

.story-image-main:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--color-red);
}

.story-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-image-main:hover img { transform: scale(1.05); }

.story-image-secondary {
  aspect-ratio: 1;
  background: var(--color-gray);
  overflow: hidden;
  border: 2px solid var(--color-black);
  position: relative;
  box-shadow: var(--shadow-hard);
  transition: var(--transition);
}

.story-image-secondary:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--color-red);
}

.story-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.story-image-secondary:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* BOOKING SECTION */
.booking-section {
  background: linear-gradient(to right, #ffffff 50%, #0a0a0a 50%);
  padding: 120px 0;
  position: relative;
}

.booking-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-title {
  font-family: var(--font-impact);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: -2px;
  margin: 0 0 40px 0;
}

.booking-left { padding-right: 40px; }

.method-box {
  background: var(--color-white);
  border: 2px solid var(--color-black);
  padding: 40px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: var(--shadow-hard);
  transition: var(--transition);
}

.method-box:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--color-red);
}

.popular-tag {
  position: absolute;
  top: -2px;
  left: 40px;
  background: var(--color-red);
  color: white;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.method-title {
  font-family: var(--font-impact);
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 20px 0 25px 0;
  letter-spacing: -1px;
  color: var(--color-black);
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.step-num {
  width: 28px;
  height: 28px;
  background: var(--color-black);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid var(--color-black);
  transition: var(--transition);
}

.step-item:hover .step-num {
  background: var(--color-red);
  transform: scale(1.1);
}

.btn-black {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-black);
  color: white;
  text-decoration: none;
  padding: 16px 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  border: 2px solid var(--color-black);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.btn-black:hover {
  background: transparent;
  color: var(--color-black);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-red);
}

.booking-right {
  padding-left: 60px;
  color: white;
}

.pricing-header { margin-bottom: 40px; }

.pricing-header h2 {
  font-family: var(--font-impact);
  font-size: 52px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin: 0 0 15px 0;
  color: white;
  line-height: 1;
}

.pricing-sub {
  font-size: 17px;
  opacity: 0.8;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.price-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 30px;
  margin-bottom: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: var(--transition);
}

.price-box:hover::before { left: 100%; }

.price-box:hover {
  border-color: var(--color-red);
  transform: translateX(8px);
}

.price-box.featured {
  background: var(--color-red);
  border-color: var(--color-red);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.price-box.featured:hover {
  transform: translateX(8px) scale(1.02);
}

.price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0.9;
}

.price-amount {
  font-family: var(--font-impact);
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 1;
  letter-spacing: -1px;
}

.price-time {
  font-size: 13px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 500;
}

.price-line {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 20px 0;
}

.price-desc {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
}

.membership-panel {
  background: rgba(255,255,255,0.03);
  border-left: 4px solid var(--color-red);
  padding: 30px;
  margin-top: 30px;
}

.mem-title {
  font-family: var(--font-impact);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.mem-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.mem-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}

.star-icon {
  color: var(--color-red);
  font-weight: 700;
  font-size: 16px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--color-black);
  text-decoration: none;
  padding: 16px 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  transition: var(--transition);
  border: 2px solid white;
  width: 100%;
  justify-content: center;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.btn-white:hover {
  background: transparent;
  color: white;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-red);
}

/* COACHING SECTION (homepage) */
.coaching-section {
  background: var(--color-black);
  color: var(--color-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.coaching-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-red);
}

.coaching-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.coaching-content .section-title {
  color: white;
  margin-bottom: 20px;
}

.coaching-subtext {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 90%;
}

.skill-levels {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.skill-tag {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transition: var(--transition);
  cursor: default;
}

.skill-tag:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-2px);
}

.coaching-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coaching-card {
  background: var(--color-dark-gray);
  border-left: 4px solid var(--color-red);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.coaching-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,0.1), transparent);
  transition: var(--transition);
}

.coaching-card:hover::before { left: 100%; }

.coaching-card:hover {
  transform: translateX(8px);
  border-left-width: 8px;
}

.coaching-type {
  font-family: var(--font-impact);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.coaching-desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-red);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  border: 2px solid var(--color-red);
  transition: var(--transition);
}

.btn-red:hover {
  background: transparent;
  gap: 16px;
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  transition: var(--transition);
}

.btn-outline:hover {
  background: white;
  color: var(--color-black);
  border-color: white;
  gap: 16px;
  transform: translateX(4px);
}

.coaching-visual {
  position: relative;
  height: 600px;
  background: var(--color-dark-gray);
  overflow: hidden;
  border: 2px solid var(--color-dark-gray);
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}

.coaching-visual:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(220, 38, 38, 0.8);
}

.coaching-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.9;
  transition: transform 0.6s ease;
}

.coaching-visual:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.visual-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--color-red);
  padding: 16px 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  color: white;
  border: 2px solid var(--color-red);
  transition: var(--transition);
}

.coaching-visual:hover .visual-overlay {
  background: var(--color-black);
  border-color: var(--color-black);
}

/* LOCATION SECTION */
.location-section {
  background: var(--color-white);
  padding: 120px 0;
}

.location-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: start;
}

.location-content h2 {
  font-family: var(--font-impact);
  font-size: 52px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1;
  color: var(--color-black);
  letter-spacing: -2px;
}

.location-content h2 span { color: var(--color-red); }

.location-text {
  font-size: 17px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.8;
}

.address-block {
  background: var(--color-black);
  color: var(--color-white);
  padding: 35px;
  margin-bottom: 30px;
  border-left: 4px solid var(--color-red);
  box-shadow: var(--shadow-hard);
  transition: var(--transition);
  font-style: normal;
}

.address-block:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--color-red);
}

.address-label {
  color: var(--color-red);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 16px;
}

.address-text {
  font-size: 18px;
  line-height: 1.8;
  font-style: normal;
  font-weight: 500;
}

.what3words {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.what3words a {
  color: var(--color-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.location-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(8px);
  color: var(--color-red);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  border: 2px solid var(--color-red);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--color-black);
  border-color: var(--color-black);
  transform: rotate(5deg);
}

/* MAP STYLES */
.map-container {
  position: relative;
  height: 550px;
  background: var(--color-gray);
  border: 2px solid var(--color-black);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  transition: var(--transition);
}

.map-container:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--color-red);
}

#padel-map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.leaflet-control-attribution {
  background: rgba(255,255,255,0.95) !important;
  font-family: var(--font-primary) !important;
  font-size: 11px !important;
  padding: 8px 12px !important;
  border-top: 2px solid var(--color-black) !important;
  border-left: 2px solid var(--color-black) !important;
}

.leaflet-control-attribution a {
  color: var(--color-red) !important;
  text-decoration: none !important;
  font-weight: 600;
}

.map-overlay {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--color-white);
  padding: 16px 24px;
  border: 2px solid var(--color-black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  box-shadow: var(--shadow-red);
  z-index: 1000;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-overlay:hover {
  background: var(--color-red);
  color: white;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--color-black);
}

.custom-padel-marker { position: relative; }

.custom-padel-pin {
  background-color: var(--color-red);
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid var(--color-black);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  position: relative;
  transition: var(--transition);
}

.custom-padel-pin:hover {
  transform: rotate(-45deg) scale(1.2);
  background-color: var(--color-black);
  border-color: var(--color-red);
}

.custom-padel-pin::after {
  content: '';
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.leaflet-popup-content-wrapper {
  border-radius: 0;
  border: 2px solid var(--color-black);
  box-shadow: 6px 6px 0 var(--color-red);
  font-family: var(--font-primary);
}

.leaflet-popup-content {
  margin: 15px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-black);
}

.leaflet-popup-tip {
  background: var(--color-black);
  border: 2px solid var(--color-black);
  box-shadow: none;
}

/* HOMEPAGE FAQ SECTION */
.faq-section {
  background: var(--color-gray);
  padding: 120px 0;
  border-top: 2px solid var(--color-black);
}

.faq-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-family: var(--font-impact);
  font-size: 52px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0 0 15px 0;
  letter-spacing: -2px;
}

.faq-header p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-item {
  background: var(--color-white);
  border: 2px solid var(--color-black);
  padding: 35px;
  transition: var(--transition);
  position: relative;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.05);
}

.faq-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-red);
}

.faq-icon {
  font-size: 28px;
  margin-bottom: 15px;
  display: block;
  line-height: 1;
}

.faq-question {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--color-black);
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.faq-answer strong {
  color: var(--color-black);
  font-weight: 700;
}

.faq-answer a {
  color: var(--color-red);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.faq-answer a:hover { border-bottom-color: var(--color-red); }

/* NEWSLETTER SECTION */
.newsletter-section {
  background: var(--color-black);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-red);
}

.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-section h2 {
  font-family: var(--font-impact);
  font-size: 42px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.newsletter-section p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: white;
  font-family: var(--font-primary);
  font-size: 15px;
  transition: var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-red);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.btn-newsletter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-red);
  color: white;
  border: none;
  padding: 16px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--color-red);
}

.btn-newsletter:hover {
  background: transparent;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--color-red);
}

/* INSTAGRAM SECTION */
.instagram-section {
  background: var(--color-black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), #f56040, #f77737, #fcaf45, #ffdc80, #f77737, #f56040, var(--color-red));
}

.instagram-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.instagram-intro { max-width: 500px; }

.instagram-title {
  font-family: var(--font-impact);
  font-size: 52px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: -2px;
  margin: 0 0 12px 0;
  line-height: 1;
}

.instagram-subtext {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  text-decoration: none;
  padding: 16px 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.btn-instagram::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

.btn-instagram:hover::before { left: 100%; }

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.6);
}

.instagram-feed-full {
  width: 100%;
  margin: 50px 0;
}

.instagram-cta {
  margin-top: 50px;
  text-align: center;
}

.cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

.cta-text span {
  color: var(--color-red);
  font-weight: 700;
}

/* FOOTER */
.footer-section {
  background: var(--color-black);
  color: var(--color-white);
  padding: 100px 0 0;
  border-top: 4px solid var(--color-red);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand h3 {
  font-family: var(--font-impact);
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: var(--transition);
  background: transparent;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.footer-column h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--color-red);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
  color: var(--color-red);
  font-weight: 700;
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition);
  margin-left: 30px;
  font-weight: 600;
}

.footer-bottom a:hover { color: var(--color-red); }

/* =============================
   PAGE-SPECIFIC STYLES
   ============================= */

/* COACHING PAGE */
.coach-intro {
  padding: 100px 40px;
  background: var(--color-white);
}
.coach-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coach-image {
  position: relative;
  border: 2px solid var(--color-black);
  box-shadow: var(--shadow-red);
  overflow: hidden;
  transition: var(--transition);
}
.coach-image:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--color-black);
}
.coach-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.coach-image:hover img { transform: scale(1.05); }
.coach-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-red);
  color: white;
  padding: 12px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  border: 2px solid var(--color-red);
}
.coach-content h2 {
  font-family: var(--font-impact);
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: -1px;
}
.coach-content h2 span { color: var(--color-red); }
.coach-bio {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}
.coach-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.coach-stat {
  text-align: center;
  padding: 20px;
  background: var(--color-gray);
  border: 2px solid var(--color-black);
  transition: var(--transition);
}
.coach-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}
.coach-stat-number {
  font-family: var(--font-impact);
  font-size: 36px;
  color: var(--color-red);
  display: block;
  line-height: 1;
}
.coach-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 8px;
}

.coaching-options-section {
  padding: 100px 40px;
  background: var(--color-black);
  color: var(--color-white);
}
.coaching-options-container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-label {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.section-header h2 {
  font-family: var(--font-impact);
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.coaching-options-section .coaching-card {
  background: var(--color-dark-gray);
  border: 2px solid rgba(255,255,255,0.1);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.coaching-options-section .coaching-card:hover {
  border-color: var(--color-red);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}
.coaching-options-section .coaching-card.featured {
  border-color: var(--color-red);
  background: linear-gradient(135deg, var(--color-dark-gray) 0%, rgba(220,38,38,0.1) 100%);
}
.coaching-options-section .coaching-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-red);
  color: white;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.coaching-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.coaching-options-section .coaching-card h3 {
  font-family: var(--font-impact);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.coaching-options-section .coaching-card p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}
.coaching-price {
  font-family: var(--font-impact);
  font-size: 36px;
  color: var(--color-red);
  margin-bottom: 5px;
}
.coaching-price .starting-from {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}
.coaching-price span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-primary);
}
.btn-coaching {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-red);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  transition: var(--transition);
  border: 2px solid var(--color-red);
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}
.btn-coaching:hover {
  background: transparent;
  gap: 16px;
}

.testimonials-section {
  padding: 100px 40px;
  background: var(--color-gray);
}
.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--color-white);
  border: 2px solid var(--color-black);
  padding: 40px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-red);
}
.testimonial-quote {
  font-size: 60px;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}
.testimonial-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}
.testimonial-info span {
  font-size: 13px;
  color: #666;
}

/* CONTACT FORM (coaching page variant) */
.coaching-page-contact {
  padding: 100px 40px;
  background: var(--color-white);
}
.coaching-page-contact .contact-container {
  max-width: 800px;
  margin: 0 auto;
}
.coaching-page-contact .contact-header {
  text-align: center;
  margin-bottom: 50px;
}
.coaching-page-contact .contact-header .section-label {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.coaching-page-contact .contact-header h2 {
  font-family: var(--font-impact);
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 15px;
}
.coaching-page-contact .contact-header p {
  color: #666;
  font-size: 17px;
}
.coaching-page-contact .contact-form {
  background: var(--color-white);
  border: 2px solid var(--color-black);
  padding: 50px;
  box-shadow: var(--shadow-hard);
}
.coaching-page-contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}
.coaching-page-contact .form-group { margin-bottom: 25px; }
.coaching-page-contact .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--color-black);
}
.coaching-page-contact .form-group input,
.coaching-page-contact .form-group select,
.coaching-page-contact .form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--color-black);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: var(--transition);
  background: var(--color-white);
}
.coaching-page-contact .form-group input:focus,
.coaching-page-contact .form-group select:focus,
.coaching-page-contact .form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 4px 4px 0 var(--color-red);
}
.coaching-page-contact .form-group textarea { min-height: 150px; resize: vertical; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-red);
  color: white;
  border: none;
  padding: 18px 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
  border: 2px solid var(--color-red);
}
.btn-submit:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--color-red);
}

.gallery-preview {
  padding: 100px 40px;
  background: var(--color-gray);
}
.gallery-preview .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-preview .gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--color-black);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-preview .gallery-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-red);
}
.gallery-preview .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-preview .gallery-item:hover img { transform: scale(1.1); }
.gallery-preview .gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* CONTACT PAGE */
.contact-section {
  padding: 100px 40px;
  background: var(--color-white);
}
.contact-section .contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-family: var(--font-impact);
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 30px;
}
.contact-info h2 span { color: var(--color-red); }
.contact-intro {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--color-gray);
  border: 2px solid var(--color-black);
  transition: var(--transition);
}
.contact-method:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-red);
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-method h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.contact-method a,
.contact-method p {
  font-size: 16px;
  color: #444;
  text-decoration: none;
  transition: var(--transition);
}
.contact-method a:hover { color: var(--color-red); }

.contact-form-wrapper {
  background: var(--color-black);
  padding: 50px;
  border: 2px solid var(--color-black);
  box-shadow: var(--shadow-red);
}
.contact-form-wrapper h3 {
  font-family: var(--font-impact);
  font-size: 28px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.contact-form-wrapper p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 30px;
}
.contact-form-wrapper .form-group { margin-bottom: 25px; }
.contact-form-wrapper .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--color-white);
}
.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(255,255,255,0.2);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: var(--transition);
  background: transparent;
  color: var(--color-white);
}
.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group select:focus,
.contact-form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
}
.contact-form-wrapper .form-group input::placeholder,
.contact-form-wrapper .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form-wrapper .form-group textarea { min-height: 120px; resize: vertical; }

.map-section {
  padding: 0 40px 100px;
  background: var(--color-white);
}

.hours-section {
  padding: 80px 40px;
  background: var(--color-gray);
}
.hours-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hours-container h2 {
  font-family: var(--font-impact);
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 40px;
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
  background: var(--color-white);
  border: 2px solid var(--color-black);
  transition: var(--transition);
}
.hours-item:hover {
  transform: translateX(8px);
  border-color: var(--color-red);
}
.hours-day {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}
.hours-time {
  color: var(--color-red);
  font-weight: 700;
}

/* FAQ PAGE (accordion) */
.faq-page-section {
  padding: 100px 40px;
  background: var(--color-gray);
}
.faq-page-container {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-page-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.faq-page-category {
  padding: 12px 24px;
  background: var(--color-white);
  border: 2px solid var(--color-black);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}
.faq-page-category:hover,
.faq-page-category.active {
  background: var(--color-red);
  color: white;
  border-color: var(--color-red);
}
.faq-page-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-page-item {
  background: var(--color-white);
  border: 2px solid var(--color-black);
  overflow: hidden;
  transition: var(--transition);
}
.faq-page-item:hover {
  box-shadow: var(--shadow-red);
}
.faq-page-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--color-white);
  transition: var(--transition);
}
.faq-page-question:hover { background: var(--color-gray); }
.faq-page-question h3 {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  padding-right: 20px;
}
.faq-page-icon {
  font-size: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-page-item.active .faq-page-icon { transform: rotate(45deg); }
.faq-page-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-page-item.active .faq-page-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}
.faq-page-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}
.faq-page-answer a {
  color: var(--color-red);
  text-decoration: none;
  font-weight: 700;
}
.faq-page-answer a:hover { text-decoration: underline; }
.faq-page-answer strong { color: var(--color-black); }

.cta-section {
  padding: 80px 40px;
  background: var(--color-black);
  text-align: center;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-section h2 {
  font-family: var(--font-impact);
  font-size: 42px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 30px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-red);
  color: white;
  text-decoration: none;
  padding: 18px 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  border: 2px solid var(--color-red);
  transition: var(--transition);
}
.btn-cta:hover {
  background: transparent;
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--color-red);
}

/* GALLERY PAGE */
.gallery-section {
  padding: 80px 40px;
  background: var(--color-white);
}
.gallery-section .gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 12px 24px;
  background: var(--color-white);
  border: 2px solid var(--color-black);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter:hover,
.gallery-filter.active {
  background: var(--color-red);
  color: white;
  border-color: var(--color-red);
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-section .gallery-item {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color-black);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-section .gallery-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-red);
}
.gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-section .gallery-item:hover img { transform: scale(1.1); }
.gallery-section .gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-section .gallery-item.wide { grid-column: span 2; }
.gallery-section .gallery-item.tall { grid-row: span 2; }
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
}
.gallery-section .gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  border: 4px solid white;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-red);
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--color-black); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: var(--color-red);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--color-black); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* VIDEO SECTION */
.video-section {
  padding: 100px 40px;
  background: var(--color-black);
}
.video-container {
  max-width: 1200px;
  margin: 0 auto;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.video-item {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--color-dark-gray);
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  transition: var(--transition);
}
.video-item:hover {
  border-color: var(--color-red);
  transform: translateY(-5px);
}
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 60px;
}
.video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.video-title h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

/* INSTAGRAM CTA (gallery page standalone) */
.instagram-cta-standalone {
  padding: 80px 40px;
  background: var(--color-gray);
  text-align: center;
}
.instagram-cta-standalone .instagram-cta-content { max-width: 600px; margin: 0 auto; }
.instagram-cta-standalone h2 {
  font-family: var(--font-impact);
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 15px;
}
.instagram-cta-standalone p {
  color: #666;
  font-size: 17px;
  margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .gallery-section .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-section .gallery-item.large { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 1024px) {
  .hero-heading { font-size: 56px; }
  .story-heading, .section-title, .pricing-header h2, .location-content h2, .coaching-content .section-title { font-size: 42px; }
  .stats-grid { gap: 30px; }
  .stat-number { font-size: 40px; }
  .stat-intro-text { font-size: 28px; }
  .coaching-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section .contact-container { grid-template-columns: 1fr; gap: 60px; }
  .hours-grid { grid-template-columns: 1fr; }
}

@media (max-width: 968px) {
  .header-container { padding: 0 25px; }
  
  .main-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    padding: 60px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    border-top: 2px solid var(--color-black);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.active { display: flex; }
  
  .main-nav .nav-links {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
  }

  .main-nav .nav-links a { font-size: 24px; }
  
  .main-nav .book-btn {
    width: 100%;
    text-align: center;
    max-width: 300px;
    margin-top: 20px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-content {
    padding: 60px 30px;
    order: 2;
  }
  
  .hero-visual {
    min-height: 400px;
    order: 1;
  }
  
  .hero-heading { font-size: 48px; }
  .hero-subtext { font-size: 18px; max-width: 100%; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-intro {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 30px;
    text-align: center;
  }
  
  .stat-item::after { display: none; }
  
  .story-container,
  .booking-wrapper,
  .coaching-container,
  .location-container,
  .coach-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 30px;
  }

  .story-section,
  .booking-section,
  .coaching-section,
  .location-section,
  .faq-section,
  .instagram-section,
  .sponsorship-section,
  .newsletter-section,
  .coach-intro,
  .coaching-options-section,
  .testimonials-section,
  .coaching-page-contact,
  .gallery-preview,
  .contact-section,
  .map-section,
  .hours-section,
  .faq-page-section,
  .cta-section,
  .gallery-section,
  .video-section,
  .instagram-cta-standalone { padding: 80px 0; }

  .booking-section { background: var(--color-white); }
  .booking-left { padding-right: 0; }
  .booking-right {
    background: var(--color-black);
    margin: 0 -30px;
    padding: 60px 30px;
  }

  .coaching-visual,
  .map-container { height: 400px; }
  
  .faq-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 30px;
  }
  
  .instagram-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  
  .instagram-title { font-size: 42px; }

  .sponsorship-section h2 { font-size: 32px; }

  .coaching-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-preview .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
  .contact-form-wrapper { padding: 35px; }
  .coach-image img { height: 400px; }
  .coach-stats { grid-template-columns: 1fr; }
  .coaching-page-contact .form-row { grid-template-columns: 1fr; }
  .faq-page-categories { gap: 10px; }
  .faq-page-category { padding: 10px 18px; font-size: 12px; }
  .faq-page-question h3 { font-size: 15px; }
  .faq-page-question { padding: 20px; }
  .faq-page-item.active .faq-page-answer { padding: 0 20px 20px; }
  .gallery-section .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-section .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .gallery-section .gallery-item.tall { grid-row: span 1; }
  .video-grid { grid-template-columns: 1fr; }
  .lightbox-nav { width: 50px; height: 50px; font-size: 20px; }
  .lightbox-prev { left: 15px; }
  .lightbox-next { right: 15px; }
}

@media (max-width: 600px) {
  .header-container { height: 70px; }
  .hero-section { margin-top: 70px; }
  .page-hero { margin-top: 70px; }
  .site-logo img { max-width: 80px; }
  
  .hero-content { padding: 40px 20px; }
  .hero-heading { font-size: 40px; letter-spacing: -1px; }
  
  .stats-grid { grid-template-columns: 1fr; text-align: center; }
  .stat-number { font-size: 56px; }
  
  .story-visual { grid-template-columns: 1fr; }
  .story-image-secondary { aspect-ratio: 16/9; }
  
  .method-box,
  .coaching-card,
  .price-box,
  .faq-item,
  .membership-panel { padding: 25px 20px; }
  
  .method-title { font-size: 24px; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 25px;
  }
  .footer-bottom a { margin: 0 10px; }
  
  .map-overlay {
    top: auto;
    bottom: 20px;
    right: 20px;
    left: 20px;
    text-align: center;
    justify-content: center;
  }
  
  .booking-wrapper,
  .coaching-container,
  .location-container,
  .stats-container,
  .story-container,
  .faq-container,
  .instagram-container,
  .footer-container,
  .coach-container,
  .coaching-options-container,
  .testimonials-container,
  .coaching-page-contact .contact-container,
  .contact-section .contact-container,
  .hours-container,
  .faq-page-container,
  .gallery-section .gallery-container,
  .video-container { padding: 0 20px; }

  .page-hero,
  .coach-intro,
  .coaching-options-section,
  .testimonials-section,
  .coaching-page-contact,
  .gallery-preview,
  .contact-section,
  .map-section,
  .hours-section,
  .faq-page-section,
  .cta-section,
  .gallery-section,
  .video-section,
  .instagram-cta-standalone { padding: 60px 20px; }

  .contact-form-wrapper { padding: 25px; }
  .contact-method { flex-direction: column; text-align: center; }
  .contact-icon { margin: 0 auto; }
  .coach-image img { height: 400px; }
  .gallery-preview .gallery-grid { grid-template-columns: 1fr; }
  .gallery-preview .gallery-item.featured { grid-column: span 1; }
  .gallery-section .gallery-grid { grid-template-columns: 1fr; }
  .gallery-section .gallery-item.large,
  .gallery-section .gallery-item.wide { grid-column: span 1; }
  .gallery-filters { gap: 10px; }
  .gallery-filter { padding: 10px 18px; font-size: 12px; }
  .cta-section h2 { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 36px; }
  .story-heading, .section-title, .pricing-header h2, .location-content h2 { font-size: 36px; }
  .coaching-content .section-title { font-size: 36px; }
  .faq-header h2 { font-size: 36px; }
  .instagram-title { font-size: 36px; }
  .sponsorship-section h2 { font-size: 28px; }
}
