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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  background: linear-gradient(-45deg, #808081, #404040, #808081, #404040);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #FFFFFF;
  overflow-x: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
}

.nav-instagram-link {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.15);
  margin-right: 15px;
  color: #FFFFFF;
  text-decoration: none;
}

.nav-instagram-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.nav-instagram-link svg {
  display: block;
}

.nav-instagram-link:link,
.nav-instagram-link:visited,
.nav-instagram-link:hover,
.nav-instagram-link:active {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

.nav-yap-cta {
  display: flex !important;
  align-items: center !important;
  padding: 6px 10px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  background: #FFD700 !important;
  margin-right: 15px !important;
  color: #000000 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

.nav-yap-cta:hover {
  background: #FFC700 !important;
  transform: translateY(-2px) !important;
  color: #000000 !important;
  text-decoration: none !important;
}

.nav-yap-cta:link,
.nav-yap-cta:visited,
.nav-yap-cta:active {
  color: #000000 !important;
  text-decoration: none !important;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2E4E9E 0%, #1A1A1A 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  padding: 20px;
  flex-direction: column;
  gap: 10px;
}

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

.mobile-menu a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
}

/* Fallback gradient if video doesn't load */
.video-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2E4E9E 0%, #1A1A1A 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  animation: fadeInDown 1s ease;
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
  font-size: clamp(22px, 3.5vw, 32px);
  margin-bottom: 40px;
  color: #FFFFFF;
  line-height: 1.4;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease 0.4s both;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: linear-gradient(135deg, #2E4E9E 0%, #4A6ABF 100%);
  color: #FFFFFF;
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(46, 78, 158, 0.4);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Content Sections */
.content-section {
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.2);
}

.content-section.alt {
  background: rgba(0, 0, 0, 0.4);
}

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

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-content {
  color: #FFFFFF;
  line-height: 1.8;
}

.section-content > p {
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* What is YAP Content Sections */
.what-is-yap-content {
  max-width: 900px;
  margin: 0 auto;
}

.what-is-yap-content > div {
  margin-bottom: 40px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.15) 0%, rgba(26, 26, 26, 0.15) 100%);
  border-radius: 12px;
  border-left: 4px solid #4A6ABF;
}

.what-is-yap-content h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
  line-height: 1.3;
}

.what-is-yap-content p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.95);
}

.what-is-yap-content p:last-child {
  margin-bottom: 0;
}

.what-is-yap-content strong {
  color: #FFFFFF;
  font-weight: 700;
}

.yap-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.3) 0%, rgba(74, 106, 191, 0.3) 100%) !important;
  border-left: none !important;
  border: 2px solid #4A6ABF;
  padding: 30px !important;
}

.yap-cta h3 {
  margin-bottom: 0;
  font-size: clamp(22px, 3.5vw, 32px);
  font-style: italic;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.3) 0%, rgba(26, 26, 26, 0.3) 100%);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(46, 78, 158, 0.3);
  border-color: rgba(74, 106, 191, 0.5);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.feature-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Testimonials Carousel */
.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.2) 0%, rgba(26, 26, 26, 0.4) 100%);
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 20px;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
  background: linear-gradient(135deg, #2E4E9E 0%, #4A6ABF 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(46, 78, 158, 0.4);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #2E4E9E;
  transform: scale(1.3);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Programming Grid */
.programming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.program-card {
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.2) 0%, rgba(26, 26, 26, 0.2) 100%);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 78, 158, 0.3);
  border-color: rgba(74, 106, 191, 0.5);
}

.program-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-weight: 700;
}

.program-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Locations Section */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.location-card {
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.2) 0%, rgba(26, 26, 26, 0.2) 100%);
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  backdrop-filter: blur(10px);
  overflow: hidden;
  cursor: pointer;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 78, 158, 0.3);
  border-color: rgba(74, 106, 191, 0.5);
}

.location-image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

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

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

.location-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.3) 0%, rgba(26, 26, 26, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.location-card h3 {
  font-size: 22px;
  padding: 20px;
  margin: 0;
  color: #FFFFFF;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.3) 0%, rgba(26, 26, 26, 0.3) 100%);
}

.locations-note {
  text-align: center;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 40px !important;
  font-size: 18px !important;
}

/* Apparel Section */
.apparel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.apparel-card {
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.2) 0%, rgba(26, 26, 26, 0.2) 100%);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  backdrop-filter: blur(10px);
}

.apparel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 78, 158, 0.3);
  border-color: rgba(74, 106, 191, 0.5);
}

.apparel-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(74, 106, 191, 0.3) 0%, rgba(46, 78, 158, 0.3) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.apparel-placeholder span {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.apparel-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-weight: 700;
}

.apparel-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.apparel-note {
  text-align: center;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 40px !important;
  font-size: 18px !important;
}

/* Contact Section */
.contact-content {
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4A6ABF;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(74, 106, 191, 0.2);
}

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

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #2E4E9E 0%, #4A6ABF 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(46, 78, 158, 0.4);
}

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

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.2) 0%, rgba(26, 26, 26, 0.2) 100%);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 78, 158, 0.3);
  border-color: rgba(74, 106, 191, 0.5);
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-weight: 700;
}

.contact-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-card a {
  color: #4A6ABF;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: #6A8ADF;
  text-decoration: underline;
}

.privacy-link {
  margin-top: 50px;
}

.privacy-link a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.privacy-link a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2E4E9E 0%, #1A1A1A 100%);
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-instagram-link {
    position: absolute;
    left: 20px;
    margin-right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-logo {
    width: 150px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
  }

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

  .navbar {
    padding: 18px 0;
  }

  .nav-container {
    min-height: 50px;
    align-items: center;
  }

  .nav-instagram-link {
    padding: 10px 12px;
  }

  .menu-toggle {
    padding: 10px 15px;
    font-size: 24px;
  }

  .sticky-cta-container {
    top: 80px;
  }

  .sticky-cta-button {
    padding: 14px 30px;
    font-size: 16px;
  }

  .carousel-container {
    flex-direction: column;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .carousel-btn.prev,
  .carousel-btn.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .features-grid,
  .programming-grid,
  .locations-grid,
  .apparel-grid,
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-section {
    padding: 60px 20px;
  }

  .section-title {
    margin-bottom: 30px;
  }
}

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

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-button {
    padding: 14px 24px;
    font-size: 16px;
  }

  .sticky-cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Location Modal */
.location-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  border-radius: 16px;
  padding: 60px 30px 40px;
  margin: 60px auto 60px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  display: block;
  overflow: visible;
  min-height: fit-content;
  height: auto;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 40px;
  color: #FFFFFF;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #4A6ABF;
  transform: scale(1.2);
}

.modal-location-name {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modal-signup-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1A1A1A;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-signup-button:hover {
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Coming Soon Message */
.modal-coming-soon {
  text-align: center;
  padding: 40px 20px;
}

.modal-coming-soon p {
  color: #FFD700;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

/* Info Section */
.modal-info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  width: 100%;
}

.modal-contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #4A6ABF;
  height: auto;
  min-height: auto;
}

.contact-item {
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.6;
}

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

.contact-item strong {
  color: #FFD700;
  display: block;
  margin-bottom: 5px;
}

.contact-item a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #4A6ABF;
}

.modal-schedule {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #4A6ABF;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modal-schedule h4 {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.6;
}

.schedule-row:last-child {
  margin-bottom: 0;
}

.schedule-days {
  font-weight: 600;
  min-width: 80px;
}

.schedule-times {
  text-align: right;
  flex: 1;
}

.schedule-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
  padding-top: 15px;
  margin-bottom: 0;
  font-style: italic;
}

.schedule-header .schedule-days {
  color: #FFD700;
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
}

/* Photos Section */
.modal-photos-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.modal-photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.modal-photo-item {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-photo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.modal-photo-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Photo Lightbox */
.photo-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 50px;
  color: #FFFFFF;
  cursor: pointer;
  z-index: 3001;
  transition: all 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: #4A6ABF;
  transform: scale(1.2);
}

#lightboxImage {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 50px 20px 40px;
    margin: 40px auto 40px;
    overflow: visible;
    min-height: fit-content;
    height: auto;
  }

  .modal-location-name {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .modal-signup-button {
    max-width: 100%;
    font-size: 18px;
    padding: 15px 30px;
  }

  .modal-info-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .modal-coming-soon p {
    font-size: 20px;
  }

  .schedule-row {
    flex-direction: column;
    gap: 5px;
  }

  .schedule-times {
    text-align: left;
  }

  .modal-photos-grid {
    grid-template-columns: 1fr;
  }

  .modal-photo-item img {
    height: 200px;
  }
}

/* ============ Programs Gateway Section ============ */
.gateway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.gateway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 40px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(46, 78, 158, 0.35) 0%, rgba(26, 26, 26, 0.55) 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.gateway-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--gateway-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 0.5s ease, opacity 0.3s ease;
  z-index: 0;
}

.gateway-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 50, 0.1) 0%, rgba(10, 20, 50, 0.85) 100%);
  z-index: 1;
}

.gateway-card > * {
  position: relative;
  z-index: 2;
}

.gateway-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 20px 50px -15px rgba(46, 78, 158, 0.5);
}

.gateway-card:hover::before {
  transform: scale(1.05);
  opacity: 0.5;
}

.gateway-card-youth {
  --gateway-bg: linear-gradient(135deg, #2E4E9E 0%, #4A6ABF 100%);
}

.gateway-card-adult {
  --gateway-bg: linear-gradient(135deg, #1A1A1A 0%, #2E4E9E 100%);
}

.gateway-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #FFD700;
  margin-bottom: 16px;
}

.gateway-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gateway-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 460px;
}

.gateway-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #FFFFFF;
}

.gateway-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFD700;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.gateway-card:hover .gateway-arrow {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .gateway-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gateway-card {
    min-height: 320px;
    padding: 30px;
  }
}

/* ============ Program Sub-Pages (Youth / Adult) ============ */
.page-hero {
  padding: 140px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(46, 78, 158, 0.25) 0%, rgba(26, 26, 26, 0.1) 100%);
}

.page-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto;
}

.programs-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.program-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.program-feature.reverse .program-feature-photo {
  order: 2;
}

.program-feature-photo {
  position: relative;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #2E4E9E 0%, #1A1A1A 100%);
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}


.age-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  background: #FFD700;
  color: #1A1A1A;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.program-feature-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.program-feature-content p {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
}

.program-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.program-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.program-btn-primary {
  background: #FFD700;
  color: #1A1A1A;
}

.program-btn-primary:hover {
  background: #FFC700;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -10px rgba(255, 215, 0, 0.6);
}

.program-btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.program-btn-outline:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 20px 40px;
  }

  .programs-list {
    padding: 40px 20px 60px;
    gap: 60px;
  }

  .program-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .program-feature.reverse .program-feature-photo {
    order: 0;
  }

  .program-feature-photo {
    min-height: 260px;
  }
}

/* ============ Program Pricing List ============ */
.price-list {
  margin: 0 0 28px;
  padding: 22px 26px;
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid #FFD700;
  border-radius: 8px;
}

.price-list .heading {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #FFD700;
  margin-bottom: 14px;
}

.price-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list .li-label {
  color: rgba(255, 255, 255, 0.88);
}

.price-list .li-price {
  font-weight: 800;
  font-size: 18px;
  color: #FFFFFF;
}


