@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  /* Colors */
  --color-primary: #d4a574;
  --color-primary-dark: #b8860b;
  --color-secondary: #1a472a;
  --color-accent: #e74c3c;
  --color-accent-light: #ff6b5b;
  --color-bg-dark: #0f1419;
  --color-bg-light: #f8f9fa;
  --color-bg-card: #ffffff;
  --color-text-primary: #1a1a1a;
  --color-text-light: #ffffff;
  --color-text-secondary: #666666;
  --color-border: #e0e0e0;
  --color-success: #27ae60;
  --color-warning: #f39c12;
  --color-warning-dark: #856404;
  --color-warning-light: #fff3cd;
  --color-secondary-dark: #0d2b1d;
  --color-info: #1976d2;
  --color-info-light: #e3f2fd;
  --color-info-border: #bbdefb;
  --color-info-dark: #0d47a1;
  --color-text-muted: #888888;
  --color-bg-hover: #f0f0f0;
  --color-bg-muted: #ecf0f1;
  --color-bg-info: #f0f8ff;
  --color-bg-darker: #1a2530;

  /* Typography */
  --font-primary: "Cairo", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --font-size-h1: 3.75rem;
  --font-size-h2: 3rem;
  --font-size-h3: 2.25rem;
  --font-size-h4: 1.875rem;
  --font-size-h5: 1.5rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

/* Typography Base */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

p {
  font-size: var(--font-size-body);
  line-height: 1.8;
}

small {
  font-size: var(--font-size-small);
}

/* Responsive Typography */

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  h5 {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--font-size-h1);
  }

  h2 {
    font-size: var(--font-size-h2);
  }

  h3 {
    font-size: var(--font-size-h3);
  }

  h4 {
    font-size: var(--font-size-h4);
  }

  h5 {
    font-size: var(--font-size-h5);
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  p {
    font-size: 0.875rem;
  }
}

/* Links */

a {
  text-decoration: none;
  transition: all var(--transition-base);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-secondary);
  font-size: var(--font-size-small);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: var(--font-size-body);
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-light {
  background-color: var(--color-text-light);
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  background-color: var(--color-bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-light:active {
  transform: translateY(0);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 50%;
}

/* Icon sizing */

.icon-sm {
  font-size: 1rem;
}

.icon-md {
  font-size: 1.5rem;
}

.icon-lg {
  font-size: 2rem;
}

.icon-xl {
  font-size: 3rem;
}

.icon-2xl {
  font-size: 4rem;
}

/* Sections */

section {
  overflow: hidden;
}

/* Cards */

.card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: 1rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .card {
    padding: 1.5rem;
    gap: var(--spacing-md);
  }
}

@media (min-width: 1024px) {
  .card {
    padding: 2rem;
    gap: var(--spacing-lg);
  }
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .card-icon {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}

.card-title {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .card-title {
    font-size: 1.5rem;
  }
}

.card-description {
  color: var(--color-text-secondary);
  font-size: var(--font-size-small);
}

@media (min-width: 768px) {
  .card-description {
    font-size: var(--font-size-body);
  }
}

/* Grid */

.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    gap: 2rem;
  }
}

.grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Flexbox */

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

/* Spacing Utilities */

.p-sm {
  padding: var(--spacing-sm);
}

.p-md {
  padding: var(--spacing-md);
}

.p-lg {
  padding: var(--spacing-lg);
}

.p-xl {
  padding: var(--spacing-xl);
}

.px-sm {
  padding-left: var(--spacing-sm);
  padding-right: var(--spacing-sm);
}

.px-md {
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.py-sm {
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
}

.py-md {
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.m-sm {
  margin: var(--spacing-sm);
}

.m-md {
  margin: var(--spacing-md);
}

.m-lg {
  margin: var(--spacing-lg);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Text Utilities */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-regular {
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

/* Badges */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.375rem 0.875rem;
  background-color: var(--color-primary);
  color: var(--color-bg-dark);
  border-radius: 20px;
  font-size: var(--font-size-small);
  font-weight: 600;
  font-family: var(--font-secondary);
}

.badge-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
}

.badge-accent {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

.badge-success {
  background-color: var(--color-success);
  color: var(--color-text-light);
}

.badge-warning {
  background-color: var(--color-warning);
  color: var(--color-bg-dark);
}

/* Divider */

.divider {
  height: 1px;
  background-color: var(--color-border);
  margin: var(--spacing-lg) 0;
}

@media (max-width: 767px) {
  .divider {
    margin: var(--spacing-md) 0;
  }
}

/* List Styles */

.list-unstyled {
  list-style: none;
}

.list-unstyled li {
  margin-bottom: var(--spacing-sm);
}

.list-checkmark {
  list-style: none;
}

.list-checkmark li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.list-checkmark li::before {
  content: "\f058";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Forms */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.form-label {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: var(--font-size-small);
}

@media (min-width: 768px) {
  .form-label {
    font-size: var(--font-size-body);
  }
}

.form-control {
  padding: 0.75rem var(--spacing-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-small);
  transition: all var(--transition-base);
  background-color: var(--color-bg-card);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .form-control {
    padding: 1rem var(--spacing-md);
    font-size: var(--font-size-body);
  }
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-control::placeholder {
  color: var(--color-text-secondary);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-primary);
}

.form-check {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.form-check-input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form-check-label {
  color: var(--color-text-primary);
  cursor: pointer;
  font-size: var(--font-size-small);
}

@media (min-width: 768px) {
  .form-check-label {
    font-size: var(--font-size-body);
  }
}

.form-error {
  color: var(--color-accent);
  font-size: var(--font-size-small);
  margin-top: 0.25rem;
}

/* Animations */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-base);
}

.animate-slide-up {
  animation: slideUp var(--transition-base);
}

.animate-slide-in-left {
  animation: slideInLeft var(--transition-base);
}

.animate-slide-in-right {
  animation: slideInRight var(--transition-base);
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* Accessibility */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus Visible */

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Scrollbar Styling */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary-dark);
}

/* Utility Classes */

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.rounded {
  border-radius: var(--radius-md);
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-full {
  border-radius: 9999px;
}

.shadow {
  box-shadow: var(--shadow-md);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

/* RTL Support */

[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .flex-between {
  flex-direction: row-reverse;
}

[dir="rtl"] .list-checkmark li {
  flex-direction: row-reverse;
}

[dir="rtl"] .btn {
  flex-direction: row-reverse;
}

[dir="rtl"] .form-check {
  flex-direction: row-reverse;
}

[dir="rtl"] .benefit-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .help-card,
[dir="rtl"] .step-card,
[dir="rtl"] .feature-card {
  text-align: right;
}

/* Print Styles */

@media print {
  body {
    background-color: var(--color-bg-card);
  }

  section {
    page-break-inside: avoid;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-accent {
    text-decoration: underline;
  }
}

/* ========== Header Football Elite ========== */

.header-sport-elite {
  position: static;
  background-color: var(--color-bg-dark);
  border-bottom: 2px solid var(--color-primary);
  z-index: 1000;
  width: 100%;
}

.header-sport-elite-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Logo & Brand */

.header-sport-elite-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-sport-elite-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.header-sport-elite-brand:hover {
  color: var(--color-accent-light);
  transform: translateY(-2px);
}

.header-sport-elite-brand i {
  font-size: 1.75rem;
}

/* Desktop Navigation */

.header-sport-elite-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  flex: 1;
  margin: 0 2rem;
}

.header-sport-elite-nav-link {
  text-decoration: none;
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: all var(--transition-base);
}

.header-sport-elite-nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.header-sport-elite-nav-link:hover {
  color: var(--color-primary);
}

.header-sport-elite-nav-link:hover::after {
  width: 100%;
}

/* CTA Button */

.header-sport-elite-cta-button {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-bg-dark);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.header-sport-elite-cta-button:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.25);
}

.header-sport-elite-cta-button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.header-sport-elite-cta-button i {
  font-size: 1rem;
}

/* Mobile Toggle Button */

.header-sport-elite-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  transition: all var(--transition-base);
}

.header-sport-elite-mobile-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  display: block;
}

.header-sport-elite-mobile-toggle:hover span {
  background-color: var(--color-accent-light);
}

.header-sport-elite-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.header-sport-elite-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-sport-elite-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-sport-elite-mobile-toggle:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Mobile Menu */

.header-sport-elite-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-dark);
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 999;
  overflow-y: auto;
}

.header-sport-elite-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-sport-elite-mobile-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.header-sport-elite-mobile-header h2 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.header-sport-elite-mobile-close {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-sport-elite-mobile-close:hover {
  color: var(--color-accent-light);
  transform: rotate(90deg);
}

.header-sport-elite-mobile-close:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Mobile Links */

.header-sport-elite-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
  flex: 1;
}

.header-sport-elite-mobile-link {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border-left: 4px solid transparent;
  transition: all var(--transition-base);
  position: relative;
}

.header-sport-elite-mobile-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--color-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition-base);
}

.header-sport-elite-mobile-link:hover {
  color: var(--color-primary);
  background-color: rgba(212, 165, 116, 0.08);
  padding-left: 2rem;
}

.header-sport-elite-mobile-link:hover::before {
  transform: scaleY(1);
}

.header-sport-elite-mobile-link:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

/* Mobile CTA Button */

.header-sport-elite-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem;
  padding: 1rem;
  background-color: var(--color-primary);
  color: var(--color-bg-dark);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.header-sport-elite-mobile-cta:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.3);
}

.header-sport-elite-mobile-cta:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (768px+) */

@media (min-width: 768px) {
  .header-sport-elite-container {
    padding: 1rem 2rem;
    gap: 1.5rem;
  }

  .header-sport-elite-brand {
    font-size: 1.375rem;
  }

  .header-sport-elite-brand i {
    font-size: 2rem;
  }

  .header-sport-elite-desktop-nav {
    display: flex;
  }

  .header-sport-elite-nav-link {
    font-size: 1rem;
  }

  .header-sport-elite-cta-button {
    display: flex;
  }

  .header-sport-elite-mobile-toggle {
    display: none;
  }

  .header-sport-elite-mobile-menu {
    display: none;
  }
}

/* Desktop (1024px+) */

@media (min-width: 1024px) {
  .header-sport-elite-container {
    padding: 1.25rem 2rem;
    gap: 2rem;
  }

  .header-sport-elite-brand {
    font-size: 1.5rem;
  }

  .header-sport-elite-brand i {
    font-size: 2.25rem;
  }

  .header-sport-elite-desktop-nav {
    gap: 2.5rem;
  }

  .header-sport-elite-nav-link {
    font-size: 1.05rem;
  }

  .header-sport-elite-cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Large Desktop (1440px+) */

@media (min-width: 1440px) {
  .header-sport-elite-container {
    padding: 1.5rem 3rem;
  }

  .header-sport-elite-desktop-nav {
    gap: 3rem;
  }
}

/* Football Hub Main Styles */

.football-hub {
  width: 100%;
}

/* ==================== Footer Styles ==================== */

.footer {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 6rem 0;
  }
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .footer .container {
    padding: 0 2rem;
  }
}

/* Footer Content Layout */

.footer-content {
  display: block;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 3rem;
  }
}

/* ==================== About Section ==================== */

.footer-about {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

@media (min-width: 768px) {
  .footer-about {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media (min-width: 1024px) {
  .footer-about {
    grid-column: 1;
    padding-right: 1rem;
  }
}

.footer-about-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .footer-about-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-about-title {
    font-size: 1.75rem;
  }
}

.footer-about-text {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-about-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

/* ==================== Navigation Section ==================== */

.footer-nav {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

@media (min-width: 768px) {
  .footer-nav {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media (min-width: 1024px) {
  .footer-nav {
    grid-column: 2;
  }
}

.footer-nav-title {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .footer-nav-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .footer-nav-title {
    font-size: 1.375rem;
  }
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-nav-list {
    gap: 1rem;
  }
}

.footer-nav-list li {
  margin: 0;
  padding: 0;
}

/* ==================== Footer Contact ==================== */

.footer-contact {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

@media (min-width: 768px) {
  .footer-contact {
    grid-column: 1 / -1;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .footer-contact {
    grid-column: 3;
    display: block;
  }
}

.footer-contact-title {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .footer-contact-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .footer-contact-title {
    font-size: 1.375rem;
  }
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-list li {
  margin: 0;
  padding: 0;
}

.footer-contact-phone,
.footer-contact-address {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ==================== Legal Section ==================== */

.footer-legal {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

@media (min-width: 768px) {
  .footer-legal {
    grid-column: 1 / -1;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .footer-legal {
    grid-column: 3;
    display: block;
  }
}

.footer-legal-title {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .footer-legal-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .footer-legal-title {
    font-size: 1.375rem;
  }
}

.footer-legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-legal-list {
    gap: 1rem;
  }
}

.footer-legal-list li {
  margin: 0;
  padding: 0;
}

/* ==================== Footer Links ==================== */

.footer-link {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-fast);
  position: relative;
}

@media (min-width: 768px) {
  .footer-link {
    font-size: 0.95rem;
  }
}

.footer-link:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ==================== Copyright Section ==================== */

.footer-copyright {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

@media (min-width: 768px) {
  .footer-copyright {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-copyright {
    grid-column: 1 / -1;
  }
}

.footer-copyright-text {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .footer-copyright-text {
    font-size: 0.85rem;
  }
}

@media (min-width: 1024px) {
  .footer-copyright-text {
    font-size: 0.9rem;
  }
}

.football-hub .hero-section {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .football-hub .hero-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .football-hub .hero-section {
    padding: 6rem 0;
  }
}

.football-hub .hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .football-hub .hero-content {
    flex-direction: row;
    text-align: right;
    align-items: center;
    justify-content: space-between;
  }
}

.football-hub .hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 1024px) {
  .football-hub .hero-text {
    gap: 1.5rem;
  }
}

.football-hub .hero-section h1 {
  color: var(--color-text-light);
  font-size: 2.25rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .football-hub .hero-section h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .football-hub .hero-section h1 {
    font-size: 3.75rem;
  }
}

.football-hub .hero-section p {
  color: var(--color-border);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .football-hub .hero-section p {
    font-size: 1rem;
  }
}

.football-hub .hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .football-hub .hero-cta {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .football-hub .hero-cta {
    justify-content: flex-start;
  }
}

.football-hub .hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.football-hub .hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 1024px) {
  .football-hub .hero-image img {
    max-width: 100%;
  }
}

/* ===== FEATURES SECTION ===== */

.football-hub .features-section {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .football-hub .features-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .football-hub .features-section {
    padding: 6rem 0;
  }
}

.football-hub .features-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .football-hub .features-content {
    gap: 3rem;
  }
}

.football-hub .features-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .football-hub .features-header {
    margin-bottom: 2rem;
  }
}

.football-hub .features-section h2 {
  color: var(--color-text-primary);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .football-hub .features-section h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .football-hub .features-section h2 {
    font-size: 3rem;
  }
}

.football-hub .features-section .features-subtitle {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .football-hub .features-section .features-subtitle {
    font-size: 1rem;
  }
}

.football-hub .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .football-hub .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .football-hub .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.football-hub .feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .football-hub .feature-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.football-hub .feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.football-hub .feature-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-bg-dark);
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .football-hub .feature-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
}

.football-hub .feature-card h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .football-hub .feature-card h3 {
    font-size: 1.5rem;
  }
}

.football-hub .feature-card p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .football-hub .feature-card p {
    font-size: 1rem;
  }
}

/* ===== FEATURED POSTS SECTION ===== */

.football-hub .featured-posts-section {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .football-hub .featured-posts-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .football-hub .featured-posts-section {
    padding: 6rem 0;
  }
}

.football-hub .featured-posts-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .football-hub .featured-posts-content {
    gap: 3rem;
  }
}

.football-hub .posts-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .football-hub .posts-header {
    margin-bottom: 2rem;
  }
}

.football-hub .featured-posts-section h2 {
  color: var(--color-text-primary);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .football-hub .featured-posts-section h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .football-hub .featured-posts-section h2 {
    font-size: 3rem;
  }
}

.football-hub .featured-posts-section .posts-subtitle {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .football-hub .featured-posts-section .posts-subtitle {
    font-size: 1rem;
  }
}

.football-hub .posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .football-hub .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .football-hub .posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.football-hub .post-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .football-hub .post-card {
    gap: 1.5rem;
  }
}

.football-hub .post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.football-hub .post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.football-hub .post-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .football-hub .post-content {
    padding: 2rem;
    gap: 1rem;
  }
}

.football-hub .post-card h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .football-hub .post-card h3 {
    font-size: 1.5rem;
  }
}

.football-hub .post-card p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .football-hub .post-card p {
    font-size: 1rem;
  }
}

.football-hub .post-card a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  align-self: flex-start;
}

@media (min-width: 768px) {
  .football-hub .post-card a {
    font-size: 1rem;
  }
}

.football-hub .post-card a:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.football-hub .posts-footer {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .football-hub .posts-footer {
    margin-top: 2rem;
  }
}

/* ===== TRAINING TIPS SECTION ===== */

.football-hub .training-tips-section {
  background-color: var(--color-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .football-hub .training-tips-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .football-hub .training-tips-section {
    padding: 6rem 0;
  }
}

.football-hub .training-tips-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .football-hub .training-tips-content {
    flex-direction: row;
    text-align: right;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }
}

.football-hub .training-tips-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

@media (min-width: 1024px) {
  .football-hub .training-tips-text {
    gap: 2rem;
  }
}

.football-hub .training-tips-section h2 {
  color: var(--color-text-light);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .football-hub .training-tips-section h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .football-hub .training-tips-section h2 {
    font-size: 3rem;
  }
}

.football-hub .training-tips-section p {
  color: var(--color-border);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .football-hub .training-tips-section p {
    font-size: 1rem;
  }
}

.football-hub .tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .football-hub .tips-list {
    gap: 1.5rem;
  }
}

.football-hub .tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-border);
}

@media (min-width: 768px) {
  .football-hub .tips-list li {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .football-hub .tips-list li {
    justify-content: flex-end;
    text-align: right;
  }
}

.football-hub .tips-list li::before {
  content: "\f058";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.25rem;
}

.football-hub .training-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.football-hub .training-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 1024px) {
  .football-hub .training-image img {
    max-width: 100%;
  }
}

/* ===== HOW IT WORKS SECTION ===== */

.football-hub .how-it-works-section {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .football-hub .how-it-works-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .football-hub .how-it-works-section {
    padding: 6rem 0;
  }
}

.football-hub .how-it-works-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .football-hub .how-it-works-content {
    gap: 3rem;
  }
}

.football-hub .how-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .football-hub .how-header {
    margin-bottom: 2rem;
  }
}

.football-hub .how-it-works-section h2 {
  color: var(--color-text-primary);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .football-hub .how-it-works-section h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .football-hub .how-it-works-section h2 {
    font-size: 3rem;
  }
}

.football-hub .how-it-works-section .how-subtitle {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .football-hub .how-it-works-section .how-subtitle {
    font-size: 1rem;
  }
}

.football-hub .steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .football-hub .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .football-hub .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.football-hub .step-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .football-hub .step-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.football-hub .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  color: var(--color-bg-dark);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .football-hub .step-number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
}

.football-hub .step-card h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .football-hub .step-card h3 {
    font-size: 1.375rem;
  }
}

.football-hub .step-card p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .football-hub .step-card p {
    font-size: 1rem;
  }
}

/* ===== COACHING BENEFITS SECTION ===== */

.football-hub .coaching-benefits-section {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .football-hub .coaching-benefits-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .football-hub .coaching-benefits-section {
    padding: 6rem 0;
  }
}

.football-hub .coaching-benefits-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .football-hub .coaching-benefits-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

.football-hub .benefits-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.football-hub .benefits-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .football-hub .benefits-image img {
    max-width: 100%;
  }
}

.football-hub .benefits-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .football-hub .benefits-text {
    gap: 2rem;
  }
}

.football-hub .coaching-benefits-section h2 {
  color: var(--color-text-primary);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .football-hub .coaching-benefits-section h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .football-hub .coaching-benefits-section h2 {
    font-size: 3rem;
  }
}

.football-hub .coaching-benefits-section p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .football-hub .coaching-benefits-section p {
    font-size: 1rem;
  }
}

.football-hub .benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .football-hub .benefits-list {
    gap: 1.5rem;
  }
}

.football-hub .benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .football-hub .benefits-list li {
    font-size: 1rem;
  }
}

.football-hub .benefits-list li::before {
  content: "\f058";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.25rem;
}

/* ===== CONTACT FORM SECTION ===== */

.football-hub .contact-section {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .football-hub .contact-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .football-hub .contact-section {
    padding: 6rem 0;
  }
}

.football-hub .contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .football-hub .contact-content {
    gap: 3rem;
  }
}

.football-hub .contact-section h2 {
  color: var(--color-text-light);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .football-hub .contact-section h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .football-hub .contact-section h2 {
    font-size: 3rem;
  }
}

.football-hub .contact-section p {
  color: var(--color-border);
  font-size: 0.875rem;
  max-width: 600px;
}

@media (min-width: 768px) {
  .football-hub .contact-section p {
    font-size: 1rem;
  }
}

.football-hub .contact-form-wrapper {
  width: 100%;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

@media (min-width: 768px) {
  .football-hub .contact-form-wrapper {
    padding: 3rem;
  }
}

.football-hub .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.football-hub .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.football-hub .form-group label {
  color: var(--color-text-light);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: right;
}

@media (min-width: 768px) {
  .football-hub .form-group label {
    font-size: 1rem;
  }
}

.football-hub .form-group input,
.football-hub .form-group textarea {
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: var(--radius-md);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .football-hub .form-group input,
  .football-hub .form-group textarea {
    padding: 1rem;
    font-size: 1rem;
  }
}

.football-hub .form-group input::placeholder,
.football-hub .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.football-hub .form-group input:focus,
.football-hub .form-group textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.football-hub .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.football-hub .form-submit-btn {
  padding: 0.75rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-bg-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .football-hub .form-submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

.football-hub .form-submit-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.football-hub .form-submit-btn:active {
  transform: translateY(0);
}

.football-hub .form-privacy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@media (min-width: 768px) {
  .football-hub .form-privacy {
    font-size: 0.875rem;
  }
}

.football-hub .form-privacy a {
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.football-hub .form-privacy a:hover {
  color: var(--color-primary-dark);
}

/* ==========================================================================
   Youth Sports Hub - Home Page
   ========================================================================== */

.youth-sports-hub {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

/* ===== HERO SECTION ===== */

.youth-sports-hub .hero-section {
  background: radial-gradient(circle at top left, rgba(212, 165, 116, 0.22), transparent 55%),
    radial-gradient(circle at bottom right, rgba(25, 118, 210, 0.18), transparent 55%),
    linear-gradient(135deg, #0a1118 0%, #101827 45%, #121212 100%);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .youth-sports-hub .hero-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .youth-sports-hub .hero-section {
    padding: 6rem 0;
  }
}

.youth-sports-hub .hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .youth-sports-hub .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: right;
  }
}

.youth-sports-hub .hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 1024px) {
  .youth-sports-hub .hero-text {
    gap: 1.5rem;
  }
}

.youth-sports-hub .hero-section h1 {
  color: var(--color-text-light);
  font-size: 2.25rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .youth-sports-hub .hero-section h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .youth-sports-hub .hero-section h1 {
    font-size: 3.5rem;
  }
}

.youth-sports-hub .hero-section p {
  color: var(--color-border);
  font-size: 0.95rem;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .youth-sports-hub .hero-section p {
    font-size: 1rem;
  }
}

.youth-sports-hub .hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  align-items: center;
}

@media (min-width: 768px) {
  .youth-sports-hub .hero-cta {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .youth-sports-hub .hero-cta {
    justify-content: flex-start;
  }
}

.youth-sports-hub .hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youth-sports-hub .hero-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
}

@media (min-width: 1024px) {
  .youth-sports-hub .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .youth-sports-hub .hero-image img {
    max-width: 520px;
  }
}

/* ===== FEATURES SECTION ===== */

.youth-sports-hub .features-section {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .youth-sports-hub .features-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .youth-sports-hub .features-section {
    padding: 6rem 0;
  }
}

.youth-sports-hub .features-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .youth-sports-hub .features-content {
    gap: 3rem;
  }
}

.youth-sports-hub .features-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .youth-sports-hub .features-header {
    margin-bottom: 2rem;
  }
}

.youth-sports-hub .features-section h2 {
  color: var(--color-text-primary);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .youth-sports-hub .features-section h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .youth-sports-hub .features-section h2 {
    font-size: 3rem;
  }
}

.youth-sports-hub .features-subtitle {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.youth-sports-hub .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .youth-sports-hub .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .youth-sports-hub .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}

.youth-sports-hub .feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  border-inline-start: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .youth-sports-hub .feature-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.youth-sports-hub .feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.youth-sports-hub .feature-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-bg-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .youth-sports-hub .feature-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
}

.youth-sports-hub .feature-card h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin: 0;
}

.youth-sports-hub .feature-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

/* ===== TRIAL CAMPS SECTION ===== */

.youth-sports-hub .trial-camps-section {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .youth-sports-hub .trial-camps-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .youth-sports-hub .trial-camps-section {
    padding: 5rem 0;
  }
}

.youth-sports-hub .trial-camps-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .youth-sports-hub .trial-camps-content {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 3rem;
  }
}

.youth-sports-hub .camps-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
  height: auto;
}

@media (min-width: 1024px) {
  .youth-sports-hub .camps-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.youth-sports-hub .camps-text h2 {
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.youth-sports-hub .camps-text p {
  color: var(--color-border);
  margin-bottom: 1.25rem;
}

.youth-sports-hub .camps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.youth-sports-hub .camps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-border);
  font-size: 0.95rem;
  line-height: 1.6;
}

.youth-sports-hub .camps-list li::before {
  content: "•";
  margin-inline-end: 0.5rem;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ===== PROGRAMS SECTION ===== */

.youth-sports-hub .programs-section {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .youth-sports-hub .programs-section {
    padding: 4.5rem 0;
  }
}

.youth-sports-hub .programs-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.youth-sports-hub .programs-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.youth-sports-hub .programs-subtitle {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.youth-sports-hub .programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .youth-sports-hub .programs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.youth-sports-hub .program-card {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.youth-sports-hub .program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.youth-sports-hub .program-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.youth-sports-hub .program-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.youth-sports-hub .program-content h3 {
  color: var(--color-text-primary);
  font-size: 1.375rem;
  margin: 0;
}

.youth-sports-hub .program-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.youth-sports-hub .program-content a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition-base);
  align-self: flex-start;
}

.youth-sports-hub .program-content a:hover {
  color: var(--color-primary-dark);
  transform: translateX(-4px);
}

/* ===== METHODOLOGY SECTION ===== */

.youth-sports-hub .methodology-section {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .youth-sports-hub .methodology-section {
    padding: 4.5rem 0;
  }
}

.youth-sports-hub .methodology-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .youth-sports-hub .methodology-content {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

.youth-sports-hub .methodology-text h2 {
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.youth-sports-hub .methodology-text p {
  color: var(--color-border);
  margin-bottom: 1.25rem;
}

.youth-sports-hub .methodology-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.youth-sports-hub .methodology-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-border);
  font-size: 0.95rem;
  line-height: 1.6;
}

.youth-sports-hub .methodology-list li::before {
  content: "•";
  margin-inline-end: 0.5rem;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.youth-sports-hub .methodology-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
  height: auto;
}

@media (min-width: 1024px) {
  .youth-sports-hub .methodology-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== HOW IT WORKS SECTION ===== */

.youth-sports-hub .how-it-works-section {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .youth-sports-hub .how-it-works-section {
    padding: 4.5rem 0;
  }
}

.youth-sports-hub .how-it-works-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.youth-sports-hub .how-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.youth-sports-hub .how-subtitle {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.youth-sports-hub .steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .youth-sports-hub .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

.youth-sports-hub .step-card {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.youth-sports-hub .step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.youth-sports-hub .step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  background-color: var(--color-primary);
  color: var(--color-bg-dark);
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-secondary);
}

.youth-sports-hub .step-card h3 {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin: 0;
}

.youth-sports-hub .step-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ===== BENEFITS SECTION ===== */

.youth-sports-hub .benefits-section {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .youth-sports-hub .benefits-section {
    padding: 4.5rem 0;
  }
}

.youth-sports-hub .benefits-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .youth-sports-hub .benefits-content {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    gap: 3rem;
  }
}

.youth-sports-hub .benefits-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
  height: auto;
}

@media (min-width: 1024px) {
  .youth-sports-hub .benefits-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.youth-sports-hub .benefits-text h2 {
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.youth-sports-hub .benefits-text p {
  color: var(--color-border);
  margin-bottom: 1.25rem;
}

.youth-sports-hub .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.youth-sports-hub .benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-border);
  font-size: 0.95rem;
  line-height: 1.6;
}

.youth-sports-hub .benefits-list li::before {
  content: "•";
  margin-inline-end: 0.5rem;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ===== CONTACT SECTION ===== */

.youth-sports-hub .contact-section {
  background-color: var(--color-bg-card);
  padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .youth-sports-hub .contact-section {
    padding: 4.5rem 0 5rem;
  }
}

.youth-sports-hub .contact-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .youth-sports-hub .contact-content {
    gap: 2.5rem;
  }
}

.youth-sports-hub .contact-content h2 {
  color: var(--color-text-primary);
}

.youth-sports-hub .contact-content p {
  color: var(--color-text-secondary);
}

.youth-sports-hub .contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .youth-sports-hub .contact-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

.youth-sports-hub .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: center;
  flex-direction: row-reverse;
  text-align: right;
}

.youth-sports-hub .contact-item i {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.youth-sports-hub .contact-item div {
  flex: 1;
}

.youth-sports-hub .contact-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  color: var(--color-text-primary);
}

.youth-sports-hub .contact-item p {
  margin: 0;
  color: var(--color-warning);
}

.youth-sports-hub .contact-item a {
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.youth-sports-hub .contact-item a:hover {
  color: var(--color-primary-dark);
}

.youth-sports-hub .contact-form-wrapper {
  margin-top: 1.5rem;
}

.youth-sports-hub .contact-form {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .youth-sports-hub .contact-form {
    padding: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }

  .youth-sports-hub .form-group:last-of-type {
    grid-column: 1 / -1;
  }
}

.youth-sports-hub .form-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}

.youth-sports-hub .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-align: right;
}

.youth-sports-hub .form-group input,
.youth-sports-hub .form-group textarea,
.youth-sports-hub .form-group select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  background-color: #ffffff;
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  transition: all var(--transition-base);
}

.youth-sports-hub .form-group input::placeholder,
.youth-sports-hub .form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.youth-sports-hub .form-group input:focus,
.youth-sports-hub .form-group textarea:focus,
.youth-sports-hub .form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.youth-sports-hub .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.youth-sports-hub .form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .youth-sports-hub .form-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.youth-sports-hub .form-actions .btn {
  min-width: 200px;
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.youth-sports-hub .form-note {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0;
}

@media (min-width: 768px) {
  .youth-sports-hub .form-note {
    font-size: 0.8rem;
    text-align: right;
  }
}

.youth-sports-hub .form-note a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.youth-sports-hub .form-note a:hover {
  color: var(--color-primary-dark);
}

/* Privacy Page Styles */

.legal-docs {
  font-family: var(--font-primary);
  background-color: var(--color-bg-light);
  color: var(--color-text-primary);
  line-height: 1.8;
  overflow: hidden;
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.legal-docs-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.legal-docs h1 {
  font-size: 2rem;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-sm) 0;
  font-weight: 700;
}

.legal-docs h2 {
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--color-secondary);
  margin: var(--spacing-lg) 0 var(--spacing-md) 0;
  font-weight: 700;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--spacing-sm);
}

.legal-docs p {
  font-size: 1rem;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  text-align: justify;
}

.legal-docs .updated-date {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--spacing-xl);
}

.legal-docs section {
  overflow: hidden;
}

.legal-docs .hero-section {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .legal-docs .hero-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs .hero-section {
    padding: 5rem 0;
  }
}

.legal-docs .content-section {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .legal-docs .content-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs .content-section {
    padding: 5rem 0;
  }
}

.legal-docs .contact-section {
  background-color: var(--color-secondary);
  padding: 3rem 0;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .legal-docs .contact-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs .contact-section {
    padding: 5rem 0;
  }
}

.legal-docs .contact-section h2 {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.legal-docs .contact-section p {
  color: var(--color-text-light);
}

.legal-docs .contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.legal-docs .contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.legal-docs .contact-label {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.legal-docs .contact-value {
  color: var(--color-text-light);
  font-size: 1rem;
  margin-left: var(--spacing-sm);
}

.legal-docs ul {
  margin: var(--spacing-md) 0;
  padding-left: 1.5rem;
  list-style-position: outside;
}

.legal-docs li {
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .legal-docs h1 {
    font-size: 2.5rem;
  }

  .legal-docs h2 {
    font-size: 1.75rem;
  }

  .legal-docs p {
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs h1 {
    font-size: 3rem;
  }

  .legal-docs h2 {
    font-size: 2rem;
  }

  .legal-docs p {
    font-size: 1.1rem;
  }
}

/* Thank You Page Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

/* Thank You Page Styles */

.thank-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero Section */

.thank-hero-section {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

@media (min-width: 768px) {
  .thank-hero-section {
    padding: 5rem 0;
    min-height: 55vh;
  }
}

@media (min-width: 1024px) {
  .thank-hero-section {
    padding: 6rem 0;
    min-height: 60vh;
  }
}

.thank-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .thank-hero-content {
    gap: 1.5rem;
  }
}

.thank-icon {
  font-size: 3.5rem;
  color: var(--color-success);
  margin-bottom: 0.5rem;
  animation: iconPulse 1s ease-out;
}

@media (min-width: 768px) {
  .thank-icon {
    font-size: 4.5rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .thank-icon {
    font-size: 5.5rem;
  }
}

@keyframes iconPulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-hero-section h1 {
  font-size: 2.25rem;
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .thank-hero-section h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .thank-hero-section h1 {
    font-size: 4rem;
  }
}

.thank-lead {
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .thank-lead {
    font-size: 1.5rem;
  }
}

.thank-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .thank-subtitle {
    font-size: 1rem;
    max-width: 600px;
  }
}

/* Content Section */

.thank-content-section {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .thank-content-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .thank-content-section {
    padding: 6rem 0;
  }
}

.thank-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .thank-content-wrapper {
    gap: 2.5rem;
  }
}

.thank-message {
  text-align: center;
  max-width: 700px;
}

.thank-content-section h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .thank-content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .thank-content-section h2 {
    font-size: 3rem;
  }
}

.thank-message p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .thank-message p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.thank-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .thank-benefits {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}

.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .benefit-item {
    padding: 1.25rem;
    gap: 1.25rem;
  }
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-item i {
  font-size: 1.5rem;
  color: var(--color-primary);
  min-width: 1.5rem;
}

@media (min-width: 768px) {
  .benefit-item i {
    font-size: 1.75rem;
  }
}

.benefit-item span {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .benefit-item span {
    font-size: 1rem;
  }
}

/* Button Styles - override font for thank page */

.thank-hero-section .btn {
  font-family: var(--font-primary);
}

/* Accessibility */

.thank-icon:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print Styles */

@media print {
  .thank-hero-section {
    page-break-after: avoid;
  }

  .btn {
    display: none;
  }
}

/* 404 Page Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  direction: rtl;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* ============ ERROR PAGE HERO ============ */

.error-hero-section {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .error-hero-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .error-hero-section {
    padding: 6rem 0;
  }
}

.error-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .error-hero-content {
    flex-direction: row;
    text-align: right;
    gap: var(--spacing-3xl);
    align-items: center;
  }
}

/* ============ ERROR ILLUSTRATION ============ */

.error-illustration {
  position: relative;
  width: 100%;
  height: 250px;
  min-height: 250px;
}

@media (min-width: 768px) {
  .error-illustration {
    width: 50%;
    height: 350px;
    min-height: 350px;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .error-illustration {
    height: 400px;
    min-height: 400px;
  }
}

/* Soccer Ball */

.soccer-ball {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 30% 30%, var(--color-text-light), var(--color-bg-dark));
  border-radius: 50%;
  animation: errorBounce 3s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .soccer-ball {
    width: 100px;
    height: 100px;
    top: 40px;
  }
}

@media (min-width: 1024px) {
  .soccer-ball {
    width: 120px;
    height: 120px;
    top: 60px;
  }
}

/* Goal Post */

.goal-post {
  position: absolute;
  width: 150px;
  height: 200px;
  bottom: 20px;
  right: 10%;
  border: 3px solid var(--color-primary);
  border-top: none;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0) 100%);
  animation: sway 4s ease-in-out infinite;
}

@media (min-width: 768px) {
  .goal-post {
    width: 180px;
    height: 240px;
    right: 5%;
  }
}

@media (min-width: 1024px) {
  .goal-post {
    width: 200px;
    height: 280px;
  }
}

/* Player Silhouette */

.player-silhouette {
  position: absolute;
  width: 60px;
  height: 140px;
  bottom: 20px;
  left: 10%;
  background-color: var(--color-secondary);
  clip-path: polygon(50% 0%, 100% 20%, 100% 50%, 80% 60%, 90% 100%, 70% 90%, 60% 65%, 40% 65%, 30% 90%, 10% 100%, 20% 60%, 0% 50%, 0% 20%);
  animation: kickBall 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .player-silhouette {
    width: 70px;
    height: 160px;
  }
}

@media (min-width: 1024px) {
  .player-silhouette {
    width: 80px;
    height: 180px;
  }
}

/* Floating Particles */

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0.6;
}

.particle:nth-child(1) {
  top: 15%;
  left: 20%;
  animation: float 4s ease-in-out infinite;
}

.particle:nth-child(2) {
  top: 30%;
  right: 15%;
  animation: float 5s ease-in-out 1s infinite;
}

.particle:nth-child(3) {
  bottom: 25%;
  left: 30%;
  animation: float 6s ease-in-out 2s infinite;
}

.particle:nth-child(4) {
  top: 50%;
  right: 25%;
  animation: float 4.5s ease-in-out 0.5s infinite;
}

.particle:nth-child(5) {
  bottom: 35%;
  right: 10%;
  animation: float 5.5s ease-in-out 1.5s infinite;
}

/* ============ ERROR CONTENT ============ */

.error-content {
  width: 100%;
}

@media (min-width: 768px) {
  .error-content {
    width: 50%;
  }
}

.error-code {
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 8px rgba(212, 165, 116, 0.3);
  letter-spacing: -2px;
}

@media (min-width: 768px) {
  .error-code {
    font-size: 6rem;
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .error-code {
    font-size: 7rem;
  }
}

.error-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .error-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
  }
}

.error-subtitle {
  font-size: var(--font-size-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .error-subtitle {
    font-size: 1.05rem;
    margin-bottom: var(--spacing-xl);
  }
}

/* ============ ERROR ACTIONS ============ */

.error-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
}

@media (min-width: 768px) {
  .error-actions {
    align-items: flex-start;
  }
}

/* ============ ERROR HELP SECTION ============ */

.error-help-section {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-help-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .error-help-section {
    padding: 6rem 0;
  }
}

.error-help-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.help-title {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .help-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
  }
}

/* ============ HELP OPTIONS ============ */

.help-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .help-options {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
}

@media (min-width: 1024px) {
  .help-options {
    gap: var(--spacing-2xl);
  }
}

.help-card {
  background-color: var(--color-bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .help-card {
    padding: 2rem;
    gap: var(--spacing-lg);
  }
}

.help-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.help-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(184, 134, 11, 0.05) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .help-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

.help-card h4 {
  font-size: var(--font-size-h5);
  font-weight: 700;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .help-card h4 {
    font-size: 1.25rem;
  }
}

.help-card p {
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .help-card p {
    font-size: 0.95rem;
  }
}

/* ============ ERROR INFO ============ */

.error-info {
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
  .error-info {
    padding: 2rem;
    margin-top: var(--spacing-xl);
  }
}

.info-text {
  font-size: var(--font-size-body);
  color: var(--color-text-primary);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: var(--spacing-md);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .info-text {
    font-size: 1.05rem;
  }
}

.info-text i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ============ ANIMATIONS ============ */

@keyframes errorBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-30px);
  }
}

@keyframes sway {
  0%,
  100% {
    transform: rotateZ(0deg);
    transform-origin: top center;
  }
  50% {
    transform: rotateZ(3deg);
    transform-origin: top center;
  }
}

@keyframes kickBall {
  0%,
  100% {
    transform: translateX(0) rotateZ(0deg);
  }
  50% {
    transform: translateX(20px) rotateZ(-20deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) translateX(5px);
    opacity: 0.3;
  }
}

/* ============ ACCESSIBILITY ============ */

.main {
  min-height: 100vh;
}

a {
  outline-offset: 2px;
}

a:focus-visible {
  outline: 2px solid var(--color-primary);
}

i {
  display: inline-block;
}

/* ============ PRINT STYLES ============ */

@media print {
  .error-hero-section {
    background-color: var(--color-bg-light);
  }

  .error-title,
  .error-subtitle {
    color: var(--color-text-primary);
  }

  .error-illustration {
    display: none;
  }

  .error-help-section {
    background-color: var(--color-bg-light);
  }
}

/* ========================================
   Programs Page Styles
   ======================================== */

/* Breadcrumbs */

.breadcrumbs {
  background-color: var(--color-bg-dark);
  padding: 1rem 0;
  margin-bottom: 0;
}

.breadcrumbs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .breadcrumbs .container {
    padding: 0 var(--spacing-lg);
  }
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: var(--color-text-muted);
  margin-inline-start: 0.5rem;
}

.breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.breadcrumbs li[aria-current="page"] {
  color: var(--color-text-light);
}

/* Hero Meta Row */

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: center;
}

.hero-meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  color: var(--color-bg-dark);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-secondary);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-family: var(--font-secondary);
}

/* Programs Overview Grid */

.programs-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .programs-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .programs-overview-grid {
    gap: 3rem;
  }
}

.programs-overview-item {
  background-color: var(--color-bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-inline-start: 4px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.programs-overview-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.programs-overview-item h3 {
  color: var(--color-text-primary);
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  font-family: var(--font-secondary);
  font-weight: 700;
}

.programs-overview-item p {
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.programs-overview-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.programs-overview-item li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.programs-overview-item li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Programs Header Secondary */

.programs-header-secondary {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--color-border);
}

@media (min-width: 768px) {
  .programs-header-secondary {
    margin-top: 4rem;
    padding-top: 4rem;
  }
}

/* Program Meta */

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.program-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background-color: var(--color-bg-light);
  color: var(--color-text-primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-secondary);
  border: 1px solid var(--color-border);
}

/* Contact Section Adjustments for Programs Page */

.youth-sports-hub .contact-section .contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .youth-sports-hub .contact-section .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.youth-sports-hub .contact-section .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 165, 116, 0.2);
  transition: all var(--transition-base);
}

.youth-sports-hub .contact-section .contact-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
}

.youth-sports-hub .contact-section .contact-item i {
  font-size: 1.75rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.youth-sports-hub .contact-section .contact-item div {
  flex: 1;
  text-align: right;
}

.youth-sports-hub .contact-section .contact-item h3 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin: 0 0 0.5rem 0;
  font-family: var(--font-secondary);
  font-weight: 600;
}

.youth-sports-hub .contact-section .contact-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--color-warning);
}

.youth-sports-hub .contact-section .contact-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.youth-sports-hub .contact-section .contact-item a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Contact Form Wrapper */

.youth-sports-hub .contact-section .contact-form-wrapper {
  text-align: center;
  margin: 2rem 0;
}

.youth-sports-hub .contact-section .contact-form-wrapper .btn {
  min-width: 300px;
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Contact Note */

.youth-sports-hub .contact-section .contact-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(25, 174, 96, 0.1);
  border-inline-start: 4px solid var(--color-success);
  border-radius: var(--radius-md);
}

.youth-sports-hub .contact-section .contact-note p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Responsive Adjustments */

@media (max-width: 767px) {
  .programs-overview-item {
    padding: 1.5rem;
  }

  .programs-overview-item h3 {
    font-size: 1.25rem;
  }

  .hero-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta-badge,
  .hero-meta-item {
    width: 100%;
    justify-content: center;
  }

  .program-meta {
    flex-direction: column;
  }

  .program-meta span {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   Program Detail Pages Styles
   ======================================== */

/* Program Detail Section */

.program-detail-section {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .program-detail-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .program-detail-section {
    padding: 5rem 0;
  }
}

.program-detail-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .program-detail-section .container {
    padding: 0 var(--spacing-lg);
  }
}

.program-detail-section h2 {
  color: var(--color-text-primary);
  font-size: 2rem;
  margin: 0 0 1.5rem 0;
  font-family: var(--font-secondary);
  font-weight: 700;
  text-align: center;
}

@media (min-width: 768px) {
  .program-detail-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.program-detail-section > .container > p {
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  text-align: justify;
}

@media (min-width: 768px) {
  .program-detail-section > .container > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
}

/* Cards Grid */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    gap: 3rem;
  }
}

/* Tip Card */

.tip-card {
  background-color: var(--color-bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-inline-start: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.tip-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tip-card h3 {
  color: var(--color-text-primary);
  font-size: 1.375rem;
  margin: 0 0 1.25rem 0;
  font-family: var(--font-secondary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .tip-card h3 {
    font-size: 1.5rem;
  }
}

.tip-card p {
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.tip-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tip-card li::before {
  content: "→";
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Info Box */

.info-box {
  background-color: var(--color-bg-info);
  border: 2px solid var(--color-info-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .info-box {
    padding: 2rem;
  }
}

.info-box h3 {
  color: var(--color-info-dark);
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  font-family: var(--font-secondary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-box h3 i {
  color: var(--color-info);
  font-size: 1.5rem;
}

.info-box p {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-box li::before {
  content: "•";
  color: var(--color-info);
  font-weight: 700;
  flex-shrink: 0;
}

/* Warning Box */

.warning-box {
  background-color: var(--color-warning-light);
  border: 2px solid var(--color-warning);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .warning-box {
    padding: 2rem;
  }
}

.warning-box h3 {
  color: var(--color-warning-dark);
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  font-family: var(--font-secondary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.warning-box h3 i {
  color: var(--color-warning);
  font-size: 1.5rem;
}

.warning-box p {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Success Box */

.success-box {
  background-color: rgba(39, 174, 96, 0.1);
  border: 2px solid var(--color-success);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .success-box {
    padding: 2rem;
  }
}

.success-box h3 {
  color: var(--color-success);
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  font-family: var(--font-secondary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.success-box h3 i {
  font-size: 1.5rem;
}

.success-box p {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive for Detail Pages */

@media (max-width: 767px) {
  .tip-card {
    padding: 1.5rem;
  }

  .tip-card h3 {
    font-size: 1.25rem;
  }

  .info-box,
  .warning-box,
  .success-box {
    padding: 1.25rem;
  }

  .info-box h3,
  .warning-box h3,
  .success-box h3 {
    font-size: 1.125rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Highlight Box */

.highlight-box {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(25, 118, 210, 0.1) 100%);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .highlight-box {
    padding: 2rem;
  }
}

.highlight-box h3 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  font-family: var(--font-secondary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-box h3 i {
  font-size: 1.5rem;
}

.highlight-box p {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Fix for program-detail-section lists and paragraphs */

.program-detail-section ol,
.program-detail-section ul {
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 1.5rem 0;
  padding-inline-start: 2rem;
}

@media (min-width: 768px) {
  .program-detail-section ol,
  .program-detail-section ul {
    font-size: 1.05rem;
    margin: 2rem 0;
  }
}

.program-detail-section li {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.program-detail-section li strong {
  color: var(--color-secondary);
  font-weight: 700;
}

.program-detail-section p {
  color: var(--color-text-primary);
}

/* Programs Header - Fix for invisible h1 */

.youth-sports-hub .programs-header {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .youth-sports-hub .programs-header {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .youth-sports-hub .programs-header {
    padding: 5rem 0;
  }
}

.youth-sports-hub .programs-header h1 {
  color: var(--color-text-light);
  font-size: 2.25rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .youth-sports-hub .programs-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .youth-sports-hub .programs-header h1 {
    font-size: 3.5rem;
  }
}

.youth-sports-hub .programs-header p {
  color: var(--color-border);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .youth-sports-hub .programs-header p {
    font-size: 1.05rem;
  }
}
