/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #FD5E53;
  --primary-dark: #e04843;
  --accent: #FF7538;
  --highlight: #E6A8D7;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --mid: #2d2d44;
  --text: #333;
  --text-muted: #666;
  --bg-light: #fafafa;
  --bg-section: #f5f5f7;
  --white: #fff;
  --border: rgba(0,0,0,0.1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(253,94,83,0.08);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.section { padding: 96px 0; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 99px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(253,94,83,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(253,94,83,0.45);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: rgba(253,94,83,0.08);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border);
}
.btn-ghost:hover { background: rgba(0,0,0,0.05); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}
.logo-text strong { color: var(--primary); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--primary); background: rgba(253,94,83,0.07); }
.header-cta { flex-shrink: 0; padding: 10px 22px; font-size: 0.9rem; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.5) 60%, rgba(26,26,46,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #fd5e53, #ff9f38, #e6a8d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.hero-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 4px; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}

/* ===== STEPS SECTION ===== */
.steps-section { background: var(--bg-section); }
.steps-map {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 64px;
  position: relative;
}
.step-card {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}
.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(253,94,83,0.2);
}
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(253,94,83,0.1);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.step-feel {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(253,94,83,0.07);
  padding: 6px 12px;
  border-radius: 99px;
  display: inline-block;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  position: relative;
}
.connector-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.connector-arrow {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  color: var(--primary);
  background: rgba(253,94,83,0.08);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MINI PRICES */
.mini-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.mini-price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}
.mini-price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(253,94,83,0.15);
}
.mini-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-price-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}
.mini-price-name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.mini-price-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.mini-price-detail { font-size: 0.82rem; color: var(--text-muted); }

/* BOOKING FORM */
.booking-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.05);
}
.form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-subtitle { color: var(--text-muted); margin-bottom: 28px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--bg-light);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(253,94,83,0.08);
}
.form-submit { width: 100%; margin-bottom: 16px; }
.learn-more-btn { display: flex; width: fit-content; margin: 0 auto; }

/* ===== SLIDER SECTION ===== */
.slider-section { background: var(--dark); overflow: hidden; }
.slider-section .section-label { color: #E6A8D7; background: rgba(230,168,215,0.15); }
.slider-section .section-title { color: #fff; }
.slider-section .section-subtitle { color: rgba(255,255,255,0.6); }
.slider-section .container { padding-bottom: 40px; }
.slider-outer {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slide {
  min-width: 100%;
  position: relative;
  height: 520px;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 60px 40px 40px;
  color: #fff;
}
.slide-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.slide-caption h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.slide-caption p { font-size: 0.95rem; color: rgba(255,255,255,0.75); max-width: 600px; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all var(--transition);
  z-index: 10;
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ===== ACCORDION ===== */
.accordion-section { background: #fff; }
.accordion { display: flex; flex-direction: column; gap: 12px; max-width: 840px; }
.accordion-item {
  background: #fff;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.accordion-item.open { border-color: var(--primary); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  width: 100%;
  text-align: left;
  transition: all var(--transition);
}
.accordion-header:hover { color: var(--primary); }
.accordion-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(253,94,83,0.08);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
  padding: 0 28px;
}
.accordion-item.open .accordion-body {
  max-height: 400px;
  padding: 0 28px 24px;
}
.accordion-body p { color: var(--text-muted); line-height: 1.8; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--bg-section); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}
.feat-icon { font-size: 1.2rem; }
.circular-layout {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
}
.circular-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.circular-img { width: 100%; height: 100%; object-fit: cover; }
.orbit-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.2;
  width: 72px;
}
.orbit-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 4px;
  transition: all var(--transition);
}
.orbit-dot:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.orbit-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-2 { top: 22%; right: -8px; }
.orbit-3 { bottom: 22%; right: -8px; }
.orbit-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-5 { top: 22%; left: -8px; }

/* ===== SCHEDULE TABLE ===== */
.schedule-section { background: #fff; }
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.schedule-table th {
  background: var(--dark);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.schedule-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  white-space: nowrap;
}
.schedule-table tr.highlight-row td { background: rgba(253,94,83,0.03); }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: rgba(253,94,83,0.06); transition: background 0.2s; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
}
.tag-hiphop { background: rgba(253,94,83,0.1); color: var(--primary); }
.tag-contemporary { background: rgba(230,168,215,0.2); color: #c064a0; }
.tag-lady { background: rgba(255,117,56,0.1); color: #cc5500; }
.tag-gogo { background: rgba(255,200,0,0.15); color: #a07800; }
.tag-reggaeton { background: rgba(0,200,100,0.1); color: #008040; }
.tag-kpop { background: rgba(100,120,255,0.1); color: #4050cc; }
.level {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
}
.level-beginner { background: rgba(0,200,100,0.1); color: #008040; }
.level-middle { background: rgba(255,165,0,0.1); color: #cc7700; }
.level-advanced { background: rgba(253,94,83,0.1); color: var(--primary); }
.schedule-note { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }

/* ===== PRICE CARDS ===== */
.prices-section { background: var(--bg-section); }
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 2px solid rgba(0,0,0,0.08);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(253,94,83,0.2); }
.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(253,94,83,0.15);
  background: linear-gradient(135deg, #fff9f8, #fff);
}
.price-card.premium {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.price-card.premium .price-name,
.price-card.premium .price-meta,
.price-card.premium .price-amount { color: #fff; }
.price-card.premium .price-features li { color: rgba(255,255,255,0.75); }
.popular-ribbon {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-card-header { display: flex; flex-direction: column; gap: 4px; }
.price-icon { font-size: 1.8rem; margin-bottom: 4px; }
.price-name { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--dark); }
.price-badge { font-size: 0.75rem; color: var(--text-muted); }
.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price-card.premium .price-amount {
  background: linear-gradient(135deg, var(--highlight), #fff);
  -webkit-background-clip: text;
  background-clip: text;
}
.price-amount span { font-size: 1rem; }
.price-meta { font-size: 0.82rem; color: var(--text-muted); }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.price-features li { font-size: 0.88rem; color: var(--text-muted); }
.price-btn { width: 100%; }

/* ===== CALCULATOR ===== */
.calc-section { background: var(--dark); }
.calc-section .section-label { color: var(--highlight); background: rgba(230,168,215,0.15); }
.calc-section .section-title { color: #fff; }
.calc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.calc-desc { color: rgba(255,255,255,0.65); line-height: 1.8; font-size: 1.05rem; }
.calc-widget {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc-row { display: flex; flex-direction: column; gap: 12px; }
.calc-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.calc-label strong { color: var(--primary); font-size: 1.1rem; }
.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  outline: none;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(253,94,83,0.4);
}
.range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  padding: 0 2px;
}
.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.calc-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.calc-opt:has(input:checked) {
  border-color: var(--primary);
  color: #fff;
  background: rgba(253,94,83,0.15);
}
.calc-opt input { display: none; }
.calc-result {
  background: rgba(253,94,83,0.08);
  border: 1px solid rgba(253,94,83,0.2);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.result-item { display: flex; justify-content: space-between; align-items: center; }
.result-label { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.result-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}
.result-val.accent {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.result-tip { font-size: 0.82rem; color: rgba(255,255,255,0.4); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 12px; }

/* ===== SELL TEXT ===== */
.sell-text-section { background: #fff; }
.sell-text-inner { max-width: 960px; margin: 0 auto; }
.sell-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.sell-p { color: var(--text-muted); line-height: 1.9; font-size: 1rem; margin-bottom: 20px; }
.sell-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sell-quote {
  background: var(--bg-section);
  border-left: 4px solid var(--primary);
  padding: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.7;
}
.sell-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  font-style: normal;
}

/* ===== INFOGRAPHIC ===== */
.infographic-section { background: var(--bg-section); }
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.info-card.visible { opacity: 1; transform: translateY(0); }
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--clr);
  opacity: 0.1;
}
.info-icon { font-size: 2rem; position: relative; }
.info-stat {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.info-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-section { background: #fff; }
.gallery-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,26,46,0.8));
  color: #fff;
  padding: 32px 16px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ===== DIRECTIONS SECTION ===== */
.directions-section { background: var(--bg-section); }
.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.direction-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(0,0,0,0.07);
  transition: all var(--transition);
  cursor: pointer;
}
.direction-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.dir-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.dir-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.direction-card:hover .dir-img-wrap img { transform: scale(1.08); }
.dir-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent, rgba(26,26,46,0.4));
}
.dir-body { padding: 24px; }
.dir-emoji { font-size: 1.5rem; margin-bottom: 8px; }
.dir-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.dir-short { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.dir-btn { width: 100%; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: #fff; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item a { color: var(--primary); text-decoration: underline; }
.contact-form-wrap h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand .logo .logo-text { color: #fff; }
.footer-tagline { color: rgba(255,255,255,0.5); margin: 16px 0 24px; }
.footer-legal { display: flex; flex-direction: column; gap: 4px; font-size: 0.82rem; }
.footer-legal a { color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--primary); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--text-muted);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--primary); color: #fff; }
.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.modal-emoji { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.modal-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-plan-select { display: flex; flex-direction: column; gap: 8px; }
.modal-plan-select label { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.plan-radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.plan-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 2px solid var(--border);
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.plan-radio:has(input:checked) { border-color: var(--primary); color: var(--primary); background: rgba(253,94,83,0.07); }
.plan-radio input { display: none; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  z-index: 9000;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { display: block; color: #fff; margin-bottom: 4px; }
.cookie-text p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn { padding: 10px 18px; font-size: 0.85rem; }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: var(--bg-section);
  padding: 120px 0 60px;
  text-align: center;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin: 32px 0 12px;
}
.legal-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; color: var(--text-muted); line-height: 2; }

/* ===== THANKS PAGE ===== */
.thanks-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: radial-gradient(ellipse at 40% 40%, rgba(253,94,83,0.08), transparent),
              radial-gradient(ellipse at 70% 70%, rgba(230,168,215,0.08), transparent);
}
.thanks-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 64px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.5s ease both;
}
.thanks-emoji { font-size: 4rem; margin-bottom: 24px; display: block; }
.thanks-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
}
.thanks-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes orbit {
  from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}
.animate-in { transition: opacity 0.6s ease, transform 0.6s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-map { flex-wrap: wrap; }
  .step-connector { width: 100%; height: 24px; }
  .connector-line { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
  .connector-arrow { left: 50%; transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .circular-layout { width: 280px; height: 280px; }
  .calc-inner { grid-template-columns: 1fr; gap: 40px; }
  .sell-text-grid { grid-template-columns: 1fr; }
  .sell-quotes { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .burger { display: flex; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .mini-prices { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 20px; }
  .price-cards { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .slide { height: 380px; }
  .slide-caption { padding: 40px 20px 20px; }
  .modal-box { padding: 28px 20px; }
  .thanks-card { padding: 40px 24px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .steps-map { flex-direction: column; }
  .step-connector { display: none; }
}
