/* =============================================
   Soul Balance Studio — Main Stylesheet
   Pure CSS3, no frameworks, no utilities
   ============================================= */

:root {
  --primary: #FCDD76;
  --accent: #FF00CC;
  --highlight: #B0E0E6;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --bg-soft: #fdf9f0;
  --bg-light: #f8f4ff;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
a { color: inherit; text-decoration: none; }

/* ---- Scroll reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-decoration: none;
  font-family: 'Georgia', serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #f5c842 100%);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(252,221,118,0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(252,221,118,0.7);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #cc00aa 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,0,204,0.4);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,0,204,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}

.site-header.scrolled {
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo-text .tagline {
  font-size: 0.7rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  position: relative;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary), #f5c842);
  color: var(--dark) !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(252,221,118,0.5); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(26,26,46,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 24px;
  gap: 20px;
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}

.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.6) 0%, rgba(26,26,46,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 24px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-block;
  background: rgba(252,221,118,0.2);
  border: 1px solid rgba(252,221,118,0.4);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

.hero-scroll .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

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

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-dark .section-desc,
.section-gradient .section-desc {
  color: rgba(255,255,255,0.7);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 20px auto;
  border-radius: 2px;
}

/* ============================================
   BLOCK 1: STEP-BY-STEP MAP + MINI PRICES + FORM
   ============================================ */
#steps {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  color: var(--white);
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 80px;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--highlight), var(--primary));
  z-index: 0;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  cursor: default;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(252,221,118,0.15);
}

.step-num.s1 { background: linear-gradient(135deg, var(--primary), #f5c842); color: var(--dark); }
.step-num.s2 { background: linear-gradient(135deg, #FF00CC, #cc00aa); color: white; }
.step-num.s3 { background: linear-gradient(135deg, var(--highlight), #7bbfcc); color: var(--dark); }
.step-num.s4 { background: linear-gradient(135deg, #a78bfa, #7c3aed); color: white; }
.step-num.s5 { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; }

.step-icon { font-size: 2rem; margin-bottom: 12px; }

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Mini price cards */
.mini-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.mini-price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mini-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.mini-price-card:nth-child(1)::before { background: var(--primary); }
.mini-price-card:nth-child(2)::before { background: var(--accent); }
.mini-price-card:nth-child(3)::before { background: var(--highlight); }

.mini-price-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mini-price-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.mini-price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.mini-price-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.mini-price-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}

/* Booking Form */
.booking-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.booking-form-wrap h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.booking-form-wrap .sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

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

.form-group label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(252,221,118,0.15);
}

.form-group select option {
  background: var(--dark2);
  color: var(--white);
}

/* Light form (contacts) */
.form-light .form-group label { color: var(--text); }
.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
  background: var(--white);
  border: 1.5px solid #ddd;
  color: var(--text);
}
.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder { color: #aaa; }
.form-light .form-group input:focus,
.form-light .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,0,204,0.1);
}

.form-submit {
  text-align: center;
}

/* ============================================
   BLOCK 2: SLIDER / CAROUSEL
   ============================================ */
#slider {
  padding: 100px 0;
  background: var(--bg-soft);
  overflow: hidden;
}

.slider-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(0deg, rgba(26,26,46,0.9) 0%, transparent 100%);
  color: var(--white);
}

.slide-caption h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.slide-caption p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.3);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================
   BLOCK 3: ACCORDION
   ============================================ */
#accordion {
  padding: 100px 0;
  background: var(--white);
}

.accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.accordion-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.accordion-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.accordion-image:hover img {
  transform: scale(1.05);
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border: 1.5px solid #eee;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(252,221,118,0.2);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}

.accordion-item.open .accordion-header {
  background: linear-gradient(135deg, rgba(252,221,118,0.15), rgba(255,0,204,0.05));
  color: var(--dark);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.accordion-item.open .accordion-icon {
  background: var(--primary);
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.accordion-body.open {
  max-height: 400px;
  padding: 0 24px 20px;
}

.accordion-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

/* ============================================
   BLOCK 4: CIRCULAR ABOUT
   ============================================ */
#about {
  padding: 100px 0;
  background: var(--bg-soft);
  overflow: hidden;
}

.about-circle-wrap {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  height: 600px;
}

.about-center-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 8px var(--white), 0 0 0 16px rgba(252,221,118,0.3), var(--shadow-lg);
  z-index: 5;
}

.about-center-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(252,221,118,0.25);
  animation: spin 30s linear infinite;
}

.orbit-ring.r1 {
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
}

.orbit-ring.r2 {
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  animation-direction: reverse;
  animation-duration: 45s;
}

.orbit-item {
  position: absolute;
  width: 130px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  text-align: center;
  animation: counterSpin 30s linear infinite;
  border: 1px solid rgba(252,221,118,0.2);
  transition: var(--transition);
}

.orbit-item:hover {
  transform: scale(1.08) rotate(0deg) !important;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.orbit-item.counter2 { animation: counterSpin2 45s linear infinite; }

.orbit-item .oi-icon { font-size: 1.6rem; margin-bottom: 6px; }
.orbit-item .oi-title { font-size: 0.75rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.orbit-item .oi-val { font-size: 0.7rem; color: var(--text-light); }

/* 4 items on inner ring at 90° intervals */
.orbit-item.p1 { top: -65px; left: calc(50% - 65px); transform-origin: 65px calc(245px); }
.orbit-item.p2 { top: calc(50% - 65px); right: -130px; transform-origin: calc(-115px) 65px; }
.orbit-item.p3 { bottom: -65px; left: calc(50% - 65px); transform-origin: 65px calc(-115px); }
.orbit-item.p4 { top: calc(50% - 65px); left: -130px; transform-origin: calc(245px) 65px; }

/* 4 items on outer ring at 45° offset */
.orbit-item.q1 { top: -65px; left: calc(15% - 65px); transform-origin: 65px 325px; }
.orbit-item.q2 { top: -65px; right: calc(15% - 65px); transform-origin: 65px 325px; }
.orbit-item.q3 { bottom: -65px; left: calc(15% - 65px); transform-origin: 65px -195px; }
.orbit-item.q4 { bottom: -65px; right: calc(15% - 65px); transform-origin: 65px -195px; }

/* Fallback flat layout for mobile */
.about-flat { display: none; }

/* ============================================
   BLOCK 5: SCHEDULE TABLE
   ============================================ */
#schedule {
  padding: 100px 0;
  background: var(--white);
}

.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.schedule-table thead th {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  color: var(--white);
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.schedule-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.schedule-table tbody tr {
  transition: var(--transition);
  border-bottom: 1px solid #f0f0f0;
}

.schedule-table tbody tr:hover {
  background: rgba(252,221,118,0.08);
}

.schedule-table tbody tr:last-child { border-bottom: none; }

.schedule-table td {
  padding: 16px 20px;
  vertical-align: middle;
}

.schedule-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}

.level-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.level-all { background: rgba(176,224,230,0.3); color: #0080a0; }
.level-begin { background: rgba(252,221,118,0.3); color: #a08000; }
.level-mid { background: rgba(255,0,204,0.1); color: #cc00aa; }

/* ============================================
   BLOCK 6: PRICE CARDS (detailed)
   ============================================ */
#pricing {
  padding: 100px 0;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
  color: var(--white);
}

.price-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  background: linear-gradient(160deg, rgba(252,221,118,0.15), rgba(255,0,204,0.1));
  border-color: rgba(252,221,118,0.4);
}

.price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.03) 100%);
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(252,221,118,0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.price-featured-badge {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
}

.price-card-icon { font-size: 2.5rem; margin-bottom: 16px; }

.price-card-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.price-card-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.price-card-currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.price-card-unit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.price-card-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.price-card-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   BLOCK 7: CALCULATOR
   ============================================ */
#calculator {
  padding: 100px 0;
  background: var(--bg-soft);
}

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

.calc-left h2 { margin-bottom: 16px; }
.calc-left p { color: var(--text-light); font-size: 1.05rem; }

.calc-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(252,221,118,0.2);
}

.calc-group {
  margin-bottom: 28px;
}

.calc-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 2px 10px rgba(255,0,204,0.4);
  cursor: pointer;
  border: 3px solid white;
}

.calc-val {
  text-align: right;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
}

.calc-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid #eee;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.calc-radio-label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(255,0,204,0.06);
}

.calc-radio-label input { accent-color: var(--accent); }

.calc-result {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
}

.calc-result-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.calc-result-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.calc-result-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   BLOCK 8: SELLING TEXT
   ============================================ */
#selling {
  padding: 100px 0;
  background: var(--white);
}

.selling-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.selling-left {
  position: sticky;
  top: 100px;
}

.selling-left h2 { margin-bottom: 24px; }

.selling-tagline {
  font-size: 1.2rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 32px;
  line-height: 1.5;
}

.selling-right p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.selling-right p strong {
  color: var(--dark);
}

.selling-right blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.1rem;
}

/* ============================================
   INFOGRAPHIC BLOCK
   ============================================ */
#infographic {
  padding: 100px 0;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
  color: var(--white);
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.info-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(252,221,118,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(252,221,118,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.info-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.info-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 12px;
}

.info-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

.counter-num {
  display: inline-block;
}

/* ============================================
   GALLERY BLOCK
   ============================================ */
#gallery {
  padding: 100px 0;
  background: var(--bg-soft);
}

.gallery-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  margin: 48px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(0deg, rgba(26,26,46,0.9) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.85rem;
  text-align: center;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ============================================
   YOGA STYLES CARDS BLOCK (8th block)
   ============================================ */
#styles {
  padding: 100px 0;
  background: var(--white);
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.style-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
  border: 1.5px solid #f0f0f0;
}

.style-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(252,221,118,0.4);
}

.style-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.style-card:hover .style-card-img {
  transform: scale(1.05);
}

.style-card-body {
  padding: 24px;
}

.style-card-num {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.style-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.style-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 28px 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.modal-header h3 {
  font-size: 1.4rem;
  color: var(--dark);
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.modal-close:hover { background: var(--primary); }

.modal-body {
  padding: 24px 32px 32px;
}

.modal-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.modal .form-group label { color: var(--text); }
.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
  background: #f8f8f8;
  border: 1.5px solid #e0e0e0;
  color: var(--text);
}
.modal .form-group input:focus,
.modal .form-group select:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(255,0,204,0.08);
}
.modal .form-group input::placeholder { color: #aaa; }

.radio-group-modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid #eee;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  transition: var(--transition);
}

.radio-opt:has(input:checked) {
  border-color: var(--accent);
  background: rgba(255,0,204,0.05);
  color: var(--accent);
}

.radio-opt input { accent-color: var(--accent); }

/* ============================================
   CONTACTS SECTION
   ============================================ */
#contacts {
  padding: 100px 0;
  background: var(--bg-soft);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item-text .ci-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-item-text .ci-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.map-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #aaa;
  font-size: 0.9rem;
  border: 2px dashed #ddd;
  margin-bottom: 32px;
}

.map-placeholder span { font-size: 2.5rem; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  margin-bottom: 24px;
  color: var(--dark);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-legal-left { line-height: 1.8; }
.footer-legal-right { display: flex; gap: 24px; }

.footer-legal-right a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-legal-right a:hover { color: var(--primary); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: var(--dark);
  border: 1px solid rgba(252,221,118,0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.cookie-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

.cookie-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-weight: 600;
  transition: var(--transition);
}

.cookie-btn.accept {
  background: var(--primary);
  color: var(--dark);
}

.cookie-btn.accept:hover { background: #f5c842; }

.cookie-btn.necessary {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn.necessary:hover { background: rgba(255,255,255,0.15); }

.cookie-btn.settings {
  background: transparent;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

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

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes counterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes counterSpin2 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252,221,118,0.4); }
  50% { box-shadow: 0 0 0 20px rgba(252,221,118,0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .price-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .burger { display: flex; }

  .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps-grid::before { display: none; }

  .mini-prices { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .accordion-grid { grid-template-columns: 1fr; }
  .accordion-image { position: static; }
  .accordion-image img { height: 300px; }

  .about-circle-wrap { display: none; }
  .about-flat { display: block; }

  .about-flat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-flat-center {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }

  .about-flat-center img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 6px white, 0 0 0 12px rgba(252,221,118,0.3), var(--shadow);
  }

  .about-flat-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: var(--shadow);
    text-align: center;
  }

  .about-flat-card .oi-icon { font-size: 1.8rem; }
  .about-flat-card .oi-title { font-size: 0.8rem; font-weight: 700; color: var(--dark); }
  .about-flat-card .oi-val { font-size: 0.75rem; color: var(--text-light); }

  .calc-layout { grid-template-columns: 1fr; gap: 32px; }
  .selling-layout { grid-template-columns: 1fr; }
  .selling-left { position: static; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

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

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

@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .hero-content { padding-top: 80px; }

  .steps-grid { grid-template-columns: 1fr; }
  .mini-prices { grid-template-columns: 1fr; }

  .price-cards-grid { grid-template-columns: 1fr; }
  .styles-grid { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  .calc-radio-group { grid-template-columns: 1fr; }
  .radio-group-modal { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; text-align: center; }
  .footer-legal-right { flex-wrap: wrap; justify-content: center; }

  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }

  .booking-form-wrap { padding: 24px; }
  .modal-header { padding: 20px 20px 0; }
  .modal-body { padding: 16px 20px 24px; }
}
