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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

/* Color Variables */
:root {
  --dark-bg: #0C0E14;
  --lime: #BFFF3C;
  --violet: #7A4DFF;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border-light: #f0f0f0;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(12, 14, 20, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(191, 255, 60, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--lime);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.cta-button {
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.cta-primary {
  background: var(--lime);
  color: var(--dark-bg);
  box-shadow: 0 4px 15px rgba(191, 255, 60, 0.3);
}

.cta-primary:hover {
  background: #d0ff4f;
  box-shadow: 0 6px 25px rgba(191, 255, 60, 0.5);
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  color: var(--lime);
  border: 2px solid var(--lime);
}

.cta-secondary:hover {
  background: var(--lime);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.cta-header {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(12, 14, 20, 0.7) 0%,
    rgba(12, 14, 20, 0.4) 50%,
    rgba(12, 14, 20, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 700px;
}

.hero-content h1 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subhead {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats Bar */
.stats-bar {
  background: var(--dark-bg);
  padding: 4rem 2rem;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-number {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--lime);
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Title */
.section-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

/* Class Types Section */
.class-types {
  padding: 6rem 1.5rem;
  background: #fafafa;
}

.class-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.class-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.class-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(191, 255, 60, 0.2);
  border-color: var(--lime);
}

.card-header h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.intensity-bar {
  background: #e0e0e0;
  height: 6px;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.intensity-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--violet));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.class-card:hover .intensity-fill {
  background: linear-gradient(90deg, var(--lime), #ffff00);
  filter: drop-shadow(0 0 6px var(--lime));
}

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

/* Schedule Section */
.schedule {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.schedule-day {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--lime);
}

.day-header {
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.schedule-slot {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
}

.slot-time {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.slot-class {
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.book-btn {
  background: var(--lime);
  color: var(--dark-bg);
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  width: 100%;
}

.book-btn:hover {
  background: #d0ff4f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(191, 255, 60, 0.3);
}

/* Coaches Section */
.coaches {
  padding: 6rem 1.5rem;
  background: #fafafa;
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.coach-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.coach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.coach-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.coach-card h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 1.5rem 1rem 0;
  color: var(--text-dark);
}

.coach-specialty {
  color: var(--lime);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0.5rem 1rem;
}

.coach-bio {
  color: var(--text-light);
  margin: 1rem;
  padding: 0 1rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: #f9f9f9;
  border: 2px solid var(--border-light);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.price {
  font-family: 'Archivo', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark-bg);
  margin: 0.5rem 0;
}

.price-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.features li {
  padding: 0.75rem 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-light);
}

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

.pricing-popular {
  border-color: var(--lime);
  background: linear-gradient(135deg, rgba(191, 255, 60, 0.05) 0%, rgba(122, 77, 255, 0.05) 100%);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(191, 255, 60, 0.15);
}

.pricing-popular .price {
  color: var(--lime);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--dark-bg);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #fafafa 0%, rgba(122, 77, 255, 0.05) 100%);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--violet);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  quotes: '"' '"';
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--lime);
  line-height: 0;
  margin-right: 0.25rem;
}

.testimonial-author {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: var(--lime);
  font-size: 0.95rem;
}

/* Free Trial CTA Section */
.trial-cta {
  padding: 6rem 1.5rem;
  background: var(--dark-bg);
  color: var(--white);
  text-align: center;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
}

.trial-content {
  max-width: 700px;
  margin: 0 auto;
}

.trial-cta h2 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.trial-subhead {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.trial-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

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

.trial-form input,
.trial-form select,
.book-form input,
.book-form select {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(191, 255, 60, 0.2);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.trial-form input::placeholder,
.trial-form select,
.book-form input::placeholder,
.book-form select {
  color: rgba(255, 255, 255, 0.7);
}

.trial-form input:focus,
.trial-form select:focus,
.book-form input:focus,
.book-form select:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(191, 255, 60, 0.3);
}

.trial-form select {
  cursor: pointer;
}

.trial-form select option {
  background: var(--dark-bg);
  color: var(--white);
}

.form-success {
  background: rgba(191, 255, 60, 0.2);
  border: 1px solid var(--lime);
  color: var(--lime);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 600;
}

/* Location Section */
.location {
  padding: 6rem 1.5rem;
  background: #fafafa;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-info h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.location-info address {
  font-style: normal;
  color: var(--text-light);
}

.location-info p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.tel-link {
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tel-link:hover {
  text-decoration: underline;
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
  display: block;
  border-radius: 12px;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(191, 255, 60, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  color: var(--lime);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-column p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  color: var(--lime);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.social-icons a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid rgba(191, 255, 60, 0.1);
  padding-top: 2rem;
}

.kalit-badge {
  color: var(--lime);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 450px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

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

.modal-content h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: var(--lime);
  transform: rotate(90deg);
}

#bookForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#bookForm .form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

#bookForm input,
#bookForm select {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

#bookForm input:focus,
#bookForm select:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 10px rgba(191, 255, 60, 0.2);
}

#bookForm select {
  cursor: pointer;
  background: var(--white);
}

#bookForm select option {
  color: var(--text-dark);
}

#bookForm button {
  margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeIn 0.8s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .cta-button {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .class-cards {
    grid-template-columns: 1fr;
  }

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

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

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-popular {
    transform: scale(1);
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

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

  .location-info h2 {
    font-size: 1.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-bar {
    padding: 3rem 1.5rem;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
  }

  .trial-cta {
    clip-path: polygon(0 20%, 100% 5%, 100% 100%, 0 95%);
    padding: 4rem 1.5rem;
  }

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

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subhead {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-top: 50px;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .cta-header {
    display: none;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-subhead {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-ctas {
    gap: 0.5rem;
  }

  .stats-container {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .class-types {
    padding: 3rem 1rem;
  }

  .schedule {
    padding: 3rem 1rem;
  }

  .coaches {
    padding: 3rem 1rem;
  }

  .pricing {
    padding: 3rem 1rem;
  }

  .testimonials {
    padding: 3rem 1rem;
  }

  .trial-cta {
    padding: 3rem 1rem;
  }

  .location {
    padding: 3rem 1rem;
  }

  .location-map {
    height: 250px;
  }

  .location-map iframe {
    height: 100%;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .modal-content {
    padding: 2rem;
  }

  .trial-form {
    max-width: 100%;
  }
}
