:root {
  --sun: #F7C948;
  --sky: #9e569c;
  --mint: #3ECFA3;
  --coral: #FF6B6B;
  --dark: #0F1923;
  --cream: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --card: #ffffff;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(158,86,156,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between; position: relative; position: relative;
  height: 80px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 900; font-size: 22px;
  color: var(--sky); text-decoration: none;
}
.nav-logo span { color: var(--sun); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: #ffffff; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--sky); }
.nav-cta {
  background: var(--sky); color: #fff;
  padding: 9px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,79,216,0.3); }

.hero { margin-top: -20px;
  min-height: calc(100vh - 80px);
  display: flex; align-items: center;
  padding: 0px 5% 20px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #e8f4fd 0%, var(--cream) 50%, #fff8e8 100%);
  z-index: 0;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25; z-index: 0;
}
.blob1 { width: 500px; height: 500px; background: var(--sky); top: -100px; right: -100px; }
.blob2 { width: 400px; height: 400px; background: var(--sun); bottom: -50px; left: -100px; }
.blob3 { width: 300px; height: 300px; background: var(--mint); top: 40%; right: 20%; }
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,79,216,0.08);
  border: 1px solid rgba(27,79,216,0.2);
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: var(--sky);
  margin-bottom: 24px; animation: fadeUp 0.6s ease both;
}
.hero-badge::before { content: '⭐'; }
h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em { font-style: italic; color: var(--sky); }
h1 .highlight { position: relative; display: inline-block; }
h1 .highlight::after {
  content: ''; position: absolute;
  bottom: 4px; left: 0; right: 0; height: 8px;
  background: var(--sun); z-index: -1; transform: skewX(-3deg);
}
.hero-sub {
  font-size: 18px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  margin-bottom: 36px; animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  background: var(--sky); color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(27,79,216,0.35); }
.btn-secondary {
  background: transparent; color: var(--text);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; border: 2px solid var(--text);
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: var(--text); color: #fff; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  animation: fadeUp 0.6s 0.4s ease both; flex-wrap: wrap;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 900; color: var(--sky);
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 400; }
.hero-image {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%); z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-photo {
  width: 180px; height: 200px; border-radius: 16px;
  overflow: hidden; background: var(--sky);
  display: flex; align-items: center; justify-content: center; font-size: 60px;
}
.hero-photo:nth-child(2) { margin-top: 28px; background: var(--mint); }
.hero-photo:nth-child(3) { margin-top: -14px; background: var(--sun); }
.hero-photo:nth-child(4) { background: var(--coral); }

section { padding: 80px 5%; }
.section-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sky); margin-bottom: 12px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 540px; line-height: 1.7;
  font-weight: 300; margin-bottom: 48px;
}

#about { background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-visual {
  background: linear-gradient(135deg, var(--sky), var(--mint));
  border-radius: 24px; height: 420px;
  display: flex; align-items: center; justify-content: center; font-size: 120px;
}
.value-cards { display: flex; flex-direction: column; gap: 16px; }
.value-card {
  background: var(--cream); border-radius: 12px; padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
}
.value-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--sky); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.value-card:nth-child(2) .value-icon { background: var(--mint); }
.value-card:nth-child(3) .value-icon { background: var(--coral); }
.value-card h4 { font-weight: 600; margin-bottom: 4px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

#schedule { background: var(--dark); color: #fff; }
#schedule .section-title { color: #fff; }
#schedule .section-tag { color: var(--sun); }
#schedule .section-sub { color: rgba(255,255,255,0.5); }
.schedule-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; max-width: 1000px;
}
.day-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px; transition: transform 0.2s, background 0.2s;
}
.day-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.day-name { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: var(--sun); margin-bottom: 16px; }
.activity { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; font-size: 13px; color: rgba(255,255,255,0.7); }
.activity-time {
  background: rgba(247,201,72,0.15); color: var(--sun);
  padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; white-space: nowrap;
}

#gallery { background: var(--cream); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto; gap: 12px; max-width: 1100px;
}
.gallery-item {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; transition: transform 0.3s; cursor: pointer;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; min-height: 300px; background: linear-gradient(135deg, #667eea, #764ba2); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, var(--mint), #1a8a6e); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, var(--sun), #e67e22); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, var(--coral), #c0392b); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, var(--sky), #6a0dad); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, #2ecc71, #27ae60); }

#testimonials { background: #fff; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1000px;
}
.testi-card {
  background: var(--cream); border-radius: 20px; padding: 28px;
  position: relative; transition: transform 0.2s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-quote {
  font-family: 'Fraunces', serif; font-size: 56px; color: var(--sky);
  opacity: 0.2; position: absolute; top: 12px; right: 20px; line-height: 1;
}
.testi-text { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 20px; font-weight: 300; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--muted); }
.stars { color: var(--sun); font-size: 13px; margin-bottom: 12px; }

#pricing { background: var(--cream); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 960px;
}
.price-card {
  background: #fff; border-radius: 24px; padding: 32px;
  border: 2px solid transparent; transition: transform 0.2s, border-color 0.2s; position: relative;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { background: var(--sky); color: #fff; border-color: var(--sky); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--sun); color: var(--dark);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 14px; border-radius: 50px; text-transform: uppercase;
}
.price-plan { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); margin-bottom: 8px; }
.price-card.featured .price-plan { color: rgba(255,255,255,0.7); }
.price-amount { font-family: 'Fraunces', serif; font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.price-period { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.price-card.featured .price-period { color: rgba(255,255,255,0.6); }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px; display: flex; align-items: center; gap: 10px;
}
.price-card.featured .price-features li { border-color: rgba(255,255,255,0.1); }
.price-features li::before { content: '✓'; color: var(--mint); font-weight: 700; }
.price-card.featured .price-features li::before { color: var(--sun); }
.btn-enroll {
  width: 100%; padding: 14px; border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  background: var(--sky); color: #fff; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-enroll:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,79,216,0.3); }
.price-card.featured .btn-enroll { background: #fff; color: var(--sky); }

#signup { background: linear-gradient(135deg, var(--sky) 0%, #0d3a9e 100%); color: #fff; text-align: center; }
#signup .section-title { color: #fff; }
#signup .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }
.email-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.email-form input {
  flex: 1; padding: 14px 20px; border-radius: 50px; border: none;
  font-family: 'Outfit', sans-serif; font-size: 15px; min-width: 200px; outline: none;
}
.email-form button {
  background: var(--sun); color: var(--dark);
  padding: 14px 28px; border-radius: 50px; border: none;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: transform 0.2s; white-space: nowrap;
}
.email-form button:hover { transform: translateY(-2px); }
.email-perks { display: flex; justify-content: center; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.email-perk { font-size: 13px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; }
.email-success {
  display: none; background: rgba(255,255,255,0.15); border-radius: 12px;
  padding: 16px 24px; max-width: 480px; margin: 0 auto; font-size: 15px; font-weight: 500;
}
.email-success.show { display: block; }

#contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1000px; align-items: start; }
.contact-info h3 { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 900; margin-bottom: 16px; }
.contact-info p { color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.contact-detail { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.contact-icon { width: 40px; height: 40px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail-text { font-size: 14px; }
.contact-detail-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea {
  padding: 14px 18px; border: 1.5px solid #e8e8e8; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 15px; transition: border-color 0.2s; outline: none; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--sky); }
.contact-form textarea { min-height: 120px; }
.btn-send {
  padding: 14px 28px; background: var(--sky); color: #fff; border: none;
  border-radius: 50px; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; align-self: flex-start;
}
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,79,216,0.3); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 24px; padding: 40px;
  max-width: 480px; width: 100%; position: relative;
  animation: popIn 0.3s cubic-bezier(0.175,0.885,0.32,1.275) both;
}
.modal-title { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 900; }
.modal-sub { font-size: 14px; color: var(--muted); margin-top: 4px; margin-bottom: 28px; }
.modal-plan {
  background: var(--cream); border-radius: 12px; padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.modal-plan-name { font-weight: 600; }
.modal-plan-price { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 900; color: var(--sky); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e0e0e0; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 15px; transition: border-color 0.2s; outline: none;
}
.form-group input:focus { border-color: var(--sky); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stripe-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.btn-pay {
  width: 100%; padding: 16px; background: var(--sky); color: #fff; border: none;
  border-radius: 50px; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700;
  cursor: pointer; margin-top: 8px; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-pay:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(27,79,216,0.4); }
.btn-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--muted); }

footer {
  background: var(--dark); color: rgba(255,255,255,0.5);
  text-align: center; padding: 32px 5%; font-size: 13px;
}
footer span { color: var(--sun); }

.success-msg {
  background: #e8fdf5; color: #1a7a58; border-radius: 8px;
  padding: 12px 16px; font-size: 14px; font-weight: 500; margin-top: 12px; display: none;
}
.success-msg.show { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .hero-image { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .nav-links { display: none; }
}#events { background: #fff; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
}
.flyer-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s;
  cursor: pointer;
}
.flyer-card:hover { transform: translateY(-4px); }
.flyer-caption {
  text-align: center;
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  background: #fff;
}.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(158, 86, 156, 0.98);
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}

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

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

.mobile-enrol {
  background: #fff;
  color: var(--sky) !important;
  margin: 12px 24px 0;
  border-radius: 50px !important;
  text-align: center;
  font-weight: 700 !important;
  border-bottom: none !important;
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
}/* ================================
   PREMIUM PRICING SECTION
================================ */

#pricing {
  background: #fafafa;
  padding: 100px 5%;
}

.pricing-inner {
  max-width: 860px;
}

.pricing-header {
  margin-bottom: 56px;
}

/* TABLE WRAPPER */
.pricing-table-wrap {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 40px;
}

/* TABLE HEADER */
.table-header-row {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  background: #1a1a2e;
  padding: 16px 28px;
  align-items: center;
}

.table-col-service {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 12px;
}

.table-col-rate {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(158,86,156,0.25);
  border: 1px solid rgba(158,86,156,0.4);
  color: #d4a0d2;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.rate-badge--solo {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}

/* TABLE ROWS */
.table-row {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  align-items: center;
  transition: background 0.15s;
}

.table-row:last-child { border-bottom: none; }
.table-row:hover { background: #f9f5ff; }

.table-row--highlight {
  background: rgba(158,86,156,0.03);
}

.table-col-service {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a2e;
}

.service-sub {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
  margin-left: 6px;
}

/* SERVICE TOKENS */
.service-token {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid rgba(158,86,156,0.3);
  background: rgba(158,86,156,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(158,86,156,0.8);
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 1px 3px rgba(158,86,156,0.15);
}

.service-token--accent {
  border-color: rgba(158,86,156,0.6);
  background: rgba(158,86,156,0.1);
  color: rgba(158,86,156,1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 2px 8px rgba(158,86,156,0.2);
}

.service-token--dance {
  border-color: rgba(255,107,107,0.4);
  background: rgba(255,107,107,0.06);
  color: rgba(255,107,107,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 1px 3px rgba(255,107,107,0.15);
}

/* PRICES */
.price {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 900;
  color: #1a1a2e;
  letter-spacing: -0.02em;
}

.price--accent {
  color: rgba(158,86,156,1);
}

.per {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 400;
  margin-left: 2px;
}

.table-col-rate {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

/* STUDY PLAN */
.study-plan-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.study-plan-icon {
  width: 40px;
  height: 40px;
  background: rgba(158,86,156,0.08);
  border: 1.5px solid rgba(158,86,156,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(158,86,156,1);
  flex-shrink: 0;
}

.study-plan-card h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.study-plan-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* SCHEDULE CARDS */
.schedule-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.schedule-card-new {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.schedule-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(158,86,156,1);
  margin-bottom: 16px;
}

.schedule-times {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule-time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.schedule-time-row span {
  color: #9ca3af;
}

.schedule-time-row strong {
  color: #1a1a2e;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .table-header-row,
  .table-row {
    grid-template-columns: 1fr 100px 100px;
    padding: 14px 16px;
  }

  .price { font-size: 16px; }
  .schedule-cards { grid-template-columns: 1fr; }
  .table-col-service { font-size: 13px; }
}/* ================================
   BOOKING MODAL
================================ */
.booking-modal { max-width: 420px; }

.booking-form { display: flex; flex-direction: column; gap: 16px; }

.hours-selector {
  display: flex; align-items: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px; overflow: hidden; width: fit-content;
}

.hours-selector button {
  width: 44px; height: 44px; border: none;
  background: #f5f5f5; font-size: 20px;
  cursor: pointer; color: #333; transition: background 0.15s;
}

.hours-selector button:hover { background: #ebebeb; }

.hours-selector span {
  width: 60px; text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700; color: #1a1a2e;
}

.booking-total {
  display: flex; justify-content: space-between; align-items: center;
  background: #f9f5ff;
  border: 1.5px solid rgba(158,86,156,0.2);
  border-radius: 12px; padding: 16px 20px;
}

.booking-total span:first-child {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #9ca3af;
}

.booking-total-amount {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 900;
  color: rgba(158,86,156,1); letter-spacing: -0.02em;
}

#paypal-button-container { margin: 20px 0; min-height: 50px; }

.btn-back {
  background: none; border: none; color: #9ca3af;
  font-family: 'Outfit', sans-serif; font-size: 14px;
  cursor: pointer; padding: 8px 0;
  display: block; margin: 0 auto; transition: color 0.2s;
}

.btn-back:hover { color: #1a1a2e; }

.booking-success { text-align: center; padding: 32px 20px; }

.success-icon {
  width: 64px; height: 64px;
  background: rgba(62,207,163,0.1);
  border: 2px solid rgba(62,207,163,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #3ecfa3;
  margin: 0 auto 20px;
}

.booking-success h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 900;
  margin-bottom: 12px; color: #1a1a2e;
}

.booking-success p {
  font-size: 14px; color: #6b7280;
  line-height: 1.6; max-width: 320px; margin: 0 auto;
}

#proceedToPayBtn:disabled { opacity: 0.4; cursor: not-allowed; }
/* Force / lock newsletter pill styling (prevents overrides) */
#signup .email-form input {
  flex: 1 !important;
  padding: 14px 20px !important;
  border-radius: 50px !important;
  border: none !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  min-width: 200px !important;
  outline: none !important;
}

#signup .email-form button {
  background: var(--sun) !important;
  color: var(--dark) !important;
  padding: 14px 28px !important;
  border-radius: 50px !important;
  border: none !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  white-space: nowrap !important;


}footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 60px 5% 32px;
  font-size: 13px;
}

footer span {
  color: rgba(158,86,156,0.9);
  font-weight: 600;
}

/* FUNDED BY STRIP */
.funded-strip { margin-bottom: 48px; }

.funded-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.funded-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.funded-logo-card {
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.funded-logo-card:hover { transform: translateY(-2px); }

.footer-divider {
  width: 60px;
  height: 2px;
  background: rgba(158,86,156,0.3);
  margin: 0 auto 36px;
  border-radius: 2px;
}

/* STYLIZED SOCIAL PILLS */
.footer-follow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-social-styled {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.2s;
}

.social-pill.instagram { background: rgba(158,86,156,0.12); border-color: rgba(158,86,156,0.35); color: #d4a0d2; }
.social-pill.instagram:hover { background: rgba(158,86,156,0.25); border-color: rgba(158,86,156,0.7); color: #e8c4e8; transform: translateY(-2px); }

.social-pill.facebook { background: rgba(100,100,200,0.1); border-color: rgba(100,100,200,0.3); color: #a0a8d4; }
.social-pill.facebook:hover { background: rgba(100,100,200,0.2); border-color: rgba(100,100,200,0.6); color: #c0c8e8; transform: translateY(-2px); }

.social-pill.youtube { background: rgba(180,40,40,0.1); border-color: rgba(180,40,40,0.3); color: #d4a0a0; }
.social-pill.youtube:hover { background: rgba(180,40,40,0.2); border-color: rgba(180,40,40,0.6); color: #e8c0c0; transform: translateY(-2px); }

.social-pill.linkedin { background: rgba(80,130,180,0.1); border-color: rgba(80,130,180,0.3); color: #a0b8d4; }
.social-pill.linkedin:hover { background: rgba(80,130,180,0.2); border-color: rgba(80,130,180,0.6); color: #c0d0e8; transform: translateY(-2px); }

/* FOOTER LINKS */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 24px;
}

.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer-links a:hover { color: rgba(158,86,156,0.9); }

@media (max-width: 600px) {
  .footer-social-styled { gap: 8px; }
  .social-pill { padding: 9px 14px; font-size: 12px; }
}
@media (max-width: 1100px) {
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: block !important;
  }
  .nav-cta {
    display: none !important;
  }
}

/* ================================
   HERO PADDING FIX
   Prevents navbar overlapping hero text
================================ */
.hero {
  padding-top: 100px !important;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px !important;
  }
}

/* ================================
   ABOUT SECTION SVG ICONS
================================ */
.value-icon-svg {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(158,86,156,0.1);
  border: 1.5px solid rgba(158,86,156,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(158,86,156,1);
}

/* ================================
   MOBILE OVERFLOW FIX
================================ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

/* Fix booking modal on mobile */
.booking-modal {
  width: 95vw !important;
  max-width: 420px !important;
  margin: 0 auto;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay {
  padding: 16px !important;
  align-items: flex-start !important;
  padding-top: 60px !important;
}

/* Fix pricing table overflow on mobile */
@media (max-width: 768px) {
  .pricing-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  section {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}