/*
Theme Name: Football Squirts
Theme URI: https://www.ryandesign.co.uk
Author: RyanDesign
Author URI: https://www.ryandesign.co.uk
Description: Custom WordPress theme for Football Squirts - Kids Football Classes in Newcastle & North Tyneside. Features booking integration, membership system, and age-appropriate class showcasing for children aged 2-6.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: football-squirts
Tags: custom-logo, custom-menu, featured-images, theme-options, translation-ready

Football Squirts Theme © 2025 RyanDesign
*/

/* ==========================================================================
   CSS Variables - Brand Colors
   ========================================================================== */

:root {
  /* Brand Yellow */
  --fs-yellow: #fff100;
  --fs-yellow-light: #fffde6;
  --fs-yellow-dark: #e6d900;
  --fs-yellow-darker: #ccbf00;
  --fs-yellow-text: #1a1a00;
  
  /* Supporting Colors */
  --fs-green: #22C55E;
  --fs-green-light: #DCFCE7;
  --fs-blue: #3B82F6;
  --fs-blue-light: #DBEAFE;
  --fs-purple: #8B5CF6;
  --fs-orange: #F97316;
  --fs-red: #EF4444;
  
  /* Neutrals - Brand greys (not navy) */
  --fs-dark: #3d3d3d;
  --fs-dark-lighter: #4a4a4a;
  --fs-gray-100: #F5F5F5;
  --fs-gray-200: #E5E5E5;
  --fs-gray-300: #D4D4D4;
  --fs-gray-400: #A3A3A3;
  --fs-gray-500: #737373;
  --fs-gray-600: #525252;
  --fs-gray-700: #404040;
  --fs-white: #FFFFFF;
  
  /* Header Colors */
  --fs-header-bg: #3d3d3d;
  --fs-announcement-bg: #2d2d2d;
  
  /* Typography */
  --fs-font-display: 'Chewy', cursive;
  --fs-font-body: 'Nunito', sans-serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--fs-font-body);
  background: var(--fs-white);
  color: var(--fs-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fs-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fs-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 3.5rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-yellow-text);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--fs-gray-500);
}

.section-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  box-shadow: 0 4px 15px rgba(255, 241, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 241, 0, 0.5);
  background: var(--fs-dark);
  color: var(--fs-white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--fs-dark);
  color: var(--fs-white);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--fs-yellow);
  color: var(--fs-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--fs-gray-500);
  color: var(--fs-gray-600);
}

.btn-outline:hover {
  border-color: var(--fs-yellow);
  background: var(--fs-yellow);
  color: var(--fs-yellow-text);
}

.btn-green {
  background: linear-gradient(135deg, var(--fs-green), #16A34A);
  color: white;
}

.btn-green:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */

.announcement-bar {
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Dark style (default) - dark bg, yellow text */
.announcement-bar--dark {
  background: var(--fs-announcement-bg);
  color: var(--fs-yellow);
}

/* Yellow style - yellow bg, dark text */
.announcement-bar--yellow {
  background: var(--fs-yellow);
  color: var(--fs-dark);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  background: var(--fs-header-bg);
  padding: 0.75rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

.site-logo img,
.custom-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  display: block;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--fs-gray-300);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--fs-white);
}

.main-nav .menu-item-has-children > a::after {
  content: '▾';
  margin-left: 0.25rem;
  font-size: 0.75rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.btn-login {
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--fs-gray-500);
  border-radius: 50px;
  background: transparent;
  color: var(--fs-gray-300);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.btn-login:hover {
  border-color: var(--fs-yellow);
  background: var(--fs-yellow);
  color: var(--fs-dark);
}

.btn-book {
  white-space: nowrap;
  padding: 0.7rem 1.5rem;
  background: var(--fs-yellow);
  border-radius: 50px;
  color: var(--fs-yellow-text);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 241, 0, 0.4);
  transition: all 0.2s;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 241, 0, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--fs-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 241, 0, 0.75) 0%, rgba(255, 241, 0, 0.60) 50%, rgba(255, 241, 0, 0.50) 100%);
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fs-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fs-dark);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-badge span {
  background: var(--fs-yellow);
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--fs-yellow-text);
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--fs-white);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.7;
}

.hero p {
  font-size: 1.25rem;
  color: var(--fs-gray-700);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Postcode Search */
.postcode-search {
  background: var(--fs-white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  max-width: 500px;
}

.postcode-search label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fs-dark);
}

.search-input-wrap {
  display: flex;
  gap: 0.75rem;
}

.search-input-wrap input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 2px solid var(--fs-gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.search-input-wrap input:focus {
  outline: none;
  border-color: var(--fs-yellow);
}

.search-input-wrap button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--fs-green), #16A34A);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.search-input-wrap button:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.search-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--fs-gray-600);
}

.search-hint svg {
  width: 16px;
  height: 16px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 450px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: var(--fs-white);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 25%;
  left: -30px;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 5%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-card .fc-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.floating-card .fc-label {
  font-size: 0.75rem;
  color: var(--fs-gray-500);
}

.floating-card .fc-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fs-dark);
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
  background: var(--fs-white);
  padding: 2rem;
  border-bottom: 1px solid var(--fs-gray-200);
}

.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--fs-yellow-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--fs-yellow-darker);
}

.trust-text {
  font-weight: 700;
  color: var(--fs-dark);
}

.trust-text span {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--fs-gray-500);
}

/* ==========================================================================
   Age Groups Section
   ========================================================================== */

.age-groups {
  background: var(--fs-white);
}

.age-cards {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.age-card {
  background: var(--fs-white);
  border-radius: 24px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border: 2px solid var(--fs-gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.age-card:hover {
  transform: translateY(-5px);
  border-color: var(--fs-yellow);
  box-shadow: 0 20px 40px rgba(255, 241, 0, 0.2);
}

.age-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.age-card.age-2::before { background: #F472B6; }
.age-card.age-3::before { background: #60A5FA; }
.age-card.age-4::before { background: #34D399; }
.age-card.age-5::before { background: var(--fs-yellow); }

.age-card .age-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fs-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fs-white);
}

.age-card.age-2 .age-number { background: linear-gradient(135deg, #F472B6, #EC4899); }
.age-card.age-3 .age-number { background: linear-gradient(135deg, #60A5FA, #3B82F6); }
.age-card.age-4 .age-number { background: linear-gradient(135deg, #34D399, #10B981); }
.age-card.age-5 .age-number { background: linear-gradient(135deg, var(--fs-yellow), var(--fs-yellow-dark)); color: #ffffff; }

.age-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.age-card p {
  font-size: 0.9rem;
  color: var(--fs-gray-500);
  margin-bottom: 1rem;
}

.age-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.age-divider {
  height: 1px;
  background: #f1f1f1;
  margin: 1rem 0;
}

.age-features span {
  font-size: 0.8rem;
  color: var(--fs-gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.age-features span::before {
  content: '✓';
  color: var(--fs-green);
  font-weight: 700;
}

.age-groups-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.15rem;
}

/* ==========================================================================
   Photo Strip
   ========================================================================== */

.photo-strip {
  padding: 3rem 0;
  background: var(--fs-gray-100);
  overflow: hidden;
}

.photo-strip-inner {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.photo-strip-item {
  flex: 1;
  min-width: 300px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-strip-item:last-child img {
  object-position: center 44%;
}

.photo-strip-item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
  background: var(--fs-gray-50);
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--fs-white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--fs-gray-200);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--fs-yellow);
  box-shadow: 0 20px 40px rgba(255, 241, 0, 0.15);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--fs-dark);
}

/* Icon + title on same row */
.service-card .service-icon + h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-card {
  background: var(--fs-white);
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  border: 2px solid var(--fs-gray-200);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Wrap icon and h3 together in a flex row */
.service-card::before { display: none; }

.service-card p {
  font-size: 0.9rem;
  color: var(--fs-gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  padding-bottom: 0.5rem;
}

.service-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  background: var(--fs-dark);
  color: var(--fs-white);
}

/* ==========================================================================
   Venues Section
   ========================================================================== */

.venues {
  background: var(--fs-white);
}

.venues-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.venue-card {
  background: var(--fs-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--fs-gray-100);
}

.venue-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: var(--fs-yellow);
}

.venue-image {
  height: 160px;
  background: linear-gradient(135deg, var(--fs-yellow-light), var(--fs-green-light));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.venue-content {
  padding: 1.5rem;
}

.venue-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.venue-content p {
  font-size: 0.875rem;
  color: var(--fs-gray-500);
  margin-bottom: 1rem;
}

.venue-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--fs-gray-600);
}

.venue-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.view-all-venues {
  text-align: center;
  margin-top: 2rem;
}

/* ==========================================================================
   Membership Section
   ========================================================================== */

.membership {
  background: linear-gradient(135deg, var(--fs-dark) 0%, var(--fs-dark-lighter) 100%);
  position: relative;
  overflow: hidden;
}

.membership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
}

.membership-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.membership .section-header h2 {
  color: var(--fs-white);
}

.membership .section-header p {
  color: var(--fs-gray-300);
}

.membership-card {
  background: var(--fs-white);
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--fs-yellow), var(--fs-green), var(--fs-blue));
}

.membership-price {
  margin-bottom: 1.5rem;
}

.membership-price .amount {
  font-family: var(--fs-font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--fs-dark);
}

.membership-price .period {
  font-size: 1.25rem;
  color: var(--fs-gray-500);
}

.membership-price .joining {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-yellow-text);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.membership-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
  text-align: left;
}

.membership-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--fs-gray-700);
}

.membership-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--fs-green-light);
  color: var(--fs-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.membership-cta {
  padding: 1rem 3rem;
  background: var(--fs-yellow);
  border: none;
  border-radius: 50px;
  color: var(--fs-yellow-text);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(255, 241, 0, 0.3);
}

.membership-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(255, 241, 0, 0.5);
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features {
  background: var(--fs-gray-100);
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  border-radius: 20px;
  background: var(--fs-white);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--fs-yellow);
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.feature-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-content {
  padding: 1.5rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon-row h3 {
  margin: 0;
  font-size: 1.1rem;
}

.feature-card:nth-child(1) .feature-icon { background: var(--fs-yellow-light); color: var(--fs-yellow-darker); }
.feature-card:nth-child(2) .feature-icon { background: var(--fs-green-light); color: var(--fs-green); }
.feature-card:nth-child(3) .feature-icon { background: var(--fs-blue-light); color: var(--fs-blue); }
.feature-card:nth-child(4) .feature-icon { background: #FEE2E2; color: var(--fs-red); }
.feature-card:nth-child(5) .feature-icon { background: #E9D5FF; color: var(--fs-purple); }
.feature-card:nth-child(6) .feature-icon { background: #FFEDD5; color: var(--fs-orange); }

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fs-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
  background: var(--fs-white);
  padding: 4rem 0;
}

.testimonials .section-header {
  padding: 0 2rem;
}

.testimonials-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center;
  gap: 1.5rem;
  overflow-x: auto !important;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 2rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
  height: 0;
  display: none;
}

.testimonials-grid::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 3px;
}

.testimonials > .testimonials-grid > .testimonial-card {
  background: var(--fs-gray-100);
  border-radius: 16px;
  padding: 1.5rem;
  width: 280px !important;
  min-width: 280px !important;
  max-width: 280px !important;
  flex: 0 0 280px !important;
  scroll-snap-align: start;
  border: 2px solid var(--fs-gray-200);
  transition: all 0.3s ease;
  text-align: center;
}

.testimonials > .testimonials-grid > .testimonial-card:hover {
  border-color: var(--fs-yellow);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.testimonial-stars {
  color: #3d3d3d;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  text-align: center;
  display: block;
}

.testimonial-date {
  font-size: 0.78rem;
  color: var(--fs-gray-500);
  display: block;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--fs-gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: normal;
  text-align: center;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  border: none;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--fs-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--fs-dark);
}

.author-info {
  text-align: center;
}

.author-info strong {
  display: block;
  color: var(--fs-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.author-info span {
  display: block;
  font-size: 0.78rem;
  color: var(--fs-gray-500);
}

.author-info .testimonial-date {
  font-size: 0.78rem;
  color: var(--fs-gray-500);
  font-style: normal;
  font-weight: 400;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  padding: 5rem 2rem;
  background: var(--fs-yellow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '⚽';
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 5rem;
  opacity: 0.15;
}

.cta-section::after {
  content: '⚽';
  position: absolute;
  bottom: 20%;
  right: 10%;
  font-size: 5rem;
  opacity: 0.15;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--fs-gray-700);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-btn-primary {
  padding: 1rem 2.5rem;
  background: var(--fs-dark);
  color: var(--fs-white);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--fs-dark);
  border: 2px solid var(--fs-dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-btn-secondary:hover {
  background: var(--fs-dark);
  color: var(--fs-white);
}

/* CTA Costs Variant - Grey background */
.cta-section--costs {
  background: var(--fs-gray-100);
  padding: 3rem 2rem;
}

.cta-section--costs::before,
.cta-section--costs::after {
  content: '💷';
  opacity: 0.1;
}

.cta-section--costs h2 {
  color: var(--fs-dark);
}

.cta-section--costs p {
  color: var(--fs-gray-600);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--fs-dark);
  color: var(--fs-gray-300);
  padding: 3.5rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .footer-logo,
.footer-brand .custom-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand .custom-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: var(--fs-yellow);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a svg {
  fill: var(--fs-yellow);
}

.footer-social a:hover {
  transform: scale(1.15);
  opacity: 0.8;
}

.footer-social a:hover svg {
  fill: var(--fs-white);
}

.footer-column h4 {
  color: var(--fs-white);
  font-family: var(--fs-font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--fs-gray-400);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--fs-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--fs-gray-500);
}

.footer-bottom a {
  color: var(--fs-gray-500);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--fs-gray-300);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ==========================================================================
   Page Template Styling
   ========================================================================== */

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--fs-dark);
  background-size: cover;
  background-position: center;
  margin-top: -1px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
}

/* Grey overlay (default) */
.page-hero--grey .page-hero-overlay {
  background: linear-gradient(135deg, rgba(61, 61, 61, 0.85) 0%, rgba(61, 61, 61, 0.7) 100%);
}

.page-hero--grey h1 {
  color: var(--fs-white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Yellow overlay */
.page-hero--yellow .page-hero-overlay {
  background: linear-gradient(135deg, rgba(255, 241, 0, 0.9) 0%, rgba(255, 241, 0, 0.75) 100%);
}

.page-hero--yellow h1 {
  color: var(--fs-dark);
  text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
}

.page-hero h1 {
  font-size: 3rem;
  margin: 0;
}

/* Page Content Area */
.page-content-area {
  padding: 4rem 0;
  background: var(--fs-white);
}

.page-content-area .container {
  max-width: 1200px;
}

.page-article {
  background: var(--fs-white);
}

/* Entry Content - WordPress Editor Styling */
.entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fs-gray-700);
}

.entry-content h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--fs-dark);
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--fs-yellow);
  display: inline-block;
}

.entry-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--fs-dark);
}

.entry-content h4 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--fs-dark);
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content ul li::marker {
  color: var(--fs-yellow);
}

.entry-content strong {
  color: var(--fs-dark);
}

.entry-content a {
  color: var(--fs-dark);
  text-decoration: underline;
  text-decoration-color: var(--fs-yellow);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

.entry-content a:hover {
  background: var(--fs-yellow);
  text-decoration: none;
}

.entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--fs-gray-50);
  border-left: 4px solid var(--fs-yellow);
  font-style: italic;
  color: var(--fs-gray-600);
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.entry-content .wp-block-image {
  margin: 2rem 0;
}

.entry-content .wp-block-image.aligncenter {
  text-align: center;
}

.entry-content .wp-block-image.alignleft {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.entry-content .wp-block-image.alignright {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

/* WordPress Buttons */
.entry-content .wp-block-button__link {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.entry-content .wp-block-button__link:hover {
  background: var(--fs-dark);
  color: var(--fs-white);
  transform: translateY(-2px);
}

/* WordPress Columns */
.entry-content .wp-block-columns {
  gap: 2rem;
  margin: 2rem 0;
}

/* WordPress Tables */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.entry-content th,
.entry-content td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--fs-gray-200);
}

.entry-content th {
  background: var(--fs-gray-50);
  font-weight: 700;
  color: var(--fs-dark);
}

.entry-content tr:hover td {
  background: var(--fs-gray-50);
}

/* WordPress Gallery */
.entry-content .wp-block-gallery {
  gap: 1rem;
}

.entry-content .wp-block-gallery .wp-block-image {
  margin: 0;
}

/* WordPress Separator */
.entry-content hr,
.entry-content .wp-block-separator {
  border: none;
  height: 3px;
  background: var(--fs-yellow);
  margin: 3rem auto;
  max-width: 100px;
}

/* WordPress Cover Block */
.entry-content .wp-block-cover {
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */

/* Iframe Embeds (Booking system etc) */
iframe {
  border: none;
  width: 100%;
  min-height: 800px;
  background: var(--fs-white);
}

.entry-content iframe,
.page iframe {
  border: none;
  width: 100%;
  min-height: 1400px;
  background: var(--fs-white);
}

/* Book Now page specific */
.page-template-default .entry-content iframe,
body.page iframe {
  border: none;
  width: 100%;
  height: 1800px;
  min-height: 1400px;
  background: var(--fs-white);
}

/* Yumpu document embed - override page defaults */
iframe.yumpu-embed,
body.page iframe.yumpu-embed,
.entry-content iframe.yumpu-embed {
  border: none !important;
  width: 100% !important;
  height: 600px !important;
  min-height: 500px !important;
  max-height: 600px !important;
  background: var(--fs-dark) !important;
}

/* JotForm embed - very large to avoid scroll */
iframe.jotform-embed,
body.page iframe.jotform-embed,
.entry-content iframe.jotform-embed {
  border: none !important;
  width: 100% !important;
  height: 3000px !important;
  min-height: 2000px !important;
  background: var(--fs-white) !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

/* WordPress Navigation Menu */
.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--fs-header-bg);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
}

.main-nav li {
  position: relative;
}

.main-nav li:hover > ul {
  display: flex;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1300px) {
  .age-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .postcode-search {
    margin: 0 auto;
  }
  
  .hero-visual {
    display: none;
  }
  
  .age-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-card {
    min-width: 260px;
    max-width: 260px;
    width: 260px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .photo-strip-inner {
    flex-wrap: wrap;
  }
  
  .photo-strip-item {
    min-width: 100%;
  }
  
  .photo-strip-item img {
    height: 260px;
  }
}

@media (max-width: 1200px) {
  .site-logo img,
  .custom-logo {
    height: 50px;
    max-width: 150px;
  }
  
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--fs-dark);
    z-index: 999;
    padding: 80px 2rem 2rem;
    overflow-y: auto;
  }
  
  .main-nav.is-open {
    display: block;
  }
  
  .main-nav .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .main-nav .nav-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .main-nav .nav-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    color: var(--fs-white);
  }
  
  .main-nav .nav-menu a:hover {
    color: var(--fs-yellow);
  }
  
  /* Submenu in mobile - rebuilt for stability */
  .main-nav .sub-menu {
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  
  .main-nav .sub-menu li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
  }
  
  .main-nav .sub-menu a {
    display: block !important;
    padding: 0.75rem 0 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
    color: var(--fs-white) !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    text-decoration: none !important;
    transition: color 0.15s ease !important;
  }
  
  .main-nav .sub-menu a:hover {
    color: var(--fs-yellow) !important;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1000;
    position: relative;
  }
  
  /* Hamburger animation */
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Prevent body scroll when menu open */
  body.menu-open {
    overflow: hidden;
  }
  
  .trust-bar-inner {
    gap: 2rem;
  }
  
  .trust-item {
    flex: 0 0 calc(50% - 1rem);
  }

  .trust-text {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .trust-text span {
    font-size: 0.72rem;
  }
}

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  /* Tighter padding on mobile — use screen width properly */
  .container {
    padding: 0 1rem !important;
  }
  .section {
    padding: 2.5rem 1rem !important;
  }
  .page-hero {
    padding: 2rem 1rem !important;
  }
  
  .page-hero {
    min-height: 180px;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .page-content-area {
    padding: 2.5rem 0;
  }
  
  .entry-content {
    font-size: 1rem;
  }
  
  .entry-content h2 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .age-cards {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .venues-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .membership-features {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .photo-strip-item {
    min-width: 100%;
  }
  
  .search-input-wrap {
    flex-direction: column;
  }
  
  .header-actions .btn-login {
    display: none;
  }

  .header-inner {
    justify-content: flex-start !important;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.75rem;
  }
}

/* ==========================================================================
   Contact Form 7 Styling
   ========================================================================== */

.wpcf7 {
  max-width: 100%;
  margin: 0 auto;
}

.wpcf7-form {
  background: var(--fs-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--fs-gray-200);
}

.wpcf7-form p {
  margin-bottom: 1rem;
}

.wpcf7-form p:last-of-type {
  margin-bottom: 0;
}

.wpcf7-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--fs-dark);
}

.form-section-label {
  margin-top: 1.5rem !important;
  margin-bottom: 0.25rem !important;
  font-size: 1.1rem;
}

.form-hint {
  font-size: 0.9rem;
  color: var(--fs-gray-500);
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}

.wpcf7-form-control:not([type="submit"]) {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--fs-gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--fs-gray-100);
  box-sizing: border-box;
}

.wpcf7-form-control:not([type="submit"])::placeholder {
  color: var(--fs-gray-500);
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: var(--fs-yellow);
  box-shadow: 0 0 0 4px rgba(255, 241, 0, 0.25);
  background: var(--fs-white);
}

.wpcf7-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233d3d3d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.wpcf7-submit {
  display: block;
  padding: 1.1rem 2.5rem;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.wpcf7-submit:hover {
  background: var(--fs-dark);
  color: var(--fs-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.wpcf7-submit:active {
  transform: translateY(0);
}

/* Validation states */
.wpcf7-not-valid {
  border-color: #EF4444 !important;
  background: #FEF2F2 !important;
}

.wpcf7-not-valid-tip {
  color: #EF4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

.wpcf7-response-output {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.wpcf7-mail-sent-ok {
  background: #D1FAE5;
  border: 2px solid #10B981;
  color: #065F46;
}

.wpcf7-validation-errors,
.wpcf7-spam-blocked {
  background: #FEE2E2;
  border: 2px solid #EF4444;
  color: #991B1B;
}

/* Spinner */
.wpcf7-spinner {
  margin-left: 1rem;
}

/* Two column form layout */
.form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem !important;
  margin-bottom: 1rem !important;
}

.form-row > * {
  min-width: 0;
}

.form-row.form-row--full {
  grid-template-columns: 1fr !important;
}

/* Handle CF7's auto-paragraph insertion */
.form-row > p {
  display: contents !important;
}

.form-col {
  display: block !important;
  width: 100% !important;
}

.form-col .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}

.form-row .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}

.form-row br,
.form-col br {
  display: none !important;
}

/* Ensure all form inputs fill their containers */
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="number"],
.form-row input[type="date"],
.form-row select,
.form-row textarea {
  width: 100% !important;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr !important;
  }
  
  .wpcf7-form {
    padding: 1.75rem;
  }
  
  .wpcf7 {
    margin: 0;
  }
}

/* ==========================================================================
   What We Offer Splash Page
   ========================================================================== */

.services-splash {
  padding: 4rem 2rem;
  background: var(--fs-light);
}

.services-splash .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Featured Card (Weekly Classes) */
.service-splash-card--featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: var(--fs-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-splash-card--featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-splash-card--featured .service-splash-content {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-splash-card--featured .service-splash-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.service-splash-card--featured h2 {
  font-family: var(--fs-font-display);
  font-size: 2.25rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-splash-card--featured p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-splash-card--featured .service-splash-image {
  position: relative;
  overflow: hidden;
}

.service-splash-card--featured .service-splash-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  max-height: 400px;
  object-position: center 79%;
  border-radius: 20px;
}

/* Title icon inline with heading */
.title-icon {
  font-size: 0.85em;
}

/* Features list */
.service-splash-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-splash-features li {
  background: var(--fs-light);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--fs-dark);
  font-weight: 500;
}

.service-splash-link {
  color: var(--fs-dark);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.service-splash-card:hover .service-splash-link {
  color: var(--fs-yellow);
}

.service-splash-card--featured:hover .service-splash-link {
  color: #c9bf00;
}

/* Services Grid */
.services-splash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-splash-card {
  background: var(--fs-white);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-splash-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-splash-card h3 {
  font-family: var(--fs-font-display);
  font-size: 1.75rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-splash-card h3 .title-icon {
  font-size: 0.85em;
}

.service-splash-card > p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-splash-card .service-splash-features {
  margin-bottom: 1rem;
}

.service-splash-card .service-splash-features li {
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
}

/* Card accent colors */
.service-splash-card--parties {
  border-top: 4px solid #ff6b6b;
}

.service-splash-card--camps {
  border-top: 4px solid #ffd93d;
}

.service-splash-card--coaching {
  border-top: 4px solid #6bcb77;
}

.service-splash-card--schools {
  border-top: 4px solid #4d96ff;
}

/* Hero subtitle for this page */
.page-hero .hero-subtitle {
  font-size: 1.25rem;
  margin-top: 1rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero--yellow .hero-subtitle {
  color: var(--fs-dark);
}

.page-hero--grey .hero-subtitle {
  color: var(--fs-white);
}

/* Responsive */
@media (max-width: 900px) {
  .service-splash-card--featured {
    grid-template-columns: 1fr;
  }
  
  .service-splash-card--featured .service-splash-image {
    order: -1;
  }
  
  .service-splash-card--featured .service-splash-image img {
    min-height: 240px;
    max-height: 280px;
    object-position: center 79%;
  }
  
  .service-splash-card--featured h2 {
    font-size: 2rem;
  }
}

@media (max-width: 700px) {
  .services-splash-grid {
    grid-template-columns: 1fr;
  }
  
  .services-splash {
    padding: 2rem 1rem;
  }
  
  .service-splash-card--featured .service-splash-content {
    padding: 1.25rem 1rem;
  }
}

/* ==========================================================================
   Costs Page
   ========================================================================== */

.costs-intro {
  padding: 4rem 2rem;
  background: var(--fs-white);
}

.costs-intro .container {
  max-width: 1300px;
  margin: 0 auto;
}

.costs-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.costs-intro-content h2 {
  font-family: var(--fs-font-display);
  font-size: 2.25rem;
  color: var(--fs-dark);
  margin: 0 0 1.25rem;
}

.costs-intro-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fs-gray-600);
  margin: 0 0 1rem;
}

.costs-intro-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.costs-intro-features li {
  font-size: 1rem;
  color: var(--fs-dark);
  padding: 0.5rem 0;
  font-weight: 600;
}

.costs-intro-features li::before {
  content: none;
}

.costs-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.costs-intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--fs-gray-600);
}

/* Pricing Cards */
.costs-cards {
  padding: 3rem 2rem 4rem;
  background: linear-gradient(180deg, var(--fs-white) 0%, var(--fs-gray-100) 100%);
}

.costs-cards .container {
  max-width: 1400px;
  margin: 0 auto;
}

.costs-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cost-card {
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cost-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Kit Image Card */
.cost-card--kit {
  background: var(--fs-white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cost-card-kit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.cost-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cost-card-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
}

/* Trial Card - Green gradient */
.cost-card--trial {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.cost-card--trial:hover {
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
}

.cost-card--trial .cost-card-bg::before {
  content: '🎉';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.15;
}

.cost-card--trial .price-number {
  color: var(--fs-white);
  font-family: var(--fs-font-display);
  font-size: 7rem;
  line-height: 1;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.2);
}

.cost-card--trial h3,
.cost-card--trial p {
  color: var(--fs-white);
}

.cost-card--trial p {
  opacity: 0.9;
}

/* Joining Fee Card - Yellow gradient */
.cost-card--joining {
  background: linear-gradient(135deg, var(--fs-yellow) 0%, #eab308 100%);
  box-shadow: 0 10px 40px rgba(255, 241, 0, 0.3);
}

.cost-card--joining:hover {
  box-shadow: 0 20px 50px rgba(255, 241, 0, 0.5);
}

.cost-card--joining .cost-card-bg::before {
  content: '⭐';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.2;
}

.cost-card--joining .price-currency,
.cost-card--joining .price-number {
  color: var(--fs-dark);
}

.cost-card--joining h3,
.cost-card--joining p {
  color: var(--fs-dark);
}

.cost-card--joining p {
  opacity: 0.8;
}

/* Monthly Card - Dark gradient */
.cost-card--monthly {
  background: linear-gradient(135deg, var(--fs-dark) 0%, #1a1a1a 100%);
  box-shadow: 0 10px 40px rgba(61, 61, 61, 0.4);
}

.cost-card--monthly:hover {
  box-shadow: 0 20px 50px rgba(61, 61, 61, 0.5);
}

.cost-card--monthly .cost-card-bg::before {
  content: '⚽';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.1;
}

.cost-card--monthly .price-currency {
  color: var(--fs-yellow);
}

.cost-card--monthly .price-number {
  color: var(--fs-white);
}

.cost-card--monthly h3 {
  color: var(--fs-white);
}

.cost-card--monthly p {
  color: var(--fs-gray-400);
}

/* Shared card styles */
.cost-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.cost-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.75rem;
  font-weight: 700;
}

.price-number {
  font-family: var(--fs-font-display);
  font-size: 7rem;
  line-height: 1;
}

.price-period {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fs-gray-400);
  margin-left: 2px;
}

.cost-card h3 {
  font-family: var(--fs-font-display);
  font-size: 1.5rem;
  margin: 0.5rem 0 0.25rem;
}

.cost-card p {
  font-size: 0.95rem;
  margin: 0;
}

.costs-cta {
  text-align: center;
}

.costs-cta .btn-primary {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  background: var(--fs-dark);
  color: var(--fs-white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.costs-cta .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: var(--fs-yellow);
  color: var(--fs-dark);
}

/* Costs Featured Image */
.costs-image-section {
  margin-top: 3rem;
  text-align: center;
}

.costs-featured-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Payment Details Grid */
.costs-details {
  padding: 4rem 2rem;
  background: var(--fs-gray-100);
}

.costs-details .container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.costs-detail-block {
  background: var(--fs-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.costs-detail-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.costs-detail-block h3 {
  font-family: var(--fs-font-display);
  font-size: 1.35rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
}

.costs-detail-block p {
  color: var(--fs-gray-600);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Important Info */
.costs-important {
  padding: 3rem 2rem;
}

.costs-important .container {
  max-width: 800px;
  margin: 0 auto;
}

.costs-important-inner {
  background: #fef3cd;
  border: 2px solid #ffc107;
  border-radius: 16px;
  padding: 2rem;
}

.costs-important-inner h3 {
  font-family: var(--fs-font-display);
  font-size: 1.5rem;
  color: var(--fs-dark);
  margin: 0 0 1rem;
}

.costs-important-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.costs-important-inner li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--fs-gray-700);
  line-height: 1.6;
}

.costs-important-inner li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #856404;
  font-weight: bold;
}

.costs-important-inner li:last-child {
  margin-bottom: 0;
}

/* Costs Page Responsive */
@media (max-width: 1300px) {
  .costs-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .costs-cards-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cost-card--kit {
    height: 300px;
  }
  
  .cost-card:hover {
    transform: translateY(-5px) scale(1);
  }
  
  .costs-details-grid {
    grid-template-columns: 1fr;
  }
  
  .costs-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .costs-intro-content h2 {
    font-size: 1.75rem;
  }
  
  .costs-intro-image img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .costs-intro-text {
    font-size: 1rem;
  }
  
  .costs-intro-image img {
    height: 250px;
  }
  
  .price-number {
    font-size: 5rem;
  }
  
  .cost-card--trial .price-number {
    font-size: 5.5rem;
  }
  
  .cost-card-content {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-section {
  padding: 4rem 2rem;
  background: var(--fs-gray-100);
}

.contact-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

/* Left Side - Info */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-intro h2 {
  font-family: var(--fs-font-display);
  font-size: 2.5rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
}

.contact-intro p {
  font-size: 1.1rem;
  color: var(--fs-gray-600);
  line-height: 1.7;
  margin: 0;
}

/* Contact Cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--fs-white);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.2s;
  border: 2px solid transparent;
}

.contact-card:hover {
  border-color: var(--fs-yellow);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-card-icon {
  font-size: 1.75rem;
  width: 50px;
  height: 50px;
  background: var(--fs-yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-content h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fs-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.25rem;
}

.contact-card-content p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fs-dark);
  margin: 0;
}

.contact-card--social {
  cursor: default;
}

.contact-card--social:hover {
  transform: none;
}

.contact-social-links {
  display: flex;
  gap: 1rem;
}

.contact-social-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fs-dark);
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  background: var(--fs-gray-100);
  border-radius: 20px;
  transition: all 0.2s;
}

.contact-social-links a:hover {
  background: var(--fs-yellow);
  color: var(--fs-dark);
}

/* Contact Image */
.contact-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-image img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.contact-image-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--fs-white);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-image-badge span:first-child {
  font-weight: 700;
  color: var(--fs-dark);
  font-size: 0.95rem;
}

.contact-image-badge span:last-child {
  font-size: 0.8rem;
  color: var(--fs-gray-500);
}

/* Right Side - Form */
.contact-form-side {
  position: sticky;
  top: 100px;
}

.contact-form-wrapper {
  background: var(--fs-white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  border: 1px solid var(--fs-gray-200);
}

.contact-form-wrapper h3 {
  font-family: var(--fs-font-display);
  font-size: 1.75rem;
  color: var(--fs-dark);
  margin: 0 0 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--fs-gray-500);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.contact-form-wrapper .wpcf7 {
  max-width: 100%;
}

.contact-form-wrapper .wpcf7-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
}

/* Quick Links Section */
.contact-quick-links {
  padding: 4rem 2rem;
  background: var(--fs-white);
}

.contact-quick-links .container {
  max-width: 1200px;
  margin: 0 auto;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quick-link-card {
  background: var(--fs-gray-100);
  padding: 2rem;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.quick-link-card:hover {
  background: var(--fs-white);
  border-color: var(--fs-yellow);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quick-link-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.quick-link-card h4 {
  font-family: var(--fs-font-display);
  font-size: 1.35rem;
  color: var(--fs-dark);
  margin: 0 0 0.5rem;
}

.quick-link-card p {
  font-size: 0.9rem;
  color: var(--fs-gray-600);
  margin: 0;
  line-height: 1.5;
}

/* Contact Page Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-side {
    position: static;
  }
  
  .contact-intro h2 {
    font-size: 2rem;
  }
  
  .quick-links-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 2.5rem 1rem;
  }
  
  .contact-form-wrapper {
    padding: 1.75rem;
  }
  
  .contact-image img {
    height: 220px;
  }
}

/* ==========================================================================
   Join The Team Page
   ========================================================================== */

/* Intro Section */
.join-intro {
  padding: 4rem 2rem;
  background: var(--fs-white);
}

.join-intro .container {
  max-width: 1400px;
  margin: 0 auto;
}

.join-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.join-intro-content .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.join-intro-content h2 {
  font-family: var(--fs-font-display);
  font-size: 2.5rem;
  color: var(--fs-dark);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.join-intro-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fs-gray-600);
  margin: 0 0 1rem;
}

.join-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fs-gray-200);
}

.join-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--fs-font-display);
  font-size: 2rem;
  color: var(--fs-dark);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fs-gray-500);
}

.join-intro-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Our Story Section */
.join-story {
  padding: 5rem 2rem;
  background: var(--fs-gray-100);
}

.join-story .container {
  max-width: 1300px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.story-content h2 {
  font-family: var(--fs-font-display);
  font-size: 2.25rem;
  color: var(--fs-dark);
  margin: 0 0 1.25rem;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fs-gray-600);
  margin: 0 0 1rem;
}

.story-highlight {
  font-weight: 600;
  color: var(--fs-dark);
  font-style: italic;
  padding: 1.25rem 1.5rem;
  background: var(--fs-white);
  border-left: 4px solid var(--fs-yellow);
  border-radius: 0 12px 12px 0;
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.story-images-wrap {
  display: flex;
  flex-direction: column;
}

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

.story-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Meet the Founders Section */
.join-founders {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.join-founders .container {
  max-width: 1300px;
  margin: 0 auto;
}

.founders-photo-wrap {
  margin-bottom: 3rem;
  border-radius: 16px;
  overflow: hidden;
  max-height: 520px;
}

.founders-photo-wrap img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.founders-bios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.founder-bio h3 {
  font-family: var(--fs-font-display);
  font-size: 1.5rem;
  color: var(--fs-dark);
  margin: 0 0 0.25rem;
}

.founder-role {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.founder-bio p {
  color: var(--fs-gray-600);
  line-height: 1.75;
  margin: 0 0 0.75rem;
}

/* Parent Testimonials Section */
.join-quote-block {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.join-quote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.join-quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.join-quote-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.join-quote-content p {
  font-family: var(--fs-font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

.join-testimonials {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.join-testimonials .container {
  max-width: 1300px;
  margin: 0 auto;
}

.join-testimonials .section-header {
  text-align: center;
}

.join-testimonials .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.join-testimonials h2 {
  font-family: var(--fs-font-display);
  color: var(--fs-dark);
  font-size: 2.25rem;
  margin: 0 0 0.5rem;
}

.join-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  overflow: visible;
}

.join-testimonials .testimonial-card {
  background: var(--fs-gray-100);
  border-radius: 20px;
  padding: 2rem;
  border-left: 4px solid var(--fs-yellow);
  width: auto;
  min-width: auto;
  max-width: none;
}

.join-testimonials .testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fs-gray-600);
  font-style: italic;
  margin: 0 0 1rem;
}

.join-testimonials .testimonial-card cite {
  font-size: 0.9rem;
  color: var(--fs-dark);
  font-style: normal;
  font-weight: 600;
}

/* Two Paths Section */
.join-paths {
  padding: 5rem 2rem;
  background: var(--fs-gray-100);
}

.join-paths .container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.path-card {
  background: var(--fs-white);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.path-card--ownership:hover {
  border-color: var(--fs-yellow);
}

.path-card--management:hover {
  border-color: var(--fs-green);
}

.path-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.path-card h3 {
  font-family: var(--fs-font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: var(--fs-dark);
}

.path-tagline {
  color: var(--fs-gray-500);
  font-size: 1rem;
  margin: 0 0 1.5rem;
}

.path-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.path-card li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--fs-gray-600);
  font-size: 0.95rem;
}

.path-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--fs-green);
  font-weight: 700;
}

/* Benefits Grid */
.join-benefits {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.join-benefits .container {
  max-width: 1300px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--fs-gray-100);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: var(--fs-white);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-family: var(--fs-font-display);
  font-size: 1.25rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--fs-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Why Section */
.join-why {
  padding: 5rem 2rem;
  background: var(--fs-gray-100);
}

.join-why .container {
  max-width: 1300px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-content .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.join-why h2 {
  font-family: var(--fs-font-display);
  font-size: 2.25rem;
  color: var(--fs-dark);
  margin: 0 0 2rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-point h4 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--fs-dark);
}

.why-point p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fs-gray-600);
  margin: 0;
}

.why-quote {
  background: var(--fs-white);
  border-radius: 16px;
  padding: 1.5rem;
  border-left: 4px solid var(--fs-yellow);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-top: 2rem;
}

.why-quote blockquote {
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--fs-gray-600);
  margin: 0 0 0.75rem;
}

.why-quote cite {
  font-size: 0.85rem;
  color: var(--fs-dark);
  font-style: normal;
  font-weight: 600;
}

.why-image {
  display: flex;
  align-items: center;
}

.why-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Funding Section */
.join-funding {
  padding: 5rem 2rem;
  background: var(--fs-yellow);
}

.join-funding .container {
  max-width: 1300px;
  margin: 0 auto;
}

.join-funding .section-header {
  text-align: center;
}

.join-funding .section-tag {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.join-funding h2 {
  font-family: var(--fs-font-display);
  font-size: 2.25rem;
  color: var(--fs-dark);
  margin: 0 0 1rem;
}

.join-funding .section-header p {
  font-size: 1.05rem;
  color: var(--fs-dark);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.funding-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.funding-card {
  background: var(--fs-white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.funding-card:hover {
  transform: translateY(-5px);
}

.funding-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.funding-card h4 {
  font-family: var(--fs-font-display);
  font-size: 1.25rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
}

.funding-card p {
  font-size: 0.95rem;
  color: var(--fs-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Expansion Section */
.join-expansion {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.join-expansion .container {
  max-width: 1300px;
  margin: 0 auto;
}

.expansion-region {
  margin-bottom: 2rem;
}

.expansion-region h4 {
  font-family: var(--fs-font-display);
  font-size: 1.25rem;
  color: var(--fs-dark);
  margin: 0 0 1rem;
  text-align: center;
}

.expansion-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.city-tag {
  display: inline-block;
  background: var(--fs-gray-100);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fs-dark);
  text-decoration: none;
  transition: all 0.2s;
}

.city-tag:hover {
  background: var(--fs-yellow);
  transform: translateY(-2px);
}

.expansion-note {
  font-size: 0.95rem;
  color: var(--fs-gray-500);
  margin-top: 2rem;
  text-align: center;
}

/* Join Form Section */
/* ==========================================================================
   FAQ Accordion — global (used on FAQ page and Join page)
   ========================================================================== */

.faq-item {
  border: 2px solid var(--fs-gray-200);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--fs-white);
}

.faq-item.is-open {
  border-color: var(--fs-yellow);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  user-select: none;
}

.faq-q-text { font-size: 1rem; font-weight: 700; color: var(--fs-dark); line-height: 1.45; }

.faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--fs-gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.25s;
}

.faq-item.is-open .faq-chevron { background: var(--fs-yellow); transform: rotate(180deg); }
.faq-chevron svg { width: 14px; height: 14px; stroke: var(--fs-dark); fill: none; stroke-width: 2.5; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 1.4rem; }
.faq-item.is-open .faq-answer { max-height: 600px; padding: 0 1.4rem 1.25rem; }
.faq-answer p { font-size: 0.97rem; color: var(--fs-gray-600); line-height: 1.75; margin: 0; }
.faq-answer p + p { margin-top: 0.6rem; }
.faq-answer a { color: var(--fs-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Territory FAQs on Join page */
.territory-faq-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

.territory-faq-image {
  position: sticky;
  top: 120px;
}

.territory-faq-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.territory-faq-content .section-tag { margin-bottom: 0.5rem; display: inline-block; }
.territory-faq-content h2 { margin: 0 0 1.5rem; }
.territory-faq-list { display: flex; flex-direction: column; gap: 0; }

@media (max-width: 900px) {
  .territory-faq-grid {
    grid-template-columns: 1fr;
  }
  .territory-faq-image {
    position: static;
  }
  .territory-faq-image img {
    aspect-ratio: unset;
    height: 400px;
    object-fit: cover;
  }
}

.join-form {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.join-form .container {
  max-width: 900px;
  margin: 0 auto;
}

.join-form .form-wrapper {
  background: var(--fs-gray-100);
  border-radius: 24px;
  padding: 3rem;
}

.join-form .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.join-form .form-header h2 {
  font-family: var(--fs-font-display);
  font-size: 2rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
}

.join-form .form-header p {
  color: var(--fs-gray-600);
  font-size: 1rem;
  margin: 0;
}

.join-form-container .wpcf7-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
/* Reset all direct children margins — gap handles spacing */
.join-form-container .wpcf7-form > * {
  margin: 0 !important;
  padding: 0 !important;
}
/* form-row with a single field (no form-col children) goes full width */
.join-form-container .wpcf7-form .form-row:has(> .wpcf7-form-control-wrap),
.join-form-container .wpcf7-form .form-row.form-row--full {
  grid-template-columns: 1fr !important;
}
/* Never strip padding/shape from submit button */
.join-form-container .wpcf7-form .wpcf7-submit {
  padding: 1.1rem 2.5rem !important;
  border-radius: 50px !important;
  margin-top: 0 !important;
}
/* form-row stays as 2-col grid */
.join-form-container .wpcf7-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin: 0 !important;
}
/* Kill injected BRs */
.join-form-container .wpcf7-form br {
  display: none !important;
}
/* control-wrap fills width */
.join-form-container .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Inputs and selects */
.join-form-container .wpcf7-form input[type="text"],
.join-form-container .wpcf7-form input[type="email"],
.join-form-container .wpcf7-form input[type="tel"],
.join-form-container .wpcf7-form input[type="date"],
.join-form-container .wpcf7-form select {
  display: block !important;
  width: 100% !important;
  height: 52px !important;
  padding: 0 1.25rem !important;
  line-height: 52px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}
/* Section label and hint — restore padding */
.join-form-container .wpcf7-form .form-section-label,
.join-form-container .wpcf7-form .form-hint {
  padding: 0 !important;
  margin: 0 !important;
}
/* Submit row */
.join-form-container .wpcf7-form p:last-child {
  margin: 4px 0 0 !important;
}

/* Ensure form control wrappers are full width */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Territory form container */
.territory-form-container .wpcf7-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
}

/* Join Page Responsive */
@media (max-width: 900px) {
  .join-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .join-intro-content h2 {
    font-size: 2rem;
  }
  
  .join-intro-image img {
    height: 350px;
  }
  
  .join-stats {
    justify-content: center;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-images {
    order: -1;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .founders-bios {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founders-photo-wrap { max-height: 280px; }
  .founders-photo-wrap img { max-height: 280px; }
  
  .join-testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .paths-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .funding-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .join-intro {
    padding: 2.5rem 1rem;
  }
  
  .join-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .join-form .form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .expansion-cities {
    gap: 0.75rem;
  }
  
  .city-tag {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}




/* ==========================================================================
   Territory Page
   ========================================================================== */

/* Territory Intro */
.territory-intro {
  padding: 4rem 2rem;
  background: var(--fs-white);
}

.territory-intro .container {
  max-width: 1300px;
  margin: 0 auto;
}

.territory-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.territory-intro-content .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.territory-intro-content h2 {
  font-family: var(--fs-font-display);
  font-size: 2.25rem;
  color: var(--fs-dark);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.territory-intro-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fs-gray-600);
  margin: 0 0 1rem;
}

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

.territory-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--fs-dark);
  font-weight: 500;
}

.territory-benefit .benefit-icon {
  font-size: 1.25rem;
}

.territory-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* What's Included */
.territory-included {
  padding: 5rem 2rem;
  background: var(--fs-gray-100);
}

.territory-included .container {
  max-width: 1300px;
  margin: 0 auto;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.included-card {
  background: var(--fs-white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.included-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.included-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.included-card h4 {
  font-family: var(--fs-font-display);
  font-size: 1.2rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
}

.included-card p {
  font-size: 0.9rem;
  color: var(--fs-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Territory Options */
.territory-options {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.territory-options .container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.option-card {
  background: var(--fs-gray-100);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.option-card:hover {
  border-color: var(--fs-yellow);
  transform: translateY(-5px);
}

.option-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.option-card h3 {
  font-family: var(--fs-font-display);
  font-size: 1.5rem;
  color: var(--fs-dark);
  margin: 0 0 1rem;
}

.option-card > p {
  font-size: 0.95rem;
  color: var(--fs-gray-600);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.option-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.option-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--fs-gray-600);
}

.option-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--fs-green);
  font-weight: 700;
}

/* Territory Testimonial */
.territory-testimonial {
  padding: 4rem 2rem;
  background: var(--fs-yellow);
}

.territory-testimonial .container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-feature {
  text-align: center;
}

.testimonial-feature blockquote {
  font-size: 1.25rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--fs-dark);
  margin: 0 0 1.5rem;
}

.testimonial-feature cite {
  font-size: 1rem;
  color: var(--fs-dark);
  font-style: normal;
  font-weight: 700;
}

/* Territory Form */
.territory-form {
  padding: 5rem 2rem;
  background: var(--fs-gray-100);
}

.territory-form .container {
  max-width: 700px;
  margin: 0 auto;
}

.territory-form .form-wrapper {
  background: var(--fs-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.territory-form .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.territory-form .form-header h2 {
  font-family: var(--fs-font-display);
  font-size: 2rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
}

.territory-form .form-header p {
  color: var(--fs-gray-600);
  font-size: 1rem;
  margin: 0;
}

/* Other Territories */
.territory-others {
  padding: 4rem 2rem;
  background: var(--fs-white);
  text-align: center;
}

.territory-others .container {
  max-width: 600px;
  margin: 0 auto;
}

.territory-others h3 {
  font-family: var(--fs-font-display);
  font-size: 1.5rem;
  color: var(--fs-dark);
  margin: 0 0 0.5rem;
}

.territory-others p {
  color: var(--fs-gray-500);
  margin: 0 0 1.5rem;
}

/* Territory Page Responsive */
@media (max-width: 900px) {
  .territory-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .territory-intro-image img {
    height: 300px;
  }
  
  .territory-benefits {
    grid-template-columns: 1fr;
  }
  
  .included-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .territory-form .form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-feature blockquote {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   About Us Page
   ========================================================================== */

/* About Story Section */
.about-story {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.about-story .container {
  max-width: 1300px;
  margin: 0 auto;
}

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

.about-story-content .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-story-content h2 {
  font-family: var(--fs-font-display);
  font-size: 2.25rem;
  color: var(--fs-dark);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.about-story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fs-gray-600);
  margin: 0 0 1rem;
}

.about-story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

.story-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  align-items: stretch;
}

.story-images-grid img {
  height: 340px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.story-images-grid .story-img-middle {
  height: 340px;
}

.about-mission {
  margin-top: 3rem;
  text-align: center;
}

.mission-quote {
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  color: var(--fs-dark);
  line-height: 1.7;
  padding: 2rem 3rem;
  background: var(--fs-yellow);
  border-radius: 20px;
  margin: 0;
}

/* Stats Section */
.about-stats {
  padding: 4rem 2rem;
  background: var(--fs-gray-100);
}

.about-stats .container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--fs-white);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-number {
  display: block;
  font-family: var(--fs-font-display);
  font-size: 2.25rem;
  color: var(--fs-dark);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fs-gray-500);
  font-weight: 500;
}

/* About Founders Section */
.about-founders {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.about-founders .container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Values Section */
.about-values {
  padding: 5rem 2rem;
  background: var(--fs-gray-100);
}

.about-values .container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.value-card {
  background: var(--fs-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-family: var(--fs-font-display);
  font-size: 1.25rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--fs-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Coaches Section */
.about-coaches {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.about-coaches .container {
  max-width: 1300px;
  margin: 0 auto;
}

.coaches-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.coaches-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 20px;
}

.coaches-image-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.coaches-image-features .coach-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fs-dark);
}

.coaches-image-features .coach-feature span {
  color: #22c55e;
  font-weight: 700;
}

.coaches-content .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.coaches-content h2 {
  font-family: var(--fs-font-display);
  font-size: 2rem;
  color: var(--fs-dark);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.coaches-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fs-gray-600);
  margin: 0 0 1rem;
}

/* Join CTA Section */
.about-join {
  padding: 4rem 2rem;
  background: var(--fs-gray-100);
}

.about-join .container {
  max-width: 1200px;
  margin: 0 auto;
}

.join-cta-box {
  background: var(--fs-white);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.join-cta-content h3 {
  font-family: var(--fs-font-display);
  font-size: 1.75rem;
  color: var(--fs-dark);
  margin: 0 0 0.5rem;
}

.join-cta-content p {
  color: var(--fs-gray-600);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.join-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Photos Section */
.about-photos {
  padding: 3rem 2rem;
  background: var(--fs-white);
}

.about-photos .container {
  max-width: 1400px;
  margin: 0 auto;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-item {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.photo-item:hover {
  transform: scale(1.03);
}

/* About CTA Section */
.about-cta {
  padding: 5rem 2rem;
  background: var(--fs-yellow);
  text-align: center;
}

.about-cta .container {
  max-width: 700px;
  margin: 0 auto;
}

.about-cta h2 {
  font-family: var(--fs-font-display);
  font-size: 2.5rem;
  color: var(--fs-dark);
  margin: 0 0 1rem;
}

.about-cta p {
  font-size: 1.15rem;
  color: var(--fs-dark);
  margin: 0 0 2rem;
}

.about-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* About Page Responsive */
@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-story-image {
    order: -1;
  }
  
  .about-story-image img {
    height: 300px;
  }

  .story-images-grid img { height: 200px; }
  .story-images-grid .story-img-middle { height: 200px; }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .coaches-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .coaches-image-wrap {
    order: -1;
  }
  
  .coaches-image-wrap img {
    height: 250px;
  }
  
  .join-cta-box {
    flex-direction: column;
    text-align: center;
  }
  
  .join-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .join-cta-buttons .btn-primary,
  .join-cta-buttons .btn-secondary {
    width: 100%;
  }
  
  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-story {
    padding: 3rem 1rem;
  }
  
  .about-story-content h2 {
    font-size: 1.75rem;
  }
  
  .mission-quote {
    font-size: 1.1rem;
    padding: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .coaches-image-features {
    grid-template-columns: 1fr;
  }
  
  .photos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .photo-item {
    height: 150px;
  }
  
  .about-cta h2 {
    font-size: 1.75rem;
  }
  
  .about-cta .cta-buttons {
    flex-direction: column;
  }
}

/* ==========================================================================
   Weekly Classes Page
   ========================================================================== */

/* Classes Intro */
.classes-intro {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.classes-intro .container {
  max-width: 1300px;
  margin: 0 auto;
}

.classes-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-lead {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fs-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.classes-intro-content p {
  font-size: 1.1rem;
  color: var(--fs-gray-600);
  line-height: 1.8;
}

.classes-intro-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Age Groups Section */
.classes-ages {
  padding: 5rem 2rem;
  background: var(--fs-gray-100);
}

.classes-ages .container {
  max-width: 1200px;
  margin: 0 auto;
}

.classes-ages .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.classes-ages .section-header p {
  font-size: 1.1rem;
  color: var(--fs-gray-600);
  max-width: 700px;
  margin: 1rem auto 0;
}

.age-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1300px) {
  .age-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .age-cards { grid-template-columns: 1fr; }
}

.age-card {
  background: var(--fs-white);
  border-radius: 24px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.age-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.age-card--tiny {
  border-color: #a8e6cf;
}

.age-card--mini {
  border-color: #ffd93d;
}

.age-card--mighty {
  border-color: #ff6b6b;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-family: var(--fs-font-display);
  font-size: 1.5rem;
  color: var(--fs-white);
  margin-bottom: 1.25rem;
}

.age-card--tiny .age-badge {
  background: #a8e6cf;
  color: var(--fs-dark);
}

.age-card--mini .age-badge {
  background: #ffd93d;
  color: var(--fs-dark);
}

.age-card--mighty .age-badge {
  background: #ff6b6b;
  color: var(--fs-white);
}

.age-card h3 {
  font-family: var(--fs-font-display);
  font-size: 1.5rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
}

.age-card p {
  font-size: 0.95rem;
  color: var(--fs-gray-600);
  line-height: 1.7;
  margin: 0;
}

/* What to Expect Section */
.classes-expect {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.classes-expect .container {
  max-width: 1300px;
  margin: 0 auto;
}

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.expect-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.expect-content .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.expect-content h2 {
  font-family: var(--fs-font-display);
  font-size: 2.25rem;
  color: var(--fs-dark);
  margin: 0 0 1.25rem;
}

.expect-content p {
  font-size: 1.05rem;
  color: var(--fs-gray-600);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.expect-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.expect-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fs-dark);
}

.expect-feature span {
  color: #22c55e;
  font-weight: 700;
}

/* Booking Section */
.classes-booking {
  padding: 5rem 2rem;
  background: var(--fs-gray-100);
}

.classes-booking .container {
  max-width: 1200px;
  margin: 0 auto;
}

.classes-booking .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.classes-booking .section-header p {
  font-size: 1.1rem;
  color: var(--fs-gray-600);
}

.booking-iframe-container {
  background: var(--fs-white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.booking-iframe-container iframe {
  border-radius: 12px;
}

/* Classes CTA */
.classes-cta {
  padding: 4rem 2rem;
  background: var(--fs-yellow);
  text-align: center;
}

.classes-cta .container {
  max-width: 700px;
  margin: 0 auto;
}

.classes-cta h2 {
  font-family: var(--fs-font-display);
  font-size: 2rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
}

.classes-cta p {
  font-size: 1.1rem;
  color: var(--fs-dark);
  margin: 0 0 1.5rem;
}

.classes-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Weekly Classes Responsive */
@media (max-width: 900px) {
  .classes-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .classes-intro-image {
    order: -1;
  }
  
  .classes-intro-image img {
    height: 280px;
  }
  
  .age-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .expect-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .expect-image {
    order: -1;
  }
  
  .expect-image img {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .classes-intro {
    padding: 3rem 1rem;
  }
  
  .intro-lead {
    font-size: 1.15rem;
  }
  
  .expect-features {
    grid-template-columns: 1fr;
  }
  
  .classes-cta .cta-buttons {
    flex-direction: column;
  }
  
  .booking-iframe-container {
    padding: 1rem;
  }
}

/* ==========================================================================
   Service Pages (Parties, 1-1, Schools)
   ========================================================================== */

/* Service Intro */
.service-intro {
  padding: 3.5rem 2rem;
  background: var(--fs-white);
}

.service-intro .container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-intro-content .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-intro-content h2 {
  font-family: var(--fs-font-display);
  font-size: 2.25rem;
  color: var(--fs-dark);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.service-intro-content p {
  font-size: 1.05rem;
  color: var(--fs-gray-600);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fs-dark);
}

.service-feature span {
  color: #22c55e;
  font-weight: 700;
}

.service-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Service Form Section */
.service-form {
  padding: 3.5rem 2rem;
  background: var(--fs-gray-100);
}

.service-form .container {
  max-width: 1400px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.form-info .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-info h2 {
  font-family: var(--fs-font-display);
  font-size: 2rem;
  color: var(--fs-dark);
  margin: 0 0 1rem;
}

.form-info > p {
  font-size: 1rem;
  color: var(--fs-gray-600);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.form-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-contact-info .contact-item {
  font-size: 0.95rem;
  color: var(--fs-gray-600);
}

.form-contact-info .contact-item strong {
  display: block;
  color: var(--fs-dark);
  margin-bottom: 0.25rem;
}

.form-contact-info .contact-item a {
  color: var(--fs-dark);
  text-decoration: none;
  font-weight: 600;
}

.form-contact-info .contact-item a:hover {
  color: var(--fs-yellow-text);
}

.form-wrapper {
  background: var(--fs-white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Remove double styling when form is inside wrapper */
.form-wrapper .wpcf7-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

/* Schools Services Grid */
.schools-services {
  padding: 5rem 2rem;
  background: var(--fs-gray-100);
}

.schools-services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.schools-services .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.service-card {
  background: var(--fs-white);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--fs-font-display);
  font-size: 1.35rem;
  color: var(--fs-dark);
  margin: 0 0 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--fs-gray-600);
  line-height: 1.7;
  margin: 0;
}

/* Service Pages Responsive */
@media (max-width: 900px) {
  .service-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-intro-image {
    order: -1;
  }
  
  .service-intro-image img {
    height: 280px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .service-intro {
    padding: 3rem 1rem;
  }
  
  .service-intro-content h2 {
    font-size: 1.75rem;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .form-wrapper {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Service Pages - Additional Styles
   ========================================================================== */

/* Intro Lead Text */
.intro-lead {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fs-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-intro-content h3 {
  font-family: var(--fs-font-display);
  font-size: 1.35rem;
  color: var(--fs-dark);
  margin: 1.75rem 0 0.75rem;
}

.cta-text {
  font-weight: 600;
  color: var(--fs-dark);
  margin-top: 1.5rem;
}

/* Included Section (Parties) */
.service-included {
  padding: 4rem 2rem;
  background: var(--fs-gray-100);
}

.service-included .container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-included .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.included-item {
  background: var(--fs-white);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.included-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.included-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.included-item p {
  font-size: 0.95rem;
  color: var(--fs-gray-600);
  margin: 0;
  line-height: 1.5;
}

.price-highlight {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--fs-yellow);
  border-radius: 16px;
}

.price-highlight p {
  font-size: 1.15rem;
  color: var(--fs-dark);
  margin: 0;
}

.price-highlight strong {
  font-size: 1.5rem;
  font-family: var(--fs-font-display);
}

.price-highlight span {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  opacity: 0.8;
}

/* Why Section (1-1, Schools) */
.service-why {
  padding: 3.5rem 2rem;
  background: var(--fs-gray-100);
}

.service-why .container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-why .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.service-why .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-item {
  background: var(--fs-white);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.why-item h4 {
  font-family: var(--fs-font-display);
  font-size: 1.15rem;
  color: var(--fs-dark);
  margin: 0 0 0.5rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--fs-gray-600);
  margin: 0;
  line-height: 1.5;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fs-dark);
}

/* Benefits Section (Schools) */
.service-benefits {
  padding: 3.5rem 2rem;
  background: var(--fs-white);
}

.service-benefits .container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-benefits .section-header {
  margin-bottom: 1.5rem;
}

.benefits-content p {
  font-size: 1.05rem;
  color: var(--fs-gray-600);
  line-height: 1.8;
}

/* Why List (Schools) */
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--fs-white);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.why-list-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-list-item .check-icon {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-list-item p {
  font-size: 1rem;
  color: var(--fs-gray-600);
  margin: 0;
  line-height: 1.5;
}

/* Service Pages Additional Responsive */
@media (max-width: 900px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-why .why-grid {
    grid-template-columns: 1fr;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .intro-lead {
    font-size: 1.15rem;
  }
  
  .included-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .service-why .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-list-item {
    padding: 1rem;
  }
  
  .why-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Wide Form Layout (Schools, etc)
   ========================================================================== */

.service-form--wide .container {
  max-width: 900px;
}

.form-header-centered {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header-centered .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-header-centered h2 {
  font-family: var(--fs-font-display);
  font-size: 2rem;
  color: var(--fs-dark);
  margin: 0 0 1rem;
}

.form-header-centered p {
  font-size: 1.05rem;
  color: var(--fs-gray-600);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.form-wrapper--wide {
  max-width: 700px;
  margin: 0 auto;
}

/* Remove nested styling */
.form-wrapper--wide .wpcf7-form,
.form-wrapper .wpcf7-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

/* Benefits Grid (Schools) */
.benefits-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.benefits-content .section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefits-content h2 {
  font-family: var(--fs-font-display);
  font-size: 2rem;
  color: var(--fs-dark);
  margin: 0 0 1.25rem;
}

.benefits-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .benefits-image {
    order: -1;
  }
  
  .benefits-image img {
    height: 250px;
  }
}

/* ==========================================================================
   Parties Page Enhancements
   ========================================================================== */

/* Intro Cards */
.parties-intro {
  padding: 4rem 2rem 2rem;
  background: var(--fs-white);
}

.intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-card {
  background: var(--fs-yellow);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  text-align: center;
}

.intro-card-icon {
  font-size: 1.4rem;
  margin-right: 0.5rem;
}

.intro-card p {
  font-family: var(--fs-font-display);
  font-size: 1.4rem;
  color: var(--fs-dark);
  margin: 0;
  line-height: 1.4;
}

/* Full width included grid - 3x2 */
.included-grid--full {
  grid-template-columns: repeat(3, 1fr);
}

/* Banner image below cards */
.included-banner-image {
  margin-top: 3rem;
}

.included-banner-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Price highlight styling */
.price-highlight {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--fs-yellow);
  border-radius: 16px;
}

.price-headline {
  font-family: var(--fs-font-display) !important;
  font-size: 2rem !important;
  color: var(--fs-dark) !important;
  margin: 0 0 0.5rem !important;
}

.price-note {
  font-size: 0.95rem;
  color: var(--fs-gray-600);
  margin: 0 !important;
}

/* Form info image */
img.form-info-image,
.form-info-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin-top: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Even spacing for all CF7 form elements */
.wpcf7-form > p,
.wpcf7-form > div,
.wpcf7-form > .form-row,
.wpcf7-form > .form-field {
  margin-bottom: 1rem !important;
}

.wpcf7-form > p:last-of-type,
.wpcf7-form > div:last-of-type {
  margin-bottom: 0 !important;
}

/* Single field wrapper for consistent spacing */
.form-field {
  margin-bottom: 1rem !important;
}

.form-field .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}

/* Ensure consistent spacing on all form control wrappers */
.wpcf7-form .wpcf7-form-control-wrap {
  display: block !important;
  margin-bottom: 0 !important;
}

/* Single full-width fields need spacing */
.wpcf7-form > p > .wpcf7-form-control-wrap,
.wpcf7-form p:not(.form-row p) {
  margin-bottom: 0 !important;
}

/* Form rows consistent spacing */
.form-row {
  margin-bottom: 1rem !important;
}

/* Last element before submit should have spacing */
.wpcf7-form p:has([type="submit"]) {
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  .included-grid--full {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .intro-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .intro-card p {
    font-size: 1.2rem;
  }
  
  .included-grid--full {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .included-banner-image img {
    height: 200px;
  }
  
  .price-headline {
    font-size: 1.5rem !important;
  }
  
  img.form-info-image,
  .form-info-image {
    display: none;
  }
}

/* Territory Stats Section */
.territory-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #db5461;
}

.territory-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.territory-stat .stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.territory-stat .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #171738;
}

.territory-venues-info {
    margin: 20px 0;
    padding: 16px;
    background: #f0f6fc;
    border-radius: 8px;
}

.territory-venues-info p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.territory-strengths-box {
    margin: 25px 0;
    padding: 20px;
    background: #fff9f0;
    border-left: 4px solid #ffd97d;
    border-radius: 8px;
}

.territory-strengths-box p {
    margin: 0 0 12px 0;
}

.territory-strengths-box p:last-child {
    margin-bottom: 0;
}

.territory-strengths-box strong {
    color: #171738;
}

@media (max-width: 768px) {
    .territory-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .territory-stat .stat-value {
        font-size: 20px;
    }
}

/* ============================================================================
   TERRITORY TILES SECTION - Join Page (REDESIGNED)
   ============================================================================ */

.uk-territories {
    background: #ffffff;
}

.territories-region {
    margin-bottom: 80px;
}

.territories-region h3 {
    font-size: 24px;
    font-weight: 700;
    color: #171738;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.territory-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
    align-items: stretch;
}

.territory-tile {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-height: 100%;
}

.territory-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffd97d;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.territory-tile:hover {
    border-color: #db5461;
    box-shadow: 0 16px 40px rgba(219, 84, 97, 0.18);
    transform: translateY(-8px);
}

.territory-tile:hover::before {
    height: 6px;
}

.tile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 28px 8px 28px;
    gap: 16px;
}

.tile-header h4 {
    font-size: 20px;
    font-weight: 800;
    color: #171738;
    margin: 0;
    line-height: 1.25;
    flex: 1;
    letter-spacing: -0.4px;
}

.tile-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 24px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.tile-badge.premium {
    background: #fef3e0;
    color: #b85c2c;
}

.tile-badge.flagship {
    background: #e6f4f7;
    color: #0c5460;
    font-weight: 800;
}

.tile-badge.stable {
    background: #e8f5e9;
    color: #2d6a3e;
}

.tile-badge.volume {
    background: #fce4ec;
    color: #880e4f;
}

.tile-badge.growth {
    background: #e3f2fd;
    color: #1565c0;
}

.tile-badge.scale {
    background: #f0f0f0;
    color: #424242;
    font-weight: 700;
}

.tile-badge.expansion {
    background: #ffebee;
    color: #c62828;
}

.tile-badge.balanced {
    background: #e8f5e9;
    color: #1b5e20;
}

.tile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 24px 28px;
    background: #f9fafb;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.tile-stat {
    text-align: center;
    padding: 0 8px;
}

.tile-stat:not(:last-child) {
    border-right: 1px solid #e8e8e8;
}

.tile-stat .label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.tile-stat .value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #db5461;
    letter-spacing: -0.3px;
}

.tile-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    padding: 24px 28px 20px 28px;
    margin: 0;
    flex-grow: 1;
    font-weight: 500;
}

.tile-cta {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #db5461;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0 28px 28px 28px;
    letter-spacing: 0.3px;
}

.territory-tile:hover .tile-cta {
    color: #171738;
    transform: translateX(4px);
}

.territories-note {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-top: 60px;
    padding: 28px;
    background: #f0f6fc;
    border-radius: 12px;
    line-height: 1.7;
    border-left: 4px solid #db5461;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .territory-tiles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .territory-tiles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tile-header {
        padding: 24px 24px 4px 24px;
    }
    
    .tile-header h4 {
        font-size: 18px;
    }
    
    .tile-stats {
        padding: 20px 24px;
    }
    
    .tile-stat {
        padding: 0 6px;
    }
    
    .tile-stat .label {
        font-size: 9px;
        margin-bottom: 6px;
    }
    
    .tile-stat .value {
        font-size: 16px;
    }
    
    .tile-desc {
        padding: 20px 24px 16px 24px;
        font-size: 14px;
    }
    
    .tile-cta {
        padding: 0 24px 24px 24px;
    }
    
    .territories-region h3 {
        font-size: 22px;
        margin-bottom: 32px;
    }
}


/* ============================================================================
   WHY FOOTBALL SQUIRTS SECTION
   ============================================================================ */

.join-why-squirts {
    background: #ffffff;
}

.why-squirts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

@media (max-width: 1024px) {
    .why-squirts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .why-squirts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.why-card {
    padding: 32px;
    background: #f9fafb;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-align: center;
    transition: all 0.35s ease;
}

.why-card:hover {
    border-color: #db5461;
    box-shadow: 0 12px 32px rgba(219, 84, 97, 0.12);
    transform: translateY(-4px);
}

.why-card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #171738;
    margin: 0 0 12px 0;
}

.why-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Comparison Table */
.why-squirts-comparison {
    margin-top: 80px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 80px calc(50vw - 50%);
    background: var(--fs-yellow);
    background-image: url('https://www.footballsquirts.co.uk/wp-content/uploads/E56A4510-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: visible;
    position: relative;
}

.why-squirts-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 241, 0, 0.92);
    z-index: 0;
}

.why-squirts-comparison > * {
    position: relative;
    z-index: 1;
}

.comparison-emoji {
    text-align: center;
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.why-squirts-comparison h3,
.why-squirts-comparison h2 {
    font-size: 28px;
    font-weight: 800;
    color: #171738;
    margin: 0 0 20px 0;
    text-align: center;
    letter-spacing: -0.5px;
}

.why-squirts-comparison-blurb {
    font-size: 16px;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 500;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.comparison-table thead {
    background: #e8e8e8;
    color: #171738;
}

.comparison-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #171738;
}

.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.comparison-table td:first-child {
    font-weight: 700;
    color: #171738;
    background: #f9fafb;
    min-width: 180px;
}

.comparison-table tbody tr:nth-child(odd) td {
    background: #ffffff;
}

.comparison-table tbody tr:nth-child(even) td {
    background: #f9fafb;
}

.comparison-table tbody tr:nth-child(even) td:first-child {
    background: #f0f0f0;
}

.comparison-table tbody tr:hover td {
    background: #f0f6fc;
}

.comparison-table tbody tr:hover td:first-child {
    background: #e8e8e8;
}

/* Mobile: Switch to card layout */
@media (max-width: 1024px) {
    .comparison-table {
        display: block;
        border-radius: 0;
        box-shadow: none;
    }
    
    .comparison-table thead {
        display: none;
    }
    
    .comparison-table tbody {
        display: block;
    }
    
    .comparison-table tr {
        display: block;
        margin-bottom: 16px;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .comparison-table td {
        display: block;
        padding: 12px 16px;
        border-bottom: none;
        text-align: left;
        border-top: 1px solid #e8e8e8;
    }
    
    .comparison-table td:first-child {
        background: #e8e8e8;
        border-top: none;
        font-weight: 700;
        padding: 14px 16px;
        min-width: auto;
    }
    
    .comparison-table tr:nth-child(odd) td {
        background: #ffffff;
    }
    
    .comparison-table tr:nth-child(even) td {
        background: #ffffff;
    }
    
    .comparison-table tr:nth-child(even) td:first-child {
        background: #e8e8e8;
    }
    
    .comparison-table td::before {
        content: attr(data-label);
        display: inline-block;
        font-weight: 700;
        color: #171738;
        margin-right: 8px;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .why-squirts-comparison {
        margin-top: 60px;
        padding: 50px calc(50vw - 50%);
    }
    
    .why-squirts-comparison h3 {
        font-size: 22px;
        margin-bottom: 36px;
    }
    
    .comparison-table tr {
        margin-bottom: 12px;
    }
    
    .comparison-table td {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .comparison-table td:first-child {
        padding: 12px 14px;
    }
    
    .comparison-table td::before {
        min-width: 130px;
        font-size: 12px;
    }
}


/* Territory Taken State */
.territory-tile--taken {
    opacity: 0.6;
    pointer-events: none;
}

.territory-tile--taken:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.territory-tile--taken .tile-header h4 {
    color: #999;
}

.territory-tile--taken .tile-stat .value {
    color: #999;
}

.territory-tile--taken .tile-desc {
    color: #999;
}

.territory-tile--taken .tile-cta {
    color: #999;
    cursor: not-allowed;
}

.tile-badge.taken {
    background: #e8e8e8;
    color: #666;
    font-weight: 800;
}


/* Territory Tile - Core Hubs and Coverage */
.tile-hubs,
.tile-coverage {
    font-size: 13px;
    line-height: 1.6;
    padding: 16px 28px;
    margin: 0;
    background: #f9fafb;
    color: #555;
    border-top: 1px solid #e8e8e8;
    border-bottom: none;
}

.tile-coverage {
    border-bottom: 1px solid #e8e8e8;
}

.hub-label,
.coverage-label {
    font-weight: 700;
    color: #171738;
    display: block;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.hub-list,
.coverage-list {
    display: block;
    font-size: 13px;
    color: #555;
    font-weight: 500;
    margin: 0;
}


/* Territory Page - Coverage Boxes */
.territory-coverage-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.coverage-box {
    padding: 24px;
    background: #f9fafb;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
}

.coverage-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #171738;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.coverage-box p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .territory-coverage-boxes {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* Area Taken Message */
.area-taken-message {
    text-align: center;
    padding: 60px 40px;
    background: #f9fafb;
    border-radius: 16px;
    border: 2px solid #e8e8e8;
}

.area-taken-message .taken-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
    color: #2d6a3e;
}

.area-taken-message h2 {
    font-size: 28px;
    font-weight: 800;
    color: #171738;
    margin: 0 0 16px 0;
}

.area-taken-message p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
}

.area-taken-message .btn-primary {
    display: inline-block;
}

@media (max-width: 768px) {
    .area-taken-message {
        padding: 40px 24px;
    }
    
    .area-taken-message .taken-icon {
        font-size: 48px;
    }
    
    .area-taken-message h2 {
        font-size: 22px;
    }
}


/* Unlisted Area CTA Section */
.unlisted-area-cta {
    margin-top: 80px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 60px calc(50vw - 50%);
    background: var(--fs-yellow);
    background-image: url('https://www.footballsquirts.co.uk/wp-content/uploads/E56A4880-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: visible;
    position: relative;
}

.unlisted-area-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 241, 0, 0.92);
    z-index: 0;
}

.unlisted-area-cta > * {
    position: relative;
    z-index: 1;
}

.cta-box {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #171738;
    margin: 0 0 16px 0;
    letter-spacing: -0.3px;
}

.cta-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.cta-box .btn-secondary {
    display: inline-block;
}

@media (max-width: 768px) {
    .unlisted-area-cta {
        margin-top: 60px;
        padding: 40px calc(50vw - 50%);
    }
    
    .cta-box {
        padding: 28px;
    }
    
    .cta-box h3 {
        font-size: 20px;
    }
    
    .cta-box p {
        font-size: 14px;
    }
}

/* Extra small devices - 480px and below */
@media (max-width: 480px) {
    /* Join form specific */
    .join-form-container .wpcf7-form .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .join-form-container .wpcf7-form input[type="text"],
    .join-form-container .wpcf7-form input[type="email"],
    .join-form-container .wpcf7-form input[type="tel"],
    .join-form-container .wpcf7-form input[type="date"],
    .join-form-container .wpcf7-form select {
        height: auto !important;
        padding: 0.75rem 1rem !important;
        line-height: 1.4 !important;
        font-size: 14px !important;
    }
    
    /* Contact Form 7 - all forms */
    .wpcf7-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .wpcf7-form > p {
        margin: 0 !important;
    }
    
    .wpcf7-form > div {
        margin: 0 !important;
    }
    
    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 0 !important;
    }
    
    .form-col {
        width: 100% !important;
    }
    
    .wpcf7-form-control:not([type="submit"]) {
        padding: 0.75rem 1rem !important;
        font-size: 14px !important;
        width: 100% !important;
    }
    
    input.wpcf7-form-control,
    textarea.wpcf7-form-control,
    select.wpcf7-form-control {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Submit buttons stay full width on mobile */
    input[type="submit"].wpcf7-form-control {
        padding: 0.875rem 1.25rem !important;
        font-size: 15px !important;
        border-radius: 50px !important;
    }
}

