:root {
  --bg-primary: #0d0d1a;
  --bg-secondary: #1a1a2e;
  --bg-card: #16213e;
  --bg-card-hover: #1a2744;
  --text-primary: #ffffff;
  --text-secondary: #b0b0c0;
  --text-muted: #8888a0;
  --accent-purple: #7b2ff7;
  --accent-orange: #f7971e;
  --accent-gradient: linear-gradient(135deg, #7b2ff7, #f7971e);
  --accent-gradient-h: linear-gradient(135deg, #f7971e, #7b2ff7);
  --border-color: #2a2a4a;
  --shadow: 0 10px 40px rgba(0,0,0,0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --schedule-hiphop: #7b2ff7;
  --schedule-bollywood: #e74c3c;
  --schedule-contemporary: #2ecc71;
  --schedule-salsa: #f39c12;
  --schedule-classical: #3498db;
  --schedule-jazz: #e91e63;
  --schedule-kids: #00bcd4;
  --schedule-zumba: #ff5722;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 4px; }

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Section Styles */
.section {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 10px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123,47,247,0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}
.btn-small {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(20px);
  padding: 10px 5%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.nav-logo span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-join {
  background: var(--accent-gradient);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-join::after { display: none !important; }
.nav-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(123,47,247,0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,26,0.4) 0%, rgba(13,13,26,0.8) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll svg {
  width: 30px;
  height: 30px;
  stroke: var(--text-secondary);
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg-secondary);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 20px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 5px;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-image:hover img {
  transform: scale(1.05);
}

/* ===== DANCE STYLES ===== */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.style-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}
.style-card:hover::before {
  transform: scaleX(1);
}
.style-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-purple);
  box-shadow: 0 10px 30px rgba(123,47,247,0.15);
}
.style-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.style-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.style-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ===== SCHEDULE ===== */
.schedule {
  background: var(--bg-secondary);
}
.schedule-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}
.schedule-table th,
.schedule-table td {
  padding: 14px 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
}
.schedule-table th {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.schedule-table td {
  background: var(--bg-primary);
  color: var(--text-secondary);
}
.schedule-table td:not(:first-child):not(:empty) {
  color: #fff;
  font-weight: 500;
}
.schedule-table tr:first-child th:first-child {
  background: var(--accent-purple);
}
.schedule-table tr:first-child th:nth-child(2) { background: #6c3483; }
.schedule-table tr:first-child th:nth-child(3) { background: #7d3c98; }
.schedule-table tr:first-child th:nth-child(4) { background: #8e44ad; }
.schedule-table tr:first-child th:nth-child(5) { background: #a569bd; }
.schedule-table tr:first-child th:nth-child(6) { background: #7b2ff7; }
.schedule-table tr:first-child th:nth-child(7) { background: #5b2c8e; }
.class-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}
.class-hiphop { background: rgba(123,47,247,0.2); color: #a78bfa; border: 1px solid rgba(123,47,247,0.3); }
.class-bollywood { background: rgba(231,76,60,0.2); color: #f1948a; border: 1px solid rgba(231,76,60,0.3); }
.class-contemporary { background: rgba(46,204,113,0.2); color: #82e0aa; border: 1px solid rgba(46,204,113,0.3); }
.class-salsa { background: rgba(243,156,18,0.2); color: #f9e79f; border: 1px solid rgba(243,156,18,0.3); }
.class-classical { background: rgba(52,152,219,0.2); color: #85c1e9; border: 1px solid rgba(52,152,219,0.3); }
.class-jazz { background: rgba(233,30,99,0.2); color: #f48fb1; border: 1px solid rgba(233,30,99,0.3); }
.class-kids { background: rgba(0,188,212,0.2); color: #80deea; border: 1px solid rgba(0,188,212,0.3); }
.class-zumba { background: rgba(255,87,34,0.2); color: #ffab91; border: 1px solid rgba(255,87,34,0.3); }

/* ===== INSTRUCTORS ===== */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.instructor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.instructor-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.instructor-info {
  padding: 20px;
  text-align: center;
}
.instructor-info h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.instructor-info .role {
  color: var(--accent-orange);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.instructor-info p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 15px;
}
.instructor-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.instructor-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.instructor-social a:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--bg-secondary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,26,0.8) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  display: none;
}
.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-quote {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
}
.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-purple);
}
.testimonial-author-info h5 {
  font-size: 1rem;
  margin-bottom: 3px;
}
.testimonial-author-info span {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}
.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dots .dot.active {
  background: var(--accent-gradient);
}
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
}
.testimonial-nav:hover {
  background: var(--accent-gradient);
  border-color: transparent;
}
.testimonial-nav.prev { left: -60px; }
.testimonial-nav.next { right: -60px; }

/* ===== PRICING ===== */
.pricing {
  background: var(--bg-secondary);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.pricing-card.popular {
  border-color: var(--accent-purple);
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(123,47,247,0.2);
}
.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}
.pricing-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.pricing-card .plan-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-card .price-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 25px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}
.pricing-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent-orange);
  font-weight: 700;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(123,47,247,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select option {
  background: var(--bg-card);
  color: #fff;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(123,47,247,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-item h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}
.contact-info-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.contact-social a:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
}
.map-placeholder {
  grid-column: 1 / -1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 5% 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.footer-brand h3 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gradient);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}
.footer-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  outline: none;
}
.newsletter-form input:focus {
  border-color: var(--accent-purple);
}
.newsletter-form button {
  padding: 12px 20px;
  background: var(--accent-gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover {
  transform: translateY(-2px);
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(123,47,247,0.3);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .instructors-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-5px); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 3.5rem; }
  .testimonial-nav.prev { left: 10px; }
  .testimonial-nav.next { right: 10px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 2.8rem; }
  .section-header h2 { font-size: 2.2rem; }
  .styles-grid { grid-template-columns: 1fr 1fr; }
  .instructors-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 70px 5%; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.2rem; }
  .styles-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}