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

/* Плавная прокрутка для всего сайта */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Отступ для фиксированной шапки */
}

body {
  font-family: 'Noto Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  overflow-x: hidden;
  background: #000;
  color: #fff;
}

/* Оптимизация плавной прокрутки для производительности */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Отключение плавной прокрутки для пользователей с предпочтением reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Скрываем стандартный курсор только на устройствах с мышью */
@media (pointer: fine) {
  body {
    cursor: none;
  }
}

/* Кастомный курсор - улучшенная версия */
.cursor {
  width: 20px; 
  height: 20px; 
  border: 2px solid rgba(212, 175, 55, 0.8); 
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  position: fixed; 
  pointer-events: none; 
  z-index: 100000; 
  mix-blend-mode: difference;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  display: block;
  transform: translate(-50%, -50%);
  left: 0;
  top: 0;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6),
              0 0 30px rgba(212, 175, 55, 0.3);
}

.cursor.hover {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8),
              0 0 50px rgba(212, 175, 55, 0.4);
}

.cursor-follower {
  width: 40px; 
  height: 40px; 
  border: 1px solid rgba(212, 175, 55, 0.4); 
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  position: fixed; 
  pointer-events: none; 
  z-index: 99999; 
  transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.3s;
  mix-blend-mode: difference;
  opacity: 1;
  display: block;
  transform: translate(-50%, -50%);
  left: 0;
  top: 0;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4),
              inset 0 0 15px rgba(212, 175, 55, 0.1);
}

.cursor-follower.hover {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5),
              inset 0 0 25px rgba(212, 175, 55, 0.15);
}

/* Современная burger button для мобильных */
.burger{
  display:none;
  width:48px;
  height:48px;
  border-radius:12px;
  border:none;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  flex-direction:column;
  gap:5px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  margin-left:12px;
  position:relative;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color:transparent;
  z-index:1001;
}
.burger:active{
  transform:scale(0.95);
  background:rgba(212,175,55,0.2);
}
.burger-line{
  width:24px;
  height:3px;
  background:linear-gradient(90deg, #fff 0%, #d4af37 100%);
  border-radius:2px;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin:center;
  box-shadow:0 2px 4px rgba(0,0,0,0.2);
}

/* Transform burger to X when active */
.burger.open{
  background:rgba(212,175,55,0.15);
  box-shadow:0 4px 20px rgba(212,175,55,0.3);
}
.burger.open .burger-line{
  background:linear-gradient(90deg, #d4af37 0%, #f4e5b5 100%);
  box-shadow:0 2px 8px rgba(212,175,55,0.5);
}
.burger.open .burger-line:nth-child(1){
  transform:translateY(8px) rotate(45deg);
  width:24px;
}
.burger.open .burger-line:nth-child(2){
  opacity:0;
  transform:scaleX(0);
  width:0;
}
.burger.open .burger-line:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
  width:24px;
}

/* Hover эффект для десктопа */
@media (hover: hover) and (pointer: fine) {
  .burger:hover{
    background:rgba(255,255,255,0.12);
    transform:scale(1.05);
  }
  .burger:hover .burger-line{
    background:linear-gradient(90deg, #d4af37 0%, #f4e5b5 100%);
  }
  .burger.open:hover{
    background:rgba(212,175,55,0.2);
    box-shadow:0 6px 25px rgba(212,175,55,0.4);
  }
}

/* added: mobile menu overlay */
.mobile-menu{
  position:fixed;inset:0;background:rgba(0,0,0,0.85);backdrop-filter:blur(6px);display:none;align-items:flex-start;justify-content:center;padding-top:80px;z-index:2000;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active{
  display:flex;
  opacity: 1;
}
.mobile-menu-inner{
  width:100%;max-width:360px;background:linear-gradient(135deg,#0f0f0f,#0a0a0a);margin:0 20px;border-radius:12px;padding:24px;border:1px solid rgba(212,175,55,0.12);display:flex;flex-direction:column;gap:14px;
  animation: slideUpMenu 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

@keyframes slideUpMenu {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-link{color:#fff;text-decoration:none;font-size:18px;padding:12px 16px;border-radius:8px;min-height:44px;display:flex;align-items:center;transition:all 0.2s}
.mobile-link:hover{background:rgba(212,175,55,0.06);color:#d4af37}

/* Мобильный dropdown - улучшения */
.mobile-dropdown-trigger {
  justify-content: space-between;
}
.mobile-book-btn{background:linear-gradient(135deg,#d4af37 0%,#f4e5b5 100%);color:#000 !important;font-weight:700;letter-spacing:2px;text-align:center;margin-top:8px}
.mobile-book-btn:hover{background:linear-gradient(135deg,#f4e5b5 0%,#d4af37 100%);color:#000 !important}
.mobile-close{margin-top:8px;padding:12px 20px;border-radius:8px;border:none;background:transparent;color:#fff;align-self:flex-end;cursor:pointer;min-width:44px;min-height:44px;display:flex;align-items:center;justify-content:center;transition:all 0.2s}

/* show burger and hide nav-links on small screens */
@media (max-width:768px){
  .burger{
    display:flex !important;
    width:48px;
    height:48px;
    min-width:48px;
    min-height:48px;
  }
  .nav-links{display:none}
  /* ensure nav layout retains spacing */
  nav{
    padding:12px 14px;
    align-items:center;
    gap:12px;
  }
  .logo {
    height: 45px;
    padding: 5px 0;
  }
  .logo-image {
    max-height: 45px;
    max-width: 180px;
    min-width: 120px;
  }
  .logo-text {
    font-size: 18px;
    letter-spacing: 1.5px;
  }
}

/* Современная прозрачная шапка - улучшенная версия */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset,
              0 8px 32px rgba(0, 0, 0, 0.2);
  gap: 40px;
}

/* Эффект при скролле - улучшенный */
nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  padding: 12px 50px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4),
              0 1px 0 rgba(212, 175, 55, 0.15) inset,
              0 0 60px rgba(212, 175, 55, 0.1);
}

/* Современный логотип из изображения */
.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 60px;
  line-height: 1;
  padding: 8px 0;
}

.logo-image {
  height: 100%;
  max-height: 60px;
  width: auto;
  max-width: 350px;
  min-width: 150px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 2px rgba(255, 255, 255, 0.1));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: logoFadeIn 1s ease-out;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Текстовый fallback (скрыт, если есть изображение) */
.logo-text {
  display: none;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #fff 0%, #d4af37 40%, #f4e5b5 70%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

/* Декоративный элемент под логотипом (отключен для графического логотипа) */
.logo::after {
  display: none;
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

@keyframes logoUnderline {
  to {
    width: 100%;
  }
}

/* Hover эффект для логотипа */
.logo:hover {
  transform: scale(1.03);
}

.logo:hover .logo-image {
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 30px rgba(212, 175, 55, 0.4))
          brightness(1.1);
  transform: translateY(-1px);
  -webkit-filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6))
                  drop-shadow(0 0 30px rgba(212, 175, 55, 0.4))
                  brightness(1.1);
}

/* Эффект при скролле */
nav.scrolled .logo {
  height: 50px;
  padding: 5px 0;
}

nav.scrolled .logo-image {
  max-height: 50px;
  max-width: 280px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 1px rgba(255, 255, 255, 0.1));
  -webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6))
                  drop-shadow(0 0 1px rgba(255, 255, 255, 0.1));
}

/* Fallback если изображение не загрузилось */
.logo-image:not([src]),
.logo-image[src=""],
.logo-image[src*="undefined"] {
  display: none;
}

.logo-image:not([src]) ~ .logo-text,
.logo-image[src=""] ~ .logo-text,
.logo-image[src*="undefined"] ~ .logo-text {
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* ==================== DROPDOWN МЕНЮ ==================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
}

.dropdown-arrow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 12px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(212, 175, 55, 0.15) inset,
              0 0 40px rgba(212, 175, 55, 0.1);
  z-index: 1001;
  pointer-events: auto;
}

/* Создаём невидимую "мостиковую" область между триггером и меню для предотвращения закрытия */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
  pointer-events: auto;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-left-color: #d4af37;
  color: #f4e5b5;
  padding-left: 24px;
  transform: translateX(4px);
  box-shadow: -4px 0 12px rgba(212, 175, 55, 0.2);
}

.nav-dropdown-menu a:active {
  background: rgba(212, 175, 55, 0.25);
}

/* Мобильная версия dropdown - оптимизированная */
.mobile-dropdown {
  width: 100%;
  position: relative;
}

.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(212, 175, 55, 0.1);
  user-select: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-dropdown-trigger:active {
  background: rgba(212, 175, 55, 0.08);
}

.mobile-dropdown-arrow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
  flex-shrink: 0;
  margin-left: 8px;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.3s ease;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  border-left: 3px solid rgba(212, 175, 55, 0.4);
  margin-top: 8px;
  margin-left: 16px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-5px);
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 600px;
  padding-top: 8px;
  padding-bottom: 8px;
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3),
              inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.mobile-dropdown-item {
  padding: 14px 20px !important;
  font-size: 15px !important;
  opacity: 0.85;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  margin-left: 0;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(212, 175, 55, 0.15);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.mobile-dropdown-item:active {
  opacity: 1;
  background: rgba(212, 175, 55, 0.15);
  border-left-color: #d4af37;
  transform: translateX(4px);
  padding-left: 24px !important;
}

.mobile-dropdown-item:hover {
  opacity: 1;
  background: rgba(212, 175, 55, 0.1);
  border-left-color: rgba(212, 175, 55, 0.6);
}

/* Улучшаем визуальное разделение элементов */
.mobile-dropdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Действия в шапке (телефон, бронирование) */
.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Индикатор "Работаем 24/7" */
.online-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.online-text {
  font-size: 11px;
  letter-spacing: 1.5px;
}

.online-indicator:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

/* Телефон в шапке */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.nav-phone:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.4);
  color: #d4af37;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3),
              0 0 25px rgba(212, 175, 55, 0.15);
}

.nav-phone:hover svg {
  transform: rotate(-15deg) scale(1.1);
}

.nav-phone:active {
  transform: translateY(0);
}

/* Кнопка "Забронировать" в шапке */
.nav-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b5 100%);
  border: none;
  border-radius: 12px;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  white-space: nowrap;
}

.nav-book-btn:hover {
  background: linear-gradient(135deg, #f4e5b5 0%, #d4af37 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5),
              0 0 30px rgba(212, 175, 55, 0.3);
}

.nav-book-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.nav-links > a,
.nav-dropdown-trigger {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-links > a::before,
.nav-dropdown-trigger::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37 0%, #f4e5b5 100%);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-links > a:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.nav-links > a:hover::before,
.nav-dropdown:hover .nav-dropdown-trigger::before {
  width: calc(100% - 24px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
}

.nav-links > a:active,
.nav-dropdown-trigger:active {
  transform: translateY(0);
  background: rgba(212, 175, 55, 0.15);
}

/* Главный экран */
.hero { height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-bg {
  position: absolute; width: 100%; height: 100%;
  background: url('./1762096265733.jpg') center/cover;
  z-index: 0;
  transform-origin: center center;
  will-change: transform;
  /* CSS анимация будет переопределена JavaScript для комбинированного эффекта */
  background-size: cover;
  background-position: center;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(212,175,55,0.3) 100%);
  z-index: 1;
  animation: heroGradientShift 8s ease-in-out infinite;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 1200px 800px at 50% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 800px 600px at 80% 80%, rgba(255, 200, 100, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 600px 400px at 20% 60%, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
  z-index: 1;
  animation: heroGlow 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroGradientShift {
  0%, 100% { 
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(212,175,55,0.3) 100%);
    opacity: 1;
  }
  50% { 
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(212,175,55,0.35) 100%);
    opacity: 0.95;
  }
}
@keyframes heroGlow {
  0% { opacity: 0.6; transform: scale(1) translate(0, 0); }
  33% { opacity: 0.8; transform: scale(1.05) translate(20px, -15px); }
  66% { opacity: 0.7; transform: scale(0.98) translate(-15px, 20px); }
  100% { opacity: 0.6; transform: scale(1) translate(0, 0); }
}
.particles { position: absolute; inset: 0; z-index: 1; }
.particle {
  position: absolute; background: rgba(255,255,255,0.5); border-radius: 50%; animation: float 15s infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}
.hero-content { text-align: center; z-index: 10; animation: fadeInUp 1.5s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 {
  font-size: 120px; font-weight: 300; letter-spacing: 20px; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-transform: uppercase; 
  text-shadow: 0 0 60px rgba(212,175,55,0.5), 2px 2px 8px rgba(0,0,0,0.3), -2px -2px 8px rgba(0,0,0,0.3);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.hero-subtitle { 
  font-size: 24px; 
  letter-spacing: 8px; 
  opacity: 0.95; 
  margin-bottom: 50px; 
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.3);
}
.scroll-indicator { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; z-index: 10; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(20px); } }

/* Секция номеров */
.rooms-section { padding: 150px 50px; background: linear-gradient(180deg, #000 0%, #0a0a0a 100%); position: relative; overflow: hidden; }
.rooms-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
  pointer-events: none;
}
.rooms-section .section-title {
  position: relative;
  z-index: 2;
}
.rooms-slider-container {
  position: relative;
  z-index: 2;
}
.section-title {
  font-size: 80px; text-align: center; margin-bottom: 100px; letter-spacing: 10px; position: relative;
}
.section-title::after {
  content: ''; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 2px; background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* СЛАЙДЕР НОМЕРОВ */
.rooms-slider-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.room-slide { display: none; animation: fadeIn 0.8s ease; }
.room-slide.active { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
.room-gallery { position: relative; height: 600px; border-radius: 30px; overflow: hidden; }
.room-gallery-slide { display: none; width: 100%; height: 100%; position: absolute; inset: 0; }
.room-gallery-slide.active { display: block; animation: slideIn 0.5s ease; }
@keyframes slideIn { from { opacity: 0; } to { opacity: 1; } }
.room-gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.room-gallery-nav {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10;
}
.gallery-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  touch-action: manipulation;
}
.gallery-dot::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid transparent;
  transition: 0.3s;
}
.gallery-dot:hover::before {
  background: rgba(255,255,255,0.6);
}
.gallery-dot.active::before { background: #d4af37; transform: scale(1.3); border-color: #fff; }

/* Room Image Navigation */
/* ==================== СТРЕЛКИ ПЕРЕКЛЮЧЕНИЯ В НОМЕРАХ ==================== */
.room-image-nav {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(184, 134, 11, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid #d4af37;
    width: 60px; 
    height: 60px; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: 10;
    outline: none; 
    padding: 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
}
.room-image-nav:hover { 
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b5 100%);
    border-color: #f4e5b5;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.5);
}
.room-image-nav:active {
    transform: translateY(-50%) scale(1.05);
}
.room-image-nav.prev { left: 20px; }
.room-image-nav.next { right: 20px; }
.room-image-nav svg { 
    fill: #000; 
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
}
.room-image-nav:hover svg {
    transform: scale(1.2);
}

.room-details { padding: 40px; }
/* ==================== ВЫДЕЛЕНИЕ НОМЕРОВ ==================== */
.room-number { 
    font-size: 100px; 
    font-weight: 900; 
    opacity: 0.5; 
    color: #d4af37; 
    line-height: 1; 
    margin-bottom: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b5 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: 8px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.room-number::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 150px 150px at center, rgba(212, 175, 55, 0.25), transparent 70%);
    z-index: -1;
    filter: blur(20px);
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.room-title {
  font-size: 56px; letter-spacing: 4px; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.room-description { font-size: 18px; line-height: 1.8; opacity: 0.8; margin-bottom: 40px; letter-spacing: 1px; }
.room-features { list-style: none; margin-bottom: 40px; }
.room-features li {
  font-size: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); letter-spacing: 2px; display: flex; align-items: center; gap: 15px;
}
.room-features li::before { content: '✦'; color: #d4af37; }
/* ==================== ВЫДЕЛЕНИЕ ЦЕН В НОМЕРАХ ==================== */
.room-price {
    font-size: 48px;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.room-price .room-price-value {
    font-size: 56px;
    color: #f4e5b5;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

.room-price .room-price-unit {
    font-size: 22px;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Блок с ценами для номеров */
.room-price-block {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
}

.room-price-main {
    font-size: 40px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.room-price-main .room-price-value {
    font-size: 50px;
    color: #f4e5b5;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.room-price-main .room-price-unit {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Список дополнительных цен */
.room-price-list {
    list-style: none;
    margin: 15px 0 0;
    padding: 0;
}

.room-price-list li {
    padding: 12px 0;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.room-price-list li:last-child {
    border-bottom: none;
}

.room-price-list .price-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.room-price-list .price-value {
    color: #d4af37;
    font-weight: 700;
    font-size: 22px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Блок акции "Ночевка" */
.room-price-night {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 134, 11, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.room-price-night::before {
    content: '🌙';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 40px;
    opacity: 0.3;
}

.room-price-night .night-title {
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.room-price-night .night-price {
    font-size: 36px;
    font-weight: 700;
    color: #f4e5b5;
    margin: 8px 0;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.room-price-night .night-details {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-top: 10px;
}

/* Адаптивность для цен в номерах */
@media (max-width: 768px) {
    .room-price-main {
        font-size: 32px;
    }
    
    .room-price-main .room-price-value {
        font-size: 40px;
    }
    
    .room-price-list li {
        font-size: 16px;
    }
    
    .room-price-list .price-value {
        font-size: 20px;
    }
    
    .room-price-night .night-price {
        font-size: 28px;
    }
    
    .room-price .room-price-value {
        font-size: 42px;
    }
}

/* ==================== СТРЕЛКИ ПЕРЕКЛЮЧЕНИЯ СЛАЙДОВ В НОМЕРАХ ==================== */
.slider-nav {
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(184, 134, 11, 0.95) 100%);
  backdrop-filter: blur(15px); 
  border: 2px solid #d4af37;
  width: 70px; 
  height: 70px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  z-index: 100; 
  color: #000; 
  outline: none; 
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.6), 0 0 35px rgba(212, 175, 55, 0.4);
}
.slider-nav:hover { 
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b5 100%);
  border-color: #f4e5b5;
  transform: translateY(-50%) scale(1.2); 
  box-shadow: 0 7px 35px rgba(212, 175, 55, 0.9), 0 0 45px rgba(212, 175, 55, 0.6);
}
.slider-nav:active {
  transform: translateY(-50%) scale(1.1);
}
.slider-nav.prev { left: -35px; }
.slider-nav.next { right: -35px; }
.slider-nav svg { 
  width: 28px; 
  height: 28px; 
  fill: #000; 
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s;
}
.slider-nav:hover svg {
  transform: scale(1.15);
}
.slider-dots { display: flex; gap: 15px; justify-content: center; margin-top: 60px; }
.slider-dot {
  width: 68px;
  height: 44px;
  border-radius: 22px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}
.slider-dot::before {
  content: '';
  width: 50px;
  height: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  transition: 0.3s;
}
.slider-dot.active::before { background: #d4af37; width: 80px; }

/* Секция СПА */
.spa-section { padding: 150px 50px; background: #000; position: relative; overflow: hidden; }
.spa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(212,175,55,0.1) 100%);
  z-index: 1;
  pointer-events: none;
}
.spa-section .section-title {
  position: relative;
  z-index: 2;
}
/* СЛАЙДЕР СПА */
.spa-slider-container { 
  max-width: 1600px; 
  margin: 100px auto 0; 
  position: relative;
  z-index: 2;
}
.spa-slide { display: none; position: relative; }
.spa-slide.active { display: block; animation: fadeIn 0.8s ease; }
.spa-content-wrapper { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 0; 
  border-radius: 30px; 
  overflow: hidden; 
  background: #1a1a1a;
  position: relative;
  z-index: 1;
}
.spa-content-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%),
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 80% 30%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 400px 400px at 50% 70%, rgba(200, 150, 255, 0.04) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  animation: spaCardGlow 10s ease-in-out infinite;
}
@keyframes spaCardGlow {
  0%, 100% { 
    opacity: 0.5; 
    transform: scale(1);
  }
  50% { 
    opacity: 0.8; 
    transform: scale(1.02);
  }
}
.spa-images-slider { position: relative; height: 700px; overflow: hidden; }
.spa-image-slide { display: none; width: 100%; height: 100%; }
.spa-image-slide.active { display: block; animation: slideIn 0.5s ease; }
.spa-image-slide img { width: 100%; height: 100%; object-fit: cover; }
/* ==================== СТРЕЛКИ ПЕРЕКЛЮЧЕНИЯ ИЗОБРАЖЕНИЙ В САУНА/БАНЯ ==================== */
.spa-image-nav {
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(184, 134, 11, 0.9) 100%);
  backdrop-filter: blur(15px);
  border: 2px solid #d4af37;
  width: 60px; 
  height: 60px; 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  z-index: 10;
  outline: none;
  padding: 0;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
}
.spa-image-nav:hover { 
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b5 100%);
  border-color: #f4e5b5;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.5);
}
.spa-image-nav:active {
  transform: translateY(-50%) scale(1.05);
}
.spa-image-nav.prev { left: 20px; }
.spa-image-nav.next { right: 20px; }
.spa-image-nav svg {
  fill: #000;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s;
}
.spa-image-nav:hover svg {
  transform: scale(1.2);
}
.spa-thumbnails { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.spa-thumb { width: 80px; height: 60px; border-radius: 8px; overflow: hidden; cursor: pointer; opacity: 0.5; transition: 0.3s; border: 2px solid transparent; }
.spa-thumb.active { opacity: 1; border-color: #d4af37; transform: scale(1.1); }
.spa-thumb img { width: 100%; height: 100%; object-fit: cover; }
.spa-info { padding: 80px; display: flex; flex-direction: column; justify-content: center; }
.spa-icon { font-size: 80px; margin-bottom: 30px; }
.spa-title {
  font-size: 56px; margin-bottom: 20px; letter-spacing: 4px;
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.spa-description { font-size: 20px; opacity: 0.8; letter-spacing: 1px; margin-bottom: 40px; line-height: 1.6; }
.spa-features { list-style: none; }
.spa-features li {
  font-size: 18px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); letter-spacing: 2px; display: flex; align-items: center; gap: 15px;
}
.spa-features li::before { content: '◆'; color: #d4af37; font-size: 12px; }
/* ==================== СТРЕЛКИ ПЕРЕКЛЮЧЕНИЯ СЛАЙДОВ В САУНА/БАНЯ ==================== */
.spa-slider-nav {
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(184, 134, 11, 0.95) 100%);
  backdrop-filter: blur(15px);
  border: 2px solid #d4af37;
  width: 70px; 
  height: 70px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  z-index: 100; 
  color: #000; 
  outline: none;
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.6), 0 0 35px rgba(212, 175, 55, 0.4);
}
.spa-slider-nav:hover { 
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b5 100%);
  border-color: #f4e5b5;
  transform: translateY(-50%) scale(1.2); 
  box-shadow: 0 7px 35px rgba(212, 175, 55, 0.9), 0 0 45px rgba(212, 175, 55, 0.6);
}
.spa-slider-nav:active {
  transform: translateY(-50%) scale(1.1);
}
.spa-slider-nav.prev { left: -35px; }
.spa-slider-nav.next { right: -35px; }
.spa-slider-nav svg {
  width: 28px;
  height: 28px;
  fill: #000;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s;
}
.spa-slider-nav:hover svg {
  transform: scale(1.15);
}
.spa-slider-dots { display: flex; gap: 20px; justify-content: center; margin-top: 60px; }
.spa-slider-dot {
  width: 100px;
  height: 44px;
  border-radius: 22px;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}
.spa-slider-dot::before {
  content: '';
  width: 90px;
  height: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  transition: 0.3s;
}
.spa-slider-dot.active::before { background: #d4af37; width: 100px; }

/* ==================== ВЫДЕЛЕНИЕ ЦЕН В СЕКЦИИ СПА ==================== */
.spa-price-block {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
}

.spa-price-main {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.spa-price-main .spa-price-value {
    font-size: 42px;
    color: #f4e5b5;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.spa-price-main .spa-price-unit {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.spa-price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    padding-left: 8px;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
}

.spa-price-list {
    list-style: none;
    margin: 15px 0 0;
    padding: 0;
}

.spa-price-list li {
    padding: 12px 0;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spa-price-list li:last-child {
    border-bottom: none;
}

.spa-price-list .price-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.spa-price-list .price-value {
    color: #d4af37;
    font-weight: 700;
    font-size: 22px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.spa-price-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 134, 11, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.spa-price-highlight::before {
    content: '💰';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 40px;
    opacity: 0.3;
}

.spa-price-highlight .highlight-title {
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spa-price-highlight .highlight-price {
    font-size: 36px;
    font-weight: 700;
    color: #f4e5b5;
    margin: 8px 0;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.spa-price-highlight .highlight-details {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-top: 10px;
}

.spa-price-additional {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.spa-price-additional .additional-title {
    font-size: 18px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spa-price-additional .additional-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spa-price-additional .additional-item:last-child {
    border-bottom: none;
}

.spa-price-additional .additional-name {
    color: rgba(255, 255, 255, 0.8);
}

.spa-price-additional .additional-cost {
    color: #d4af37;
    font-weight: 600;
    font-size: 18px;
}

/* Новогодняя акция - специальный стиль */
.spa-price-newyear {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(212, 175, 55, 0.2) 100%);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}

.spa-price-newyear::before {
    content: '🎄';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 40px;
    opacity: 0.4;
}

.spa-price-newyear .newyear-title {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spa-price-newyear .newyear-dates {
    font-size: 14px;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Адаптивность для цен */
@media (max-width: 768px) {
    .spa-price-main {
        font-size: 28px;
    }
    
    .spa-price-main .spa-price-value {
        font-size: 34px;
    }
    
    .spa-price-list li {
        font-size: 16px;
    }
    
    .spa-price-list .price-value {
        font-size: 20px;
    }
    
    .spa-price-highlight .highlight-price {
        font-size: 28px;
    }
}

/* Галерея */
.gallery-section { 
  padding: 150px 50px; 
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(0, 150, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(100, 200, 255, 0.06) 0%, transparent 50%);
  animation: galleryPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.gallery-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 200px at 20% 30%, rgba(0, 150, 255, 0.1), transparent 50%),
    radial-gradient(circle 300px at 80% 70%, rgba(100, 200, 255, 0.08), transparent 50%),
    radial-gradient(circle 150px at 50% 50%, rgba(0, 200, 255, 0.06), transparent 50%);
  animation: galleryFloat 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes galleryPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes galleryFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
.gallery-section .section-title,
.gallery-grid {
  position: relative;
  z-index: 1;
}
.gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 24px; 
  max-width: 1400px; 
  margin: 40px auto 0; 
}
.gallery-item { 
  position: relative;
  border-radius: 16px; 
  overflow: hidden; 
  cursor: pointer; 
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0) 0%, rgba(0, 150, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 150, 255, 0.3),
              0 0 0 2px rgba(212, 175, 55, 0.4),
              0 0 60px rgba(212, 175, 55, 0.2);
}
.gallery-item:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 150, 255, 0.15) 100%);
}
.gallery-item::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 48px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}
.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery-item img { 
  display: block;
  width: 100%; 
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s ease;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

/* Секция отзывов */
.reviews-section { padding: 120px 50px; background: #0a0a0a; }
.reviews-grid { max-width: 1400px; margin: 60px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #0f0f0f; padding: 30px; border-radius: 12px; color: rgba(255,255,255,0.95);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6); border: 1px solid rgba(212,175,55,0.08); font-size: 16px; line-height: 1.6;
}
.review p { margin-bottom: 18px; color: rgba(255,255,255,0.9); }
.review footer { font-weight: 700; color: #d4af37; letter-spacing: 1px; font-size: 14px; }

/* Футер */
footer { padding: 100px 50px; background: #000; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
.footer-section h4 { font-size: 24px; margin-bottom: 30px; letter-spacing: 3px; color: #d4af37; }
.footer-section p, .footer-section a {
  color: rgba(255,255,255,0.7); text-decoration: none; line-height: 2; letter-spacing: 1px; transition: 0.3s;
}
.footer-section a:hover { color: #d4af37; }

.book-button {
  position: fixed; bottom: 50px; right: 50px; padding: 20px 40px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b5 100%); color: #000; border: none; border-radius: 50px;
  font-size: 16px; font-weight: 700; letter-spacing: 2px; cursor: pointer; z-index: 1000; transition: 0.3s;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.book-button:hover { transform: scale(1.1); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5); }

/* Кнопка "Позвонить" для мобильных */
.call-button-mobile {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: env(safe-area-inset-bottom, 0);
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b5 100%);
  color: #000;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  align-items: center;
  gap: 10px;
  min-width: 160px;
  justify-content: center;
  animation: slideUpIn 0.5s ease-out;
}
@keyframes slideUpIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.call-button-mobile svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.call-button-mobile:active {
  transform: translateX(-50%) scale(0.95);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.call-button-mobile:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
  color: #000;
}


/* Модальное окно */
.modal {
  display: none; position: fixed; inset: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95);
  z-index: 10000; align-items: center; justify-content: center; cursor: pointer;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.modal.active { display: flex; }
.modal img { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 10px; }

/* Оптимизация модальных окон для мобильных */
@media (max-width: 768px) {
  .modal {
    padding: 10px;
  }
  .modal img {
    max-width: 95%;
    max-height: 85vh;
  }
  /* Улучшаем touch для закрытия модального окна */
  .modal::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Адаптив */
@media (max-width: 1200px) {
  .hero h1 { font-size: 80px; letter-spacing: 10px; }
  .room-slide.active { 
    grid-template-columns: 1fr; 
    gap: 30px;
  }
  .spa-content-wrapper { grid-template-columns: 1fr; }
  .spa-images-slider { height: 500px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { font-size: 16px; line-height: 1.6; }
  nav { padding: 10px 12px; } /* reduced horizontal padding */
  .nav-links a { font-size: 12px; gap: 12px; }
  
  /* Скрываем действия в шапке на мобильных (есть кнопка "Позвонить") */
  .nav-actions {
    display: none !important;
  }
  .section-title { 
    font-size: 36px; 
    margin-bottom: 40px;
    letter-spacing: 4px;
    line-height: 1.3;
  }
  .section-title::after {
    width: 60px;
    bottom: -15px;
  }
  .hero-subtitle { font-size: 16px; letter-spacing: 2px; }
  .room-number { 
    font-size: 60px; 
    margin-bottom: 15px;
  }
  .about-text h3 { 
    font-size: 24px; 
    margin-bottom: 15px;
  }
  .about-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  .stat-number { 
    font-size: 38px; 
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 14px;
  }
  .spa-title { 
    font-size: 28px; 
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
  .spa-description {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
  }
  .spa-features li {
    font-size: 14px;
    padding: 12px 0;
  }
  .spa-content-wrapper {
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  .room-details { 
    padding: 20px; 
    background: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  .spa-info { 
    padding: 24px; 
    background: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  .room-gallery {
    height: 400px;
    border-radius: 20px;
  }
  .room-title { 
    font-size: 28px; 
    letter-spacing: 2px; 
    margin-bottom: 15px;
  }
  .room-description { 
    font-size: 16px; 
    line-height: 1.7;
    opacity: 0.9;
  }
  .room-features li {
    font-size: 14px;
    padding: 10px 0;
  }
  .room-price { 
    font-size: 36px; 
    margin-bottom: 20px;
  }

  /* Make main section paddings narrower and containers full width */
  .hero { padding-top: 56px; padding-left:12px; padding-right:12px; }
  
  .rooms-section,
  .spa-section,
  .gallery-section,
  .reviews-section,
  .contacts-section,
  .about-section { 
    padding: 50px 16px; 
  }
  
  /* Оптимизация производительности для мобильных */
  * {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.1);
  }
  
  /* Улучшаем скроллинг на мобильных */
  body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }
  
  /* Оптимизация анимаций для мобильных */
  @media (prefers-reduced-motion: no-preference) {
    * {
      will-change: auto;
    }
  }

  /* Ensure central wrappers don't exceed viewport and have small side gaps */
  .about-container,
  .rooms-slider-container,
  .spa-slider-container,
  .gallery-grid,
  .contacts-container,
  .reviews-container { 
    max-width: 100%; 
    margin: 0 auto; 
    padding-left: 0; 
    padding-right: 0; 
  }

  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item { 
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .gallery-item img {
    height: 250px;
    object-fit: cover;
    width: 100%;
  }
  
  /* Оптимизация изображений для мобильных */
  img {
    max-width: 100%;
    height: auto;
    opacity: 1 !important; /* Убеждаемся, что изображения всегда видимы */
  }
  
  /* Улучшаем загрузку изображений - убрано скрытие через opacity */
  img[loading="lazy"] {
    transition: opacity 0.3s;
  }
  .gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  }
  .gallery-item::after {
    font-size: 36px;
  }
  .hero h1 { 
    font-size: 48px; 
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  /* keep interactions accessible */
  .book-button { right: 16px; bottom: 24px; padding: 14px 28px; }

  /* Mobile header optimizations */
  nav {
    padding: 10px 14px; /* reduce top/bottom padding for smaller screens */
    align-items: center;
  }
  .logo {
    font-size: 18px; /* smaller logo text */
    letter-spacing: 2px;
  }
  .nav-links {
    gap: 12px;
    display: flex;
    align-items: center;
    max-width: calc(100% - 140px); /* leave space for actions/book button */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px 8px;
    scrollbar-width: none; /* hide scrollbar on Firefox */
  }
  .nav-links::-webkit-scrollbar { display: none; } /* hide scrollbar on WebKit */
  .nav-links a {
    font-size: 13px;
    padding: 8px 10px;
    white-space: nowrap;
    display: inline-block;
    border-radius: 8px;
    transition: background 0.18s;
  }
  .nav-links a:active { background: rgba(212,175,55,0.06); }

  /* ensure hero doesn't get hidden by fixed nav */
  .hero { padding-top: 64px; }
  
  /* Ensure only logo and burger are visible in mobile header */
  .nav-links { display: none !important; }
  
  /* Скрываем desktop dropdown на мобильных */
  .nav-dropdown { display: none !important; }
  
  /* Оптимизация мобильного меню */
  .mobile-menu {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  
  .mobile-link {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.1);
  }
  
  /* Улучшаем burger menu */
  .burger {
    min-width: 44px !important;
    min-height: 44px !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Оптимизация мобильных dropdown меню */
  .mobile-dropdown-trigger {
    min-height: 48px !important;
    padding: 12px 16px !important;
    font-size: 17px !important;
  }
  
  .mobile-dropdown-menu {
    margin-left: 12px !important;
    border-left-width: 3px !important;
  }
  
  .mobile-dropdown-item {
    padding: 14px 18px !important;
    font-size: 15px !important;
    min-height: 48px !important;
  }
  
  /* Улучшаем анимацию стрелки */
  .mobile-dropdown-arrow {
    width: 14px !important;
    height: 14px !important;
  }
  .book-button { display: none !important; } /* hide floating booking action on mobile */
  .call-button-mobile { 
    display: flex !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  } /* show call button on mobile */
  .scroll-indicator { display: none !important; } /* hide decorative scroll indicator on mobile */
  /* also hide cursor follower to avoid clutter on mobile touch */
  .cursor, .cursor-follower { display: none !important; }
  
  /* Добавляем padding-bottom для последних секций, чтобы кнопка "Позвонить" не перекрывала контент */
  #contacts, .contacts-section,
  #promotions, .offers-section,
  #gallery, .gallery-section {
    padding-bottom: 100px !important;
  }
  
  /* Улучшаем touch targets для мобильных - минимум 44x44px */
  button, a, .clickable, .offer-btn, .route-btn, .mobile-link {
    min-width: 44px !important;
    min-height: 44px !important;
  }
  
  /* Увеличиваем padding для лучшего touch experience */
  .offer-btn, .route-btn {
    padding: 14px 20px !important;
  }
  
  /* Улучшаем touch targets для стрелок навигации */
  .room-image-nav, .spa-image-nav,
  .slider-nav, .spa-slider-nav {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }
  
}

/* Кнопка "Наверх" */
.scroll-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b5 100%);
  border: none;
  border-radius: 50%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  -webkit-tap-highlight-color: transparent;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.scroll-to-top:active {
  transform: scale(0.95);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  stroke: #000;
}

/* На мобильных устройствах */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 100px; /* Выше кнопки "Позвонить" */
    right: 16px;
    width: 48px;
    height: 48px;
  }
  
  .scroll-to-top svg {
    width: 22px;
    height: 22px;
  }
}

/* На очень маленьких экранах */
@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 95px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Breakpoint для маленьких экранов (480px и меньше) */
@media (max-width: 480px) {
  .hero h1 { 
    font-size: 36px !important; 
    letter-spacing: 2px !important; 
    line-height: 1.2;
  }
  .section-title { 
    font-size: 28px !important; 
    letter-spacing: 2px !important; 
    margin-bottom: 30px;
  }
  .spa-title, .room-title { 
    font-size: 22px !important; 
    letter-spacing: 1px;
  }
  .offer-card { 
    padding: 16px !important; 
  }
  .gallery-item { 
    height: 200px !important; 
  }
  
  /* Убеждаемся, что изображения в галереях видны */
  .gallery-item img {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
  }
  
  /* Убеждаемся, что изображения в слайдерах видны */
  .room-gallery-slide img,
  .spa-image-slide img {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
  }
  .offer-btn {
    font-size: 13px !important;
    padding: 12px 16px !important;
  }
  .offer-title {
    font-size: 20px !important;
  }
  .offer-description {
    font-size: 14px !important;
  }
  .room-gallery {
    height: 300px !important;
  }
  .spa-images-slider {
    height: 350px !important;
  }
}

/* Breakpoint для очень маленьких экранов (375px и меньше) */
@media (max-width: 375px) {
  .hero h1 { 
    font-size: 32px !important; 
    letter-spacing: 1px !important;
  }
  .section-title { 
    font-size: 24px !important; 
    letter-spacing: 1px !important;
  }
  .offer-card { 
    padding: 12px !important; 
  }
  .room-details, .spa-info {
    padding: 16px !important;
  }
  /* Улучшаем читаемость на очень маленьких экранах */
  body {
    font-size: 15px !important;
  }
  .hero-subtitle {
    font-size: 14px !important;
    letter-spacing: 1px !important;
  }
  .about-text p, .room-description, .spa-description {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
  /* Оптимизируем отступы */
  .rooms-section,
  .spa-section,
  .gallery-section,
  .reviews-section,
  .contacts-section,
  .about-section {
    padding: 40px 12px !important;
  }
  /* Улучшаем touch targets */
  button, a, .clickable {
    min-width: 48px !important;
    min-height: 48px !important;
  }
  
  /* Оптимизация dropdown для очень маленьких экранов */
  .mobile-dropdown-trigger {
    font-size: 16px !important;
    padding: 10px 14px !important;
  }
  
  .mobile-dropdown-menu {
    margin-left: 8px !important;
    border-left-width: 2px !important;
  }
  
  .mobile-dropdown-item {
    padding: 12px 16px !important;
    font-size: 14px !important;
    min-height: 44px !important;
  }
}

.contacts{padding:40px 20px;max-width:1200px;margin:0 auto}.contact-info{margin-bottom:30px}.contact-info p{margin:10px 0;font-size:16px}.map iframe{width:100%;max-width:100%}

/* Breadcrumbs Navigation */
.breadcrumbs {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 10;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #d4af37;
}

.breadcrumbs span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-3px);
}

.back-button svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 12px;
        padding: 15px 20px;
    }
    
    .back-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Other Rooms Section - Universal */
.other-rooms-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.other-rooms-section .room-container,
.other-rooms-section .room-wrapper,
.other-rooms-section .sauna-container,
.other-rooms-section .banya-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.other-rooms-section .section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px;
}

.other-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.other-room-card {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.other-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.other-room-number {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
}

.other-room-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.other-room-capacity {
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    .other-rooms-section {
        padding: 60px 0;
    }
    
    .other-rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .other-room-card {
        padding: 20px 15px;
    }
}


