/* CSS Custom Properties */
:root {
  --primary-red: #d91951;
  --primary-blue: #1e4a9b;
  --dark-gray: #2c2c2c;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --accent-yellow: #ffd700;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 5rem;

  /* Layout */
  --container-max-width: 1400px !important;
  --news-banner-height: 40px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.center-content {
  margin: 0 auto;
}
/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 10px var(--spacing-md) !important;
  overflow-x: hidden;
}

/* News Banner */

.news-banner {
  padding: 0;
  background: #004890;
  color: var(--white);
  height: var(--news-banner-height);
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 1001; /* Higher than header's z-index: 1000 */
}

.news-content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: var(--spacing-md);
  padding: 0 var(--spacing-md);
}

.news-icon {
  font-size: var(--font-size-base);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.news-label {
  font-weight: 700;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.25);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.news-ticker {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.news-ticker-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
  white-space: nowrap;
  animation: scroll-ticker 45s linear infinite;
  padding-left: 100%;
}

.news-item {
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.news-separator {
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.7;
  display: inline-block;
  margin: 0 var(--spacing-lg);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause animation on hover */
.news-ticker:hover .news-ticker-content {
  animation-play-state: paused;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo-img {
  height: 120px;
  width: auto;
}

img.logo-img {
  height: 80px;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: var(--font-size-sm);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-red);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  margin-left: var(--spacing-xs);
  font-size: var(--font-size-xs);
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: var(--spacing-sm) 0;
  margin-top: var(--spacing-sm);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--text-dark);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background: var(--light-gray);
  color: var(--primary-red);
}

/* Buttons */
.btn {
  background-color: var(--primary-blue) !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: var(--spacing-sm) var(--spacing-lg) !important;
  font-size: var(--font-size-sm) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  border: 2px solid transparent !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.btn-primary {
  background-color: var(--primary-red) !important;
  color: var(--white) !important;
  background-color: var(--primary-red) !important;
}

.btn-primary:hover {
  background-color: #c21547 !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-hover) !important;
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-xl);
}

.btn-secondary:hover {
  background-color: #157dc2;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: var(--spacing-md) var(--spacing-xl);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
  overflow: hidden;
}

/* Owl Carousel Hero Styles */
.hero-carousel {
  position: relative;
  height: 100%;
  width: 100%;
}
.hero-slide {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Hero Slide Overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  pointer-events: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  color: #ffffff !important;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-nav span {
  font-size: 3em;
}

/* Fix for Owl Carousel positioning */
.hero .owl-stage-outer {
  height: 100%;
}

.hero .owl-stage {
  height: 100%;
  display: flex;
}

.hero .owl-item {
  height: 100%;
  display: flex;
}

.hero .owl-item.active {
  height: 100%;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 6;
  padding: var(--spacing-3xl) 0;
}

/* Fix for Owl Carousel positioning */
.hero .owl-stage-outer {
  height: 100%;
}

.hero .owl-stage {
  height: 100%;
  display: flex;
}

.hero .owl-item {
  height: 100%;
  display: flex;
}

.hero .owl-item.active {
  height: 100%;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
  padding: var(--spacing-3xl) 0;
}

.hero-text {
  color: var(--white);
  max-width: 500px;
}

.hero-subtitle {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-xl);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.95;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image {
  position: relative;
  z-index: 3;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(1.05);
}

/* Geometric Shapes */
.geometric-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.shape {
  position: absolute;
  background: var(--primary-blue);
}

/* Owl Carousel Navigation */
.hero .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
}

.hero .owl-prev,
.hero .owl-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: var(--font-size-xl);
  padding: var(--spacing-md);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .owl-prev {
  left: var(--spacing-xl);
}

.hero .owl-next {
  right: var(--spacing-xl);
}

.hero .owl-prev:hover,
.hero .owl-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Owl Carousel Dots - Updated to target the correct structure */
.hero .owl-dots {
  position: absolute;
  bottom: var(--spacing-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-sm);
  z-index: 10;
}

.hero .owl-dot {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  transition: all 0.3s ease;
}

.hero .owl-dot.active span,
.hero .owl-dot:hover span {
  background: var(--white);
  border-color: var(--white);
}

/* Remove any conflicting styles for the button itself */
.hero .owl-dot:focus {
  outline: none;
}

.hero .owl-dot:focus span {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-content {
    width: 100%;
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero .owl-prev,
  .hero .owl-next {
    display: none;
  }

  .hero .owl-dots {
    bottom: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .hero-description {
    font-size: var(--font-size-base);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Parks Section */
.parks-section {
  padding: var(--spacing-3xl) 0;
  background: var(--white);
  position: relative;
}

.parks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  margin-top: var(--spacing-xl);
}

.parks-content {
  padding-right: var(--spacing-xl);
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-xl);
  color: var(--text-dark);
}

.parks-info {
  margin-bottom: var(--spacing-2xl);
}

.parks-description {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.parks-locations {
  margin-bottom: var(--spacing-2xl);
}

.location {
  margin-bottom: var(--spacing-xl);
}

.location-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.location-description {
  color: var(--text-light);
  line-height: 1.6;
}

.parks-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Parks Images */
.parks-images {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2fr 1fr;
  gap: var(--spacing-md);
  height: 500px;
}

.park-image-container {
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.park-image-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.park-image-container.large {
  grid-row: span 2;
}

.park-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.park-image-container:hover .park-image {
  transform: scale(1.05);
}

/* Virtual Tour Section */
.virtual-tour-section {
  background: var(--primary-blue);
  padding: var(--spacing-3xl) 0;
  color: var(--white);
}

.tour-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.tour-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.tour-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2xl);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
}

.tour-location {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.tour-current {
  font-weight: 600;
  position: relative;
}

.tour-current::before,
.tour-current::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: var(--white);
  opacity: 0.5;
}

.tour-current::before {
  left: -80px;
}

.tour-current::after {
  right: -80px;
}

/* Video Player */
.tour-video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.video-player {
  position: relative;
  background: var(--primary-red);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: background 0.3s ease;
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

.video-overlay:hover .video-poster {
  transform: scale(1.05);
}

.play-button {
  width: 80px;
  height: 80px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  backdrop-filter: blur(10px);
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.play-icon {
  width: 30px;
  height: 30px;
  margin-left: 4px; /* Offset for visual centering */
}

.video-label {
  background: var(--primary-red);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 20px;
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tour Navigation Arrows */
.tour-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.tour-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.tour-prev {
  left: -70px;
}

.tour-next {
  right: -70px;
}

.tour-arrow svg {
  width: 24px;
  height: 24px;
}

/* Tour Info Buttons */
.tour-info-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.tour-info-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tour-info-btn:hover,
.tour-info-btn.active {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

/* News & Events Section */
.news-events-section {
  background: var(--primary-blue) !important;
  padding: var(--spacing-3xl) 0;
  color: var(--white);
}

.news-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.news-header .section-title {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.news-description {
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
  max-width: none;
  margin: 0 auto;
}

/* News Cards */
.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  color: var(--text-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.news-card.featured {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-card:not(.featured) .news-image {
  aspect-ratio: 16/10;
}

.news-card.featured .news-image {
  flex: 1;
  min-height: 300px;
}

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

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

.news-badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 40px;
  height: 40px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.badge-icon {
  width: 20px;
  height: 20px;
}

/* News Content */
.news-content {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card.featured .news-content {
  flex: 1;
  justify-content: center;
  padding: var(--spacing-2xl);
}

.news-meta {
  margin-bottom: var(--spacing-sm);
}

.news-date {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.news-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.news-card.featured .news-title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
}

.news-subtitle {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.news-excerpt {
  font-size: var(--font-size-base);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  flex: 1;
}

.news-card.featured .news-excerpt {
  font-size: var(--font-size-lg);
}

.news-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.news-link:hover {
  color: #c21547;
}

/* Free Agent Section */
.free-agent-section {
  background: var(--white);
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.free-agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.free-agent-content {
  padding-right: var(--spacing-xl);
}

.free-agent-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-xl);
  color: var(--text-dark);
}

.free-agent-description {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
}

.league-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.league-category {
  margin-bottom: var(--spacing-lg);
}

.category-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.category-description {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  line-height: 1.5;
}

.btn-dark {
  background: var(--text-dark);
  color: var(--white);
  padding: var(--spacing-md) var(--spacing-xl);
}

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Free Agent Image */
.free-agent-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.agent-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary-red);
  border-radius: 12px;
  z-index: -1;
  transform: rotate(15deg);
}

/* Statistics Section */
.statistics-section {
  background: url(image/custom/lines-bg.jpg) center / cover;
  position: relative;
  padding: var(--spacing-3xl) 0;
  color: var(--white);
  margin-top: 80px;
}

.statistics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.statistics-section .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-lg);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.stat-icon i {
  font-size: 20px;
}

.stat-icon svg {
  width: 30px;
  height: 30px;
}

.stat-number {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Program Cards Section */
.program-cards-section {
  background: var(--light-gray);
  padding: var(--spacing-3xl) 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.program-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-content {
  padding: var(--spacing-xl);
  position: relative;
  z-index: 2;
  width: 100%;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: var(--primary-red);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.card-description {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
}

.card-arrow {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.card-arrow svg {
  width: 20px;
  height: 20px;
}

/* Specific Card Styles */
.membership-card {
  background: var(--primary-red);
  position: relative;
}

.membership-card .card-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.card-pattern {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.card-pattern::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.corporate-card {
  background: var(--dark-gray);
}

.birthday-card {
  background: var(--dark-gray);
}

.youth-card {
  background: var(--dark-gray);
}

/* Sponsors Section */
.sponsors-section {
  background: var(--white);
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.sponsors-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xl);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: 8px;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.sponsor-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.sponsor-img {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sponsor-cta {
  font-size: var(--font-size-base);
  color: var(--text-light);
}

.sponsor-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.sponsor-link:hover {
  color: #c21547;
  text-decoration: underline;
}

/* Games Gallery Section */
.games-gallery-section {
  background: var(--primary-blue);
  padding: var(--spacing-3xl) 0;
  color: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.gallery-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.gallery-description {
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.instagram-link {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.instagram-link:hover {
  opacity: 0.8;
}

/* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
  height: 500px;
}

.photo-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.photo-item.large {
  grid-row: span 2;
}

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

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.photo-item:hover .gallery-img {
  transform: scale(1.1);
}

.photo-zoom {
  width: 50px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.photo-zoom:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.photo-zoom svg {
  width: 24px;
  height: 24px;
}

/* Registration Section */
.registration-section {
  background: var(--white);
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -10px 10px #e3e3e3;
}

.registration-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--primary-red);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 140% 100%);
  z-index: 1;
}

.registration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.registration-content {
  padding-right: var(--spacing-xl);
}

.registration-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-xl);
  color: var(--text-dark);
}

.registration-description {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

.registration-image {
  height: 340px;
  margin-top: var(--spacing-2xl);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.reg-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.registration-image:hover .reg-img {
  transform: scale(1.05);
}

/* Registration Form */
.registration-form-container {
  background: var(--white);
  border-radius: 12px;
  padding: var(--spacing-2xl);
  margin: 30px;
  box-shadow: var(--shadow-hover);
  position: relative;
  z-index: 3;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

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

.form-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.form-input,
.form-textarea {
  padding: var(--spacing-md);
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 74, 155, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Form Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.checkbox-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary-red);
}

.checkbox-label {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: var(--spacing-xl) !important;
  margin-bottom: var(--spacing-2xl);
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

.footer-logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--primary-red);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.footer-tagline {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-lg);
  line-height: 1.5;
}

.footer-decoration {
  margin-top: auto;
}

.decoration-icon {
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.1);
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--font-size-base);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.contact-item {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-email {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-email:hover {
  opacity: 0.8;
}

/* Social Media */
.social-media {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.legal-link {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--white);
}

/* Sticky Park Selector */
.park-selector-sticky {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(20px);
  transition: all 0.3s ease;
}

.park-selector-sticky.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.park-selector-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0px 0px 0px 2px rgb(126 0 37);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 9999;
}

.park-selector-btn:hover {
  background: #c21547;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(217, 25, 81, 0.6);
}

.park-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.park-icon svg {
  width: 100%;
  height: 100%;
}

.park-selector-text {
  display: none;
}

/* Park Selector Menu */
.park-selector-menu {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) translateX(calc(100% + 12px));
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: var(--spacing-lg);
  min-width: 320px;
  max-width: calc(100vw - 40px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

.park-selector-sticky.active .park-selector-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(calc(0% + 12px));
}
.park-option {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-sm);
  border: 2px solid transparent;
}

.park-option:last-of-type {
  margin-bottom: var(--spacing-md);
}

.park-option:hover {
  background: var(--light-gray);
  border-color: var(--primary-red);
  transform: translateX(4px);
}

.park-option-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.park-option-icon svg {
  width: 100%;
  height: 100%;
}

.park-option-content {
  flex: 1;
}

.park-option-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.park-option-address {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
  line-height: 1.4;
}

.park-option-phone {
  font-size: var(--font-size-sm);
  color: var(--primary-red);
  font-weight: 500;
  margin: 0;
}

/* Park Selector Footer */
.park-selector-footer {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid #e1e5e9;
}

.park-footer-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color 0.3s ease;
}

.park-footer-link:hover {
  color: var(--primary-red);
  text-decoration: underline;
}
/* Mobile App Sticky Button */
.mobile-app-sticky {
  position: fixed;
  top: calc(50% + 80px);
  right: 20px;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(20px);
  transition: all 0.3s ease;
}

.mobile-app-sticky.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.mobile-app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0px 0px 0px 2px rgb(0, 8, 126) !important;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.mobile-app-btn:hover {
  background: #0056b3;
  transform: scale(1.05);
  backdrop-filter: blur(10px);
  box-shadow: 0px 8px 30px rgba(13, 110, 253, 0.5) !important;
}

.mobile-app-btn:active {
  transform: scale(0.95);
}

.mobile-app-icon {
  width: 24px;
  height: 24px;
}

.mobile-app-icon svg {
  width: 100%;
  height: 100%;
}

.mobile-app-menu {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  transform: translateY(-50%) translateX(-20px);
  background: var(--white);
  border-radius: 16px;
  padding: var(--spacing-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  min-width: 320px;
  max-width: 400px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-app-sticky.active .mobile-app-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.mobile-app-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.mobile-app-logo {
  width: 48px;
  height: 48px;
  background: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.mobile-app-logo svg {
  width: 24px;
  height: 24px;
}

.mobile-app-text {
  flex: 1;
}

.mobile-app-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 var(--spacing-xs) 0;
}

.mobile-app-description {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.mobile-app-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: #004890;
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--dark);
}

.app-store-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--white);
  text-decoration: none;
}

.app-store-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.app-store-icon svg {
  width: 100%;
  height: 100%;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-store-label {
  font-size: var(--font-size-xs);
  opacity: 0.8;
  font-weight: 400;
}

.app-store-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
}

/* Mobile adjustments for mobile app selector */
@media (max-width: 768px) {
  .mobile-app-sticky {
    display: none;
  }

  .mobile-app-sticky.visible {
    display: none;
  }

  .mobile-app-menu {
    position: fixed;
    top: auto;
    bottom: calc(100% + 12px);
    left: 0;
    right: auto;
    transform: translateY(20px);
    min-width: 280px;
    max-width: calc(100vw - 30px);
  }

  .mobile-app-sticky.active .mobile-app-menu {
    transform: translateY(0);
  }

  .mobile-app-buttons {
    gap: var(--spacing-xs);
  }

  .app-store-btn {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .mobile-app-title {
    font-size: var(--font-size-md);
  }

  .mobile-app-description {
    font-size: var(--font-size-xs);
  }
}

@media print {
  .mobile-app-sticky {
    display: none;
  }
}
/* Mobile adjustments for park selector */
@media (max-width: 768px) {
  .park-selector-sticky {
    bottom: 15px;
    left: 15px;
  }

  .park-selector-btn {
    display: none;
  }

  .park-selector-text {
    font-size: var(--font-size-xs);
  }

  .park-selector-menu {
    min-width: 280px;
    max-width: calc(100vw - 40px);
  }

  .park-option {
    padding: var(--spacing-sm);
  }

  .park-selector-footer {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  /* Contact page mobile adjustments */
  .contact-hero {
    padding: calc(var(--spacing-3xl) + var(--header-height)) var(--spacing-md)
      var(--spacing-3xl);
  }

  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .contact-info-card {
    padding: var(--spacing-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .form-submit-btn {
    width: 100%;
  }

  .newsletter-input-container {
    flex-direction: column;
    border-radius: 12px;
  }

  .newsletter-input {
    border-bottom: 1px solid #e1e5e9;
  }

  .newsletter-submit {
    border-radius: 0 0 12px 12px;
    padding: var(--spacing-md);
  }
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1a4b84 100%);
  color: var(--white);
  padding: calc(var(--spacing-4xl) + var(--header-height)) var(--spacing-md)
    var(--spacing-4xl);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-sm);
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--white);
}

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

.breadcrumb-current {
  color: var(--white);
  font-weight: 500;
}

.contact-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Map Section */
.map-section {
  padding: 0;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.contact-map {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 50%, #c3e9d0 100%);
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 100%);
}

.map-loading {
  text-align: center;
  color: var(--text-light);
}

.map-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-red);
  margin-bottom: var(--spacing-md);
}

.map-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 10;
}

.map-marker:hover {
  transform: scale(1.1);
}

.poway-marker {
  top: 30%;
  left: 35%;
}

.santee-marker {
  top: 60%;
  left: 45%;
}

.marker-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-red);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.marker-label {
  background: var(--white);
  color: var(--text-dark);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  margin-top: var(--spacing-xs);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--primary-red);
  white-space: nowrap;
}

/* Contact Information Section */
.contact-info-section {
  padding: var(--spacing-4xl) var(--spacing-md);
  background: var(--white);
}

.contact-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.free-agent-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.free-agent-link:hover {
  color: var(--primary-red);
  text-decoration: underline;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  background: transparent;
  padding: var(--spacing-lg);
  text-align: center;
  transition: transform 0.3s ease;
  border: none;
}

.contact-info-card:hover {
  transform: translateY(-3px);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  color: var(--primary-red);
  margin: 0 auto var(--spacing-xl);
}

.contact-info-icon svg {
  width: 100%;
  height: 100%;
}

.contact-info-card-title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-card-subtitle {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-address {
  color: var(--text-dark);
  font-size: var(--font-size-lg);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
}

.contact-phone {
  margin: 0;
}

.contact-phone a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-phone a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.directions-link {
  color: var(--primary-blue) !important;
  font-weight: 500 !important;
}

.directions-link:hover {
  color: var(--primary-red) !important;
}

/* Contact Form Section */
.contact-form-section {
  padding: var(--spacing-4xl) var(--spacing-md);
  background: var(--light-gray);
}

.form-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.form-title {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  position: relative;
  padding-bottom: var(--spacing-md);
}

.form-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}
.form-group {
  margin-bottom: 0;
}
.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(217, 25, 81, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-submit-container {
  text-align: center;
  margin-top: var(--spacing-xl);
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--spacing-lg) var(--spacing-2xl);
  border-radius: 50px;
  min-width: 240px;
  justify-content: center;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Contact Social Media */
.contact-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.contact-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ddd;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social-link:hover {
  background: var(--primary-red);
  transform: translateY(-2px);
}

.contact-social-link svg {
  width: 20px;
  height: 20px;
}

/* Newsletter Section */
.newsletter-section {
  padding: var(--spacing-4xl) var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-title {
  font-size: clamp(1.8rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
  line-height: 1.5;
}

.newsletter-form {
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input-container {
  display: flex;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.newsletter-input-container:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.newsletter-input {
  flex: 1;
  padding: var(--spacing-lg) var(--spacing-xl);
  border: none;
  background: transparent;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  outline: none;
}

.newsletter-input::placeholder {
  color: var(--text-light);
}

.newsletter-submit {
  background: var(--primary-red);
  color: var(--white);
  border: none;
  padding: var(--spacing-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  transition: background-color 0.3s ease;
}

.newsletter-submit:hover {
  background: #c21547;
}

.newsletter-submit svg {
  width: 20px;
  height: 20px;
}

/* Newsletter Background Shapes */
.newsletter-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.bg-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-left {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation: float 6s ease-in-out infinite;
}

.shape-right {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite reverse;
}

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

/* Location Page Styles */
.location-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--spacing-4xl) 0;
}

/* Blue overlay for location hero */
.location-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 123, 191, 0.4); /* Blue overlay with 40% opacity */
  z-index: 2;
  pointer-events: none;
}

.location-hero .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateZ(0);
}

.location-hero-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  will-change: transform;
}

.hero-overlay {
  background: #0000006e;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 2;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 1;
}

.location-hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 900px;
  padding-bottom: var(--spacing-4xl);
  width: 100%;
}

.location-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 20px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.location-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1em;
}

.location-hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.location-hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
  max-width: 1200px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.location-hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.location-hero-buttons .btn {
  min-width: 180px;
  justify-content: center;
}

/* Quick Info Section */
.quick-info-section {
  background: var(--white);
  margin-top: -100px;
  position: relative;
  z-index: 10;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.quick-info-grid {
  padding: var(--spacing-4xl) var(--spacing-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  color: var(--white);
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-details {
  font-size: 0.8em;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

.info-details a {
  color: var(--primary-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-details a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.info-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-sm);
  transition: color 0.3s ease;
}

.info-link:hover {
  color: var(--primary-red);
  text-decoration: underline;
}

/* Quick Links Section */
.quick-links-section {
  background: #cf174d;
  border-bottom: 1px solid #e1e5e9;
}

.quick-links-grid {
  padding: var(--spacing-3xl) var(--spacing-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-lg);
  border-radius: 12px;
  background: var(--white);
  border: 2px solid #e1e5e9;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.quick-link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 25, 81, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.quick-link-card:hover::before {
  left: 100%;
}

.quick-link-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(217, 25, 81, 0.15);
}

.quick-link-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: var(--white);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.quick-link-card:hover .quick-link-icon {
  transform: scale(1.1) rotate(5deg);
}

.quick-link-icon svg {
  width: 24px;
  height: 24px;
}

.quick-link-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  position: relative;
  z-index: 2;
}

.quick-link-description {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 2;
}

.quick-link-card:hover .quick-link-title {
  color: var(--primary-red);
}

/* Facilities Section */
.facilities-section {
  padding: var(--spacing-4xl) var(--spacing-md);
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .section-title {
  margin-bottom: var(--spacing-lg);
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.facility-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.facility-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.facility-image {
  position: relative;
  overflow: hidden;
}

.facility-card:not(.featured) .facility-image {
  aspect-ratio: 16/10;
}

.facility-card.featured .facility-image {
  height: 100%;
  min-height: 300px;
}

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

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

.facility-content {
  padding: var(--spacing-xl);
}

.facility-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.facility-description {
  font-size: var(--font-size-base);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.facility-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-sm);
  color: var(--text-dark) !important;
}

.facility-features li::before {
  content: "✓";
  width: 16px;
  height: 16px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
  flex-shrink: 0;
}

/* Leagues Section */
.leagues-section {
  padding: var(--spacing-4xl) var(--spacing-md);
  background: var(--white);
}

.leagues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.league-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.league-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.league-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-red) 100%
  );
  color: var(--white);
  padding: var(--spacing-xl);
  text-align: center;
}

.league-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  backdrop-filter: blur(10px);
}

.league-icon svg {
  width: 30px;
  height: 30px;
}

.league-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.league-type {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.league-content {
  padding: var(--spacing-xl);
}

.league-description {
  font-size: var(--font-size-base);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.league-details {
  margin-bottom: var(--spacing-xl);
}

.league-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid #e1e5e9;
}

.league-detail:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  font-weight: 500;
}

.detail-value {
  font-size: var(--font-size-sm);
  color: var(--white);
  font-weight: 600;
}

.league-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--primary-red);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.league-btn:hover {
  background: #c21547;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 25, 81, 0.3);
}

/* League Specials Section */
.league-specials-section {
  padding: var(--spacing-4xl) var(--spacing-md);
  background: var(--light-gray);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto var(--spacing-4xl);
}

.special-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.special-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.special-header {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  color: var(--white);
  padding: var(--spacing-xl);
  text-align: center;
  position: relative;
}

.special-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.special-price {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.2);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 25px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.special-content {
  padding: var(--spacing-xl);
}

.special-description {
  font-size: var(--font-size-base);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.special-contact {
  background: var(--light-gray);
  padding: var(--spacing-md);
  border-radius: 8px;
  border-left: 4px solid var(--primary-red);
  border-right: 4px solid var(--primary-red);
}

.special-contact p {
  margin-bottom: var(--spacing-xs);
  font-size: var(--font-size-sm);
  color: var(--text-dark);
}

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

.special-contact a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.special-contact a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.signup-cta {
  text-align: center;
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.signup-text {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

/* Location Gallery Section */
.location-gallery-section {
  padding: var(--spacing-4xl) var(--spacing-md);
  background: var(--primary-blue);
  color: var(--white);
}
.location-gallery-section a {
  color: #39f8ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.location-gallery-section a:hover {
  color: #fff;
}

.location-gallery-section .section-header .section-title {
  color: var(--white);
}

.location-gallery-section .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.location-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: var(--spacing-md);
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item.featured {
  grid-row: span 2;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: var(--spacing-md);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.gallery-description {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}

.gallery-zoom {
  width: 50px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.gallery-zoom:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.gallery-zoom svg {
  width: 24px;
  height: 24px;
}

/* Registration CTA Section */
.registration-cta-section {
  padding: var(--spacing-4xl) var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  color: var(--white);
  text-align: center;
}

.registration-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}

.cta-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Location page enhancements */
.location-hero-content {
  animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-card:nth-child(even) {
  animation-delay: 0.1s;
}

.info-card:nth-child(odd) {
  animation-delay: 0.2s;
}

.facility-card:hover .facility-title {
  color: var(--primary-red);
  transition: color 0.3s ease;
}

.league-card:hover .league-header {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  transition: background 0.3s ease;
}

.league-card.corporate .league-header {
  background: linear-gradient(135deg, #1e4a9b 0%, #2c5cb8 100%);
}

.league-card.corporate:hover .league-header {
  background: linear-gradient(135deg, #1a3f85 0%, #1e4a9b 100%);
}

.gallery-item:hover .gallery-title {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

/* Accessibility improvements */
.gallery-item:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 4px;
}

.league-btn:focus,
.info-link:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Print styles for location page */
@media print {
  .location-hero,
  .registration-cta-section,
  .park-selector-sticky {
    display: none;
  }

  .quick-info-grid {
    grid-template-columns: 1fr 1fr;
    page-break-inside: avoid;
  }

  .facility-card,
  .league-card {
    page-break-inside: avoid;
    margin-bottom: var(--spacing-lg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  /* Location page tablet styles */
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-card.featured {
    grid-column: span 2;
  }

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

  .location-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-item.featured {
    grid-column: span 1;
    grid-row: span 2;
  }

  .quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .location-hero {
    height: 80vh;
    min-height: 550px;
  }

  .location-hero-content {
    max-width: 500px;
  }

  .location-hero .container {
    align-items: center;
  }

  .hero-content {
    width: 70%;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .parks-grid {
    gap: var(--spacing-2xl);
  }

  .section-title {
    font-size: var(--font-size-3xl);
  }

  /* Virtual Tour Tablet */
  .tour-arrow {
    left: -60px;
  }

  .tour-next {
    right: -60px;
  }

  /* News Grid Tablet */
  .news-grid {
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
  }

  .news-grid .news-card:nth-child(3),
  .news-grid .news-card:nth-child(4) {
    grid-column: span 1;
  }

  /* Free Agent Tablet */
  .free-agent-title {
    font-size: var(--font-size-3xl);
  }

  /* Statistics Tablet */
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
  }

  /* Sponsors Tablet */
  .sponsors-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
  }

  /* Gallery Tablet */
  .photo-gallery {
    height: 450px;
  }

  /* Registration Tablet */
  .registration-title {
    font-size: var(--font-size-3xl);
  }

  /* Footer Tablet */
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-xl);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-content {
    width: 100%;
    padding: var(--spacing-2xl) 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-buttons {
    justify-content: center;
  }

  .carousel-dots {
    top: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
  }

  .parks-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .parks-content {
    padding-right: 0;
    order: 2;
  }

  .parks-images {
    order: 1;
  }

  .image-grid {
    height: 400px;
  }

  /* Virtual Tour Mobile */
  .tour-navigation {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }

  .tour-current::before,
  .tour-current::after {
    display: none;
  }

  .tour-arrow {
    display: none;
  }

  .tour-info-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* News Grid Mobile */
  .news-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .news-card.featured {
    flex-direction: column;
  }

  .news-card.featured .news-image {
    min-height: 200px;
  }

  .news-card.featured .news-content {
    padding: var(--spacing-lg);
  }

  /* Free Agent Mobile */
  .free-agent-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .free-agent-content {
    padding-right: 0;
    order: 2;
  }

  .free-agent-image {
    order: 1;
  }

  .league-categories {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  /* Statistics Mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .stat-number {
    font-size: var(--font-size-3xl);
  }

  /* Program Cards Mobile */
  .programs-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  /* Sponsors Mobile */
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  /* Gallery Mobile */
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 150px);
    height: auto;
  }

  .photo-item.large {
    grid-row: span 1;
    grid-column: span 2;
  }

  /* Registration Mobile */
  .registration-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .registration-content {
    padding-right: 0;
    order: 2;
  }

  .registration-form-container {
    order: 1;
  }

  .registration-accent {
    width: 100%;
    height: 30%;
    clip-path: polygon(0 70%, 100% 0%, 100% 100%, 0% 100%);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }

  .social-media {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  /* Location page mobile styles */
  .location-hero {
    height: 100vh;
    min-height: 500px;
    padding: var(--spacing-2xl) 0 var(--spacing-4xl);
  }

  .location-hero-content {
    padding-bottom: var(--spacing-2xl);
    max-width: 100%;
  }

  .location-hero .container {
    align-items: center;
  }

  .location-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .quick-info-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    max-width: 400px;
  }

  .facility-card.featured {
    grid-column: span 1;
    display: block;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .leagues-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .location-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }

  .gallery-item.featured {
    grid-row: span 1;
    grid-column: span 2;
  }

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

  .specials-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .signup-cta {
    padding: var(--spacing-lg);
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    max-width: 400px;
  }

  .quick-link-card {
    padding: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero-title {
    font-size: var(--font-size-2xl);
  }

  .hero-description {
    font-size: var(--font-size-base);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  .parks-buttons {
    flex-direction: column;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    height: 600px;
  }

  .park-image-container.large {
    grid-row: span 1;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.carousel-arrow:focus,
.dot:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Playing Conditions Page */
.conditions-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.conditions-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.conditions-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  width: 100%;
  padding: 0 var(--spacing-lg);
}

.conditions-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.conditions-hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.conditions-hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Location Selection */
.location-selection-section {
  padding: var(--spacing-4xl) var(--spacing-md);
  background: var(--light-gray);
}

.location-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  max-width: 800px;
  margin: 0 auto;
}

.location-tab {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: var(--spacing-xl);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-tab:hover {
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-tab.active {
  border-color: var(--primary-red);
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  color: var(--white);
}

.location-tab-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-tab.active .location-tab-icon {
  background: rgba(255, 255, 255, 0.2);
}

.location-tab-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.location-tab-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.location-tab-address {
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin-bottom: var(--spacing-xs);
}

.location-tab-phone {
  font-size: var(--font-size-sm);
  font-weight: 600;
}

/* Conditions Content */
.conditions-content {
  display: none;
  padding: var(--spacing-4xl) var(--spacing-md);
  background: var(--white);
}

.conditions-content.active {
  display: block;
}

.conditions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.conditions-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.location-badge {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 25px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.last-updated {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--medium-gray);
  font-size: var(--font-size-sm);
}

.update-icon {
  font-size: var(--font-size-lg);
}

/* Weather Widget */
.weather-widget {
  background: linear-gradient(135deg, #4299ff 0%, #0066cc 100%);
  color: var(--white);
  border-radius: 16px;
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  box-shadow: 0 8px 30px rgba(66, 153, 255, 0.3);
}

.weather-current {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.weather-icon {
  font-size: 3rem;
}

.weather-temp {
  font-size: 2.5rem;
  font-weight: 700;
}

.weather-desc {
  font-size: var(--font-size-lg);
  font-weight: 500;
}

.weather-details {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.weather-detail {
  text-align: center;
}

.weather-detail .detail-label {
  display: block;
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin-bottom: var(--spacing-xs);
}

.weather-detail .detail-value {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: 600;
}

/* Conditions Grid */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.condition-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.condition-card.softball {
  border-left: 4px solid var(--primary-red);
}

.condition-card.soccer {
  border-left: 4px solid #2196f3;
}

.condition-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: var(--spacing-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.condition-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.condition-card.soccer .condition-icon {
  background: #2196f3;
}

.condition-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.condition-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--dark-gray);
  margin: 0;
}

.condition-status {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.condition-status.good {
  color: #28a745;
}

.condition-status.caution {
  color: #ffc107;
}

.condition-status.closed {
  color: #dc3545;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.condition-content {
  padding: var(--spacing-xl);
}

.field-list {
  margin-bottom: var(--spacing-xl);
}

.field-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid #f0f0f0;
}

.field-item:last-child {
  border-bottom: none;
}

.field-name {
  font-weight: 600;
  color: var(--dark-gray);
}

.field-status {
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 20px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field-status.good {
  background: #d4edda;
  color: #155724;
}

.field-status.caution {
  background: #fff3cd;
  color: #856404;
}

.field-status.closed {
  background: #f8d7da;
  color: #721c24;
}

.condition-notes h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
}

.condition-notes ul {
  list-style: none;
  padding: 0;
}

.condition-notes li {
  padding: var(--spacing-xs) 0;
  color: var(--medium-gray);
  position: relative;
  padding-left: var(--spacing-lg);
}

.condition-notes li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Quick Actions */
.quick-actions-section {
  padding: var(--spacing-4xl) var(--spacing-md);
  background: var(--light-gray);
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  margin: 0;
}

.action-card {
  background: var(--white);
  border-radius: 0;
  padding: var(--spacing-2xl);
  text-align: center;
  text-decoration: none;
  color: var(--dark-gray);
  transition: all 0.3s ease;
  box-shadow: none;
  border: 1px solid #e0e0e0;
  border-right: none;
}

.action-card:last-child {
  border-right: 1px solid #e0e0e0;
}

.action-card:hover {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  color: var(--white);
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.action-card:hover .action-icon {
  background: rgba(255, 255, 255, 0.2);
}

.action-card:hover .action-description {
  color: rgba(255, 255, 255, 0.9);
}

.action-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  transition: transform 0.3s ease;
}

.action-card:hover .action-icon {
  transform: scale(1.1);
}

.action-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.action-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.action-description {
  font-size: var(--font-size-sm);
  color: var(--medium-gray);
  line-height: 1.5;
}

/* Responsive Design for Playing Conditions */
@media (max-width: 768px) {
  .conditions-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .weather-widget {
    flex-direction: column;
    text-align: center;
  }

  .weather-details {
    justify-content: center;
    width: 100%;
  }

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

  .location-selector {
    grid-template-columns: 1fr;
  }

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

  .action-card {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .action-card {
    border-right: 1px solid #e0e0e0;
    border-bottom: none;
  }

  .action-card:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
  }

  .weather-details {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

/* Print styles */
@media print {
  .news-banner,
  .carousel-dots,
  .carousel-arrow,
  .mobile-menu-toggle {
    display: none !important;
  }
}

.park-option-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--primary-red);
  color: var(--white);
  text-decoration: none;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 8px;
  font-size: var(--font-size-xs);
  font-weight: 500;
  margin-top: var(--spacing-xs);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.park-option-btn:hover {
  background: #c21547;
  transform: translateX(2px);
  box-shadow: 0 2px 8px rgba(217, 25, 81, 0.3);
}

.park-option-btn .btn-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.park-option-btn:hover .btn-icon {
  transform: translateX(2px);
}

/* Update park option to remove cursor pointer since button handles interaction */
.park-option {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-sm);
  border: 2px solid transparent;
}

/* Game Cards Content */
.card-content {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card.member-card .card-content {
  flex: 1;
  justify-content: center;
  padding: var(--spacing-2xl);
}

.card-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.news-card.member-card .card-title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
}

.card-excerpt {
  font-size: var(--font-size-base);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  flex: 1;
}

.news-card.member-card .card-excerpt {
  font-size: var(--font-size-lg);
}

.card-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spacing-md);
}

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

.news-card:not(.member-card) .card-image {
  aspect-ratio: 16/10;
}

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

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

/* Game Cards with Overlay Design */
.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  color: var(--text-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Member Card with Special Background */
.news-card.member-card {
  background: var(--primary-red);
  color: var(--white);
  position: relative;
  min-height: 200px;
  max-height: 340px;
}

.news-card.member-card .card-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.news-card.member-card .card-content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-2xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

/* Other Cards with Image Overlay */
.news-card:not(.member-card) {
  position: relative;
  min-height: 200px;
  max-height: 340px;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

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

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

.news-card:not(.member-card) .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-xl);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 70%,
    transparent 100%
  );
  color: var(--white);
  z-index: 2;
}

.news-card:not(.member-card) .card-title {
  color: var(--white);
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}

.news-card.member-card .card-title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

.card-excerpt {
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  flex: 1;
}

.news-card:not(.member-card) .card-excerpt {
  color: rgba(255, 255, 255, 0.9);
}

.news-card.member-card .card-excerpt {
  font-size: var(--font-size-lg);
  color: var(--white);
}

.card-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spacing-md);
}

.card-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  align-self: flex-start;
  display: flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-sm);
}

.card-link .arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: var(--spacing-xs);
  transition: transform 0.3s ease;
}

.card-link:hover .arrow-icon {
  transform: translateX(2px);
}

/* Content Placeholder for Member Card */
.content-placeholder {
  flex: 1;
}

/* Corporate Events Page Styles */
.corporate-events-hero {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-red) 100%
  );
}

.corporate-services-section {
  background: var(--light-gray);
}

.corporate-service-card {
  transition: all 0.3s ease;
}

.corporate-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.corporate-facilities-section {
  background: var(--white);
}

.corporate-facilities-section .parks-content-side {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c41449 100%);
}

.facility-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.facility-features li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: var(--white);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.facility-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  font-size: 14px;
}

.corporate-packages-section {
  background: var(--light-gray);
}

.special-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-red);
  position: relative;
  z-index: 2;
}

.special-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-red);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.package-features li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: var(--text-dark);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary-red);
  font-weight: bold;
  font-size: 14px;
}

.price-amount {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-red);
  display: block;
}

.price-detail {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  font-weight: 400;
}

.corporate-stats-section {
  background: var(--primary-blue);
}

.corporate-stats-section .stat-item {
  color: var(--white);
}

.corporate-stats-section .stat-icon {
  background: rgba(255, 255, 255, 0.1);
}

.corporate-testimonials-section {
  background: var(--white);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 30px;
  height: auto;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-red);
}

.testimonial-quote {
  margin-bottom: 20px;
}

.testimonial-quote i {
  color: var(--primary-red);
  font-size: var(--font-size-xl);
  margin-bottom: 15px;
  display: block;
}

.testimonial-quote p {
  font-style: italic;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-author h4 {
  color: var(--text-dark);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin: 0 0 5px 0;
}

.testimonial-author p {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  margin: 0;
}

.corporate-contact-section {
  background: var(--light-gray);
}

.contact-benefits {
  margin: 25px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.benefit-item i {
  color: var(--primary-red);
  margin-right: 12px;
  font-size: var(--font-size-lg);
}

.benefit-item span {
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

/* Form enhancements for corporate events */
.corporate-contact-section .form-input,
.corporate-contact-section .form-textarea {
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease;
}

.corporate-contact-section .form-input:focus,
.corporate-contact-section .form-textarea:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(217, 25, 81, 0.1);
}

/* Mobile responsive adjustments for corporate events */
@media (max-width: 768px) {
  .corporate-services-section .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .special-card.featured {
    transform: none;
    margin: 10px 0;
  }

  .special-card.featured::before {
    top: -10px;
    font-size: 10px;
    padding: 3px 15px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .corporate-contact-section .registration-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .corporate-contact-section .registration-content {
    order: 2;
  }

  .corporate-contact-section .registration-form-container {
    order: 1;
  }
}

@media (max-width: 480px) {
  .facility-features li,
  .package-features li {
    font-size: 13px;
    padding: 6px 0 6px 20px;
  }

  .price-amount {
    font-size: var(--font-size-xl);
  }

  .testimonial-quote p {
    font-size: var(--font-size-sm);
  }

  .benefit-item span {
    font-size: 13px;
  }
}
/* Corporate Events Amenities Grid */
.corporate-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.corporate-amenities-grid .facility-features li {
  color: var(--text-dark);
}

.corporate-amenities-grid .facility-features li::before {
  color: var(--primary-red);
}

@media (max-width: 768px) {
  .corporate-amenities-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

/* Park Option Buttons Container */
.park-option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
}

/* Updated park option button styling for multiple buttons */
.park-option-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 6px;
  font-size: var(--font-size-xs);
  font-weight: 500;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
  justify-content: center;
  text-align: center;
}

.park-option-btn:hover {
  background: #1a3d7a;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(30, 74, 155, 0.3);
}

/* Primary button (View Details) styling */
.park-option-btn-primary {
  background: var(--primary-red) !important;
  background-color: var(--primary-red) !important;
  flex: 1 1 100%;
  margin-top: var(--spacing-xs);
}

.park-option-btn-primary:hover {
  background: #c21547;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(217, 25, 81, 0.3);
}

.park-option-btn .btn-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.park-option-btn:hover .btn-icon {
  transform: scale(1.1);
}

/* Mobile adjustments for park option buttons */
@media (max-width: 768px) {
  .park-option-buttons {
    flex-direction: column;
  }

  .park-option-btn {
    min-width: auto;
    flex: none;
  }

  .park-option-btn-primary {
    flex: none;
    margin-top: var(--spacing-xs);
  }
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #0477ea !important;
}

#hero-video {
  position: relative;
  width: 100%;
  height: 100%;
}

#hero-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 13%;
  background-color: #0000006e;
}

#hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
