/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sansation', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 3px;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: clamp(8px, 1vw, 12px) clamp(16px, 2vw, 24px);
  font-size: clamp(0.9rem, 0.8vw + 0.6rem, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 200;
}

.promo-banner span {
  opacity: 0.85;
  margin: 0 12px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 40px);
  height: clamp(60px, 8vh, 80px);
  background: rgba(26, 47, 51, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}



.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-main {
  font-size: clamp(1.3rem, 1.1vw + 0.85rem, 1.5rem);
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.12em;
}

.logo-sub {
  font-size: clamp(0.55rem, 0.5vw + 0.4rem, 0.6rem);
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(16.0px, 5.7143vw - 2.2857rem, 32.0px);
  align-items: center;
}

nav a {
  font-size: clamp(0.85rem, 0.7vw + 0.5rem, 0.95rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
}

nav a:hover {
  color: var(--white);
}

nav a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 1500px) {
  .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(20px, 3vw, 40px);
    height: clamp(80px, 8vh, 120px);
  }

  nav a {
    font-size: clamp(0.8rem, 0.7vw + 0.5rem, 0.9rem);
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
    position: relative;
  }
}

@media (max-width: 900px) {
  .header {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: clamp(60px, 8vh, 80px);
  }

  nav a {
    font-size: clamp(0.85rem, 0.7vw + 0.5rem, 0.95rem);
    letter-spacing: 0.08em;
  }
}

.btn-book {
  background: var(--orange);
  color: var(--white);
  padding: clamp(8px, 1vw, 12px) clamp(20px, 2vw, 28px);
  border-radius: 6px;
  font-size: clamp(0.85rem, 0.7vw + 0.6rem, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}

.btn-book:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

/* Desktop video poster */
.hero-video-desktop {
  background-image: var(--hero-video-poster-desktop);
  background-size: cover;
  background-position: center;
}

/* Mobile video poster */
.hero-video-mobile {
  display: none;
  background-image: var(--hero-video-poster-mobile);
  background-size: cover;
  background-position: center;
}

@media (orientation: portrait) {
  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }
}

.hero-video-placeholder {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#heroPlaceholder canvas {
  position: absolute;
  inset: 0;
  filter: blur(30px);
  opacity: 0.5;
}

/* Animated steam/water effect */
.steam-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 40%, transparent 100%);
  pointer-events: none;
  animation: steam-rise linear infinite;
  filter: blur(12px);
}

@keyframes steam-rise {
  0% {
    transform: translateY(0) translateX(0) scale(0.3);
    opacity: 0;
  }

  5% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-120vh) translateX(var(--drift, 0px)) scale(2);
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: var(--hero-overlay-opacity);
  background: var(--bg-dark);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  animation: hero-enter 1.2s ease both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(21, 119, 135, 0.25);
  border: 1px solid var(--teal);
  color: var(--teal-light);
  font-size: clamp(0.75rem, 0.6vw + 0.5rem, 0.85rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: clamp(6px, 0.5vw, 8px) clamp(16px, 2vw, 24px);
  border-radius: 100px;
  margin-bottom: clamp(20px, 2vw, 32px);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  font-size: clamp(1.1rem, 1vw + 0.7rem, 1.3rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto clamp(32px, 3vw, 48px);
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: clamp(14px, 1.5vw, 18px) clamp(32px, 3vw, 40px);
  border-radius: 8px;
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 102, 47, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: clamp(8px, 1.5vw, 10px) clamp(18px, 3vw, 21px);
  border-radius: 8px;
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(254, 254, 254, 0.35);
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background: rgba(21, 119, 135, 0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.6rem, 0.5vw + 0.45rem, 0.68rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '↓';
  font-size: clamp(1.1rem, 0.9vw + 0.75rem, 1.2rem);
  color: var(--teal);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

/* ===== SECTION BASE ===== */
section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: clamp(0.75rem, 0.6vw + 0.5rem, 0.85rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: clamp(10px, 1vw, 16px);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1vw + 0.7rem, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  font-style: italic;
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 2px;
  margin: 20px 0;
}

/* ===== FEATURES ===== */
.features {
  background: var(--bg-mid);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  perspective: 1000px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: scaleX(0);
  transition: transform 0.3s;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-8px) rotateY(2deg);
  box-shadow: 0 20px 40px rgba(21, 119, 135, 0.4);
}

.feature-card:nth-child(even):hover {
  transform: translateY(-8px) rotateY(-2deg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-photo {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  transform: rotate(-2deg) scale(1.1);
  filter: brightness(0.85) contrast(1.1);
}

.feature-card:hover .feature-photo img {
  transform: rotate(0deg) scale(1.15);
  filter: brightness(1) contrast(1.05);
}

.feature-card:nth-child(even) .feature-photo img {
  transform: rotate(2deg) scale(1.1);
}

.feature-card:nth-child(even):hover .feature-photo img {
  transform: rotate(0deg) scale(1.15);
}

.feature-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 47, 51, 0.7) 100%);
  pointer-events: none;
}

.feature-content {
  padding: clamp(24px, 2.5vw, 32px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  font-size: clamp(2.2rem, 1.8vw + 1.5rem, 2.4rem);
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: clamp(1.15rem, 1vw + 0.8rem, 1.3rem);
  font-weight: 700;
  margin-bottom: clamp(8px, 1vw, 12px);
  color: var(--white);
}

.feature-card p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 0.8vw + 0.6rem, 1.05rem);
  line-height: 1.65;
}

/* ===== HALLS ===== */
.halls {
  background: var(--bg-dark);
}

.halls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.hall-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.hall-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hall-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-dark));
  overflow: hidden;
}

.hall-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hall-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, rgba(21, 119, 135, 0.2), rgba(217, 102, 47, 0.1));
}

.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(21, 119, 135, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.3rem, 1.1vw + 0.85rem, 1.5rem);
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}

.play-btn:hover {
  background: var(--teal);
  transform: scale(1.1);
}

.hall-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.85rem);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.hall-body {
  padding: 28px;
}

.hall-name {
  font-size: clamp(1.35rem, 1.2vw + 0.9rem, 1.5rem);
  font-weight: 700;
  margin-bottom: clamp(6px, 0.5vw, 8px);
}

.hall-capacity {
  font-size: clamp(0.85rem, 0.7vw + 0.6rem, 0.95rem);
  color: var(--text-muted);
  margin-bottom: clamp(16px, 1.5vw, 20px);
  font-style: italic;
}

.hall-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hall-tag {
  background: rgba(21, 119, 135, 0.2);
  border: 1px solid rgba(21, 119, 135, 0.4);
  color: var(--teal-light);
  font-size: clamp(0.8rem, 0.6vw + 0.55rem, 0.9rem);
  padding: clamp(4px, 0.4vw, 6px) clamp(10px, 1vw, 14px);
  border-radius: 100px;
}

.hall-desc {
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  color: var(--text-muted);
  margin-bottom: clamp(18px, 1.5vw, 24px);
}

.hall-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.hall-price {
  font-size: clamp(1.7rem, 1.5vw + 1.2rem, 2rem);
  font-weight: 700;
  color: var(--orange);
}

.hall-price span {
  font-size: clamp(0.85rem, 0.7vw + 0.6rem, 0.95rem);
  color: var(--text-muted);
  font-weight: 400;
}

.btn-sm {
  background: var(--teal);
  color: var(--white);
  padding: clamp(10px, 1vw, 12px) clamp(18px, 1.8vw, 24px);
  border-radius: 6px;
  font-size: clamp(0.85rem, 0.7vw + 0.6rem, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-sm:hover {
  background: var(--teal-dark);
}

/* ===== PROMO ===== */
.promos {
  background: var(--bg-mid);
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.promo-card {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(21, 119, 135, 0.15), rgba(21, 119, 135, 0.05));
  border: 1px solid rgba(21, 119, 135, 0.3);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.5vw, 18px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 119, 135, 0.6);
}

.promo-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: clamp(0.7rem, 0.55vw + 0.5rem, 0.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.promo-card h3 {
  font-size: clamp(1.55rem, 1.3vw + 1rem, 1.75rem);
  font-weight: 700;
  margin: 0;
}

.promo-card p {
  font-size: clamp(1rem, 0.85vw + 0.7rem, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.promo-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.promo-details span {
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.85rem);
  color: var(--text-muted);
  background: rgba(21, 119, 135, 0.15);
  padding: 4px 12px;
  border-radius: 12px;
}

.promo-card .btn-outline {
  margin-top: 8px;
  align-self: flex-start;
}

.promo-note {
  margin-top: 32px;
  text-align: center;
  color: var(--orange);
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
}

.promo-info {
  margin-top: 60px;
  padding: 32px;
  background: rgba(21, 119, 135, 0.08);
  border: 1px solid rgba(21, 119, 135, 0.2);
  border-radius: var(--radius-lg);
}

.promo-info h3 {
  font-size: clamp(1.2rem, 1.05vw + 0.8rem, 1.3rem);
  margin-bottom: 16px;
}

.promo-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-info li {
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.promo-info li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--teal);
  font-weight: 700;
}

.promo-info a {
  color: var(--teal-light);
  text-decoration: underline;
}

/* ===== BOOKING ===== */
.booking {
  background: var(--bg-dark);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.booking-info h3 {
  font-size: clamp(1.25rem, 1.1vw + 0.85rem, 1.4rem);
  font-weight: 700;
  margin-bottom: clamp(14px, 1.2vw, 18px);
}

.booking-info p {
  color: var(--text-muted);
  font-size: clamp(0.98rem, 0.85vw + 0.65rem, 1.1rem);
  margin-bottom: clamp(20px, 2vw, 28px);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 16px);
  color: var(--text-muted);
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
}

.contact-item .ci-icon {
  width: 38px;
  height: 38px;
  background: rgba(21, 119, 135, 0.2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1rem);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--white);
}

.contact-item a:hover {
  color: var(--teal-light);
}

.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.booking-form h3 {
  font-size: clamp(1.35rem, 1.2vw + 0.9rem, 1.5rem);
  font-weight: 700;
  margin-bottom: clamp(20px, 2vw, 28px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: clamp(0.8rem, 0.65vw + 0.55rem, 0.9rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  padding: clamp(10px, 1vw, 14px) clamp(14px, 1.2vw, 18px);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group select option {
  background: var(--bg-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: clamp(12px, 1.2vw, 16px);
  border-radius: 8px;
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
}

.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.form-note {
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.9rem);
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--bg-mid);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  /*margin-top: 50px;*/
}

.review-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}

.review-card:hover {
  border-color: var(--teal);
}

.review-stars {
  color: var(--orange);
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1rem);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.85rem);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
}

.review-source {
  font-size: clamp(0.78rem, 0.65vw + 0.55rem, 0.85rem);
  color: var(--text-muted);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--bg-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 12px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: clamp(0.7rem, 0.55vw + 0.5rem, 0.75rem);
  color: var(--text-muted);
  transition: border-color 0.2s;
  overflow: hidden;
  position: relative;
}

.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(21, 119, 135, 0.15) 0%, transparent 70%);
}

.gallery-item:hover .gallery-placeholder {
  border-color: var(--teal);
}

.gallery-item:nth-child(odd) .gallery-placeholder::before {
  background: radial-gradient(circle at 50% 50%, rgba(217, 102, 47, 0.12) 0%, transparent 70%);
}

.gallery-icon {
  font-size: clamp(1.8rem, 1.5vw + 1.2rem, 2rem);
  position: relative;
  z-index: 1;
}

.gallery-label {
  position: relative;
  z-index: 1;
}

/* ===== MAP ===== */
.map-section {
  background: var(--bg-mid);
}

.map-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  margin-top: 50px;
  align-items: start;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.6) brightness(0.8);
}

.map-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.map-info h3 {
  font-size: clamp(1.2rem, 1.05vw + 0.8rem, 1.35rem);
  font-weight: 700;
  margin-bottom: clamp(18px, 1.8vw, 24px);
}

.map-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.map-detail .md-icon {
  font-size: clamp(1.1rem, 0.9vw + 0.75rem, 1.2rem);
  margin-top: 2px;
  flex-shrink: 0;
}

.map-detail-text strong {
  display: block;
  font-size: clamp(0.9rem, 0.75vw + 0.6rem, 1rem);
  font-weight: 700;
  margin-bottom: 2px;
}

.map-detail-text span {
  font-size: clamp(0.88rem, 0.7vw + 0.6rem, 0.98rem);
  color: var(--text-muted);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  flex: 1;
  background: rgba(21, 119, 135, 0.2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(10px, 1vw, 12px);
  text-align: center;
  font-size: clamp(0.85rem, 0.7vw + 0.6rem, 0.95rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
}

/* ===== CERTIFICATES ===== */
.certs {
  background: var(--bg-dark);
}

.certs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.cert-visual {
  position: relative;
}

.cert-card-mock {
  background: linear-gradient(135deg, #0e5a67, #1a9aad);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
}

.cert-card-mock::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cert-card-mock::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cert-logo-sm {
  font-size: clamp(1.4rem, 1.2vw + 0.9rem, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cert-amount {
  font-size: clamp(3rem, 2.5vw + 2rem, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.cert-unit {
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.85rem);
  opacity: 0.7;
  letter-spacing: 0.1em;
}

.cert-validity {
  margin-top: 28px;
  font-size: clamp(0.72rem, 0.55vw + 0.55rem, 0.78rem);
  opacity: 0.6;
}

.cert-decor {
  position: absolute;
  top: 16%;
  right: -50px;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  object-fit: contain;
  opacity: 0.15;
  rotate: -3deg;
}

.cert-content h3 {
  font-size: clamp(1.55rem, 1.3vw + 1rem, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(14px, 1.2vw, 18px);
}

.cert-content p {
  color: var(--text-muted);
  font-size: clamp(0.98rem, 0.85vw + 0.65rem, 1.1rem);
  margin-bottom: clamp(24px, 2.5vw, 32px);
  line-height: 1.7;
}

.cert-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.cert-opt {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(10px, 1vw, 12px) clamp(18px, 1.8vw, 24px);
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.cert-opt:hover,
.cert-opt.active {
  background: var(--teal);
  border-color: var(--teal);
}

/* ===== REVIEWS PAGE ===== */
.reviews-page {
  padding: clamp(30.0px, 5.6818vw + 0.7386rem, 80.0px) 0;
  background: var(--bg-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.review-card {
  background: linear-gradient(135deg, rgba(21, 119, 135, 0.12), rgba(21, 119, 135, 0.04));
  border: 1px solid rgba(21, 119, 135, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 119, 135, 0.6);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.1rem, 0.9vw + 0.75rem, 1.2rem);
  font-weight: 700;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1rem);
}

.review-date {
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.85rem);
  color: var(--text-muted);
}

.review-rating {
  color: var(--orange);
  font-size: clamp(1rem, 0.85vw + 0.7rem, 1.1rem);
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: clamp(0.9rem, 0.75vw + 0.65rem, 0.95rem);
  margin: 0;
}

.reviews-cta {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(21, 119, 135, 0.15), rgba(21, 119, 135, 0.05));
  border: 1px solid rgba(21, 119, 135, 0.3);
  border-radius: var(--radius-lg);
  margin-bottom: clamp(30.0px, 5.6818vw + 0.7386rem, 80.0px);
}

.reviews-cta h2 {
  font-size: clamp(1.8rem, 1.5vw + 1.2rem, 2rem);
  margin-bottom: 12px;
}

.reviews-cta p {
  color: var(--text-muted);
  font-size: clamp(1rem, 0.85vw + 0.7rem, 1.05rem);
  margin-bottom: 32px;
}

.reviews-cta-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FEATURES PAGE ===== */
.features-page {
  padding: clamp(30.0px, 5.6818vw + 0.7386rem, 80.0px) 0;
  background: var(--bg-dark);
}

.features-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: clamp(30.0px, 5.6818vw + 0.7386rem, 80.0px);
  perspective: 1000px;
}

.feature-card-page {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card-page:hover {
  transform: translateY(-8px) rotateY(2deg);
  box-shadow: 0 20px 40px rgba(21, 119, 135, 0.4);
}

.feature-card-page:nth-child(even):hover {
  transform: translateY(-8px) rotateY(-2deg);
}

.feature-photo-page {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.feature-photo-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  transform: rotate(-2deg) scale(1.1);
  filter: brightness(0.85) contrast(1.1);
}

.feature-card-page:hover .feature-photo-page img {
  transform: rotate(0deg) scale(1.15);
  filter: brightness(1) contrast(1.05);
}

.feature-card-page:nth-child(even) .feature-photo-page img {
  transform: rotate(2deg) scale(1.1);
}

.feature-card-page:nth-child(even):hover .feature-photo-page img {
  transform: rotate(0deg) scale(1.15);
}

.feature-photo-page::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 47, 51, 0.7) 100%);
  pointer-events: none;
}

.feature-content-page {
  padding: clamp(24px, 2.5vw, 32px);
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.feature-icon-large {
  font-size: clamp(3.5rem, 3vw + 2.5rem, 4rem);
  margin-bottom: 20px;
}

.feature-card-page h3 {
  font-size: clamp(1.2rem, 1.05vw + 0.8rem, 1.3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card-page p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: clamp(0.9rem, 0.75vw + 0.65rem, 0.95rem);
  margin: 0;
}

.features-cta {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(21, 119, 135, 0.2), rgba(21, 119, 135, 0.08));
  border: 1px solid rgba(21, 119, 135, 0.4);
  border-radius: var(--radius-lg);
}

.features-cta h2 {
  font-size: clamp(1.8rem, 1.5vw + 1.2rem, 2rem);
  margin-bottom: 12px;
}

.features-cta p {
  color: var(--text-muted);
  font-size: clamp(1rem, 0.85vw + 0.7rem, 1.05rem);
  margin-bottom: 32px;
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
  padding: 80px 0;
  background: var(--bg-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  grid-auto-rows: minmax(225px, auto);
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CONTACTS PAGE ===== */
.contacts-page {
  padding: 80px 0;
  background: var(--bg-dark);
}

.contacts-map-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contacts-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.contact-card {
  background: linear-gradient(135deg, rgba(21, 119, 135, 0.12), rgba(21, 119, 135, 0.04));
  border: 1px solid rgba(21, 119, 135, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 119, 135, 0.6);
}

.contact-icon {
  font-size: clamp(2.7rem, 2.3vw + 1.8rem, 3rem);
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: clamp(1.1rem, 0.9vw + 0.75rem, 1.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 0.75vw + 0.65rem, 0.95rem);
  line-height: 1.6;
  margin: 0;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-links a {
  color: var(--teal-light);
  font-size: clamp(0.9rem, 0.75vw + 0.65rem, 0.95rem);
  transition: color 0.3s ease;
}

.contact-links a:hover {
  color: var(--teal);
}

.contact-card-cta {
  background: linear-gradient(135deg, rgba(21, 119, 135, 0.25), rgba(21, 119, 135, 0.1));
  border-color: rgba(21, 119, 135, 0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.contact-card-cta h3 {
  margin-bottom: 0;
}

.contact-card-cta .btn-primary {
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo-main {
  font-size: 1.3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 0.75vw + 0.6rem, 1rem);
  margin-top: clamp(10px, 1vw, 14px);
  max-width: 260px;
}

.footer-col h4 {
  font-size: clamp(0.78rem, 0.65vw + 0.55rem, 0.85rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: clamp(14px, 1.2vw, 18px);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: clamp(18px, 1.8vw, 24px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.85rem, 0.7vw + 0.6rem, 0.95rem);
  color: var(--text-muted);
}


/* ===== ROOMS PAGE ===== */
.page-hero {
  padding: 140px 0 clamp(20.0px, 4.5455vw + 0.3409rem, 60.0px);
  background: var(--bg-dark);
  text-align: center;
}

.breadcrumb {
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.85rem);
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--teal-light);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--teal);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 2vw + 1.5rem, 2.8rem);
  margin-bottom: clamp(10px, 1vw, 14px);
}

.page-hero p {
  font-size: clamp(1.15rem, 1vw + 0.8rem, 1.3rem);
  color: var(--text-muted);
}

.rooms-catalog {
  padding: 80px 0;
  background: var(--bg-dark);
}

.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.room-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.room-full-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}

.room-full-card.reverse {
  direction: rtl;
}

.room-full-card.reverse>* {
  direction: ltr;
}

.room-full-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.room-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-full-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--teal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.85rem);
  font-weight: 700;
}

.room-full-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.room-full-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.room-full-header h2 {
  font-size: clamp(1.8rem, 1.5vw + 1.2rem, 2rem);
  margin-bottom: 8px;
  color: var(--teal-light);
}

.room-full-subtitle {
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1rem);
  color: var(--text-muted);
}

.room-full-price {
  text-align: right;
  flex-shrink: 0;
}

.price-big {
  display: block;
  font-size: clamp(2.2rem, 1.8vw + 1.5rem, 2.5rem);
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}

.price-small {
  font-size: clamp(0.85rem, 0.7vw + 0.6rem, 0.9rem);
  color: var(--text-muted);
}

.room-full-desc {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1rem);
}

.room-full-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-tag {
  background: rgba(21, 119, 135, 0.15);
  color: var(--teal-light);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.85rem);
  border: 1px solid rgba(21, 119, 135, 0.3);
}

.room-full-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.room-full-actions .btn-primary,
.room-full-actions .btn-outline {
  flex: 1;
  text-align: center;
  padding: 14px 24px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.room-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}

.room-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--teal);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.6vw + 0.55rem, 0.8rem);
  font-weight: 700;
}

.room-content {
  padding: 28px;
}

.room-content h2 {
  font-size: clamp(1.55rem, 1.3vw + 1rem, 1.75rem);
  margin-bottom: clamp(10px, 1vw, 14px);
}

.room-price {
  font-size: clamp(1.9rem, 1.6vw + 1.3rem, 2.1rem);
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: clamp(14px, 1.2vw, 18px);
}

.room-price span {
  font-size: clamp(1.05rem, 0.9vw + 0.7rem, 1.2rem);
  color: var(--text-muted);
  font-weight: 400;
}

.room-content p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  line-height: 1.6;
  margin-bottom: clamp(14px, 1.2vw, 18px);
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-tags span {
  background: rgba(21, 119, 135, 0.2);
  color: var(--teal-light);
  padding: clamp(6px, 0.6vw, 8px) clamp(10px, 1vw, 14px);
  border-radius: 6px;
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.9rem);
}

.room-actions {
  display: flex;
  gap: 12px;
}

.room-actions .btn-primary,
.room-actions .btn-outline {
  flex: 1;
  text-align: center;
  padding: clamp(12px, 1.2vw, 14px) clamp(18px, 1.8vw, 24px);
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
}

.rooms-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
}

.rooms-info h3 {
  font-size: clamp(1.35rem, 1.2vw + 0.9rem, 1.5rem);
  margin-bottom: clamp(14px, 1.2vw, 18px);
  color: var(--teal-light);
}

.rooms-info ul {
  list-style: none;
}

.rooms-info ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
}

.rooms-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ===== ROOM DETAIL PAGE ===== */
.room-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.room-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.room-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 29, 0.7), rgba(10, 26, 29, 0.9));
  z-index: 1;
}

.room-hero .container {
  position: relative;
  z-index: 2;
}

.room-hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.room-badge-large {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.85rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.room-hero h1 {
  font-size: clamp(2.5rem, 2.5vw + 1.5rem, 3.5rem);
  margin-bottom: clamp(14px, 1.2vw, 18px);
}

.room-hero-desc {
  font-size: clamp(1.25rem, 1.1vw + 0.85rem, 1.4rem);
  color: var(--text-muted);
  margin-bottom: clamp(20px, 2vw, 28px);
}

.room-hero-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: clamp(2.7rem, 2.3vw + 1.8rem, 3rem);
  font-weight: 700;
  color: var(--teal-light);
}

.price-unit {
  font-size: clamp(1.1rem, 0.9vw + 0.75rem, 1.2rem);
  color: var(--text-muted);
}

.btn-large {
  padding: 16px 40px;
  font-size: clamp(1rem, 0.85vw + 0.7rem, 1.1rem);
}

.room-details {
  padding: 80px 0;
}

.room-details-grid {
  display: grid;
  gap: 60px;
}

.room-detail-block h2 {
  font-size: clamp(1.9rem, 1.6vw + 1.3rem, 2.1rem);
  margin-bottom: clamp(18px, 1.8vw, 24px);
  color: var(--teal-light);
}

.room-detail-block p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: clamp(14px, 1.2vw, 18px);
}

.features-list {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.feature-item .feature-icon {
  font-size: clamp(1.8rem, 1.5vw + 1.2rem, 2rem);
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: clamp(1.15rem, 1vw + 0.8rem, 1.3rem);
  margin-bottom: clamp(8px, 0.8vw, 10px);
  color: var(--white);
}

.feature-item p {
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  color: var(--text-muted);
  margin: 0;
}

.info-list {
  list-style: none;
  margin-top: 20px;
}

.info-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: clamp(1.1rem, 0.9vw + 0.75rem, 1.2rem);
}

.room-gallery-section {
  padding: 80px 0;
  background: var(--bg-mid);
}

.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.room-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
}

.room-gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
}

.room-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.room-gallery-item:hover img {
  transform: scale(1.05);
}

.cta-booking {
  padding: 80px 0;
  text-align: center;
  background: var(--bg-card);
}

.cta-booking h2 {
  font-size: clamp(2.3rem, 2vw + 1.5rem, 2.6rem);
  margin-bottom: clamp(14px, 1.2vw, 18px);
}

.cta-booking p {
  font-size: clamp(1.15rem, 1vw + 0.8rem, 1.3rem);
  color: var(--text-muted);
  margin-bottom: clamp(28px, 2.8vw, 36px);
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.other-rooms {
  padding: 80px 0;
}

.other-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.other-room-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  text-align: center;
}

.other-room-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}

.other-room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.other-room-card h3 {
  font-size: clamp(1.35rem, 1.2vw + 0.9rem, 1.5rem);
  margin: clamp(18px, 1.8vw, 24px) 0 clamp(8px, 0.8vw, 10px);
  padding: 0 clamp(18px, 1.8vw, 24px);
}

.other-room-card p {
  color: var(--text-muted);
  margin-bottom: clamp(18px, 1.8vw, 24px);
  padding: 0 clamp(18px, 1.8vw, 24px);
}

.other-room-card .btn-outline {
  margin: 0 20px 20px;
  display: inline-block;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox-overlay.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 26, 29, 0.8);
  color: var(--white);
  border: 1px solid var(--border);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: clamp(1.3rem, 1.1vw + 0.85rem, 1.5rem);
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--teal);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 26, 29, 0.8);
  color: var(--white);
  border: 1px solid var(--border);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: clamp(1.8rem, 1.5vw + 1.2rem, 2rem);
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.lightbox-arrow:hover {
  background: var(--teal);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  margin-top: clamp(14px, 1.2vw, 18px);
  color: var(--text-muted);
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
}

.gallery-item {
  cursor: pointer;
}

.room-gallery-item {
  cursor: pointer;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  font-size: clamp(1.3rem, 1.1vw + 0.85rem, 1.5rem);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-btn:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.3s, transform 0.3s;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.quick-contact {
  background: var(--orange);
}

.quick-contact:hover {
  background: var(--orange-dark);
}

/* ===== QUICK CONTACT POPUP ===== */
.quick-contact-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 300px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.quick-contact-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.qc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.qc-header h3 {
  font-size: clamp(1.05rem, 0.9vw + 0.7rem, 1.2rem);
  margin: 0;
  color: var(--teal-light);
}

.qc-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: clamp(1.2rem, 1vw + 0.8rem, 1.3rem);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.qc-close:hover {
  color: var(--white);
}

.qc-content {
  padding: 12px;
}

.qc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  transition: background 0.3s;
  text-decoration: none;
  color: inherit;
}

.qc-item:hover {
  background: var(--bg-card);
}

.qc-icon {
  font-size: clamp(1.3rem, 1.1vw + 0.85rem, 1.5rem);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 50%;
  flex-shrink: 0;
}

.qc-label {
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.9rem);
  color: var(--text-muted);
  margin-bottom: 2px;
}

.qc-value {
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  color: var(--white);
  font-weight: 500;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: var(--bg-mid);
  border: 1px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s;
  margin: auto;
}

.booking-modal-box {
  max-width: 600px;
  max-height: calc(100vh - 48px);
}

.booking-form-modal {
  margin-top: 20px;
}

.booking-form-modal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.booking-form-modal .form-group {
  display: flex;
  flex-direction: column;
}

.booking-form-modal label {
  font-size: clamp(0.8rem, 0.65vw + 0.6rem, 0.85rem);
  color: var(--text-muted);
  margin-bottom: 6px;
}

.booking-form-modal input,
.booking-form-modal select,
.booking-form-modal textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--white);
  font-family: inherit;
  font-size: clamp(0.9rem, 0.75vw + 0.65rem, 0.95rem);
}

.booking-form-modal input:focus,
.booking-form-modal select:focus,
.booking-form-modal textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.booking-form-modal textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-form-modal .form-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius);
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1rem);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}

.booking-form-modal .form-submit:hover {
  background: var(--orange-dark);
}

.booking-form-modal .form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking-form-modal .success-msg {
  display: none;
  background: rgba(21, 119, 135, 0.2);
  border: 1px solid var(--teal);
  color: var(--teal-light);
  padding: 12px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 12px;
}

.booking-form-modal .form-note {
  font-size: clamp(0.7rem, 0.55vw + 0.5rem, 0.75rem);
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.popup-overlay.show .popup-box {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  color: var(--text-muted);
  font-size: clamp(1.2rem, 1vw + 0.8rem, 1.3rem);
  line-height: 1;
  transition: color 0.2s;
}

.popup-close:hover {
  color: var(--white);
}

.popup-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: clamp(0.65rem, 0.5vw + 0.5rem, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.popup-box h2 {
  font-size: clamp(1.7rem, 1.5vw + 1.1rem, 1.9rem);
  font-weight: 700;
  margin-bottom: clamp(10px, 1vw, 12px);
}

.popup-box p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1.05rem);
  margin-bottom: clamp(18px, 1.8vw, 24px);
}

.popup-deals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.popup-deal {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
}

.popup-deal .pd-label {
  font-size: clamp(0.7rem, 0.55vw + 0.5rem, 0.75rem);
  color: var(--text-muted);
}

.popup-deal .pd-val {
  font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1rem);
  font-weight: 700;
}

.popup-deal .pd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.popup-deal.orange .pd-dot {
  background: var(--orange);
}

.popup-btn-book {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 14px;
  border-radius: 8px;
  font-size: clamp(0.85rem, 0.7vw + 0.6rem, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.popup-btn-book:hover {
  background: var(--orange-dark);
}

.popup-skip {
  width: 100%;
  background: none;
  color: var(--text-muted);
  font-size: clamp(0.75rem, 0.6vw + 0.55rem, 0.8rem);
  padding: 10px;
  margin-top: 8px;
  transition: color 0.2s;
}

.popup-skip:hover {
  color: var(--white);
}

/* ===== SUCCESS ===== */
.success-msg {
  display: none;
  background: rgba(21, 119, 135, 0.2);
  border: 1px solid var(--teal);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: var(--teal-light);
  font-size: clamp(0.85rem, 0.7vw + 0.6rem, 0.9rem);
  margin-top: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header {
    padding: 0 20px;
  }

  nav {
    display: none;
  }

  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  nav.open a {
    font-size: clamp(0.95rem, 0.8vw + 0.65rem, 1rem);
  }

  .burger {
    display: flex;
  }

  .btn-book {
    display: none;
  }

  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    grid-template-columns: 1fr;
  }

  .certs-inner {
    grid-template-columns: 1fr;
  }

  .cert-card-mock {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 220px;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-photo {
    height: 180px;
  }

  .room-full-card {
    grid-template-columns: 1fr;
  }

  .room-full-image {
    min-height: 300px;
  }

  .room-full-content {
    padding: 30px 20px;
  }

  .room-full-header {
    flex-direction: column;
  }

  .room-full-price {
    text-align: left;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  section {
    padding: 64px 0;
  }

  .container {
    padding: 0 20px;
  }

  .halls-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-photo {
    height: 220px;
  }

  .feature-card:hover {
    transform: translateY(-4px) rotateY(0deg);
  }

  .feature-card:nth-child(even):hover {
    transform: translateY(-4px) rotateY(0deg);
  }

  .room-gallery-grid {
    grid-template-columns: 1fr;
  }

  .room-gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-column: auto;
  }

  .gallery-item:nth-child(4) {
    grid-column: auto;
  }

  .gallery-placeholder {
    height: 180px;
  }
}

/* ===== ICON STYLES ===== */
.feature-icon img,
.feature-icon-large img,
.contact-icon img,
.qc-icon img,
.ci-icon img,
.md-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon-large {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.qc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.md-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-btn span img {
  width: 24px;
  height: 24px;
}

/* ===== ROOM VIDEO SECTION ===== */
.room-video-section {
  margin-bottom: 48px;
}

.room-video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  background: #000;
}

.room-video-container iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
}

@media (max-width: 768px) {
  .room-video-container iframe {
    height: 300px;
  }

  .popup-box {
    padding: 24px;
    max-height: calc(100vh - 32px);
  }

  .popup-overlay {
    padding: 16px;
    align-items: flex-start;
  }

  .booking-form-modal .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== HALL VIDEO WRAP FIX ===== */
.hall-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
  background: #000;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.hall-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hall-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(21, 119, 135, 0.95);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  backdrop-filter: blur(8px);
}

/* ===== HALL CARD LAYOUT FIX ===== */
.hall-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hall-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.hall-desc {
  flex: 1;
  margin-bottom: 20px;
}

.hall-price-row {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===== HALL PRICE ROW FIX ===== */
.hall-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.hall-price {
  white-space: nowrap;
  flex-shrink: 0;
}

.hall-price-row .btn-sm {
  flex-shrink: 0;
  min-width: fit-content;
}

@media (max-width: 480px) {
  .hall-price-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hall-price {
    text-align: center;
  }

  .feature-photo-page {
    height: 200px;
  }

  .feature-card-page:hover {
    transform: translateY(-4px) rotateY(0deg);
  }

  .feature-card-page:nth-child(even):hover {
    transform: translateY(-4px) rotateY(0deg);
  }

  .popup-box {
    padding: 20px;
    border-radius: var(--radius);
  }

  .popup-overlay {
    padding: 12px;
  }
}

/* ===== HALL CARD BUTTON FIX ===== */
.hall-price-row .btn-sm {
  width: 100%;
  text-align: center;
  padding: 10px 20px;
}

/* ===== HALL PRICE ROW - VERTICAL LAYOUT ===== */
.hall-price-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.hall-price {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

/* ===== BUTTON TEXT VERTICAL ALIGN FIX ===== */
.btn-sm,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== SPA PAGE ===== */

/* SPA HERO */
.spa-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.spa-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.spa-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.spa-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.spa-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin: 16px 0 24px;
}

.spa-hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
}

/* SPA PROGRAMS */
.spa-programs {
  padding: 80px 0;
  background: var(--bg-dark);
}

.spa-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.spa-program-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.spa-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(21, 119, 135, 0.3);
  border-color: var(--teal);
}

.spa-program-card.featured {
  border: 2px solid var(--orange);
  position: relative;
}

.spa-program-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: 16px;
  left: -8px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.spa-program-img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--bg-mid);
}

.spa-program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.spa-program-card:hover .spa-program-img img {
  transform: scale(1.1);
}

.spa-program-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(21, 119, 135, 0.95);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.spa-program-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.spa-program-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.spa-program-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.spa-program-duration svg {
  flex-shrink: 0;
}

.spa-program-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.spa-program-includes {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.spa-program-includes li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.95rem;
}

.spa-program-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-weight: 700;
}

.spa-program-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.spa-program-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
}

/* SPA NOTE */
.spa-note {
  margin-top: 48px;
  padding: 24px;
  background: rgba(21, 119, 135, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.spa-note p {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.spa-note p:last-child {
  margin-bottom: 0;
}

.spa-note a {
  color: var(--teal-light);
  text-decoration: underline;
}

.spa-note a:hover {
  color: var(--orange);
}

/* SPA SERVICES */
.spa-services {
  padding: 80px 0;
  background: var(--bg-mid);
}

.spa-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.spa-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.spa-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(21, 119, 135, 0.25);
  border-color: var(--teal);
}

.spa-service-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-mid);
}

.spa-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.spa-service-card:hover .spa-service-img img {
  transform: scale(1.1);
}

.spa-service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 20px 24px 8px;
}

.spa-service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 24px 16px;
}

.spa-service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 24px 24px;
}

.spa-service-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .spa-hero {
    height: 50vh;
    min-height: 350px;
  }

  .spa-programs {
    padding: 60px 0;
  }

  .spa-programs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .spa-program-card.featured::before {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  .spa-services {
    padding: 60px 0;
  }

  .spa-services-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .spa-service-icon {
    width: 64px;
    height: 64px;
  }

  .spa-service-icon svg {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {

  .spa-programs-grid,
  .spa-services-grid {
    grid-template-columns: 1fr;
  }

  .spa-program-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .spa-program-footer .btn-sm {
    width: 100%;
    text-align: center;
  }
}

/* ===== MENU PAGE ===== */
.menu-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

/* FILTER */
.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 48px 0 64px;
}

.filter-btn {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
}

/* CATEGORY */
.menu-category {
  margin-bottom: 64px;
}

.menu-category.hidden {
  display: none;
}

.category-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 32px;
  text-align: left;
  position: relative;
  padding-bottom: 12px;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* MENU GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* MENU CARD */
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(21, 119, 135, 0.3);
  border-color: var(--teal);
}

.menu-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-mid);
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.1);
}

.menu-card-body {
  padding: 20px;
}

.menu-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  min-height: 2.4em;
}

.menu-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.menu-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
}

.menu-weight {
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(21, 119, 135, 0.2);
  padding: 4px 12px;
  border-radius: 6px;
}

/* DISH MODAL */
.dish-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dish-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.dish-modal {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.dish-modal-overlay.active .dish-modal {
  transform: scale(1);
}

.dish-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dish-modal-close:hover {
  background: var(--orange);
  transform: rotate(90deg);
}

.dish-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.dish-modal-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--bg-dark);
}

.dish-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-modal-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dish-modal-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.dish-modal-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.dish-modal-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
}

.dish-modal-weight {
  font-size: 1rem;
  color: var(--text-muted);
  background: rgba(21, 119, 135, 0.2);
  padding: 8px 16px;
  border-radius: 8px;
}

.dish-modal-composition {
  margin-bottom: 32px;
}

.dish-modal-composition h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 12px;
}

.dish-modal-composition p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-page {
    padding: 100px 0 60px;
  }

  .menu-filter {
    gap: 8px;
    margin: 32px 0 48px;
  }

  .filter-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }

  .menu-card-img {
    height: 180px;
  }

  .category-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .dish-modal-content {
    grid-template-columns: 1fr;
  }

  .dish-modal-img {
    min-height: 300px;
  }

  .dish-modal-info {
    padding: 24px;
  }

  .dish-modal-info h2 {
    font-size: 1.5rem;
  }

  .dish-modal-price {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-filter {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }
}

.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}


.booking-form-modal .wpcf7-form-control-wrap {
  display: block;
}

.booking-form-modal p {
  margin: 0;
}


/* Контейнер для видео */
.hall-video-wrap {
  position: relative;
  width: 100%;
  /* Устанавливаем пропорции (например, 16:9). 
       Это заставит блок иметь высоту даже до загрузки видео */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
  /* Черный фон, пока видео грузится */
}

/* Само видео */
.hall-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Растягиваем видео на весь блок без потери пропорций (как background-size: cover) */
  object-fit: cover;
  display: block;
}



/* Если вы используете iframe (YouTube) в этом же блоке */
.hall-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}