/* ===============================================
   GAME SCHEDULES STYLES
   =============================================== */

/* Schedules Hero */
.schedules-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.schedules-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.schedules-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.schedules-hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.schedules-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  color: var(--accent-yellow);
}

.schedules-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

/* Schedule Filters */
.schedule-filters-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.filter-row {
  margin-bottom: var(--spacing-2xl);
}

.filter-row:last-child {
  margin-bottom: 0;
}

.filter-group {
  background: var(--white);
  border-radius: 16px;
  padding: var(--spacing-xl);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-filter-group {
  max-width: 400px; /* Reduced from 800px to fit middle column */
  margin: 0 auto;
}

.sport-filter-group {
  max-width: 1200px;
  margin: 0 auto;
}

.filter-label {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

/* Location Filter - Centered in middle column */
.location-filter {
  display: flex;
  flex-direction: column; /* Changed from row to column */
  gap: var(--spacing-md);
  align-items: center;
}

.location-filter-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%; /* Changed from min-width to width */
  max-width: 350px; /* Added max-width for better control */
}

.location-filter-btn:hover {
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-filter-btn.active {
  border-color: var(--primary-red);
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  color: var(--white);
}

.location-filter-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-filter-btn.active .location-filter-icon {
  background: rgba(255, 255, 255, 0.2);
}

.location-filter-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-red);
}

.location-filter-btn.active .location-filter-icon svg {
  color: var(--white);
}

.location-filter-content {
  flex: 1;
}

.location-filter-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.location-filter-address {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

/* Sport Filter - Three Column Layout */
.sport-filter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  align-items: start;
}

.sport-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.sport-column:last-child {
  justify-content: flex-start;
}

.sport-filter-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
  min-height: 80px;
}

.sport-filter-btn:hover {
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sport-filter-btn.active {
  border-color: var(--primary-red);
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  color: var(--white);
}

.sport-filter-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sport-filter-btn.active .sport-filter-icon {
  background: rgba(255, 255, 255, 0.2);
}

.sport-filter-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-red);
}

.sport-filter-btn.active .sport-filter-icon svg {
  color: var(--white);
}

.sport-filter-text {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Schedule Content */
.schedule-content-section {
  padding: var(--spacing-3xl) 0;
  background: var(--white);
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 2px solid #f0f0f0;
}

.schedule-title-group {
  flex: 1;
}

.schedule-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.schedule-location {
  color: var(--primary-red);
}

.schedule-sport {
  color: var(--dark-gray);
}

.schedule-date {
  color: var(--primary-blue);
}

.schedule-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 0.875rem;
  color: #666;
}

.games-count {
  font-weight: 600;
  color: var(--primary-red);
}

.schedule-separator {
  color: #ccc;
}

.schedule-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-shrink: 0;
}

.schedule-actions .btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
}

.schedule-actions .btn svg {
  width: 18px;
  height: 18px;
}

/* Schedule Table */
.schedule-table-wrapper {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.schedule-table thead {
  background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
  color: var(--white);
}

.schedule-table th {
  padding: var(--spacing-lg);
  text-align: left;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schedule-table td {
  padding: var(--spacing-lg);
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
}

.schedule-row:hover {
  background: rgba(233, 30, 99, 0.02);
}

.schedule-row:last-child td {
  border-bottom: none;
}

/* Team Matchup */
.team-matchup {
  min-width: 300px;
}

.teams {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-team,
.away-team {
  font-weight: 600;
  color: var(--dark-gray);
}

.vs {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  font-weight: 700;
  margin: 2px 0;
}

.team-color {
  font-weight: 400;
  color: #666;
  font-size: 0.8em;
}

/* Field Info */
.field-info {
  min-width: 150px;
}

.field-name {
  font-weight: 600;
  color: var(--primary-red);
}

/* Game Time */
.game-time {
  min-width: 80px;
}

.time {
  font-weight: 700;
  color: var(--dark-gray);
  font-size: 1rem;
}

/* Division Info */
.division-info {
  min-width: 200px;
}

.division-name {
  font-weight: 500;
  color: #666;
  line-height: 1.3;
}

/* No Games Message */
.no-games-message {
  text-align: center;
  padding: var(--spacing-4xl);
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: var(--spacing-xl);
}

.no-games-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-games-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary-red);
}

.no-games-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
}

.no-games-description {
  color: #666;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Responsive Design for Game Schedules */
@media (max-width: 1024px) {
  .schedules-hero-title {
    font-size: 3rem;
  }

  .schedule-header {
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: stretch;
  }

  .schedule-actions {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .filters-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .sport-filter {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sport-filter-btn {
    flex: 1;
    min-width: 150px;
  }

  .schedules-hero-title {
    font-size: 2.5rem;
  }

  .schedule-title {
    font-size: 1.5rem;
  }

  .schedule-table-wrapper {
    overflow-x: auto;
  }

  .schedule-table {
    min-width: 700px;
  }

  .hero-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .location-filter,
  .sport-filter {
    flex-direction: column;
  }

  .location-filter-btn,
  .sport-filter-btn {
    padding: var(--spacing-md);
  }

  .schedules-hero-title {
    font-size: 2rem;
  }

  .schedule-actions {
    flex-direction: column;
  }

  .schedule-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .schedule-table {
    font-size: 0.75rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: var(--spacing-md);
  }
}

/* ===============================================
     FAQ STYLES
     =============================================== */

/* FAQ Hero */
.faq-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.faq-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.faq-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.faq-hero-title {
  font-size: 4rem;
  line-height: 1em;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  color: var(--accent-yellow);
}

.faq-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.9);
}

/* Important Notice */
.important-notice-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.important-notice {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  background: var(--white);
  border-radius: 16px;
  padding: var(--spacing-xl);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 6px solid var(--accent-yellow);
}

.notice-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffc107 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.notice-content {
  flex: 1;
}

.notice-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
}

.notice-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: var(--spacing-lg);
}

.notice-btn {
  padding: var(--spacing-md) var(--spacing-xl);
}

/* FAQ Search */
.faq-search-section {
  padding: var(--spacing-3xl) 0;
  background: #f8f9fa;
}

.faq-search-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.search-header {
  margin-bottom: var(--spacing-xl);
}

.search-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
}

.search-description {
  font-size: 1.125rem;
  color: #666;
}

.search-box {
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) 60px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  background: var(--white);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.search-icon {
  position: absolute;
  left: 20px;
  width: 20px;
  height: 20px;
  color: #666;
  z-index: 2;
}

.search-clear {
  position: absolute;
  right: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-clear:hover {
  background: #e0e0e0;
}

.search-clear svg {
  width: 16px;
  height: 16px;
  color: #666;
}

/* FAQ Content */
.faq-content-section {
  padding: var(--spacing-3xl) 0;
  background: var(--white);
}

.faq-categories {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: var(--spacing-3xl);
}

.category-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
  position: relative;
}

.policy-category h3.category-title {
  color: #fff;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

/* FAQ Item */
.faq-item {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}

.faq-question {
  width: 100%;
  padding: var(--spacing-lg);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-gray);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(233, 30, 99, 0.02);
}

.faq-question[aria-expanded="true"] {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  color: var(--white);
}

.question-text {
  flex: 1;
  margin-right: var(--spacing-md);
}

.question-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .question-icon {
  transform: rotate(180deg);
}

.question-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.answer-content {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  padding-top: 10px;
  color: #666;
  line-height: 1.6;
}

.answer-content h4 {
  color: var(--dark-gray);
  font-weight: 600;
  margin: var(--spacing-lg) 0 var(--spacing-md);
}

.answer-content h5 {
  color: var(--primary-red);
  font-weight: 600;
  margin: var(--spacing-md) 0 var(--spacing-sm);
}

.answer-content p {
  margin-bottom: var(--spacing-md);
}

.answer-content ol,
.answer-content ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.answer-content li {
  margin-bottom: var(--spacing-sm);
}

.steps-list {
  background: #f8f9fa;
  border-radius: 8px;
  padding: var(--spacing-lg);
  margin: var(--spacing-md) 0;
}

.notice-box {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-left: 4px solid var(--accent-yellow);
  border-radius: 8px;
  padding: var(--spacing-lg);
  margin: var(--spacing-md) 0;
}

.link-list {
  list-style: none;
  padding-left: 0;
}

.link-list li {
  margin-bottom: var(--spacing-sm);
}

.faq-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-link:hover {
  color: #c21547;
  text-decoration: underline;
}

/* No Results */
.no-results {
  text-align: center;
  padding: var(--spacing-4xl);
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: var(--spacing-xl);
}

.no-results-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-results-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary-red);
}

.no-results-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
}

.no-results-description {
  color: #666;
  max-width: 400px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.5;
}

/* FAQ Support */
.faq-support-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.support-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  background: var(--white);
  border-radius: 16px;
  padding: var(--spacing-2xl);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.support-content {
  flex: 1;
}

.support-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
}

.support-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

.support-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.support-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-icon svg {
  width: 60px;
  height: 60px;
  color: var(--white);
}

/* Responsive Design for FAQ */
@media (max-width: 1024px) {
  .faq-hero-title {
    font-size: 3rem;
  }

  .support-card {
    flex-direction: column;
    text-align: center;
  }

  .support-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .faq-hero-title {
    font-size: 2.5rem;
  }

  .important-notice {
    flex-direction: column;
    text-align: center;
  }

  .search-title {
    font-size: 1.5rem;
  }

  .support-actions {
    flex-direction: column;
  }

  .support-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .faq-hero-title {
    font-size: 2rem;
  }

  .notice-icon,
  .support-icon {
    width: 80px;
    height: 80px;
  }

  .notice-icon svg,
  .support-icon svg {
    width: 40px;
    height: 40px;
  }

  .faq-question {
    padding: var(--spacing-md);
    font-size: 1rem;
  }

  .answer-content {
    padding: 0 var(--spacing-md) var(--spacing-md);
  }

  .search-input {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) 50px;
  }

  .search-icon {
    left: 15px;
    width: 18px;
    height: 18px;
  }
}

/* ===============================================
     POLICIES STYLES
     =============================================== */

/* Policies Hero */
.policies-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.policies-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.policies-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.policies-hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.policies-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  color: var(--accent-yellow);
}

.policies-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.9);
}

/* Policy Overview */
.policy-overview-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.policy-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.policy-highlight {
  background: var(--white);
  border-radius: 16px;
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.policy-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-red);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
}

.highlight-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
}

.highlight-description {
  color: #666;
  line-height: 1.5;
}

/* Detailed Policies */
.detailed-policies-section {
  padding: var(--spacing-3xl) 0;
  background: var(--white);
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-2xl);
  max-width: 1400px;
  margin: 0 auto;
}

.policy-category {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.policy-category:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}

.policy-category-header {
  background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
  color: var(--white);
  padding: var(--spacing-xl);
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.policy-content {
  padding: var(--spacing-xl);
}

.policy-item {
  margin-bottom: var(--spacing-xl);
}

.policy-item:last-child {
  margin-bottom: 0;
}

.policy-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
}

.policy-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.policy-note {
  background: #f8f9fa;
  border-radius: 8px;
  padding: var(--spacing-md);
  margin-top: var(--spacing-md);
  font-size: 0.9rem;
}

.policy-warning {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-left: 4px solid var(--accent-yellow);
  border-radius: 8px;
  padding: var(--spacing-md);
  margin-top: var(--spacing-md);
  font-size: 0.9rem;
}

.policy-note ul,
.policy-warning ul {
  margin: var(--spacing-sm) 0 0;
  padding-left: var(--spacing-lg);
}

.policy-note li,
.policy-warning li {
  margin-bottom: var(--spacing-xs);
}

/* Policy Contact */
.policy-contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-card {
  margin: var(--spacing-3xl) 0 !important;

  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  background: var(--white);
  border-radius: 16px;
  padding: var(--spacing-2xl);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-content {
  flex: 1;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
}

.contact-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

.contact-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.contact-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #c21547 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 60px;
  height: 60px;
  color: var(--white);
}

/* Responsive Design for Policies */
@media (max-width: 1024px) {
  .policies-hero-title {
    font-size: 3rem;
  }

  .policies-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .policies-hero-title {
    font-size: 2.5rem;
  }

  .policy-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .policies-grid {
    gap: var(--spacing-lg);
  }

  .policy-category-header {
    padding: var(--spacing-lg);
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .policies-hero-title {
    font-size: 2rem;
  }

  .policy-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-icon,
  .contact-icon {
    width: 80px;
    height: 80px;
  }

  .highlight-icon svg,
  .contact-icon svg {
    width: 40px;
    height: 40px;
  }

  .category-icon {
    width: 50px;
    height: 50px;
  }

  .category-icon svg {
    width: 25px;
    height: 25px;
  }

  .category-title {
    font-size: 1.25rem;
  }

  .policy-content {
    padding: var(--spacing-lg);
  }

  .policy-category-header {
    padding: var(--spacing-lg);
  }

  .contact-title {
    font-size: 1.5rem;
  }
}

/* ===============================================
     SIGNUP PAGE STYLES
     =============================================== */

/* Signup Hero */
.signup-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.signup-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.signup-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signup-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(49, 49, 49, 0.3) 100%
  );
  z-index: 2;
}

.signup-hero .container {
  position: relative;
  z-index: 3;
}

.signup-hero-content {
  max-width: 700px;
  color: var(--white);
  text-align: center;
  margin: 0 auto;
}

.signup-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.signup-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  color: var(--primary-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.signup-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Signup Form Section */
.signup-form-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.signup-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: var(--spacing-3xl);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 2px solid #f0f0f0;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
}

.form-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: var(--spacing-md);
}

.required-notice {
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

.required-asterisk {
  color: var(--primary-red);
  font-weight: bold;
}

/* Form Styles */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.form-row.three-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-xs);
}

.required {
  color: var(--primary-red);
  margin-left: 2px;
}

.form-input,
.form-select {
  padding: var(--spacing-md);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-input.error,
.form-select.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-input.success,
.form-select.success {
  border-color: #2f5ae2;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

.form-error {
  color: #dc3545;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: var(--spacing-xs);
  display: none;
}

.form-error.show {
  display: block;
}

/* Password Input */
.password-input-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #666;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--primary-red);
}

.password-toggle .eye-icon {
  width: 20px;
  height: 20px;
}

.password-strength {
  margin-top: var(--spacing-xs);
  font-size: 0.875rem;
  font-weight: 500;
}

.password-strength.weak {
  color: #dc3545;
}

.password-strength.medium {
  color: #ffc107;
}

.password-strength.strong {
  color: #28a745;
}

/* Checkbox Styles */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.form-checkbox {
  margin: 0;
  cursor: pointer;
  accent-color: var(--primary-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
}

.checkbox-label a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 500;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Form Actions */
.form-actions {
  margin-top: var(--spacing-2xl);
  display: flex;
  justify-content: center;
}

.btn-large {
  padding: var(--spacing-lg) var(--spacing-3xl);
  font-size: 1.125rem;
  font-weight: 600;
  min-width: 200px;
  position: relative;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

.spinner-circle {
  stroke-dasharray: 31.416;
  stroke-dashoffset: 31.416;
  animation: stroke 1.5s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes stroke {
  0% {
    stroke-dasharray: 0 31.416;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 15.708 15.708;
    stroke-dashoffset: -7.854;
  }
  100% {
    stroke-dasharray: 0 31.416;
    stroke-dashoffset: -31.416;
  }
}

/* Form Footer */
.form-footer {
  text-align: center;
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid #e0e0e0;
}

.login-link {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.login-link .link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
}

.login-link .link:hover {
  text-decoration: underline;
}

/* Success Message */
.signup-success {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: var(--spacing-3xl);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-xl);
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.success-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-md);
}

.success-message {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
}

.success-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .signup-hero-title {
    font-size: 2.5rem;
  }

  .signup-hero-subtitle {
    font-size: 1.25rem;
  }

  .signup-form-wrapper {
    margin: 0 var(--spacing-lg);
    padding: var(--spacing-2xl);
  }

  .form-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .form-row.three-col {
    grid-template-columns: 1fr;
  }

  .success-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .signup-hero {
    height: 50vh;
    min-height: 400px;
  }

  .signup-hero-title {
    font-size: 2rem;
  }

  .signup-form-wrapper {
    margin: 0 var(--spacing-md);
    padding: var(--spacing-xl);
  }

  .form-title {
    font-size: 1.75rem;
  }

  .form-actions {
    margin-top: var(--spacing-xl);
  }
}

/* Login Page Styles */
.login-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.login-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.login-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.login-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: var(--spacing-md);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.login-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Login Form Section */
.login-form-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.login-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.login-form {
  padding: var(--spacing-3xl);
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.forgot-password-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.forgot-password-link:hover {
  color: #b91540;
  text-decoration: underline;
}

/* Alternative Login Options */
.login-alternatives {
  padding: 0 var(--spacing-3xl) var(--spacing-3xl);
}

.divider {
  position: relative;
  text-align: center;
  margin: var(--spacing-xl) 0;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e8f0;
}

.divider-text {
  background: white;
  padding: 0 var(--spacing-md);
  color: #666;
  font-size: 0.875rem;
}

.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Quick Access */
.quick-access {
  padding: var(--spacing-xl) var(--spacing-3xl) 0;
  border-top: 1px solid #e2e8f0;
  margin-top: var(--spacing-xl);
}

.quick-access-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.quick-access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.quick-access-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  transition: all 0.3s ease;
}

.quick-access-item:hover {
  border-color: var(--primary-red);
  background: rgba(217, 25, 81, 0.02);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quick-access-icon {
  width: 40px;
  height: 40px;
  background: rgba(217, 25, 81, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}

.quick-access-icon svg {
  width: 20px;
  height: 20px;
}

.quick-access-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 var(--spacing-xs) 0;
}

.quick-access-content p {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Password Reset Modal */
.password-reset-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.modal-overlay {
  position: fixed; /* Changed from absolute to fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999; /* Add this to ensure it's above everything */
  display: none; /* Hide by default */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  margin: auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg);
  border-bottom: 1px solid #e2e8f0;
}

.close-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}
/* ... existing code ... */

/* Park Development Page Styles */

/* Simplified Hero Section */
.development-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
}

.development-hero .hero-background {
  background-color: var(--primary-blue);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.development-hero .hero-overlay {
  background-color: rgba(1, 10, 34, 0.697);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.development-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.development-hero:hover .development-hero-img {
  transform: scale(1.02);
}

/* Remove complex pattern */
.hero-pattern::before {
  display: none;
}

.development-hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 800px;
  padding-bottom: var(--spacing-3xl);
  width: 100%;
}

.development-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.title-highlight {
  color: #ffd700;
  position: relative;
}

.title-highlight::after {
  display: none;
}

.development-hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
}

.development-hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
  max-width: 600px;
}

.development-hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
}

.development-hero-buttons .btn {
  min-width: 180px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

a.btn.btn-outline.btn-large {
  border: 2px solid var(--white);
}

/* Remove complex button effects */
.development-hero-buttons .btn::before {
  display: none;
}

.development-hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  width: 18px;
  height: 18px;
  margin-left: var(--spacing-sm);
  transition: transform 0.3s ease;
}

.development-hero-buttons .btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Simplified Stats */
.hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  min-width: 120px;
}

.hero-stats .stat-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-stats .stat-number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: #ffd700;
  margin-bottom: var(--spacing-xs);
}

.hero-stats .stat-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Simplified Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: var(--white);
  opacity: 0.7;
}

.scroll-text {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.scroll-arrow {
  width: 2px;
  height: 20px;
  background: var(--white);
  margin: 0 auto;
  position: relative;
  animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

/* Clean Process Section */
.process-overview-section {
  padding: var(--spacing-4xl) 0;
  background: var(--white);
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-red), #c21547);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-md);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--spacing-3xl);
}

.process-step {
  display: block;
  position: relative;
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
  margin-bottom: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #004890, #004182);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(217, 25, 81, 0.3);
  position: relative;
}

.step-content {
  max-width: 450px;
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.step-description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
}

.step-features {
  list-style: none;
  padding: 0;
}

.step-features li {
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-lg);
  position: relative;
  color: var(--text-dark);
  font-weight: 500;
}

.step-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
}

/* Clean About Section */
.about-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4xl);
  align-items: center;
}

.about-content {
  max-width: 550px;
}

.about-features {
  margin-top: var(--spacing-2xl);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-lg);
  color: var(--white);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-content h4 {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.feature-content p {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  line-height: 1.5;
}

.about-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover .about-img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: var(--spacing-xl);
  color: var(--white);
  text-align: center;
}

.overlay-number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: #ffd700;
  margin-bottom: var(--spacing-xs);
}

.overlay-text {
  font-size: var(--font-size-base);
  font-weight: 500;
}

/* Clean Services Section */
.services-section {
  padding: var(--spacing-4xl) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.service-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.service-card p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-lg);
  position: relative;
  color: var(--text-dark);
  font-weight: 500;
}

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
}

/* Clean Contact CTA Section */
.contact-cta-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-red) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 80px 80px;
}

.contact-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-header {
  margin-bottom: var(--spacing-3xl);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.cta-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--spacing-3xl);
  opacity: 0.9;
}

.contact-info {
  display: flex;
  flex-direction: row; /* Explicitly set to row */
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
  flex-wrap: nowrap; /* Change from wrap to nowrap */
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-details {
  text-align: left;
}

.contact-label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin-bottom: var(--spacing-xs);
}

.contact-value {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-value:hover {
  opacity: 0.8;
}

.cta-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn {
  min-width: 180px;
  justify-content: center;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .process-step {
    text-align: center;
  }

  .step-content {
    margin: var(--spacing-lg) 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .development-hero {
    height: 80vh;
    min-height: 500px;
    padding: var(--spacing-2xl) 0;
  }

  .development-hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .development-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .development-hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    justify-content: center;
    gap: var(--spacing-lg);
  }

  .hero-stats .stat-item {
    flex: 1;
    min-width: 100px;
    padding: var(--spacing-md);
  }

  .step-content {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-lg);
  }

  .service-card {
    padding: var(--spacing-lg);
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  .contact-item {
    text-align: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .development-hero {
    min-height: 450px;
    padding: var(--spacing-xl) 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .hero-stats .stat-item {
    width: 100%;
  }

  .step-content {
    padding: var(--spacing-md);
  }

  .service-card {
    padding: var(--spacing-md);
  }

  .contact-item {
    padding: var(--spacing-md);
  }

  .feature-item {
    padding: var(--spacing-md);
  }

  .about-img {
    height: 350px;
  }
}

/* Sponsorship Hero Section */
.sponsorship-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-red) 100%
  );
}

.sponsorship-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.3;
}

.sponsorship-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.sponsorship-hero:hover .sponsorship-hero-img {
  transform: scale(1.02);
}

.sponsorship-hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 800px;
  padding-bottom: var(--spacing-3xl);
  width: 100%;
}

.sponsorship-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.sponsorship-hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
}

.sponsorship-hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 180px;
  justify-content: center;
}

/* Why Advertise Section */
.why-advertise-section {
  padding: var(--spacing-4xl) 0;
  background: var(--white);
}

.why-advertise-content {
  max-width: 900px;
  margin: 0 auto;
}

.why-advertise-text p {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
}

.why-advertise-text p:last-child {
  margin-bottom: 0;
}

/* Sponsorship Hero Section */
.sponsorship-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-red) 100%
  );
}

.sponsorship-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.3;
}

.sponsorship-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.sponsorship-hero:hover .sponsorship-hero-img {
  transform: scale(1.02);
}

.sponsorship-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 74, 155, 0.8) 0%,
    rgba(217, 25, 81, 0.6) 100%
  );
  z-index: 2;
}

.sponsorship-hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 800px;
  padding-bottom: var(--spacing-3xl);
  width: 100%;
}

.sponsorship-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.sponsorship-hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
}

.sponsorship-hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 180px;
  justify-content: center;
}

/* Why Advertise Section */
.why-advertise-section {
  padding: var(--spacing-4xl) 0;
  background: var(--white);
}

.why-advertise-content {
  max-width: 900px;
  margin: 0 auto;
}

.why-advertise-text p {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
}

.why-advertise-text p:last-child {
  margin-bottom: 0;
}
.container {
  overflow-y: hidden;
}

/* Sponsorship Stats Section */
.sponsorship-stats-section-enhanced .container {
  padding-bottom: 50px;
}
.sponsorship-stats-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sponsorship-stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.sponsorship-stats-section .stat-item {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsorship-stats-section .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.sponsorship-stats-section .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  color: var(--white);
}

.sponsorship-stats-section .stat-icon svg {
  width: 28px;
  height: 28px;
}

.sponsorship-stats-section .stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.sponsorship-stats-section .stat-label {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.sponsorship-stats-section .stat-detail {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  font-weight: 500;
}

/* Free Benefits Section */
.free-benefits-section {
  padding: var(--spacing-4xl) 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.benefit-card {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  color: var(--white);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
}

.benefit-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.benefit-card p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-light);
}

/* Additional Benefits Section */
.additional-benefits-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.additional-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-3xl);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.benefit-item-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-item-content h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.benefit-item-content p {
  font-size: var(--font-size-base);
  color: var(--text-light);
  line-height: 1.5;
}

/* Responsive Design for Sponsorship Page */
@media (max-width: 1024px) {
  .sponsorship-stats-section .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .additional-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sponsorship-hero {
    height: 70vh;
    min-height: 500px;
    padding: var(--spacing-2xl) 0;
  }

  .sponsorship-hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .sponsorship-hero-subtitle {
    font-size: var(--font-size-lg);
  }

  .sponsorship-hero-description {
    font-size: var(--font-size-base);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .sponsorship-stats-section .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .sponsorship-stats-section .stat-item {
    padding: var(--spacing-xl);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: var(--spacing-xl);
  }

  .additional-benefits-grid {
    gap: var(--spacing-lg);
  }

  .benefit-item {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .sponsorship-hero {
    min-height: 450px;
    padding: var(--spacing-xl) 0;
  }

  .sponsorship-hero-content {
    padding-bottom: var(--spacing-2xl);
  }

  .sponsorship-stats-section .stat-item {
    padding: var(--spacing-lg);
  }

  .sponsorship-stats-section .stat-number {
    font-size: var(--font-size-3xl);
  }

  .sponsorship-stats-section .stat-label {
    font-size: var(--font-size-base);
  }

  .benefit-card {
    padding: var(--spacing-lg);
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }

  .benefit-item-icon {
    margin: 0 auto;
  }
}

/* Enhanced Hero Section */
.sponsorship-hero-enhanced {
  position: relative;
  height: 90vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-red) 50%,
    #8b0000 100%
  );
}

.sponsorship-hero-enhanced .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.4;
}

.sponsorship-hero-enhanced .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 74, 155, 0.9) 0%,
    rgba(217, 25, 81, 0.7) 50%,
    rgba(139, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

/* Hero Particles Animation */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 12px;
  height: 12px;
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.particle-3 {
  width: 6px;
  height: 6px;
  top: 80%;
  left: 20%;
  animation-delay: 2s;
}

.particle-4 {
  width: 10px;
  height: 10px;
  top: 30%;
  right: 25%;
  animation-delay: 3s;
}

.particle-5 {
  width: 14px;
  height: 14px;
  top: 70%;
  left: 80%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

.sponsorship-hero-enhanced .sponsorship-hero-content {
  position: relative;
  z-index: 4;
  color: var(--white);
  max-width: 900px;
  padding-bottom: var(--spacing-3xl);
  width: 100%;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: var(--spacing-sm) var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-icon {
  font-size: var(--font-size-base);
}

/* Enhanced Hero Title */
.sponsorship-hero-enhanced .sponsorship-hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -1px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.title-line {
  opacity: 0.9;
}

.title-highlight {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
  }
}

.sponsorship-hero-enhanced .sponsorship-hero-subtitle {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
  color: #ffd700;
}

.sponsorship-hero-enhanced .sponsorship-hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
  max-width: 700px;
}

/* Hero Stats Preview */
.hero-stats-preview {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}

.stat-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: var(--spacing-md) var(--spacing-lg);
  min-width: 120px;
}

.stat-preview .stat-number {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: #ffd700;
  margin-bottom: var(--spacing-xs);
}

.stat-preview .stat-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

/* Enhanced Hero Actions */
.sponsorship-hero-enhanced .hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.btn-glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-glow:hover::before {
  left: 100%;
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--white);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-text {
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow {
  width: 2px;
  height: 20px;
  background: var(--white);
  position: relative;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--white);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Enhanced Why Advertise Section */
.why-advertise-section-enhanced {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.why-advertise-section-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--white), transparent);
  z-index: 1;
}

.why-advertise-section-enhanced .container {
  position: relative;
  z-index: 2;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
  border-radius: 25px;
  padding: var(--spacing-sm) var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.why-advertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.why-advertise-card {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-advertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-advertise-card:hover::before {
  transform: scaleX(1);
}

.why-advertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-advertise-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.why-advertise-card .card-icon svg {
  width: 28px;
  height: 28px;
}

.why-advertise-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.why-advertise-card p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-light);
}

/* Enhanced Stats Section */
.sponsorship-stats-section-enhanced {
  padding: var(--spacing-4xl) 0;
  background: var(--white);
  position: relative;
}

.sponsorship-stats-section-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, #f8fafc, var(--white));
  z-index: 1;
}

.sponsorship-stats-section-enhanced .container {
  position: relative;
  z-index: 2;
}

.stats-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.stat-item-enhanced {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item-enhanced.featured {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: var(--white);
  transform: scale(1.05);
}

.stat-item-enhanced.featured .stat-number-enhanced,
.stat-item-enhanced.featured .stat-label-enhanced,
.stat-item-enhanced.featured .stat-detail-enhanced {
  color: var(--white);
}

.stat-item-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-item-enhanced.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.stat-icon-enhanced {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.stat-item-enhanced.featured .stat-icon-enhanced {
  background: rgba(255, 255, 255, 0.2);
}

.stat-icon-enhanced svg {
  width: 32px;
  height: 32px;
}

.stat-number-enhanced {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: var(--spacing-xs);
  display: block;
  line-height: 1;
}

.stat-label-enhanced {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.stat-detail-enhanced {
  font-size: var(--font-size-base);
  color: var(--text-light);
  font-weight: 500;
}

.stat-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(217, 25, 81, 0.1) 50%
  );
}

/* Enhanced Benefits Section */
.free-benefits-section-enhanced {
  padding: var(--spacing-4xl) 0;
  position: relative;
}

.free-benefits-section-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 1;
}

.free-benefits-section-enhanced .container {
  position: relative;
  z-index: 2;
}

.benefits-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.benefit-card-enhanced {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card-enhanced:hover::before {
  transform: scaleX(1);
}

.benefit-card-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon-enhanced {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.benefit-icon-enhanced svg {
  width: 36px;
  height: 36px;
}

.benefit-content h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.benefit-content p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-light);
}

.benefit-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(30, 74, 155, 0.1) 50%
  );
}

/* Enhanced Additional Benefits Section */
.additional-benefits-section-enhanced {
  padding: var(--spacing-4xl) 0;
  background: var(--white);
  position: relative;
}

.additional-benefits-section-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, #f8fafc, var(--white));
  z-index: 1;
}

.additional-benefits-section-enhanced .container {
  position: relative;
  z-index: 2;
}

.additional-benefits-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-3xl);
}

.benefit-item-enhanced {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.benefit-item-enhanced:hover::before {
  transform: scaleY(1);
}

.benefit-item-enhanced:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefit-item-icon-enhanced {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.benefit-item-icon-enhanced svg {
  width: 28px;
  height: 28px;
}

.benefit-item-content h4 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.benefit-item-content p {
  font-size: var(--font-size-base);
  color: var(--text-light);
  line-height: 1.5;
}

/* Enhanced Contact CTA Section */
.contact-cta-section-enhanced {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-red) 100%
  );
  position: relative;
  overflow: hidden;
}

.contact-cta-section-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.contact-cta-section-enhanced .container {
  position: relative;
  z-index: 2;
}

.contact-cta-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: var(--spacing-sm) var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.cta-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--spacing-3xl);
  opacity: 0.9;
}

.contact-info-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.contact-item-enhanced {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 12px;
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.contact-item-enhanced:hover {
  background: #e9f0f8;
  transform: translateY(-5px);
}

.contact-icon-enhanced {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-icon-enhanced svg {
  width: 24px;
  height: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.contact-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.contact-value {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #ffd700;
}

.cta-actions-enhanced {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions-enhanced .btn {
  min-width: 200px;
  justify-content: center;
}

/* Responsive Design for Enhanced Sponsorship Page */
@media (max-width: 1024px) {
  .sponsorship-hero-enhanced {
    height: 80vh;
    min-height: 600px;
  }

  .why-advertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .stats-grid-enhanced {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .benefits-grid-enhanced {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .additional-benefits-grid-enhanced {
    grid-template-columns: 1fr;
  }

  .contact-info-enhanced {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sponsorship-hero-enhanced {
    height: 70vh;
    min-height: 500px;
    padding: var(--spacing-2xl) 0;
  }

  .sponsorship-hero-enhanced .sponsorship-hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .sponsorship-hero-enhanced .sponsorship-hero-subtitle {
    font-size: var(--font-size-lg);
  }

  .sponsorship-hero-enhanced .sponsorship-hero-description {
    font-size: var(--font-size-base);
  }

  .hero-stats-preview {
    gap: var(--spacing-md);
  }

  .stat-preview {
    min-width: 100px;
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .sponsorship-hero-enhanced .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .sponsorship-hero-enhanced .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .why-advertise-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .why-advertise-card {
    padding: var(--spacing-xl);
  }

  .stats-grid-enhanced {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .stat-item-enhanced {
    padding: var(--spacing-xl);
  }

  .stat-item-enhanced.featured {
    transform: scale(1);
  }

  .stat-item-enhanced.featured:hover {
    transform: translateY(-10px);
  }

  .benefits-grid-enhanced {
    grid-template-columns: 1fr;
  }

  .benefit-card-enhanced {
    padding: var(--spacing-xl);
  }

  .additional-benefits-grid-enhanced {
    gap: var(--spacing-lg);
  }

  .benefit-item-enhanced {
    padding: var(--spacing-lg);
  }

  .cta-actions-enhanced {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions-enhanced .btn {
    width: 100%;
    max-width: 280px;
  }

  .contact-item-enhanced {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .sponsorship-hero-enhanced {
    min-height: 450px;
    padding: var(--spacing-xl) 0;
  }

  .sponsorship-hero-enhanced .sponsorship-hero-content {
    padding-bottom: var(--spacing-2xl);
  }

  .hero-stats-preview {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .stat-preview {
    flex-direction: row;
    justify-content: space-between;
    min-width: auto;
    width: 100%;
  }

  .stat-item-enhanced {
    padding: var(--spacing-lg);
  }

  .stat-number-enhanced {
    font-size: var(--font-size-3xl);
  }

  .stat-label-enhanced {
    font-size: var(--font-size-base);
  }

  .benefit-card-enhanced {
    padding: var(--spacing-lg);
  }

  .benefit-item-enhanced {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }

  .benefit-item-icon-enhanced {
    margin: 0 auto;
  }

  .cta-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .contact-item-enhanced {
    padding: var(--spacing-md);
  }
}

/* Registration Page Styles */
.registration-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.registration-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.registration-hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.registration-hero-title {
  font-size: 3.5rem;
  line-height: 1em;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.registration-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffd700;
}

.registration-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.registration-filters-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f5e8 100%);
}

.registration-content-section {
  padding: 4rem 0;
  background: #ffffff;
}

.selection-prompt {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8f9fa;
  border-radius: 20px;
  border: 2px dashed #dee2e6;
}

.prompt-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: #6c757d;
}

.prompt-icon svg {
  width: 100%;
  height: 100%;
}

.prompt-title {
  font-size: 2rem;
  font-weight: 700;
  color: #495057;
  margin-bottom: 1rem;
}

.prompt-description {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.registration-details {
  max-width: 1000px;
  margin: 0 auto;
}

.registration-header {
  margin-bottom: 3rem;
  text-align: center;
}

.registration-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.registration-location {
  color: #e74c3c;
}

.registration-sport {
  color: #27ae60;
}

.registration-type {
  color: #3498db;
}

.registration-subtitle {
  font-size: 1.125rem;
  color: #7f8c8d;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.steps-container {
  display: grid;
  gap: 1.5rem;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.step-description {
  color: #7f8c8d;
  line-height: 1.6;
}

.confirmation-note {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid #27ae60;
}

.confirmation-icon {
  width: 50px;
  height: 50px;
  color: #27ae60;
  flex-shrink: 0;
}

.confirmation-icon svg {
  width: 100%;
  height: 100%;
}

.confirmation-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #27ae60;
  margin-bottom: 0.5rem;
}

.confirmation-text {
  color: #2c3e50;
  line-height: 1.6;
}

.contact-link {
  color: #27ae60;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

.registration-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-large svg {
  width: 20px;
  height: 20px;
}

.youth-images-section {
  margin-top: 4rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.images-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
}

.youth-images-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.youth-image-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.youth-image-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.youth-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Registration Page Responsive Styles */
@media (max-width: 768px) {
  .registration-hero-title {
    font-size: 2.5rem;
  }

  .registration-title {
    font-size: 2rem;
  }

  .step-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .confirmation-note {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .registration-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
  }

  .youth-images-row {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .youth-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .registration-hero-title {
    font-size: 2rem;
  }

  .registration-title {
    font-size: 1.5rem;
  }

  .steps-container {
    gap: 1rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .youth-images-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Add this to your CSS file or update the existing .location-hero-img styles */
.location-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: none; /* Remove any transforms to prevent movement */
  will-change: auto; /* Remove will-change optimization */
}

/* Update the hero background container */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden; /* Clip any overflow */
}

/* Update the location hero container */
.location-hero {
  position: relative;
  height: 75vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--spacing-4xl) 0;
}

/* Ensure the hero content appears above the background */
.location-hero-content {
  position: relative;
  z-index: 2;
}

/* Ensure the hero overlay appears above the image but below content */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Update gallery item styles to work with Fancybox */
.gallery-item a {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.gallery-item a:hover .gallery-overlay {
  opacity: 1;
}

/* Make sure the zoom button doesn't interfere with the link */
.gallery-zoom {
  pointer-events: none; /* Disable click events on the button since the link handles it */
}

.step-image {
  flex: 0 0 300px;
  height: 250px;
  margin: 0 var(--spacing-xl);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.step-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .process-step {
    flex-direction: column !important;
    text-align: center;
  }

  .step-content {
    margin: var(--spacing-lg) 0;
    max-width: 100%;
  }

  .step-image {
    margin: var(--spacing-lg) 0;
    max-width: 100%;
    flex: none;
  }

  .timeline-line {
    display: none;
  }
}

@media (max-width: 480px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    width: 100%;
    max-width: 300px;
  }
}
