/* 
Theme Name: RecSports
Theme URI: https://recsports.org/
Author: RecSports Team
Author URI: https://recsports.org/
Description: A high-performance, pixel-perfect theme for the RecSports recreational sports directory.
Version: 2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recsports
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
Tags: custom-menu, featured-images, translation-ready, full-width-template, grid-layout, block-styles

Copyright: (C) 2026 RecSports Team
License: GPLv2 or later
RecSports is distributed under the terms of the GNU GPL
*/

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/barlow-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/barlow-800.ttf') format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/outfit-300.ttf') format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/outfit-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/outfit-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/outfit-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/outfit-700.ttf') format('truetype');
}


:root {
  --green: #1E6B3C;
  --green-mid: #2D8A52;
  --green-light: #D4EDE0;
  --green-pale: #F0F9F4;
  --orange: #E8521A;
  --orange-light: #FEF0E9;
  --navy: #0F2137;
  --sand: #F5F3EE;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --muted: #5C6670;
  --border: #DDD9D0;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ───── UTILITY ───── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}

.tag-sport {
  background: var(--green-light);
  color: var(--green);
}

.tag-featured {
  background: #FFF3E6;
  color: #B84010;
}

.tag-season {
  background: #EEF2FF;
  color: #3B4FA8;
}

.tag-age {
  background: #F3F0FF;
  color: #5B3FB5;
}

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

/* ───── WORDPRESS DEFAULTS ───── */
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 0 auto 20px; text-align: center; }
.wp-caption { background: #fff; border: 1px solid #f0f0f0; max-width: 100%; padding: 5px 3px 10px; text-align: center; }
.wp-caption img { border: 0 none; height: auto; margin: 0; max-width: 98.5%; padding: 0; width: auto; }
.wp-caption-text { font-size: 11px; line-height: 17px; margin: 0; padding: 0 4px 5px; }
.sticky { background: var(--green-pale); border: 2px solid var(--green); }
.gallery-caption { font-size: 12px; color: var(--muted); }
.bypostauthor { font-weight: bold; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
.screen-reader-text:focus { background-color: #eee; clip: auto !important; clip-path: none; color: #444; display: block; font-size: 1em; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; }

/* ───── KEYFRAMES ───── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* ───── NAV ───── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(30, 107, 60, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--orange);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding: 4px;
  gap: 2px;
  margin-right: 12px;
  flex-shrink: 0;
}

.logo-icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.logo span {
  color: #8DDDAB;
}

.nav-links,
.nav-links ul {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links a,
.nav-links li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  text-decoration: none !important;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-nav-cta > a,
.menu-item-submit > a {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  transition: background 0.15s, transform 0.1s !important;
}

.btn-nav-cta > a:hover,
.menu-item-submit > a:hover {
  background: #d04715 !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  transition: opacity 0.2s;
}


.hamburger:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}


.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

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


/* ───── HERO ───── */
.hero {
  background: var(--green);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(45, 138, 82, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse at 10% 80%, rgba(15, 33, 55, 0.3) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.fi {
  position: absolute;
  color: #fff;
  opacity: 0.15;
  font-size: 28px;
  filter: blur(1.5px);
  animation: floatBG 25s infinite linear;
}

@keyframes floatBG {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
}

.fi-1 { top: 75%; left: 10%; animation-duration: 18s; animation-delay: -2s; font-size: 32px; }
.fi-2 { top: 60%; left: 35%; animation-duration: 24s; animation-delay: -10s; font-size: 48px; }
.fi-3 { top: 85%; left: 55%; animation-duration: 22s; animation-delay: -5s; font-size: 38px; }
.fi-4 { top: 70%; left: 85%; animation-duration: 20s; animation-delay: -15s; font-size: 34px; }
.fi-5 { top: 40%; left: 15%; animation-duration: 26s; animation-delay: -7s; font-size: 42px; }
.fi-6 { top: 20%; left: 75%; animation-duration: 23s; animation-delay: -3s; font-size: 36px; }
.fi-7 { top: 90%; left: 25%; animation-duration: 19s; animation-delay: -12s; font-size: 30px; }
.fi-8 { top: 55%; left: 65%; animation-duration: 21s; animation-delay: -1s; font-size: 40px; }

.hero-grid {
  display: block;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(54px, 7vw, 88px);
  color: #fff;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  color: #8DDDAB;
  font-style: normal;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.search-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  animation: fadeUp 0.6s 0.3s ease both;
}

.search-card input,
.search-card select {
  flex: 1;
  min-width: 140px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: #fff;
  transition: all 0.2s;
  outline: none;
}

.search-card select {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
}

.search-card input::placeholder {
  color: #AAA;
}

.search-card input:focus,
.search-card select:focus {
  border-color: var(--green);
}



.btn-search {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-search:hover {
  background: #d04715;
  transform: scale(1.02);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: fadeUp 0.6s 0.4s ease both;
  padding-bottom: 48px;
}

.hero-stat strong {
  display: block;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 40px;
  color: #fff;
  line-height: 1;
}

.hero-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

/* ───── SPORTS STRIP ───── */
.sports-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.strip-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.strip-inner::-webkit-scrollbar {
  display: none;
}

.sport-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  transition: all 0.15s;
  flex-shrink: 0;
}

.sport-tab:hover {
  color: var(--green);
  background: var(--green-pale);
}

.sport-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.sport-tab .emoji {
  font-size: 17px;
}

.sport-tab .count {
  font-size: 11px;
  background: var(--green);
  color: #fff;
  padding: 1px 7px;
  border-radius: 12px;
  font-weight: 600;
  margin-left: 2px;
}

/* ───── SECTION HEADER ───── */
.section {
  padding: 64px 0;
}

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

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
}

.section-header h2 em {
  color: var(--green);
  font-style: normal;
}

.section-header p {
  font-size: 15px;
  color: var(--muted);
}

.section-header a {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.section-header a:hover {
  text-decoration: underline;
}

/* ───── MAP SECTION ───── */
.map-section-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.map-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.map-section-head h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.map-section-head .controls {
  display: flex;
  gap: 8px;
}

.map-section-head .controls select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 12px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.map-big {
  height: 340px;
  background: #D4E8D4;
  position: relative;
  overflow: hidden;
}

.map-big-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 80, 40, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 80, 40, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-big-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
}

.map-big-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.pin-body {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pin-body span {
  transform: rotate(45deg);
  font-size: 12px;
}

.pin-orange {
  background: var(--orange);
}

.pin-green {
  background: var(--green);
}

.pin-blue {
  background: #2563EB;
}

.map-tooltip {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  width: 260px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.map-tooltip-emoji {
  font-size: 26px;
}

.map-tooltip-body p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.map-tooltip-body span {
  font-size: 11px;
  color: var(--muted);
}

.map-tooltip-btn {
  margin-left: auto;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ───── LISTING GRID ───── */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.listing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  cursor: pointer;
  position: relative;
  display: block;
}

.listing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--green-mid);
}

.listing-card.featured {
  border-top: 3px solid var(--orange);
}

.lc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.lc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.lc-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
}

.lc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.lc-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 12px;
}

.lc-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lc-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.lc-meta-row .ico {
  font-size: 13px;
  width: 16px;
}

.lc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.btn-reg {
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.15s;
}

.btn-reg:hover {
  background: var(--green-mid);
}

.btn-view {
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
}

/* ───── SPORT CATEGORIES ───── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
}

.cat-card:hover {
  border-color: var(--green-mid);
  background: var(--green-pale);
  transform: translateY(-2px);
}

.cat-emoji {
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
}

.cat-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.cat-count {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.cat-count strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  display: inline-block;
  vertical-align: middle;
  margin-right: 1px;
}

/* ───── HOW IT WORKS ───── */
.how-bg {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 56px;
}

.how-header {
  text-align: center;
  margin-bottom: 48px;
}

.how-header h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
}

.how-header h2 em {
  color: #8DDDAB;
  font-style: normal;
}

.how-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-step {
  text-align: center;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(141, 221, 171, 0.15);
  border: 1.5px solid rgba(141, 221, 171, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 24px;
  color: #8DDDAB;
  margin: 0 auto 16px;
}

.step-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

.how-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ───── SUBMIT CTA ───── */
.cta-wrap {
  background: var(--orange);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-wrap h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 44px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.cta-wrap p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
  max-width: 500px;
}

.cta-pricing {
  margin-top: 14px;
  display: flex;
  gap: 16px;
}

.cta-plan {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  text-align: center;
}

.cta-plan strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.cta-plan span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn-white {
  background: #fff;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  display: block;
  text-align: center;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-btns span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* ───── FOOTER ───── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  padding: 48px 0 24px;
}

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

.footer-logo {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .dot {
  width: 8px;
  height: 8px;
  background: #8DDDAB;
  border-radius: 50%;
}

footer p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: #8DDDAB;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  max-width: 100%;
}

.footer-badge {
  background: rgba(141, 221, 171, 0.15);
  border: 1px solid rgba(141, 221, 171, 0.25);
  color: #8DDDAB;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ───── PAGE HEADER ───── */
.page-header {
  background: var(--green);
  padding: 56px 0 48px;
  text-align: center;
}

.page-header .eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb {
  display: flex;
  align-items: start;
  /* justify-content: center; */
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  /* margin-bottom: 16px; */
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.page-header h1 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 56px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.page-header h1 em {
  color: #8DDDAB;
  font-style: normal;
}

.page-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
}

.page-header .meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

/* ───── ABOUT PAGE ───── */
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Mission */
.mission {
  padding: 64px 0;
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.mission-text h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 40px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.mission-text h2 em {
  color: var(--green);
  font-style: normal;
}

.mission-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.mission-text p:last-child {
  margin-bottom: 0;
}

.mission-visual {
  background: var(--green);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-block {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.stat-block strong {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 42px;
  color: #fff;
  display: block;
  line-height: 1;
}

.stat-block span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  display: block;
}

/* Values */
.values {
  background: #fff;
  padding: 64px 0;
}

.values .section-header,
.team .section-header,
.helps .section-header {
  text-align: center;
  margin-bottom: 48px;
  display: block;
}

.values .section-header h2,
.team .section-header h2,
.helps .section-header h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 40px;
  margin-bottom: 8px;
}

.values .section-header p,
.team .section-header p,
.helps .section-header p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Story */
.story {
  padding: 64px 0;
}

.story-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.story-card h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.story-card h2 em {
  color: var(--green);
  font-style: normal;
}

.story-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-card p:last-child {
  margin-bottom: 0;
}

/* Team */
.team {
  background: #fff;
  padding: 64px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.team-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.team-card p {
  font-size: 12px;
  color: var(--muted);
}

/* Helps / Who We Serve */
.helps {
  padding: 64px 0;
}

.helps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.helps-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.helps-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.helps-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.helps-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* About CTA */
.cta {
  padding: 0 0 64px;
}

.cta-inner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
}

.cta-inner h2 em {
  color: #8DDDAB;
  font-style: normal;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  max-width: 460px;
  margin: 0 auto 24px;
}

.cta-inner .cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s;
}

.btn-primary:hover {
  background: #d04715;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.15s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ───── CONTACT PAGE ───── */

/* Audience Grid */
.contact-audience-section {
  background: #f8faf9;
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}

.contact-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ca-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ca-card .ca-icon {
  font-size: 32px;
  line-height: 1;
}

.ca-card h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.ca-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.ca-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ca-card ul li {
  font-size: 13px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}

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

.ca-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}

.ca-contact-detail strong {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ca-contact-detail a,
.ca-contact-detail span {
  color: var(--ink);
  font-weight: 500;
}

.ca-contact-detail a {
  color: var(--green);
}

.ca-btn {
  display: inline-block;
  margin-top: auto;
  padding: 10px 18px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s;
}

.ca-btn:hover {
  background: var(--green-mid);
  color: #fff;
}

.ca-btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.ca-btn-outline:hover {
  background: var(--green);
  color: #fff;
}

/* Report Section */
.contact-report-section {
  background: #fff3e0;
  border-top: 1px solid #ffe0b2;
  border-bottom: 1px solid #ffe0b2;
  padding: 40px 0;
}

.contact-report-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-report-text h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-report-text p {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}

.btn-report {
  flex-shrink: 0;
  display: inline-block;
  padding: 12px 24px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.btn-report:hover {
  opacity: 0.88;
  color: #fff;
}

/* Community CTA */
.contact-community-section {
  background: var(--green);
  padding: 64px 0;
}

.contact-community-inner {
  text-align: center;
}

.contact-community-inner h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 40px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.contact-community-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.contact-community-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-community-badges span {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
}

/* Form section spacing */
#contact-form-wrap {
  padding-top: 56px;
  padding-bottom: 64px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  padding: 56px 0;
  align-items: start;
}

/* Form Card */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.form-card h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 28px;
  margin-bottom: 6px;
}

.form-card .subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group label .req {
  color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30, 107, 60, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #BBB;
}

.btn-send {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s;
  margin-top: 4px;
}

.btn-send:hover {
  background: var(--green-mid);
}

/* Success msg */
.success-msg {
  background: var(--green-pale);
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-top: 20px;
}

.success-msg .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.success-msg h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}

.success-msg p {
  font-size: 14px;
  color: var(--muted);
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.info-card h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 20px;
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-item-body .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 3px;
}

.info-item-body .value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.info-item-body .value a {
  color: var(--green);
}

.response-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
}

.response-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-bottom: 4px;
}

.response-card strong {
  color: #fff;
  font-size: 15px;
  display: block;
}

.response-card .emoji {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

/* FAQ Card */
.faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.faq-card h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 20px;
  margin-bottom: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
}

.faq-q .arrow {
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
  font-size: 12px;
}

.faq-item.open .arrow {
  transform: rotate(180deg);
}

.faq-a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 8px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ───── LEGAL PAGES (Privacy & Terms) ───── */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 48px 0 64px;
  align-items: start;
}

/* TOC */
.toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: sticky;
  top: 80px;
}

.toc h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc ul li a {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  display: block;
  transition: all 0.15s;
}

.toc ul li a:hover {
  background: var(--green-pale);
  color: var(--green);
}

.toc ul li a.active {
  background: var(--green-pale);
  color: var(--green);
  font-weight: 500;
}

/* Legal Content */
.legal-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.summary-box {
  background: var(--green-pale);
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 36px;
}

.summary-box h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.summary-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-box ul li {
  font-size: 13px;
  color: var(--green);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}

.summary-box ul li::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 26px;
  margin-bottom: 14px;
  scroll-margin-top: 90px;
}

.legal-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 18px 0 8px;
}

.legal-section p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 10px 0 12px;
  padding-left: 4px;
}

.legal-section ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.legal-section ul li::before {
  content: '•';
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.legal-section a {
  color: var(--green);
}

.contact-block {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-top: 14px;
}

.contact-block p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-block p:last-child {
  margin-bottom: 0;
}

.contact-block strong {
  color: var(--ink);
}

/* ───── TRUST STRIP ───── */
.trust-strip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.trust-item strong {
  color: var(--ink);
}

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-wrap p {
    max-width: 100%;
  }

  .cta-pricing {
    justify-content: center;
  }

  .cta-btns {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* About */
  .mission-inner {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .helps-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-audience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .contact-report-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-report-text p {
    max-width: 100%;
  }

  .btn-report {
    width: 100%;
    text-align: center;
  }

  .contact-community-inner h2 {
    font-size: 30px;
  }

  /* Legal */
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

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

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-floating-elements {
    display: none;
  }

  .detail-hero-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Mobile: nav always fixed — no jump on menu open */
  nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: none;
    z-index: 100;
  }

  /* Compensate for fixed nav */
  body {
    padding-top: 60px;
  }

  .nav-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  /* Nav-links: hidden with smooth transition */
  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    order: 10;
    list-style: none !important;
    margin: 0 !important;
    gap: 4px !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 !important;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    pointer-events: none;
  }

  /* Open state */
  body.nav-open nav {
    bottom: 0;
    overflow-y: auto;
    z-index: 1000;
  }

  body.nav-open .nav-links {
    max-height: calc(100vh - 60px) !important;
    opacity: 1;
    padding: 10px 0 30px !important;
    pointer-events: auto;
  }

  body.nav-open .nav-links li {
    width: 100%;
  }

  body.nav-open .nav-links a {
    font-size: 18px;
    padding: 12px 20px;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hamburger {
    display: flex;
  }


  .search-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  .search-card input,
  .search-card select {
    min-width: auto;
  }

  .how-bg,
  .cta-wrap {
    padding: 32px 24px;
  }

  .section {
    padding: 40px 0;
  }

  /* About */
  .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-visual {
    grid-template-columns: 1fr 1fr;
  }

  .story-card {
    padding: 28px;
  }

  .cta-inner {
    padding: 32px 20px;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Form Steps — compact on mobile */
  .steps {
    padding: 14px 16px;
    gap: 0;
  }

  .step {
    flex: 0 0 auto;
    gap: 6px;
  }

  .step.active {
    flex: 1;
  }

  .step-num {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  /* Hide labels on inactive steps */
  .step-label {
    display: none;
  }

  .step.active .step-label {
    display: block;
    font-size: 11px;
    white-space: nowrap;
  }

  .step-line {
    flex: 1;
    margin: 0 4px;
  }

  /* Map Section Responsive */
  .map-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }

  .map-section-head .controls {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
    display: flex;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .map-section-head .controls select {
    flex-shrink: 0;
  }

  /* ── Hero mobile ── */
  .hero {
    padding: 56px 0 0;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    margin-top: 28px;
    padding-bottom: 36px;
  }

  .hero-stat strong {
    font-size: 32px;
  }

  /* ── Search card ── */
  .search-card {
    border-radius: 16px;
  }

  .search-card input,
  .search-card select,
  .btn-search {
    width: 100%;
    box-sizing: border-box;
  }

  /* ── Map height ── */
  #full-map {
    height: 280px !important;
  }

  /* ── Section header ── */
  .section-header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  /* ── Sport categories ── */
  .cat-card {
    padding: 16px 10px;
  }

  .cat-emoji {
    font-size: 28px;
  }

  /* ── CTA section ── */
  .cta-wrap {
    padding: 32px 20px;
    text-align: center;
  }

  .cta-wrap h2 {
    font-size: 32px;
  }

  .cta-pricing {
    flex-direction: column;
    gap: 16px !important;
    align-items: center;
  }

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

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-white {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* ── Footer bottom ── */
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* ── How it works ── */
  .how-bg {
    padding: 32px 20px;
  }

  .how-header h2 {
    font-size: 28px;
  }
}

/* ───── EXTRA SMALL (≤ 400px) ───── */
@media (max-width: 480px) {
  .contact-audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-stats {
    gap: 16px 16px;
  }

  .hero-stat strong {
    font-size: 28px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .search-card {
    padding: 20px 16px;
    gap: 12px;
  }

  .sports-strip .sport-tab {
    font-size: 12px;
    padding: 10px 12px;
  }
}


/* ───── FIND A LEAGUE ───── */
.search-bar-wrap {
  background: var(--green-mid);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.search-row input,
.search-row select {
  flex: 1;
  min-width: 160px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  transition: border-color 0.15s;
}


.search-row input:focus,
.search-row select:focus {
  border-color: var(--green);
}

.btn-clear {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-clear:hover {
  background: rgba(255, 255, 255, 0.25);
}

.main-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 28px 0 56px;
  align-items: start;
}

.filter-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: sticky;
  top: 80px;
}

.filter-sidebar h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-sidebar h3 a {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--green);
}

.filter-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-section h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.filter-section select,
.filter-group input,
.filter-group select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  transition: border-color 0.15s;
}

.filter-section select:focus,
.filter-section input[type=text]:focus {
  border-color: var(--green);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}

.check-item input {
  accent-color: var(--green);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.check-item .check-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted);
  background: var(--sand);
  padding: 1px 6px;
  border-radius: 10px;
}

.btn-apply {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.15s;
}

.btn-apply:hover {
  background: var(--green-mid);
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.results-header .count {
  font-size: 14px;
  color: var(--muted);
}

.results-header .count strong {
  color: var(--ink);
}

.sort-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-row label {
  font-size: 13px;
  color: var(--muted);
}

.sort-row select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: var(--ink);
}

.view-toggle {
  display: flex;
  gap: 2px;
}

.view-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.15s;
}

.view-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}

.filter-chip .remove {
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.filter-chip .remove:hover {
  color: var(--orange);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 32px;
}

.page-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}

.page-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.page-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 600;
}

.page-btn.dots {
  border: none;
  background: none;
  cursor: default;
}

/* ───── MAP PAGE ───── */
.map-toolbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 90;
}

.map-toolbar input {
  flex: 1;
  min-width: 200px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  transition: border-color 0.15s;
}

.map-toolbar input:focus-visible {
  border-color: var(--green);
}

.map-toolbar select {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s;
}

.btn-search-map {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}

.result-pill {
  background: var(--green-pale);
  color: var(--green);
  border: 1px solid var(--green-light);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.map-body {
  display: flex;
  height: calc(100vh - 120px);
  overflow: hidden;
  background: var(--sand);
}

.map-sidebar {
  width: 340px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.sidebar-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-head h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.sidebar-head .count {
  font-size: 12px;
  color: var(--muted);
}

.sidebar-scroll {
  overflow-y: auto;
  flex: 1;
}

.sidebar-scroll::-webkit-scrollbar {
  width: 4px;
}

.sidebar-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.map-listing {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}

.map-listing:hover {
  background: var(--green-pale);
}

.map-listing.active {
  background: var(--green-pale);
  border-left: 3px solid var(--green);
}

.map-listing.featured {
  border-left: 3px solid var(--orange);
}

.ml-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.ml-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ml-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 3px;
}

.ml-location {
  font-size: 11px;
  color: var(--muted);
}

.ml-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.ml-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ml-footer .meta {
  font-size: 11px;
  color: var(--muted);
}

.ml-footer a {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}

.feat-chip {
  font-size: 10px;
  font-weight: 600;
  background: #FFF3E6;
  color: #B84010;
  padding: 2px 7px;
  border-radius: 10px;
  position: absolute;
  top: 12px;
  right: 12px;
}

.ml-body {
  flex: 1;
}

/* Custom Map Pins */
.custom-map-pin {
  width: 320px;
  height: 32px;
}

.pin-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.pin-icon:hover {
  transform: rotate(-45deg) scale(1.1);
  z-index: 1000;
}

.pin-icon:after {
  content: '';
}

/* Placeholder for custom marker tail if needed */


.map-canvas {
  flex: 1;
  background: #eee;
  position: relative;
}

/* ───── SUBMIT LEAGUE ───── */
.pricing-section {
  padding: 32px 0 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-header h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 28px;
  margin-bottom: 6px;
}

.pricing-header p {
  font-size: 14px;
  color: var(--muted);
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 32px;
}

.plan-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.plan-card:hover {
  border-color: var(--green-mid);
}

.plan-card.selected {
  border-color: var(--green);
  background: var(--green-pale);
}

.plan-card.selected .plan-check {
  display: flex;
}

.plan-check {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.plan-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.plan-name {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 22px;
  margin-bottom: 4px;
}

.plan-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.plan-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}

.plan-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-features li.no::before {
  content: '–';
  color: var(--border);
  font-weight: 400;
}

.plan-features li.no {
  color: #bbb;
}

.form-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 0 56px;
}

.steps {
  display: flex;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  gap: 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}

.step.done .step-num {
  background: var(--green);
  color: #fff;
}

.step.active .step-num {
  background: var(--orange);
  color: #fff;
}

.step.pending .step-num {
  background: var(--border);
  color: var(--muted);
}

.step-label {
  font-size: 12px;
  font-weight: 500;
}

.step.done .step-label {
  color: var(--green);
}

.step.active .step-label {
  color: var(--orange);
}

.step.pending .step-label {
  color: var(--muted);
}

.step-line {
  height: 2px;
  background: var(--border);
  flex: 1;
  margin: 0 8px;
}

.step-line.done {
  background: var(--green);
}

.form-section-title {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.check-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 13px;
}

.check-pill:hover {
  border-color: var(--green-mid);
}

.check-pill input {
  accent-color: var(--green);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.check-pill.checked {
  background: var(--green-pale);
  border-color: var(--green);
  color: var(--green);
  font-weight: 500;
}

body #listing-wizard-form input.invalid,
body #listing-wizard-form select.invalid,
body #listing-wizard-form textarea.invalid {
  border: 1.5px solid #ef4444 !important;
  background-color: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
  outline: none !important;
}

.req {
  color: #ef4444;
  font-weight: 700;
}

/* ───── SUCCESS ───── */
.success-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  margin: 40px 0 80px;
  animation: success-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  position: relative;
  overflow: hidden;
}

.success-icon {
  font-size: 80px;
  margin-bottom: 24px;
  display: inline-block;
  animation: trophy-jump 2s ease-in-out infinite;
  animation-delay: 0.6s;
}

.success-card h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 42px;
  color: var(--ink);
  margin-bottom: 16px;
}

.success-card p {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 32px;
}

@keyframes success-pop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes trophy-jump {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(8deg); }
}

/* Celebration Particles (CSS Only) */
.celebration-wrap {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0;
}

.particle:nth-child(2n) { background: var(--green); }
.particle:nth-child(3n) { background: #FFD700; }

@keyframes particle-fall {
  0% { transform: translateY(-50px) rotate(0); opacity: 1; }
  100% { transform: translateY(400px) rotate(720deg); opacity: 0; }
}

.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  background: var(--sand);
}

.btn-back {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-back:hover {
  border-color: var(--green-mid);
}

.btn-next {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
}

.btn-next:hover {
  background: var(--green-mid);
}

.btn-submit {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
}

.success-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}

/* ───── PAGE HEADER OVERRIDES ───── */
.page-header .result-count {
  color: #8DDDAB;
  font-weight: 600;
}

@media(max-width:900px) {
  .main-layout {
    grid-template-columns: 1fr
  }

  .filter-sidebar {
    position: static;
    margin-bottom: 24px;
  }

  .map-sidebar {
    width: 100%;
    height: 40%;
    border-right: none;
    border-top: 1px solid var(--border)
  }

  .map-body {
    flex-direction: column-reverse;
    height: calc(100vh - 180px);
  }
}

@media(max-width:600px) {
  .search-row {
    flex-direction: column
  }

  .check-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }
}

/* ───── LEAGUE DETAIL ───── */
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb {
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb span.sep {
  color: var(--border);
}

.detail-hero {
  background: var(--green);
  padding: 48px 0 40px;
}

.detail-hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.detail-hero h1 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 48px;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-excerpt {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 24px;
}

.sport-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.tag-featured-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.detail-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  gap: 16px 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.meta-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.meta-item strong {
  color: #fff;
  font-weight: 600;
}

.reg-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 300px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.reg-card .price {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.reg-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.reg-status-dot {
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.reg-status-text {
  font-size: 14px;
  font-weight: 600;
  color: #15803D;
}

.btn-register {
  display: block;
  width: 100%;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 12px;
  transition: all 0.15s;
}

.btn-register:hover {
  background: #d04715;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 82, 26, 0.25);
}

.btn-website {
  display: block;
  width: 100%;
  background: var(--green-pale);
  color: var(--green);
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--green-light);
  margin-bottom: 16px;
  transition: all 0.15s;
}

.btn-website:hover {
  background: var(--green-light);
}

.reg-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.reg-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.reg-contact-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.reg-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 10px;
}

.reg-contact-item a:hover {
  text-decoration: underline;
  color: var(--green);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding: 40px 0 64px;
  align-items: start;
}

.content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-bottom: 24px;
}

.content-card h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.info-row {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.info-row:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--border);
}

.info-row:nth-child(even) {
  padding-left: 24px;
}

.info-row:nth-last-child(-n+2) {
  border-bottom: none;
}

.info-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.info-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.season-bar {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
}

.season-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}

.season-track {
  height: 10px;
  background: var(--border);
  border-radius: 5px;
  position: relative;
  margin-bottom: 10px;
}

.season-fill {
  height: 100%;
  background: var(--green);
  border-radius: 5px;
  width: 40%;
}

.season-markers {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}

.gallery {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 24px;
}

.gallery-main {
  height: 340px;
  background: linear-gradient(135deg, #e8f5ef 0%, #d4ede0 40%, #eaf4f0 70%, #f0f9f4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius-xl);
}

.gallery-main img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: auto;
  position: absolute;
  inset: 0;
  padding: 20px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 22px;
  margin-bottom: 20px;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-listing {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
}

.sidebar-listing:hover {
  border-color: var(--green);
  background: var(--green-pale);
}

.sll-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sll-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.sll-meta {
  font-size: 12px;
  color: var(--muted);
}

.claim-card {
  background: var(--sand);
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
}

.claim-card h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.claim-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-claim {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-claim:hover {
  border-color: var(--green);
  color: var(--green);
}

@media(max-width:900px) {
  .detail-hero-inner {
    flex-direction: column;
  }

  .reg-card {
    width: 100%;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-row:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }

  .info-row {
    padding: 12px 0;
  }
}

.wizard-step {
  display: none;
}

.active-step {
  display: block !important;
}

.pin-icon div {
  transform: rotate(45deg);
  display: inline-block;
}


/* Map Popup Styling */
.map-popup-inner {
  text-align: center;
  padding: 0;
  max-width: 120px;
}

.map-popup-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto 8px;
  display: block;
  background: var(--sand);
  border: 1px solid var(--border);
}

.map-popup-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--ink);
  display: block;
}

.map-popup-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--green) !important;
}

.leaflet-popup-content-wrapper {
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 14px 18px;
}



/* Editor Compatibility for Gutenberg Visual Editing */
.editor-styles-wrapper .mission-inner {
  display: flex;
  gap: 30px;
}

.editor-styles-wrapper .stat-block {
  background: #1E6B3C;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  margin-bottom: 10px;
  flex: 1;
  min-width: 140px;
}

.editor-styles-wrapper .values-grid {
  display: flex;
  gap: 15px;
}

.editor-styles-wrapper .value-card {
  background: #fff;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  flex: 1;
  text-align: center;
}

.editor-styles-wrapper .team-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.editor-styles-wrapper .team-card {
  background: #fff;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  min-width: 160px;
}

.editor-styles-wrapper section {
  padding: 40px 0;
}



/* Gutenberg: Standard Block Mapping (Mapping theme designs to default blocks) */

/* 1. Group Block: Premium Card Style */
.wp-block-group.is-style-recsports-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

/* 2. Column Block: Stat Box Style */
.wp-block-column.is-style-recsports-stat {
  background: #1E6B3C;
  color: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.wp-block-column.is-style-recsports-stat strong {
  display: block;
  font-size: 32px;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
}

/* Fix for Editor visuals (Inside iframe) */
.editor-styles-wrapper .wp-block-group.is-style-recsports-card {
  padding: 40px !important;
}



/* Map Sidebar Logo Styles */
.ml-logo-wrap {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.ml-img-logo img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: #f8f9fa;
  border: 1px solid var(--border);
}

.ml-icon {
  width: 48px;
  height: 48px;
  background: #eef5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 24px;
}



/* Map Pin Logo Styles */
.pin-logo {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #1E6B3C;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pin-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pin-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #1E6B3C;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  font-size: 18px;
}

.custom-map-pin {
  background: none !important;
  border: none !important;
}



/* Swipeable Sports Strip */
.strip-inner {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding-bottom: 5px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.strip-inner::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.sport-tab {
  flex-shrink: 0;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
}

.sport-tab.active {
  color: var(--green);
}