/* ==========================================================================
   КРУЖОК — детский развлекательный центр
   Shared stylesheet (tokens + components) for index.html & room_detail.html
   ========================================================================== */

:root {
  --bg: #12102A;
  --bg-card: #1C1A38;
  --bg-section: #160E30;
  --bg-footer: #0A0820;
  --accent: #FF4FCB;
  --accent-dark: #e03ab5;
  --accent-yellow: #FFD93D;
  --accent-cyan: #00E5FF;
  --accent-green: #00F5A0;
  --glow-pink: rgba(255, 79, 203, 0.20);
  --glow-yellow: rgba(255, 217, 61, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 79, 203, 0.30);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.60);
  --text-muted: rgba(255, 255, 255, 0.35);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 100px;
}

* { -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
  font-weight: 400;
}

a { text-decoration: none; }

.container-x {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

::selection { background: var(--accent); color: #fff; }

/* image-slot defaults so empty slots match the theme ----------------------- */
image-slot {
  --slot-bg: #211E40;
  background: #211E40;
  display: block;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.kr-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  z-index: 1000;
  background: rgba(18, 16, 42, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.kr-navbar .navbar-inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.kr-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.kr-brand .kr-logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), #ff7ad9);
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 0 16px var(--glow-pink);
}
.kr-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 8px;
}
.kr-nav-links a {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s;
  white-space: nowrap;
}
.kr-nav-links a:hover { color: var(--accent); }
.kr-nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.kr-phone {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.kr-phone:hover { color: var(--text-primary); }
.kr-city-dd .dropdown-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
}
.kr-city-dd .dropdown-toggle:hover,
.kr-city-dd .dropdown-toggle:focus {
  border-color: var(--border-bright);
  background: var(--glow-pink);
}
.kr-city-dd .dropdown-menu {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px;
}
.kr-city-dd .dropdown-item {
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  padding: 8px 12px;
}
.kr-city-dd .dropdown-item:hover {
  background: var(--glow-pink);
  color: var(--accent);
}
.btn-book-nav {
  background: var(--accent);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  box-shadow: 0 0 16px var(--glow-pink);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-book-nav:hover {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 0 26px var(--glow-pink);
  transform: translateY(-1px);
}
.kr-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #fff;
  width: 40px;
  height: 38px;
  font-size: 18px;
}

/* ==========================================================================
   SECTION HEADER (shared pattern)
   ========================================================================== */
section { position: relative; }
.kr-section { padding: 96px 0; position: relative; overflow: hidden; }
.bg-section { background: var(--bg-section); }
.bg-base { background: var(--bg); }

.section-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 2; }
.section-badge {
  background: var(--glow-pink);
  border: 1px solid var(--border-bright);
  color: var(--accent);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.05;
}
.accent-text { color: var(--accent); }
.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}

/* City filter pills (Bootstrap nav-pills override) ------------------------- */
.kr-city-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.kr-city-filter .nav-link {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-weight: 800;
  font-size: 14px;
  padding: 8px 22px;
  transition: all 0.2s;
}
.kr-city-filter .nav-link:hover { border-color: var(--border-bright); color: var(--accent); }
.kr-city-filter .nav-link.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ==========================================================================
   DECOR BLOBS / STARS
   ========================================================================== */
.kr-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.kr-star {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ==========================================================================
   HERO (index)
   ========================================================================== */
.kr-hero {
  min-height: 100vh;
  padding-top: 68px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 56px 0 32px;
}
.hero-badge {
  background: var(--glow-pink);
  border: 1px solid var(--border-bright);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  display: inline-block;
  margin-bottom: 24px;
  white-space: nowrap;
}
.hero-h1 {
  font-size: clamp(48px, 6vw, 70px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
    .hero-h1 {
      font-size: clamp(38px, 6vw, 70px);
    }
}
.hero-h1 .y { color: var(--accent-yellow); }
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.city-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.city-pill {
  border: 2px solid var(--border);
  background: transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 20px;
  color: var(--text-primary);
  transition: all 0.2s;
}
.city-pill:hover { border-color: var(--accent); color: var(--accent); }
.city-pill.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-pill-primary {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 6px 24px var(--glow-pink);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  border: none;
}
.btn-pill-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 32px var(--glow-pink); }
.btn-pill-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 12px 26px;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-pill-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero image + floating badges */
.hero-visual { position: relative; }
.hero-photo {
  width: 100%;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
}
.float-badge {
  position: absolute;
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 3;
  white-space: nowrap;
  animation: floaty 4s ease-in-out infinite;
}
.float-badge.fb-yellow { background: var(--accent-yellow); color: #12102A; bottom: 28px; left: -18px; }
.float-badge.fb-cyan { background: var(--accent-cyan); color: #12102A; top: 26px; right: -14px; animation-delay: -1.3s; }
.float-badge.fb-pink { background: var(--accent); color: #fff; top: 48%; right: -22px; animation-delay: -2.6s; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }

/* Hero stats */
.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-num {
  font-size: 44px;
  font-weight: 900;
  font-style: italic;
  color: var(--accent-yellow);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-top: 8px;
}

/* ==========================================================================
   ZONE CARDS
   ========================================================================== */
.kr-grid { display: grid; gap: 24px; position: relative; z-index: 2; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  color: var(--text-primary);
  display: block;
}
.zone-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--glow-pink);
}
.zone-card-img { width: 100%; aspect-ratio: 16/9; }
.zone-card-body { padding: 20px; }
.zone-city {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.zone-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.zone-address { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.zone-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.zone-feature {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  color: var(--text-secondary);
}
.btn-zone {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  background: transparent;
  display: inline-block;
  transition: background 0.2s;
}
.btn-zone:hover { background: var(--glow-pink); color: var(--accent); }

/* ==========================================================================
   ROOM CARDS
   ========================================================================== */
.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: block;
  color: var(--text-primary);
}
.room-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--glow-pink);
}
.room-card-imgwrap { position: relative; }
.room-card-img { width: 100%; aspect-ratio: 4/3; display: block;object-fit: cover;}
.room-theme-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  z-index: 3;
}
.room-card-body { padding: 20px; }
.room-name { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.room-city { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.room-price { font-size: 22px; font-weight: 900; color: var(--accent-yellow); margin-bottom: 4px; }
.room-price-weekend { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.btn-book {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 12px;
  font-weight: 800;
  font-size: 14px;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-book:hover { background: var(--accent-dark); box-shadow: 0 6px 20px var(--glow-pink); color: #fff; }

/* ==========================================================================
   LASERTAG PROMO
   ========================================================================== */
.laser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.laser-photo {
  width: 100%;
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 40px rgba(0,229,255,0.20);
}
.laser-badge {
  background: rgba(0,229,255,0.10);
  border: 1px solid rgba(0,229,255,0.30);
  color: var(--accent-cyan);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  display: inline-block;
  margin-bottom: 20px;
}
.laser-h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 20px;
}
.laser-h2 .c { color: var(--accent-cyan); font-style: italic; }
.laser-desc { color: var(--text-secondary); font-size: 16px; line-height: 1.6; margin-bottom: 24px; max-width: 480px; }
.laser-list { list-style: none; padding: 0; margin: 0 0 28px; }
.laser-list li { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.laser-list li i { color: var(--accent-cyan); font-size: 18px; }
.btn-laser {
  background: var(--accent-cyan);
  color: #12102A;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-weight: 800;
  font-size: 15px;
  display: inline-block;
  transition: box-shadow 0.2s, transform 0.15s;
}
.btn-laser:hover { box-shadow: 0 0 26px rgba(0,229,255,0.40); color: #12102A; transform: translateY(-2px); }

/* ==========================================================================
   ACTIVITY CARDS
   ========================================================================== */
.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.activity-card:hover { border-color: var(--border-bright); transform: translateY(-4px); }
.activity-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.activity-title { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.activity-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ==========================================================================
   EVENT CARDS
   ========================================================================== */
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.event-card:hover { border-color: var(--accent-yellow); box-shadow: 0 8px 32px var(--glow-yellow); transform: translateY(-4px); }
.event-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--glow-yellow);
  border: 2px solid rgba(255,217,61,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px;
}
.event-title { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.event-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; position: relative; z-index: 2; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item image-slot { width: 100%; aspect-ratio: 4/3; transition: transform 0.3s; display: block; }
.gallery-item:hover image-slot { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,79,203,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 32px; color: #fff; }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.kr-accordion { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-button {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 15px;
  padding: 20px 22px;
}
.accordion-button:not(.collapsed) { background: var(--bg-card); color: var(--accent); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--border); }
.accordion-button::after { filter: invert(1); opacity: 0.6; }
.accordion-body { background: var(--bg-card); color: var(--text-secondary); font-size: 14px; line-height: 1.7; padding-top: 0; }

/* ==========================================================================
   CONTACTS
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; position: relative; z-index: 2; }
.contact-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-row i { color: var(--accent); font-size: 20px; width: 24px; }
.contact-row .ct-val { font-size: 17px; font-weight: 700; }
.contact-row .ct-val:hover { color: var(--accent); }
.social-circles { display: flex; gap: 12px; margin-top: 22px; }
.social-circles a {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--text-primary); font-size: 18px;
  transition: all 0.2s;
}
.social-circles a:hover { border-color: var(--accent); color: var(--accent); background: var(--glow-pink); }

.kr-form-input, .kr-form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
}
.kr-form-input::placeholder, .kr-form-textarea::placeholder { color: var(--text-muted); }
.kr-form-input:focus, .kr-form-textarea:focus { border-color: var(--accent); }

.city-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; position: relative; z-index: 2; }
.city-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.city-info-card h4 { font-size: 18px; font-weight: 900; margin-bottom: 6px; }
.city-info-card p { font-size: 13px; color: var(--text-secondary); margin: 0 0 4px; line-height: 1.5; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.kr-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-slogan { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin: 16px 0 20px; max-width: 320px; }
.footer-col h5 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-secondary); font-size: 14px; font-weight: 600; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-bottom a { color: var(--text-secondary); font-weight: 700; }
.footer-bottom a:hover { color: var(--accent); }

/* ==========================================================================
   ENTRANCE ANIMATION
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; }
  .reveal.in { animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) forwards; }
}

/* ==========================================================================
   ROOM DETAIL PAGE
   ========================================================================== */
.room-detail-wrap { padding-top: 100px; padding-bottom: 80px; }
.room-detail-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: start; }

.kr-breadcrumb { display: flex; align-items: center; gap: 8px; font-family: monospace; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.kr-breadcrumb a { color: var(--text-secondary); }
.kr-breadcrumb a:hover { color: var(--accent); }
.kr-breadcrumb .sep { color: var(--text-muted); }
.kr-breadcrumb .current { color: var(--text-primary); }

.room-detail-h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.02; margin-bottom: 18px; }
.room-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.room-badge-city, .room-badge-category {
  font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-pill);
}
.room-badge-city { background: rgba(0,229,255,0.10); border: 1px solid rgba(0,229,255,0.30); color: var(--accent-cyan); }
.room-badge-category { background: var(--glow-pink); border: 1px solid var(--border-bright); color: var(--accent); }

.room-hero-photo { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

.room-pricing { margin: 28px 0; }
.price-main { font-size: 40px; font-weight: 900; color: var(--accent-yellow); line-height: 1; }
.price-main span { font-size: 18px; color: var(--text-muted); font-weight: 400; }
.price-weekend { font-size: 14px; color: var(--text-secondary); margin-top: 8px; }

.room-phone-link { color: var(--text-primary); font-weight: 700; font-size: 20px; display: inline-flex; align-items: center; gap: 10px; }
.room-phone-link i { color: var(--accent); }
.room-phone-link:hover { color: var(--accent); }

.room-desc { margin-top: 8px; }
.room-desc h3 { font-size: 22px; font-weight: 800; margin: 28px 0 14px; }
.room-desc p { color: var(--text-secondary); line-height: 1.8; font-size: 16px; margin-bottom: 16px; }
.room-desc ul { color: var(--text-secondary); line-height: 1.9; font-size: 16px; padding-left: 20px; }

/* Booking widget */
.booking-widget {
  position: sticky;
  top: 88px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 8px 40px var(--glow-pink);
}
.booking-widget-title { font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.booking-widget-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }
.booking-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.booking-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
}
.booking-input::placeholder { color: var(--text-muted); }
.booking-input:focus { border-color: var(--accent); }
input[type="date"].booking-input::-webkit-calendar-picker-indicator { filter: invert(0.6); cursor: pointer; }
.time-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.time-slot {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 4px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Nunito', sans-serif;
}
.time-slot:hover:not(.disabled) { border-color: var(--accent); color: var(--accent); background: var(--glow-pink); }
.time-slot.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.time-slot.disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
.btn-book-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--glow-pink);
}
.btn-book-submit:hover { background: var(--accent-dark); box-shadow: 0 6px 28px var(--glow-pink); }
.booking-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 12px; margin-bottom: 0; }

.booking-success {
  background: rgba(0,245,160,0.10);
  border: 1px solid rgba(0,245,160,0.35);
  color: var(--accent-green);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
  display: none;
}

.room-nav {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.nav-room-link { color: var(--text-secondary); font-weight: 700; font-size: 15px; transition: color 0.15s; }
.nav-room-link:hover { color: var(--accent); }
.btn-all-rooms {
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-weight: 700;
  transition: border-color 0.15s, color 0.15s;
}
.btn-all-rooms:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid, .laser-grid, .contact-grid, .room-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-visual { display: none; }
  .booking-widget { position: static; }
  .room-detail-grid { display: flex; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .kr-nav-links, .kr-phone { display: none; }
  .kr-burger { display: block; }
  .kr-section { padding: 64px 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .city-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .room-nav { flex-direction: column; }
  .kr-brand img { height: 30px !important; }
}

/* ===== PRICING SECTION ===== */
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.tariff-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tariff-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(255,79,203,0.15); }
.tariff-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(255,79,203,0.2);
}
.tariff-popular {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 3px 14px;
  border-radius: var(--radius-pill);
}
.tariff-name { font-size: 20px; font-weight: 900; margin-bottom: 8px; }
.tariff-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.tariff-price { font-size: 28px; font-weight: 900; color: var(--accent-yellow); }
.tariff-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.tariff-price-alt { font-size: 13px; color: var(--text-muted); margin: 4px 0 16px; }
.tariff-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.tariff-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.tariff-list li i { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform 0.2s;
}
.package-card:hover { transform: translateY(-3px); }
.package-emoji { font-size: 36px; margin-bottom: 12px; }
.package-name { font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.package-includes { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.package-price { font-size: 20px; font-weight: 900; color: var(--accent-cyan); }

.block-subhead {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 20px;
  color: var(--text-primary);
}
.block-subhead.yellow { color: var(--accent-yellow); }
.block-subhead.green { color: #00F5A0; }
.block-gap { margin-top: 52px; }

/* ===== PAID/FREE ZONES ===== */
.zones-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) { .zones-split { grid-template-columns: 1fr; } }

.paid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .paid-grid { grid-template-columns: 1fr; } }

.paid-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.paid-card:hover { border-color: var(--accent-yellow); transform: translateY(-3px); }

/* Фото — полная ширина с отступами и скруглением */
.paid-card-img {
  width: calc(100% - 16px);
  margin: 8px auto 0;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
}
/* Заглушка если нет фото */
.paid-card-noimg {
  aspect-ratio: 4/3;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}
.paid-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pc-icon { font-size: 32px; }
.paid-name { font-size: 14px; font-weight: 900; }
.paid-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.paid-price { font-size: 13px; font-weight: 900; color: var(--accent-yellow); margin-top: auto; }

.free-panel {
  background: var(--bg-card);
  border: 1px solid rgba(0,245,160,0.25);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.free-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.free-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.free-list li i { color: #00F5A0; flex-shrink: 0; }
/* Маленькое фото в бесплатной зоне */
.free-item-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.free-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== ZONE CARD (addresses) ===== */
.zone-card { display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; color: inherit; }
.zone-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.zone-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.zone-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.zone-city { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.zone-name { font-size: 17px; font-weight: 900; }
.zone-details { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.zone-detail { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.zone-detail i { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.zone-detail.stop i { color: var(--accent-yellow); }
.zone-features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.zone-feature { background: var(--bg-section); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 3px 10px; font-size: 11px; color: var(--text-secondary); }
.btn-zone { display: inline-block; margin-top: auto; padding-top: 14px; font-size: 13px; font-weight: 900; color: var(--accent); }

/* ===== HERO BLOB COMPOSITION ===== */
.hvb-wrap {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* 1. Задний план — большой розовый blob */
.hvb-blob-pink {
position: absolute;
    width: 85%;
    height: 38%;
    background: #FF4FCB;
    border-radius: 68% 32% 58% 42% / 55% 65% 35% 45%;
    bottom: 6%;
    left: 20%;
    z-index: 0;
}

/* 2. Поверх — полупрозрачный сиреневый blob */
.hvb-blob-violet {
  position: absolute;
  width: 70%;
  height: 75%;
  background: rgba(120, 60, 220, 0.45);
  border-radius: 45% 55% 40% 60% / 60% 40% 65% 35%;
  top: 8%;
  left: 14%;
  z-index: 1;
}

/* 3. Фото детей поверх блобов — органичная форма краёв */
.hvb-main {
    position: relative;
    z-index: 2;
    /* width: 62%; */
    max-width: 390px;
    object-fit: contain;
    pointer-events: none;
    border-radius: 53% 54% 44% 66% / 55% 76% 29% 49%;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.45));
}

.hvb-bubble {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.hvb-bubble img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  display: block;
}
.hvb-bubble span {
  background: #fff;
  color: #12102A;
  font-size: 12px;
  font-weight: 800;
  border-radius: 20px;
  padding: 3px 11px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  white-space: nowrap;
  line-height: 1.5;
}

/* Анимации кружков */
.hvb-bubble:nth-child(4)  { animation: hvb-float  3.0s ease-in-out infinite alternate; }
.hvb-bubble:nth-child(5)  { animation: hvb-float  3.6s ease-in-out infinite alternate-reverse; }
.hvb-bubble:nth-child(6)  { animation: hvb-float2 4.1s ease-in-out infinite alternate; }
.hvb-bubble:nth-child(7)  { animation: hvb-float  3.3s ease-in-out infinite alternate-reverse; }
.hvb-bubble:nth-child(8)  { animation: hvb-float2 3.8s ease-in-out infinite alternate; }
@keyframes hvb-float  { from { transform: translateY(0);    } to { transform: translateY(-10px); } }
@keyframes hvb-float2 { from { transform: translateY(-5px); } to { transform: translateY( 8px); } }

/* Звёздочки — 4-лучевые, побольше */
.hvb-star {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
/* базовый размер и цвет */
.hvb-star        { font-size: 32px; color: #FFD93D; animation: hvb-twinkle 2.4s ease-in-out infinite alternate; }
.hvb-star.hvb-s2 { font-size: 20px; color: #00F0FF; }
.hvb-star.hvb-s3 { font-size: 44px; color: #fff;    }
.hvb-star.hvb-s4 { font-size: 16px; color: #FF4FCB; }

/* Звёздочки через псевдоэлементы (дополнительные без лишних тегов) */
.hvb-wrap::before {
  content: "✦";
  position: absolute;
  top: 30%;
  left: 5%;
  font-size: 26px;
  color: #00F0FF;
  z-index: 4;
  animation: hvb-twinkle 3.1s ease-in-out infinite alternate;
  pointer-events: none;
}
.hvb-wrap::after {
  content: "✦";
  position: absolute;
  bottom: 18%;
  right: 8%;
  font-size: 20px;
  color: #FFD93D;
  z-index: 4;
  animation: hvb-twinkle 2.7s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes hvb-twinkle {
  from { opacity: 0.4; transform: scale(0.8) rotate(-8deg); }
  to   { opacity: 1;   transform: scale(1.3) rotate(5deg); }
}

/* ===== HERO FEATURES ROW ===== */
.hero-features {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 110px;
}
.hero-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hero-feature-text { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }
.hero-feature-title { font-weight: 800; color: var(--text-primary); font-size: 13px; display: block; margin-bottom: 2px; }

/* ===== HERO STATS BAR ===== */
.hero-stats-bar { background: var(--bg-section); padding: 0; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-stat {
  background: var(--bg-card);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-stat-num { font-size: 26px; font-weight: 900; line-height: 1; }
.hero-stat-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-top: 3px; }
.hero-stat-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 900px) {
  .hvb-wrap { min-height: 380px; }
  .hvb-bubble img { width: 58px; height: 58px; }
  .hvb-bubble span { font-size: 10px; padding: 2px 8px; }
  .hvb-main { width: 55%; }
}
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hvb-wrap { min-height: 300px; }
  .hero-features { gap: 12px; }
}
