/* =========================================
   ОЛИМПИК СТАР — MAIN STYLESHEET
   Pure CSS, no frameworks, no Tailwind
   ========================================= */

/* === VARIABLES === */
:root {
  --gold: #C6A664;
  --gold-light: #FCDD76;
  --peach: #EFCDB8;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --dark-3: #0f3460;
  --text: #2d2d2d;
  --text-light: #666;
  --white: #ffffff;
  --bg: #fafafa;
  --bg-2: #f5f0e8;
  --border: rgba(198, 166, 100, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(198, 166, 100, 0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}
.section-tag {
  display: inline-block;
  background: rgba(198,166,100,0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(198,166,100,0.3);
}
.section-tag.light {
  background: rgba(255,255,255,0.1);
  color: var(--gold-light);
  border-color: rgba(252,221,118,0.3);
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle.white { color: rgba(255,255,255,0.75); }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}
.accent-text { color: var(--gold); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, #a8893a 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(198,166,100,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(198,166,100,0.45);
  background: linear-gradient(135deg, #d4b572 0%, #C6A664 100%);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-full { width: 100%; }
.btn-primary.btn-lg { padding: 18px 40px; font-size: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline.btn-full { width: 100%; }
.btn-outline.btn-lg { padding: 16px 40px; font-size: 16px; }

.btn-sm {
  display: inline-flex;
  align-items: center;
  background: rgba(198,166,100,0.1);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-sm:hover { background: var(--gold); color: white; }

.btn-direction {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 12px;
}
.btn-direction:hover { background: var(--gold-light); color: var(--dark); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 900px;
  background: var(--dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(198,166,100,0.2);
  transition: var(--transition);
}
.cookie-banner.hidden { transform: translateX(-50%) translateY(150%); opacity: 0; pointer-events: none; }
.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cookie-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.btn-cookie-primary {
  background: var(--gold);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-cookie-primary:hover { background: #d4b572; }
.btn-cookie-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.btn-cookie-secondary:hover { background: rgba(255,255,255,0.2); }
.btn-cookie-outline {
  background: transparent;
  color: var(--gold-light);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--gold-light);
  transition: var(--transition);
}
.btn-cookie-outline:hover { background: rgba(252,221,118,0.1); }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.logo-sub { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold-light); }
.header-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(198,166,100,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(239,205,184,0.08) 0%, transparent 50%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0.4;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-20px) rotate(360deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,166,100,0.15);
  border: 1px solid rgba(198,166,100,0.4);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-size: clamp(38px, 7vw, 80px);
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: fadeInUp 0.8s ease 0.8s both;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(198,166,100,0.3);
}
.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: 12px;
  animation: fadeInUp 1s ease 1.2s both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === SECTION HOW (Steps) === */
.section-how {
  padding: 100px 0;
  background: var(--white);
}
.steps-map {
  display: flex;
  gap: 0;
  margin-bottom: 64px;
  position: relative;
  flex-wrap: wrap;
}
.step-item {
  flex: 1;
  min-width: 180px;
  position: relative;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.step-item.visible { opacity: 1; transform: translateY(0); }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(198,166,100,0.12);
  line-height: 1;
  margin-bottom: 4px;
}
.step-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.step-content h3 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
.step-connector {
  position: absolute;
  top: 52px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(198,166,100,0.3) 100%);
}
.step-item:last-child .step-connector { display: none; }

/* === MINI PRICE CARDS === */
.mini-prices {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.mini-price-card {
  flex: 1;
  min-width: 200px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  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;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.mini-price-card:hover::before { transform: scaleX(1); }
.mini-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-price-card.featured {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-color: var(--gold);
}
.mini-price-card.featured h4,
.mini-price-card.featured .mini-price-value { color: white; }
.mini-price-card.featured .mini-price-features li { color: rgba(255,255,255,0.75); }
.mini-price-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.mini-price-tag.popular {
  background: var(--gold);
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
}
.mini-price-icon { font-size: 28px; margin-bottom: 12px; }
.mini-price-card h4 { font-size: 16px; color: var(--dark); margin-bottom: 12px; }
.mini-price-value { margin-bottom: 16px; }
.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}
.mini-price-features { display: flex; flex-direction: column; gap: 6px; }
.mini-price-features li { font-size: 13px; color: var(--text-light); }

/* === BOOKING FORM === */
.booking-form-wrap {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(198,166,100,0.2);
  box-shadow: var(--shadow-lg);
}
.booking-form-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.booking-form-left {
  flex: 1;
  min-width: 0;
}
.booking-form-left h3 {
  font-size: 26px;
  color: white;
  margin-bottom: 12px;
}
.booking-form-left p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.form-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-trust span {
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 500;
}
.booking-form {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: white;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.form-privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 4px;
}
.form-privacy a { color: var(--gold-light); text-decoration: underline; }

/* === SLIDER === */
.section-slider {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1040 100%);
  padding: 80px 0 0;
  overflow: hidden;
}
.slider-header { padding-bottom: 48px; }
.slider-container {
  overflow: hidden;
  width: 100%;
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.slide {
  min-width: 100%;
  position: relative;
}
.slide-img-wrap {
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: var(--dark-3);
}
.slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.slide:hover .slide-img-wrap img { transform: scale(1.05); }
.slide-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}
.slide-img-placeholder span { font-size: 80px; }
.slide-img-placeholder p { font-size: 18px; color: rgba(255,255,255,0.7); font-family: 'Playfair Display', serif; }
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 60px 48px 40px;
  color: white;
}
.slide-caption h3 {
  font-size: 26px;
  margin-bottom: 8px;
  color: white;
}
.slide-caption p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 0;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(198,166,100,0.5);
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.slider-btn:hover { background: var(--gold); color: white; border-color: var(--gold); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* === FAQ ACCORDION === */
.section-faq {
  padding: 100px 0;
  background: var(--bg-2);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-left {}
.faq-contact-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}
.faq-contact-icon { font-size: 28px; }
.faq-contact-box strong { display: block; font-size: 15px; margin-bottom: 4px; }
.faq-contact-box p { font-size: 14px; color: var(--text-light); }
.faq-contact-box a { color: var(--gold); font-weight: 600; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.accordion-item:hover { border-color: var(--gold); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-trigger.active { color: var(--gold); }
.accordion-icon {
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
}
.accordion-trigger.active .accordion-icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-content.open { max-height: 300px; }
.accordion-content p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* === ABOUT (Circular) === */
.section-about { padding: 100px 0; background: white; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-circular {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}
.circular-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 2;
}
.circular-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(198,166,100,0.15), var(--shadow-lg);
}
.circular-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.circular-items {
  position: absolute;
  inset: 0;
  animation: rotateSlow 30s linear infinite;
}
.circular-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  text-align: center;
  transform-origin: -100px 0;
  transform: rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle)));
  margin-top: -30px;
  margin-left: -50px;
}
.circular-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 6px;
  box-shadow: 0 0 8px rgba(198,166,100,0.5);
}
.circular-text strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
  font-weight: 700;
}
.circular-text span { font-size: 12px; color: var(--text-light); }
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.circular-items:hover { animation-play-state: paused; }
.about-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.value-icon { font-size: 24px; }
.about-value strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--dark); }
.about-value span { font-size: 13px; color: var(--text-light); }

/* === SCHEDULE TABLE === */
.section-schedule {
  padding: 100px 0;
  background: var(--bg);
}
.schedule-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-light);
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
.schedule-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 700px;
}
.schedule-table thead tr {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}
.schedule-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.schedule-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tbody tr { transition: var(--transition); }
.schedule-table tbody tr:hover { background: rgba(198,166,100,0.05); }
.schedule-table tbody tr.hidden { display: none; }
.style-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.style-tag.hiphop { background: rgba(59,130,246,0.1); color: #3b82f6; }
.style-tag.contemporary { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.style-tag.ladydance { background: rgba(236,72,153,0.1); color: #ec4899; }
.style-tag.gogo { background: rgba(245,158,11,0.1); color: #d97706; }
.style-tag.reggaeton { background: rgba(239,68,68,0.1); color: #dc2626; }
.style-tag.kpop { background: rgba(16,185,129,0.1); color: #059669; }
.level-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.level-badge.beginner { background: rgba(34,197,94,0.1); color: #16a34a; }
.level-badge.medium { background: rgba(234,179,8,0.1); color: #ca8a04; }
.level-badge.advanced { background: rgba(239,68,68,0.1); color: #dc2626; }

/* === PRICES === */
.section-prices {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-prices::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,166,100,0.07) 0%, transparent 70%);
}
.section-prices .section-title { color: white; }
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198,166,100,0.4);
  background: rgba(255,255,255,0.06);
}
.price-card.featured {
  background: linear-gradient(135deg, rgba(198,166,100,0.15) 0%, rgba(198,166,100,0.05) 100%);
  border-color: rgba(198,166,100,0.5);
}
.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.price-card-header { margin-bottom: 24px; }
.price-card-icon { font-size: 32px; margin-bottom: 12px; }
.price-card-header h3 { font-size: 18px; color: white; margin-bottom: 16px; }
.price-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-currency { font-size: 20px; color: var(--gold); }
.price-per { font-size: 13px; color: rgba(255,255,255,0.5); }
.price-card-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-card-features li { font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.price-card-features li.muted { color: rgba(255,255,255,0.35); }
.check { color: var(--gold); font-weight: 700; }

/* === CALCULATOR === */
.calculator-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,166,100,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.calculator-inner { padding: 48px; }
.calc-header { margin-bottom: 36px; }
.calc-header h3 { font-size: 24px; color: white; margin-bottom: 8px; }
.calc-header p { font-size: 15px; color: rgba(255,255,255,0.6); }
.calc-body { display: flex; flex-direction: column; gap: 28px; margin-bottom: 36px; }
.calc-group { display: flex; flex-direction: column; gap: 12px; }
.calc-group label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); }
.calc-options { display: flex; gap: 10px; flex-wrap: wrap; }
.calc-opt {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.calc-opt.active { background: var(--gold); color: white; border-color: var(--gold); }
.calc-opt:hover:not(.active) { border-color: var(--gold); color: var(--gold); }
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 2px 8px rgba(198,166,100,0.4);
  cursor: pointer;
}
.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.calc-result {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.calc-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-result-item span { font-size: 14px; color: rgba(255,255,255,0.6); }
.calc-result-item strong { font-size: 18px; color: var(--gold); font-weight: 700; }

/* === SELL TEXT === */
.section-selltext {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-2) 0%, #0d0b1a 100%);
  position: relative;
  overflow: hidden;
}
.section-selltext::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,205,184,0.06) 0%, transparent 70%);
}
.selltext-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.selltext-left { position: sticky; top: 120px; }
.selltext-right { display: flex; flex-direction: column; gap: 36px; }
.selltext-block {
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: var(--transition);
}
.selltext-block:hover {
  background: rgba(255,255,255,0.05);
  transform: translateX(4px);
}
.selltext-block h3 {
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.selltext-block p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* === DIRECTIONS === */
.section-directions {
  padding: 100px 0;
  background: var(--bg);
}
.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.direction-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow);
}
.direction-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.direction-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--dark-2);
}
.direction-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.direction-card:hover .direction-card-img img { transform: scale(1.1); }
.dir-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}
.dir-img-placeholder span { font-size: 64px; }
.direction-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.7) 100%);
}
.direction-info {
  background: white;
  padding: 24px;
}
.direction-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.direction-info h3 { font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.direction-info p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* === INFOGRAPHIC === */
.section-infographic {
  padding: 100px 0;
  background: var(--bg-2);
}
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.infographic-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.infographic-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.infographic-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198,166,100,0.1);
  border-radius: 12px;
  flex-shrink: 0;
}
.infographic-bar-wrap {
  display: none;
}
.infographic-text h4 { font-size: 16px; color: var(--dark); margin-bottom: 6px; }
.infographic-text p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.infographic-percent {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

/* === GALLERY === */
.section-gallery {
  padding: 100px 0;
  background: white;
}
.gallery-hr {
  border: none;
  border-top: 2px solid var(--border);
  margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-img-wrap {
  position: relative;
  height: 320px;
  background: var(--dark-2);
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.08); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  font-size: 60px;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 32px 14px 14px;
  text-align: center;
}

/* === REVIEWS === */
.section-reviews {
  padding: 100px 0;
  background: var(--bg-2);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 8px; }
.review-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 12px;
}
.review-content strong { display: block; font-size: 15px; color: var(--dark); }
.review-content span { font-size: 13px; color: var(--gold); }

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
}
.footer-brand .logo-name { color: var(--gold); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 20px 0 24px;
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-contact a:hover { color: var(--gold); }
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-nav-col { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-nav-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-nav-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* === MODALS === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--dark);
  border-radius: var(--radius-lg);
  z-index: 2001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(198,166,100,0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.modal-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  z-index: 10;
}
.modal-close:hover { background: rgba(255,255,255,0.2); color: white; }
.modal-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.modal-icon { font-size: 40px; margin-bottom: 12px; }
.modal-header h2 { font-size: 26px; color: white; margin-bottom: 8px; }
.modal-tag {
  display: inline-block;
  background: rgba(198,166,100,0.15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.modal-body { padding: 28px 36px 36px; }
.modal-body > p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.radio-opt:hover { border-color: var(--gold); background: rgba(198,166,100,0.05); }
.radio-opt input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

/* === ANIMATIONS for scroll === */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.anim-left { opacity: 0; transition: all 0.7s ease; transform: translateX(-40px); }
.anim-right { opacity: 0; transition: all 0.7s ease; transform: translateX(40px); }
.anim-up { opacity: 0; transition: all 0.7s ease; transform: translateY(40px); }
.anim-scale { opacity: 0; transition: all 0.7s ease; transform: scale(0.85); }
.anim-left.visible, .anim-right.visible, .anim-up.visible, .anim-scale.visible {
  opacity: 1;
  transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .about-layout { gap: 40px; }
  .faq-layout { gap: 40px; }
}
@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; }
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,46,0.97);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 22px; color: white; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .about-circular { width: 300px; height: 300px; }
  .circular-item { width: 80px; margin-left: -40px; }
  .circular-item { transform: rotate(var(--angle)) translateX(120px) rotate(calc(-1 * var(--angle))); }
  .faq-layout { grid-template-columns: 1fr; }
  .selltext-layout { grid-template-columns: 1fr; }
  .selltext-left { position: static; }
  .booking-form-inner { flex-direction: column; gap: 32px; }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .steps-map { flex-direction: column; }
  .step-connector { display: none; }
  .price-cards { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-divider { height: 32px; }
  .booking-form-wrap { padding: 28px 20px; }
  .mini-prices { flex-direction: column; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .cookie-inner { flex-direction: column; }
  .calculator-inner { padding: 28px 20px; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* === SELECTION === */
::selection { background: var(--gold); color: white; }
