/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
  }
  
  :root {
    --black: #000000;
    --yellow: #ffd700;
    --neon-blue: #00ffff;
    --dark-blue: #0077b6;
    --gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  section {
    padding: 80px 0;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
    line-height: 1.2;
  }
  
  a {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .btn {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--yellow);
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: transparent;
    color: var(--yellow);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
  }
  
  .btn-outline:hover {
    background-color: var(--yellow);
    color: var(--black);
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    color: var(--white);
  }
  
  .section-title span {
    color: var(--neon-blue);
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--yellow);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Navbar */
  nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    transition: all 0.3s ease;
  }
  
  nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 2px;
  }
  
  .nav-links ul {
    display: flex;
  }
  
  .nav-links ul li {
    margin-left: 30px;
  }
  
  .nav-links ul li a {
    font-weight: 600;
    position: relative;
  }
  
  .nav-links ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--neon-blue);
    bottom: -5px;
    left: 0;
    transition: all 0.3s ease;
  }
  
  .nav-links ul li a:hover::after {
    width: 100%;
  }
  
  .fa-bars,
  .fa-times {
    display: none;
    cursor: pointer;
    font-size: 24px;
  }
  
  /* Hero Section */
  .hero {
    height: 80vh;
    background-image: url("/placeholder.svg?height=1080&width=1920");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  
  .hero .tagline {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }
  
  .hero .btn {
    margin: 0 10px;
  }
  
  /* Benefits Section */
  .benefits {
    background-color: var(--black);
    padding: 40px 0;
  }
  
  .benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .benefit-card {
    background-color: rgba(51, 51, 51, 0.5);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  }
  
  .benefit-card i {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 20px;
  }
  
  .benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
  }
  
  .benefit-card p {
    color: #ccc;
  }
  
  /* Gallery Section - Carousel */
  .gallery {
    background-color: var(--gray);
  }
  
  .gallery-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  
  .carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .carousel-slide {
    min-width: 100%;
    position: relative;
    height: 500px;
  }
  
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px;
    color: var(--white);
  }
  
  .slide-overlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--yellow);
  }
  
  .slide-overlay p {
    font-size: 1.1rem;
    color: #ccc;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 215, 0, 0.8);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
  }
  
  .carousel-btn:hover {
    background-color: var(--yellow);
    transform: translateY(-50%) scale(1.1);
  }
  
  .carousel-btn.prev {
    left: 20px;
  }
  
  .carousel-btn.next {
    right: 20px;
  }
  
  .carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator.active {
    background-color: var(--yellow);
    transform: scale(1.2);
  }
  
  .indicator:hover {
    background-color: var(--neon-blue);
  }
  
  .video-tour {
    text-align: center;
    margin-top: 50px;
  }
  
  .video-tour h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
  }
  
  .video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .play-button:hover {
    background-color: var(--yellow);
  }
  
  .play-button i {
    color: var(--black);
    font-size: 30px;
  }
  
  /* Schedule Section */
  .schedule {
    background-color: var(--black);
  }
  
  .schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  
  .gym-hours h3,
  .class-schedule h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
  }
  
  .gym-hours ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
  
  .gym-hours ul li span {
    color: var(--yellow);
    font-weight: 600;
    margin-right: 10px;
  }
  
  .schedule-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
  }
  
  .tab-btn {
    background-color: rgba(51, 51, 51, 0.5);
    color: var(--white);
    border: 1px solid transparent;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
  }
  
  .tab-btn:hover {
    border-color: var(--neon-blue);
  }
  
  .tab-btn.active {
    background-color: var(--yellow);
    color: var(--black);
  }
  
  .schedule-content {
    min-height: 300px;
  }
  
  .loading {
    text-align: center;
    color: var(--neon-blue);
    font-size: 1.1rem;
    padding: 50px 0;
  }
  
  .day-schedule {
    display: none;
  }
  
  .day-schedule.active {
    display: block;
  }
  
  .shift-section {
    margin-bottom: 30px;
  }
  
  .shift-title {
    font-size: 1.3rem;
    color: var(--yellow);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--yellow);
  }
  
  .classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
  }
  
  .class-item {
    background-color: rgba(51, 51, 51, 0.3);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--neon-blue);
    transition: all 0.3s ease;
  }
  
  .class-item:hover {
    background-color: rgba(51, 51, 51, 0.5);
    transform: translateY(-5px);
  }
  
  .class-time {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
  }
  
  .class-discipline {
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 5px 0;
  }
  
  .class-instructor {
    color: #ccc;
    font-size: 0.9rem;
  }
  
  .no-classes {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px;
  }
  
  /* Responsive styles for schedule section */
  @media (max-width: 768px) {
    .schedule-tabs {
      justify-content: center;
      gap: 8px;
    }
    
    .tab-btn {
      padding: 8px 15px;
      font-size: 0.9rem;
    }
    
    .classes-grid {
      grid-template-columns: 1fr;
    }

    .class-schedule {
      position: relative;
      overflow: visible;
      padding-bottom: 0;
    }

    .schedule-content {
      min-height: auto;
    }

    .shift-section {
      margin-bottom: 20px;
    }

    .class-item {
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 576px) {
    .schedule-tabs {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 10px;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      margin: 0 -15px;
      padding: 0 15px 10px;
    }
    
    .schedule-tabs::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }
    
    .tab-btn {
      flex: 0 0 auto;
      white-space: nowrap;
    }

    .schedule-container {
      display: block;
    }

    .gym-hours {
      margin-bottom: 30px;
    }

    .class-schedule {
      overflow: visible;
      padding-bottom: 0;
    }

    .class-schedule::after {
      display: none;
    }

    .classes-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  }
  
  /* Team Section */
  .team {
    background-color: var(--gray);
  }
  
  .team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .team-member {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  }
  
  .member-img {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
  }
  
  .member-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s ease;
  }
  
  .team-member:hover .member-img img {
    transform: scale(1.1);
  }
  
  .team-member h3 {
    margin-top: 20px;
    font-size: 1.5rem;
    color: var(--white);
  }
  
  .team-member .role {
    color: var(--yellow);
    font-weight: 600;
    margin: 5px 0;
  }
  
  .team-member .quote {
    color: #ccc;
    font-style: italic;
    padding: 0 20px 20px;
  }
  
  /* Testimonials Section */
  .testimonials {
    background-color: var(--black);
  }
  
  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .testimonial {
    background-color: rgba(51, 51, 51, 0.5);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .testimonial:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  }
  
  .testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--yellow);
  }
  
  .testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial .quote {
    color: #ccc;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .testimonial h3 {
    color: var(--white);
    font-size: 1.3rem;
  }
  
  .testimonial .member-since {
    color: var(--neon-blue);
    font-size: 0.9rem;
  }
  
  /* Pricing Section */
  .pricing {
    background-color: var(--gray);
  }
  
  .pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .price-card {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .price-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  }
  
  .price-card.featured {
    border: 2px solid var(--yellow);
    transform: scale(1.02);
    position: relative;
    z-index: 1;
  }
  
  .price-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
  }

  .price-card.special {
    border: 2px solid var(--neon-blue);
    background-color: rgba(0, 0, 0, 0.7);
  }

  .price-card.special:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  }
  
  .price-header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    position: relative;
  }
  
  .price-header h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
  }
  
  .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
  }
  
  .price span {
    font-size: 0.9rem;
    font-weight: 400;
  }
  
  .save-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: var(--neon-blue);
    color: var(--black);
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.75rem;
  }

  .special .save-badge {
    background-color: var(--yellow);
  }
  
  .price-features {
    padding: 15px;
  }
  
  .price-features ul li {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9rem;
  }
  
  .price-features ul li i {
    margin-right: 8px;
  }
  
  .price-features ul li .fa-check {
    color: var(--neon-blue);
  }

  .special .price-features ul li .fa-check {
    color: var(--yellow);
  }
  
  .price-features ul li .fa-times {
    color: #ff6b6b;
    display: inline;
  }

  .plan-description {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--neon-blue) !important;
    font-style: italic;
    font-size: 0.85rem !important;
  }

  .special .plan-description {
    color: var(--yellow) !important;
  }
  
  .price-card .btn {
    margin: 5px 15px 15px;
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .special-plans-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--neon-blue);
    margin: 40px 0 25px;
    position: relative;
  }

  .special-plans-title::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--neon-blue);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Responsive styles for pricing section */
  @media (max-width: 768px) {
    .pricing-container {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 15px;
    }

    .price-card.featured {
      transform: none;
    }

    .price-card.featured:hover {
      transform: translateY(-5px);
    }

    .price-header h3 {
      font-size: 1.2rem;
    }

    .price {
      font-size: 2rem;
    }

    .special-plans-title {
      font-size: 1.5rem;
      margin: 30px 0 20px;
    }
  }

  @media (max-width: 576px) {
    .pricing-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .price-header h3 {
      font-size: 1.1rem;
    }

    .price {
      font-size: 1.8rem;
    }

    .price-features {
      padding: 12px;
    }

    .price-features ul li {
      font-size: 0.85rem;
      margin-bottom: 6px;
    }

    .special-plans-title {
      font-size: 1.3rem;
    }

    .price-card .btn {
      margin: 5px 10px 10px;
      padding: 6px 15px;
      font-size: 0.85rem;
    }
  }

  @media (max-width: 400px) {
    .pricing-container {
      grid-template-columns: 1fr;
    }
  }
  
  /* Contact Section */
  .contact {
    background-color: var(--black);
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  
  .map {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
  }
  
  .map iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .info-item i {
    font-size: 2rem;
    color: var(--yellow);
    margin-right: 20px;
  }
  
  .info-item h3 {
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin-bottom: 5px;
  }
  
  .info-item p {
    color: #ccc;
  }
  
  .social-media h3 {
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
  }
  
  .social-icons {
    display: flex;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(51, 51, 51, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: var(--yellow);
    color: var(--black);
  }
  
  /* CTA Section */
  .cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
      url("/placeholder.svg?height=800&width=1600");
    background-size: cover;
    background-position: center;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--yellow);
  }
  
  .cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--white);
  }
  
  .cta-form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
  }
  
  .form-group input::placeholder {
    color: #ccc;
  }
  
  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
  }
  
  .form-group select option {
    background-color: var(--black);
  }
  
  /* Footer */
  footer {
    background-color: var(--black);
    padding: 80px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .footer-logo h2 {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 15px;
  }
  
  .footer-logo p {
    color: var(--neon-blue);
  }
  
  .footer-links h3,
  .footer-newsletter h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
  }
  
  .footer-links h3::after,
  .footer-newsletter h3::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--yellow);
    bottom: -10px;
    left: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #ccc;
    transition: all 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: var(--neon-blue);
    padding-left: 5px;
  }
  
  .footer-newsletter p {
    color: #ccc;
    margin-bottom: 15px;
  }
  
  .footer-newsletter form {
    display: flex;
  }
  
  .footer-newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }
  
  .footer-newsletter button {
    border-radius: 0 5px 5px 0;
    padding: 10px 15px;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
  }
  
  .footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .hero h1 {
      font-size: 4rem;
    }
  
    .hero .tagline {
      font-size: 1.5rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      background: rgba(0, 0, 0, 0.95);
      height: 100vh;
      width: 200px;
      top: 0;
      right: -200px;
      text-align: left;
      z-index: 2;
      transition: 0.5s;
      padding-top: 80px;
    }
  
    .nav-links ul {
      flex-direction: column;
    }
  
    .nav-links ul li {
      margin: 15px 25px;
    }
  
    .fa-bars,
    .fa-times {
      display: block;
      color: var(--white);
    }
  
    .fa-times {
      position: absolute;
      top: 25px;
      left: 25px;
    }
  
    .hero h1 {
      font-size: 3rem;
    }
  
    .hero .tagline {
      font-size: 1.2rem;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .price-card.featured {
      transform: scale(1);
    }
  
    .price-card.featured:hover {
      transform: translateY(-10px);
    }
  
    .footer-newsletter form {
      flex-direction: column;
    }
  
    .footer-newsletter input {
      border-radius: 5px;
      margin-bottom: 10px;
    }
  
    .footer-newsletter button {
      border-radius: 5px;
    }
  }
  
  @media (max-width: 576px) {
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero .tagline {
      font-size: 1rem;
    }
  
    .hero .btn {
      padding: 10px 20px;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  }
  
  /* Mejoras para responsividad en móviles */
  
  /* Ajustes generales para móviles */
  @media (max-width: 576px) {
    section {
      padding: 50px 0;
    }
  
    .container {
      width: 95%;
      padding: 0 10px;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero .tagline {
      font-size: 1rem;
    }
  
    .hero .btn {
      padding: 10px 20px;
      font-size: 0.9rem;
      margin: 5px;
      display: block;
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  
    /* Ajustes para secciones específicas en móviles */
    .benefits-container,
    .gallery-container,
    .team-container,
    .testimonials-container,
    .pricing-container {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .gallery-item {
      height: 200px;
    }
  
    /* Ajustes para la tabla de horarios en móviles */
    .class-schedule {
      overflow-x: auto;
      padding-bottom: 15px;
    }
  
    .class-schedule table {
      min-width: 500px;
    }
  
    /* Ajustes para el formulario en móviles */
    .cta-form {
      width: 100%;
    }
  
    .form-group input,
    .form-group select {
      padding: 12px;
    }
  
    /* Ajustes para el footer en móviles */
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-links h3::after,
    .footer-newsletter h3::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  /* Mejoras para el menú móvil */
  @media (max-width: 768px) {
    .nav-links {
      width: 250px;
      right: -250px;
      padding-top: 60px;
    }
  
    .nav-links ul li {
      margin: 20px 25px;
    }
  
    .nav-links ul li a {
      font-size: 1.1rem;
    }
  
    /* Mejora para que el menú móvil cubra toda la pantalla */
    .nav-links.active {
      right: 0;
    }
  
    /* Ajustes para la sección de contacto en tablets */
    .contact-container {
      grid-template-columns: 1fr;
    }
  
    .map {
      height: 300px;
    }
  
    /* Mejorar la visualización de la tabla de horarios en móviles */
    .class-schedule {
      position: relative;
    }
  
    .class-schedule::after {
      content: "← Desliza →";
      position: absolute;
      bottom: -25px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.8rem;
      color: var(--neon-blue);
      opacity: 0.8;
    }
  }
  
  /* Ajustes adicionales para pantallas muy pequeñas */
  @media (max-width: 375px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero .tagline {
      font-size: 0.9rem;
    }
  
    .btn {
      padding: 10px 15px;
      font-size: 0.8rem;
    }
  
    .section-title {
      font-size: 1.3rem;
    }
  
    .benefit-card,
    .testimonial,
    .price-card {
      padding: 20px;
    }
  }
  
  /* Añadir estilos para mejorar la experiencia táctil */
  .touch .touch-item {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  .touch-item.touch-active .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
  }
  
  .touch-item.touch-active img {
    transform: scale(1.05);
  }
  
  /* Mejorar la visualización de botones en dispositivos táctiles */
  .touch .btn {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  
  /* Añadir overlay para cuando el menú móvil está activo */
  .nav-links.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
  }
  
  /* Mejoras adicionales de responsividad */
  @media (max-width: 768px) {
    .carousel-slide {
      height: 300px;
    }
  
    .slide-overlay {
      padding: 20px;
    }
  
    .slide-overlay h3 {
      font-size: 1.5rem;
    }
  
    .slide-overlay p {
      font-size: 0.9rem;
    }
  
    .carousel-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
  
    .carousel-btn.prev {
      left: 10px;
    }
  
    .carousel-btn.next {
      right: 10px;
    }
  
    .schedule-tabs {
      justify-content: center;
    }
  
    .tab-btn {
      padding: 8px 15px;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 576px) {
    .carousel-slide {
      height: 250px;
    }
  
    .slide-overlay {
      padding: 15px;
    }
  
    .slide-overlay h3 {
      font-size: 1.3rem;
    }
  
    .slide-overlay p {
      font-size: 0.8rem;
    }
  
    .schedule-tabs {
      flex-direction: column;
      align-items: center;
    }
  
    .tab-btn {
      width: 100%;
      max-width: 200px;
    }
  
    .class-item {
      padding: 12px;
    }
  
    .class-time {
      font-size: 0.9rem;
    }
  
    .class-discipline {
      font-size: 1rem;
    }
  }
  
  /* Mejoras para dispositivos táctiles */
  @media (hover: none) and (pointer: coarse) {
    .carousel-btn {
      opacity: 0.8;
    }
  
    .carousel-btn:active {
      transform: translateY(-50%) scale(0.95);
    }
  
    .tab-btn:active {
      transform: scale(0.95);
    }
  
    .class-item:active {
      transform: translateX(3px);
    }
  }
  
  /* Animaciones suaves para elementos interactivos */
  .carousel-slide.entering {
    animation: slideIn 0.5s ease;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .class-item.fade-in {
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Video Carousel Styles */
  .video-carousel-container {
    max-width: 1000px;
    margin: 40px auto 0;
    position: relative;
  }
  
  .video-section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 10px;
  }
  
  .video-section-subtitle {
    text-align: center;
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .video-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.5);
  }
  
  .video-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .video-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  
  .video-slide.active {
    opacity: 1;
    pointer-events: all;
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .video-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 215, 0, 0.8);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
  }
  
  .video-carousel-btn:hover {
    background-color: var(--yellow);
    transform: translateY(-50%) scale(1.1);
  }
  
  .video-carousel-btn.prev {
    left: -25px;
  }
  
  .video-carousel-btn.next {
    right: -25px;
  }
  
  .video-carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }
  
  .video-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .video-indicator.active {
    background-color: var(--yellow);
    transform: scale(1.2);
  }
  
  .video-indicator:hover {
    background-color: var(--neon-blue);
  }
  
  /* Responsive styles for video carousel */
  @media (max-width: 768px) {
    .video-carousel-container {
        margin: 30px 15px 0;
    }

    .video-section-title {
        font-size: 1.8rem;
    }

    .video-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .video-carousel-btn.next {
        right: 10px;
    }
  }
  
  @media (max-width: 576px) {
    .video-section-title {
        font-size: 1.5rem;
    }

    .video-section-subtitle {
        font-size: 1rem;
    }

    .video-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
  }
  
  /* Team Carousel Styles */
  .team-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px; /* Increased padding for more space */
  }

  .team-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
  }

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

  .team-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    padding: 15px;
  }

  .team-slide.active {
    opacity: 1;
    pointer-events: all;
  }

  .team-member {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .member-img {
    height: 400px; /* Increased height for vertical photos */
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .member-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed to contain to show full photo */
    object-position: center;
  }

  .team-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 215, 0, 0.8);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .team-carousel-btn:hover {
    background-color: var(--yellow);
    transform: translateY(-50%) scale(1.1);
  }

  .team-carousel-btn.prev {
    left: 10px; /* Move button more inward */
  }

  .team-carousel-btn.next {
    right: 10px; /* Move button more inward */
  }

  /* Testimonials Carousel Styles */
  .testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px; /* Increased padding for more space */
  }

  .testimonials-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
  }

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

  .testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    padding: 15px;
  }

  .testimonial-slide.active {
    opacity: 1;
    pointer-events: all;
  }

  .testimonials-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 215, 0, 0.8);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .testimonials-carousel-btn:hover {
    background-color: var(--yellow);
    transform: translateY(-50%) scale(1.1);
  }

  .testimonials-carousel-btn.prev {
    left: 10px; /* Move button more inward */
  }

  .testimonials-carousel-btn.next {
    right: 10px; /* Move button more inward */
  }

  /* Responsive styles for team and testimonials carousels */
  @media (max-width: 768px) {
    .team-carousel,
    .testimonials-carousel {
      padding: 0 40px; /* Adjusted padding for tablets */
    }

    .team-carousel-btn.prev,
    .testimonials-carousel-btn.prev {
      left: 5px;
    }

    .team-carousel-btn.next,
    .testimonials-carousel-btn.next {
      right: 5px;
    }

    .member-img {
      height: 250px;
    }
  }

  @media (max-width: 576px) {
    .team-carousel,
    .testimonials-carousel {
      padding: 0 35px; /* Adjusted padding for mobile */
    }

    .team-carousel-btn.prev,
    .testimonials-carousel-btn.prev {
      left: 0px;
    }

    .team-carousel-btn.next,
    .testimonials-carousel-btn.next {
      right: 0px;
    }

    .member-img {
      height: 200px;
    }

    .team-slide,
    .testimonial-slide {
      padding: 10px;
    }
  }
  
  /* App Section Styles */
  .app {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
    position: relative;
    overflow: hidden;
  }

  .app::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: 1;
  }

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

  .app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .app-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--yellow);
    line-height: 1.3;
  }

  .app-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-gray);
    line-height: 1.6;
  }

  .app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .app-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .app-feature:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
  }

  .app-feature i {
    font-size: 1.5rem;
    color: var(--yellow);
  }

  .app-feature span {
    font-weight: 600;
    color: var(--white);
  }

  .app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .app-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    font-size: 0.95rem;
  }

  .app-buttons .btn i {
    font-size: 1.2rem;
  }

  .app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .qr-code-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .qr-code {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--yellow) 0%, #ffed4e 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
  }

  .qr-code i {
    font-size: 4rem;
    color: var(--black);
  }

  .qr-code span {
    font-weight: 700;
    color: var(--black);
    font-size: 1.1rem;
  }



  .app-flow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }

  .flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    min-width: 80px;
  }

  .flow-step i {
    font-size: 1.5rem;
    color: var(--yellow);
  }

  .flow-step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
  }

  .app-flow .fas.fa-arrow-right {
    color: var(--yellow);
    font-size: 1.2rem;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    }
  }

  /* Responsive styles for app section */
  @media (max-width: 992px) {
    .app-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }

    .app-info h3 {
      font-size: 1.8rem;
    }

    .app-features {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 0 auto 40px;
    }

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

  @media (max-width: 768px) {
    .app-info h3 {
      font-size: 1.6rem;
    }

    .app-info p {
      font-size: 1rem;
    }

    .qr-code {
      width: 150px;
      height: 150px;
    }

    .qr-code i {
      font-size: 3rem;
    }



    .app-flow {
      flex-direction: column;
      gap: 10px;
    }

    .app-flow .fas.fa-arrow-right {
      transform: rotate(90deg);
    }

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

    .app-buttons .btn {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
  }

  @media (max-width: 576px) {
    .app-info h3 {
      font-size: 1.4rem;
    }

    .qr-code {
      width: 120px;
      height: 120px;
    }

    .qr-code i {
      font-size: 2.5rem;
    }

    .qr-code span {
      font-size: 0.9rem;
    }



    .flow-step {
      padding: 10px;
      min-width: 60px;
    }

    .flow-step i {
      font-size: 1.2rem;
    }

    .flow-step span {
      font-size: 0.7rem;
    }

    .app-flow .fas.fa-arrow-right {
      font-size: 1rem;
    }
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
  }

  .modal-content {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
    margin: 5% auto;
    padding: 0;
    border: 2px solid var(--yellow);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
  }

  .modal-header {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffed4e 100%);
    color: var(--black);
    padding: 20px 30px;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
  }

  .close-modal {
    color: var(--black);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
  }

  .close-modal:hover {
    transform: scale(1.2);
  }

  .modal-body {
    padding: 30px;
    text-align: center;
  }

  .modal-icon {
    margin-bottom: 20px;
  }

  .modal-icon i {
    font-size: 4rem;
    color: var(--yellow);
    animation: pulse 2s infinite;
  }

  .modal-body h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--yellow);
  }

  .modal-body p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--light-gray);
    line-height: 1.6;
  }

  .modal-body p strong {
    color: var(--yellow);
  }

  .modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
  }

  .modal-buttons .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes slideIn {
    from {
      transform: translateY(-50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Responsive styles for modal */
  @media (max-width: 768px) {
    .modal-content {
      margin: 10% auto;
      width: 95%;
    }

    .modal-header {
      padding: 15px 20px;
    }

    .modal-header h3 {
      font-size: 1.3rem;
    }

    .modal-body {
      padding: 20px;
    }

    .modal-icon i {
      font-size: 3rem;
    }

    .modal-body h4 {
      font-size: 1.5rem;
    }

    .modal-body p {
      font-size: 1rem;
    }

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

    .modal-buttons .btn {
      width: 100%;
      max-width: 250px;
      justify-content: center;
    }
  }

  @media (max-width: 576px) {
    .modal-content {
      margin: 15% auto;
    }

    .modal-header {
      padding: 12px 15px;
    }

    .modal-header h3 {
      font-size: 1.2rem;
    }

    .modal-body {
      padding: 15px;
    }

    .modal-icon i {
      font-size: 2.5rem;
    }

    .modal-body h4 {
      font-size: 1.3rem;
    }

    .modal-body p {
      font-size: 0.95rem;
    }
  }
  