@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #343a40;
}

a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  color: #2c3e50;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2c3e50;
}

h1 {
  color: #fff;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.site-main {
  flex: 1;
  background: #fff;
  width: 100%;
}

.page-header {
  background-color: #f8f9fa;
  padding: 3rem 0;
  margin-bottom: 2rem;
}
.page-header .page-title {
  margin-bottom: 0.5rem;
}
.page-header .page-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  margin: 0;
}

.site-footer {
  background-color: #343a40;
  color: #fff;
  padding: 2rem 0;
  margin-top: auto;
}
.site-footer .container {
  text-align: center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.nav-link, .lang-btn {
  transition: all 0.2s ease;
  cursor: pointer;
}
.nav-link:hover, .lang-btn:hover {
  opacity: 0.8;
}
.nav-link:active, .lang-btn:active {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .hero-video-section {
    height: 70vh;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-video {
    transition: opacity 0.1s ease-out;
  }
  .hero-video:not(.loaded) {
    filter: none;
  }
  .hero-video-section::before {
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border-width: 1px;
    animation-duration: 1s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    transition: none;
  }
  .hero-content h1, .hero-content p {
    text-shadow: none;
  }
  .hero-video-section::before {
    animation: none;
    display: none;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  padding: 1rem 0;
  min-height: 70px;
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.site-header.scrolled .header-container .logo-section .site-logo {
  width: 160px;
}
.site-header.scrolled .header-container .contact-section .book-button {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}
.site-header.scrolled .header-container .contact-section .call-button {
  padding: 0.4rem;
  min-width: 36px;
  min-height: 36px;
}
.site-header.scrolled .header-container .contact-section .language-switcher .language-link {
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
}
.site-header .header-container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .header-container .logo-section .site-logo {
  width: 200px;
  height: auto;
  display: block;
  transition: width 0.3s ease;
}
.site-header .header-container .nav-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.site-header .header-container .nav-section .main-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}
.site-header .header-container .nav-section .main-nav .nav-item .nav-link {
  position: relative;
  text-decoration: none;
  background-color: transparent !important;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.site-header .header-container .nav-section .main-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 1px;
  background-color: white;
  transform-origin: right;
  transition: transform 0.3s ease;
}
.site-header .header-container .nav-section .main-nav .nav-item .nav-link:hover {
  background-color: transparent !important;
}
.site-header .header-container .nav-section .main-nav .nav-item .nav-link:not(.active):hover::after {
  transform: translateX(-50%) scaleX(1);
  transform-origin: left;
}
.site-header .header-container .nav-section .main-nav .nav-item .nav-link.active {
  background-color: transparent !important;
}
.site-header .header-container .nav-section .main-nav .nav-item .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}
.site-header .header-container .contact-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .header-container .contact-section .book-button {
  background-color: #1E1E1E;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.site-header .header-container .contact-section .book-button:hover {
  background-color: #2A2A2A;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.site-header .header-container .contact-section .phone-dropdown-container {
  position: relative;
  display: inline-block;
}
.site-header .header-container .contact-section .phone-dropdown-container .call-button {
  background-color: #1E1E1E;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.site-header .header-container .contact-section .phone-dropdown-container .call-button:hover {
  background-color: #2A2A2A;
  color: #fff;
  text-decoration: none;
}
.site-header .header-container .contact-section .phone-dropdown-container .call-button.active {
  background-color: #2A2A2A;
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: #1E1E1E;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  min-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content {
  padding: 1rem;
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-dropdown-header {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-dropdown-header span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  background-color: transparent;
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option svg {
  flex-shrink: 0;
  opacity: 0.8;
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option .phone-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option .phone-info .phone-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
.site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option .phone-info .phone-number {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}
.site-header .header-container .contact-section .language-switcher {
  display: flex;
  gap: 0.5rem;
}
.site-header .header-container .contact-section .language-switcher .language-link {
  text-decoration: none;
  background-color: #1E1E1E;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  min-width: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.site-header .header-container .contact-section .language-switcher .language-link:hover {
  background-color: #2A2A2A;
}
.site-header .header-container .contact-section .language-switcher .language-link.active {
  background-color: #333333;
}
.site-header .header-container .contact-section .location-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-header .header-container .contact-section .location-link svg {
  flex-shrink: 0;
}
.site-header .header-container .contact-section .location-link:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  position: relative;
}
.burger-menu .burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.burger-menu .burger-line:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-6px);
}
.burger-menu .burger-line:nth-child(2) {
  transform: translate(-50%, -50%);
}
.burger-menu .burger-line:nth-child(3) {
  transform: translate(-50%, -50%) translateY(6px);
}
.burger-menu:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.burger-menu.active .burger-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.burger-menu.active .burger-line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1001;
}
.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 10rem 1rem 2rem 1rem;
  height: 100%;
  overflow-y: auto;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  margin-bottom: 1rem;
}

.mobile-nav-link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.mobile-nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 1rem;
}
.mobile-nav-link.active {
  color: #fff;
  border-bottom-color: #fff;
}

@media (max-width: 1460px) {
  .site-header .header-container {
    gap: 1rem;
  }
  .site-header .header-container .logo-section {
    width: 140px;
  }
  .site-header .header-container .logo-section .logo-link .site-logo {
    width: 100%;
  }
  .site-header .header-container .nav-section .main-nav .nav-item .nav-link {
    padding: 0.5rem 0.5rem;
  }
}
@media (max-width: 1320px) {
  .site-header .header-container .nav-section {
    display: none;
  }
  .site-header .header-container .contact-section .burger-menu {
    display: flex;
  }
  .site-header .header-container .contact-section .language-switcher, .site-header .header-container .contact-section .location-link, .site-header .header-container .contact-section .book-button, .site-header .header-container .contact-section .call-button {
    display: flex;
  }
}
@media (max-width: 800px) {
  .site-header .header-container .contact-section .location-link {
    display: none;
  }
  .site-header .header-container .contact-section .book-button {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .call-button {
    padding: 0.5rem;
    min-width: 36px;
    min-height: 36px;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown {
    right: -10px;
    min-width: 260px;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content {
    padding: 0.8rem;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option {
    padding: 0.6rem;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option .phone-info .phone-label {
    font-size: 0.75rem;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option .phone-info .phone-number {
    font-size: 0.85rem;
  }
  .site-header .header-container .contact-section .language-switcher .language-link {
    font-size: 0.7rem;
    padding: 0.5rem 0.6rem;
    min-width: 28px;
  }
  .site-header.scrolled .header-container .logo-section .site-logo {
    width: 140px;
  }
  .site-header.scrolled .header-container .contact-section .book-button {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
  }
  .site-header.scrolled .header-container .contact-section .phone-dropdown-container .call-button {
    padding: 0.3rem;
    min-width: 32px;
    min-height: 32px;
  }
  .site-header.scrolled .header-container .contact-section .language-switcher .language-link {
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
  }
}
@media (max-width: 550px) {
  .site-header .header-container .logo-section {
    width: 120px;
  }
  .site-header .header-container .logo-section .site-logo {
    width: 120px;
  }
  .site-header .header-container .contact-section .book-button {
    display: none;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .call-button {
    padding: 0.4rem;
    min-width: 34px;
    min-height: 34px;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown {
    right: -20px;
    min-width: 240px;
    left: auto;
    transform: translateX(0);
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content {
    padding: 0.7rem;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-dropdown-header {
    margin-bottom: 0.5rem;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-dropdown-header span {
    font-size: 0.8rem;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options {
    gap: 0.4rem;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option {
    padding: 0.5rem;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option .phone-info .phone-label {
    font-size: 0.7rem;
  }
  .site-header .header-container .contact-section .phone-dropdown-container .phone-dropdown .phone-dropdown-content .phone-options .phone-option .phone-info .phone-number {
    font-size: 0.8rem;
  }
  .site-header .header-container .contact-section .language-switcher .language-link {
    font-size: 0.65rem;
    padding: 0.4rem 0.5rem;
    min-width: 26px;
  }
  .mobile-nav-link {
    font-size: 1.1rem;
  }
  .site-header.scrolled .header-container .logo-section .site-logo {
    width: 100px;
  }
  .site-header.scrolled .header-container .contact-section .phone-dropdown-container .call-button {
    padding: 0.25rem;
    min-width: 30px;
    min-height: 30px;
  }
  .site-header.scrolled .header-container .contact-section .language-switcher .language-link {
    padding: 0.25rem 0.4rem;
    font-size: 0.6rem;
  }
}
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loader-container {
  text-align: center;
  color: #fff;
}

.loader-spinner {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.spinner-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}
.spinner-ring:nth-child(1) {
  border-top-color: #fff;
  animation-delay: 0s;
}
.spinner-ring:nth-child(2) {
  border-right-color: rgba(255, 255, 255, 0.7);
  animation-delay: 0.3s;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
}
.spinner-ring:nth-child(3) {
  border-bottom-color: rgba(255, 255, 255, 0.4);
  animation-delay: 0.6s;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-text {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.loading-dots {
  display: inline-block;
  min-width: 140px;
  text-align: left;
}

.loader-container {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.loader-text {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.mobile-location {
  margin-top: 2rem;
  padding-top: 1rem;
}

.mobile-location-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.mobile-location-link svg {
  flex-shrink: 0;
}
.mobile-location-link:hover {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 1rem;
  text-decoration: none;
}

.hero-video-section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.hero-video-section.video-loaded::before {
  opacity: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-video.loaded {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}
.hero-content .lead {
  font-size: 1.25rem;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
@media (max-width: 768px) {
  .hero-content .lead {
    font-size: 1.1rem;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.nav-link, .lang-btn {
  transition: all 0.2s ease;
  cursor: pointer;
}
.nav-link:hover, .lang-btn:hover {
  opacity: 0.8;
}
.nav-link:active, .lang-btn:active {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .hero-video-section {
    height: 70vh;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-video {
    transition: opacity 0.1s ease-out;
  }
  .hero-video:not(.loaded) {
    filter: none;
  }
  .hero-video-section::before {
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border-width: 1px;
    animation-duration: 1s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    transition: none;
  }
  .hero-content h1, .hero-content p {
    text-shadow: none;
  }
  .hero-video-section::before {
    animation: none;
    display: none;
  }
}
.booking-form-section {
  background: #663108;
  padding: 20px 0;
  position: relative;
  scroll-margin-top: 120px;
}
.booking-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.booking-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.booking-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 1247px) {
  .booking-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
}

.booking-text {
  flex: 0 0 auto;
}
@media (max-width: 1247px) {
  .booking-text {
    order: -1;
    margin-bottom: 10px;
  }
}

.booking-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
@media (max-width: 1247px) {
  .booking-title {
    font-size: 24px;
  }
}

.booking-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 1247px) {
  .booking-subtitle {
    font-size: 14px;
  }
}

.booking-form {
  display: flex;
  align-items: end;
  gap: 20px;
  flex-wrap: nowrap;
  flex: 0 0 auto;
}
@media (max-width: 1247px) {
  .booking-form {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    max-width: 550px;
    width: 100%;
  }
}

.booking-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.booking-field:nth-child(1), .booking-field:nth-child(2) {
  flex: 0 0 180px;
  min-width: 180px;
}
.booking-field:nth-child(3) {
  flex: 0 0 200px;
  min-width: 250px;
}
.booking-field:nth-child(4) {
  flex: 0 0 auto;
}
@media (max-width: 1247px) {
  .booking-field {
    flex: 1 !important;
    min-width: auto !important;
  }
}

.booking-label {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 1247px) {
  .booking-label {
    text-align: left;
  }
}

.booking-input {
  height: 48px;
  padding: 0 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}
.booking-input:focus {
  outline: none;
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.booking-input::placeholder {
  color: #999;
}

.guests-selector {
  position: relative;
}

.guests-button {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}
.guests-button:hover, .guests-button:focus {
  outline: none;
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.guests-text {
  font-size: 16px;
  color: #333;
}

.guests-arrow {
  transition: transform 0.3s ease;
}
.guests-button.active .guests-arrow {
  transform: rotate(180deg);
}

.guests-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 4px;
}
.guests-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.guests-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}
.guests-option:last-child {
  border-bottom: none;
}

.guest-type {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border: 2px solid #8B4513;
  border-radius: 50%;
  background: transparent;
  color: #8B4513;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.counter-btn:hover {
  background: #8B4513;
  color: #fff;
}
.counter-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.counter-btn:disabled:hover {
  background: transparent;
  color: #8B4513;
}

.counter-value {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  min-width: 20px;
  text-align: center;
}

.booking-submit-btn {
  height: 48px;
  padding: 0 32px;
  background: #1e1e1e;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  align-self: end;
}
.booking-submit-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.booking-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1247px) {
  .booking-submit-btn {
    width: 100%;
    margin-top: 10px;
    align-self: stretch;
  }
}

.menu-categories-section {
  height: 100vh;
  max-height: 1200px;
  background: #fff;
  padding: 0;
  margin: 0;
}
.menu-categories-section .container {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.menu-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1280px) {
  .menu-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .menu-categories-grid {
    grid-template-columns: 1fr;
  }
}

.menu-category-item {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  height: 100%;
}
.menu-category-item:hover {
  transform: none;
  box-shadow: none;
}
.menu-category-item:hover .category-image {
  transform: scale(1.05);
}
.menu-category-item:hover .category-overlay {
  align-items: flex-end;
  opacity: 0.3;
}
.menu-category-item:hover .category-title {
  transform: translateY(-200px);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);
}
@media (max-width: 768px) {
  .menu-category-item:hover .category-title {
    transform: translateY(-160px);
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .menu-category-item:hover .category-title {
    transform: translateY(-130px);
    font-size: 1.4rem;
    letter-spacing: 0.8px;
  }
}

.category-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  opacity: 1;
  transition: opacity 0.6s ease;
}
@media (max-width: 768px) {
  .category-overlay {
    padding-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .category-overlay {
    padding-bottom: 20px;
  }
}

.category-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  transform: translateY(0px);
  opacity: 1;
  transition: transform 0.5s ease, font-size 0.5s ease, font-weight 0.5s ease, letter-spacing 0.5s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .category-title {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .category-title {
    font-size: 0.9rem;
    letter-spacing: 0.3px;
  }
}

.category-image:not([style*=background-image]) {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.category-image:not([style*=background-image])::before {
  content: "📸";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.3;
}

.menu-page {
  min-height: 100vh;
  background-color: #663108;
  overflow-x: hidden;
}

body:has(.menu-page) .site-footer {
  display: none;
}

.menu-header {
  padding: 160px 0 30px;
  text-align: center;
  background: #663108;
  position: relative;
  will-change: transform;
  transition: transform 0.1s ease-out;
}
.menu-header .menu-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .menu-header .menu-title {
    font-size: 2rem;
  }
}
.menu-header .menu-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
@media (max-width: 768px) {
  .menu-header .menu-subtitle {
    font-size: 1rem;
  }
}

.menu-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid #d4af37;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  will-change: transform;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .menu-navigation {
    padding: 15px 0;
  }
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 768px) {
  .menu-tabs {
    gap: 8px;
    padding: 0 10px;
  }
}

.menu-tab {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .menu-tab {
    min-width: 120px;
    padding: 12px 16px;
  }
}
@media (max-width: 480px) {
  .menu-tab {
    min-width: 100px;
    padding: 10px 12px;
  }
}
.menu-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-color: #d4af37;
}
.menu-tab.active {
  background: linear-gradient(145deg, #d4af37, #b8941f);
  border-color: #d4af37;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.menu-tab.active .tab-category {
  color: rgba(255, 255, 255, 0.9);
}
.menu-tab.active .tab-name {
  color: white;
}

.tab-category {
  font-size: 0.8rem;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .tab-category {
    font-size: 0.7rem;
  }
}

.tab-name {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
}
@media (max-width: 768px) {
  .tab-name {
    font-size: 0.9rem;
  }
}

.menu-content {
  position: relative;
  min-height: 60vh;
  margin: 0;
  padding: 0;
}
.menu-content * {
  margin: 0 !important;
  padding: 0 !important;
}
.menu-content > * {
  margin: 0 !important;
  padding: 0 !important;
}

.menu-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}
.menu-loading .loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #d4af37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
.menu-loading p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.menu-images {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}
.menu-images > * {
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

.menu-image-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  background-color: #663108;
  margin: 0 !important;
  padding: 0 !important;
  border: none;
  box-sizing: border-box;
  float: none;
  clear: none;
  will-change: transform, opacity;
}
.menu-image-container.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.menu-image-container.scroll-animate {
  transform: translateY(-20px) scale(1.02);
  transition: all 0.3s ease;
}
.menu-image-container.loaded .menu-image {
  filter: blur(0) brightness(1);
}
.menu-image-container.error .menu-image {
  filter: grayscale(1) brightness(0.5);
}
.menu-image-container.in-viewport {
  animation: imageFloat 6s ease-in-out infinite;
}
.menu-image-container.parallax-effect .menu-image {
  transform: scale(1.1);
  transition: transform 0.8s ease;
}

.menu-image {
  width: 120%;
  height: 100vh;
  object-fit: contain;
  object-position: center center;
  filter: blur(5px) brightness(0.8);
  transition: all 0.5s ease;
  display: block;
  margin: -10vh -10% 0 -10%;
  padding: 0 !important;
  border: none;
  vertical-align: top;
  will-change: filter, transform;
  line-height: 0;
}

.menu-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 40px 20px;
}
.menu-empty .empty-message {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 500px;
}
@media (max-width: 768px) {
  .menu-empty .empty-message {
    padding: 30px 20px;
  }
}
.menu-empty .empty-message h3 {
  color: #212529;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .menu-empty .empty-message h3 {
    font-size: 1.5rem;
  }
}
.menu-empty .empty-message p {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .menu-empty .empty-message p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .menu-page .menu-header {
    padding: 60px 0 30px;
  }
  .menu-page .menu-navigation {
    position: relative;
    padding: 10px 0;
  }
  .menu-page .menu-image-container {
    height: auto;
    min-height: auto;
    margin: 0 !important;
    padding: 0 !important;
  }
  .menu-page .menu-image {
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0;
    object-fit: cover;
    display: block;
  }
}
@media (max-width: 480px) {
  .menu-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .menu-tabs .menu-tab {
    min-width: auto;
    width: 100%;
  }
  .menu-image-container {
    height: auto;
    min-height: auto;
    margin: 0 !important;
    padding: 0 !important;
  }
  .menu-image {
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0;
    object-fit: cover;
    display: block;
  }
}
.fixed-order-button {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
@media (max-width: 768px) {
  .fixed-order-button {
    bottom: 20px;
  }
}

.order-btn {
  background: linear-gradient(145deg, #d4af37, #b8941f);
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}
.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
  background: linear-gradient(145deg, #e6c248, #d4af37);
}
.order-btn:active {
  transform: translateY(-1px);
}
.order-btn .order-icon {
  font-size: 1.3rem;
}
.order-btn .order-text {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .order-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .order-btn .order-icon {
    font-size: 1.2rem;
  }
  .order-btn .order-text {
    font-size: 1rem;
  }
}

.order-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
}
.order-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px 20px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 768px) {
  .modal-header {
    padding: 20px 20px 15px;
  }
}
.modal-header h3 {
  margin: 0;
  color: #212529;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .modal-header h3 {
    font-size: 1.3rem;
  }
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.modal-close:hover {
  background: #f8f9fa;
  color: #212529;
}

.modal-body {
  padding: 25px 30px 30px;
}
@media (max-width: 768px) {
  .modal-body {
    padding: 20px;
  }
}

.order-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #212529;
  font-weight: 500;
  font-size: 0.95rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: #6c757d;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  text-align: center;
}

.submit-btn {
  background: linear-gradient(145deg, #28a745, #20c997);
  border: none;
  border-radius: 12px;
  padding: 15px 30px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  background: linear-gradient(145deg, #34ce57, #28a745);
}
.submit-btn:active {
  transform: translateY(0);
}
.submit-btn span:first-child {
  font-size: 1.2rem;
}

.contact-options {
  border-top: 1px solid #eee;
  padding-top: 25px;
  text-align: center;
}

.contact-title {
  margin: 0 0 20px 0;
  color: #6c757d;
  font-size: 0.95rem;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media (max-width: 480px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact-btn.whatsapp {
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: white;
}
.contact-btn.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.contact-btn.telegram {
  background: linear-gradient(145deg, #0088cc, #006bb3);
  color: white;
}
.contact-btn.telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
}
.contact-btn .contact-icon {
  font-size: 1.1rem;
}

@keyframes imageFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.01);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  }
}
.menu-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.menu-header.parallax {
  transform: translateY(var(--scroll-offset, 0));
}

.menu-tab {
  animation: fadeInUp 0.6s ease forwards;
}
.menu-tab:nth-child(1) {
  animation-delay: 0.1s;
}
.menu-tab:nth-child(2) {
  animation-delay: 0.2s;
}
.menu-tab:nth-child(3) {
  animation-delay: 0.3s;
}
.menu-tab:nth-child(4) {
  animation-delay: 0.4s;
}
.menu-tab:nth-child(5) {
  animation-delay: 0.5s;
}

.order-btn {
  animation: pulseGlow 3s ease-in-out infinite;
}
.order-btn:hover {
  animation: none;
}

.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #d4af37;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top-btn:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.scroll-to-top-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.scroll-to-top-btn svg {
  display: block;
  margin: 0 auto;
  transition: transform 0.2s ease;
}
.scroll-to-top-btn:hover svg {
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .scroll-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .scroll-to-top-btn svg {
    width: 20px;
    height: 20px;
  }
}

.banquet-halls-section {
  padding: 0;
  margin: 0;
  background: #f8f9fa;
  position: relative;
}
.banquet-halls-section .slick-slider .slick-dots {
  position: absolute !important;
  bottom: clamp(20px, 3vw, 30px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  text-align: center !important;
}
.banquet-halls-section ul.slick-dots {
  position: absolute !important;
  bottom: clamp(20px, 3vw, 30px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.banquet-halls-section .banquet-halls-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.banquet-halls-section .banquet-halls-header {
  text-align: center;
  padding: 80px 20px 60px;
  background: #f8f9fa;
}
.banquet-halls-section .banquet-halls-header .banquet-halls-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.2;
}
.banquet-halls-section .banquet-halls-header .banquet-halls-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.banquet-halls-section .banquet-halls-slider {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 1000px;
  height: 1000px;
  overflow: hidden;
  border-radius: 20px;
}
.banquet-halls-section .banquet-halls-slider .slick-list,
.banquet-halls-section .banquet-halls-slider .slick-track {
  height: 100%;
  min-height: 1000px;
}
.banquet-halls-section .banquet-halls-slider .slick-slide {
  height: 1000px;
  min-height: 1000px;
}
.banquet-halls-section .banquet-halls-slider .slick-slide > div {
  height: 100%;
  min-height: 1000px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.banquet-halls-section .banquet-hall-slide {
  position: relative;
  width: 100%;
  height: 1000px;
  min-height: 1000px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 20px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.banquet-halls-section .banquet-hall-slide .banquet-hall-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.banquet-halls-section .banquet-hall-slide .banquet-hall-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 0.5 !important;
}
.banquet-halls-section .banquet-hall-slide .banquet-hall-content .banquet-hall-name {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 600;
  margin-bottom: clamp(25px, 3vw, 35px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white !important;
}
.banquet-halls-section .banquet-hall-slide .banquet-hall-content .banquet-hall-description {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}
.banquet-halls-section .banquet-hall-slide .banquet-hall-content .banquet-hall-description p {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: clamp(12px, 2vw, 18px);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  font-weight: 400;
  letter-spacing: 0.2px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.banquet-halls-section .banquet-hall-slide .banquet-hall-content .banquet-hall-description p:last-child {
  margin-bottom: 0;
}
.banquet-halls-section .slick-prev,
.banquet-halls-section .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: clamp(50px, 6vw, 70px);
  height: clamp(50px, 6vw, 70px);
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banquet-halls-section .slick-prev:before,
.banquet-halls-section .slick-next:before {
  content: "";
  width: clamp(10px, 1.8vw, 14px);
  height: clamp(10px, 1.8vw, 14px);
  border-top: 3px solid white;
  border-right: 3px solid white;
  border-radius: 2px;
}
.banquet-halls-section .slick-prev:hover,
.banquet-halls-section .slick-next:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}
.banquet-halls-section .slick-prev {
  left: clamp(20px, 3vw, 40px);
}
.banquet-halls-section .slick-prev:before {
  transform: rotate(-135deg);
  margin-left: -3px;
  margin-top: -1px;
}
.banquet-halls-section .slick-next {
  right: clamp(20px, 3vw, 40px);
}
.banquet-halls-section .slick-next:before {
  transform: rotate(45deg);
  margin-right: -3px;
  margin-bottom: -1px;
}
.banquet-halls-section .slick-dots {
  position: absolute !important;
  bottom: clamp(20px, 3vw, 30px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 4 !important;
  display: flex !important;
  flex-direction: row !important;
  gap: clamp(8px, 1.5vw, 12px) !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
  text-align: center !important;
}
.banquet-halls-section .slick-dots li {
  display: inline-block !important;
  margin: 0 clamp(4px, 0.8vw, 6px) !important;
  padding: 0 !important;
  list-style: none !important;
}
.banquet-halls-section .slick-dots li button {
  display: block !important;
  width: clamp(10px, 2vw, 14px) !important;
  height: clamp(10px, 2vw, 14px) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.5) !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 0 !important;
  line-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-indent: -9999px !important;
  outline: none !important;
}
.banquet-halls-section .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  transform: scale(1.1) !important;
}
.banquet-halls-section .slick-dots li.slick-active button {
  background: white !important;
  transform: scale(1.2) !important;
}

.banquet-hall-social-fixed {
  position: absolute !important;
  bottom: 20px !important;
  right: calc(50% - 670px) !important;
  z-index: 9999 !important;
  display: flex;
  gap: clamp(10px, 2vw, 15px);
}
.banquet-hall-social-fixed .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.banquet-hall-social-fixed .social-icon svg {
  width: clamp(20px, 3vw, 24px);
  height: clamp(20px, 3vw, 24px);
}
.banquet-hall-social-fixed .social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .banquet-halls-section .banquet-halls-slider {
    min-height: 800px;
    height: 800px;
  }
  .banquet-halls-section .banquet-halls-slider .slick-list,
  .banquet-halls-section .banquet-halls-slider .slick-track,
  .banquet-halls-section .banquet-halls-slider .slick-slide,
  .banquet-halls-section .banquet-halls-slider .slick-slide > div {
    min-height: 800px;
    height: 800px;
  }
  .banquet-halls-section .banquet-hall-slide {
    height: 800px;
    min-height: 800px;
  }
}
@media (max-width: 768px) {
  .banquet-halls-section .banquet-halls-header {
    padding: 60px 15px 40px;
  }
  .banquet-halls-section .banquet-halls-slider {
    min-height: 700px;
    height: 700px;
  }
  .banquet-halls-section .banquet-halls-slider .slick-list,
  .banquet-halls-section .banquet-halls-slider .slick-track,
  .banquet-halls-section .banquet-halls-slider .slick-slide,
  .banquet-halls-section .banquet-halls-slider .slick-slide > div {
    min-height: 700px;
    height: 700px;
  }
  .banquet-halls-section .banquet-hall-slide {
    height: 700px;
    min-height: 700px;
  }
  .banquet-halls-section .banquet-hall-slide .banquet-hall-content {
    padding: 0 20px;
    max-width: 95%;
  }
  .banquet-halls-section .banquet-hall-slide .banquet-hall-content .banquet-hall-name {
    font-size: clamp(2.2rem, 8vw, 3rem);
    margin-bottom: clamp(20px, 4vw, 25px);
  }
  .banquet-halls-section .banquet-hall-slide .banquet-hall-content .banquet-hall-description p {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    margin-bottom: clamp(10px, 2.5vw, 15px);
    line-height: 1.5;
  }
  .banquet-halls-section .slick-prev,
  .banquet-halls-section .slick-next {
    width: 45px;
    height: 45px;
  }
  .banquet-halls-section .slick-prev {
    left: 15px;
  }
  .banquet-halls-section .slick-next {
    right: 15px;
  }
  .banquet-halls-section .slick-dots {
    bottom: 15px !important;
  }
  .banquet-halls-section .slick-dots li {
    margin: 0 3px !important;
  }
  .banquet-halls-section .slick-dots li button {
    width: 10px !important;
    height: 10px !important;
  }
}
@media (max-width: 480px) {
  .banquet-halls-section .banquet-halls-slider {
    min-height: 600px;
    height: 600px;
  }
  .banquet-halls-section .banquet-halls-slider .slick-list,
  .banquet-halls-section .banquet-halls-slider .slick-track,
  .banquet-halls-section .banquet-halls-slider .slick-slide,
  .banquet-halls-section .banquet-halls-slider .slick-slide > div {
    min-height: 600px;
    height: 600px;
  }
  .banquet-halls-section .banquet-hall-slide {
    height: 600px;
    min-height: 600px;
  }
  .banquet-halls-section .banquet-hall-slide .banquet-hall-content {
    padding: 0 15px;
    max-width: 98%;
  }
  .banquet-halls-section .banquet-hall-slide .banquet-hall-content .banquet-hall-name {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
    margin-bottom: clamp(15px, 4vw, 20px);
    letter-spacing: 0;
  }
  .banquet-halls-section .banquet-hall-slide .banquet-hall-content .banquet-hall-description p {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: clamp(8px, 2vw, 12px);
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .banquet-hall-social-fixed {
    bottom: 15px !important;
    right: 15px !important;
    gap: 8px;
  }
  .banquet-hall-social-fixed .social-icon {
    width: 40px;
    height: 40px;
  }
  .banquet-hall-social-fixed .social-icon svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .banquet-hall-social-fixed {
    bottom: 10px !important;
    right: 10px !important;
  }
  .banquet-hall-social-fixed .social-icon {
    width: 35px;
    height: 35px;
  }
  .banquet-hall-social-fixed .social-icon svg {
    width: 18px;
    height: 18px;
  }
}
.sauna-gallery-section {
  padding: 80px 0;
  background: #fff;
}
.sauna-gallery-section .sauna-gallery-header {
  text-align: center;
  padding: 0 20px 60px;
}
.sauna-gallery-section .sauna-gallery-header .sauna-gallery-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.2;
}
.sauna-gallery-section .sauna-gallery-header .sauna-gallery-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sauna-gallery-section .sauna-gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.sauna-gallery-section .sauna-gallery-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 2vw, 25px);
  width: 100%;
}
.sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 {
  display: flex;
  gap: clamp(15px, 2vw, 25px);
  height: clamp(250px, 30vw, 400px);
}
.sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-1 {
  flex: 0 0 calc(65% - clamp(7px, 1vw, 12px));
}
.sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-2 {
  flex: 0 0 calc(35% - clamp(7px, 1vw, 12px));
}
.sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 {
  display: flex;
  gap: clamp(15px, 2vw, 25px);
  height: clamp(250px, 30vw, 400px);
}
.sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-3 {
  flex: 0 0 calc(35% - clamp(10px, 1.3vw, 17px));
}
.sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-4 {
  flex: 0 0 calc(45% - clamp(10px, 1.3vw, 17px));
}
.sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-5 {
  flex: 0 0 calc(20% - clamp(10px, 1.3vw, 17px));
}
.sauna-gallery-section .sauna-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: clamp(12px, 2vw, 20px);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sauna-gallery-section .sauna-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.sauna-gallery-section .sauna-gallery-item:hover .sauna-gallery-image {
  transform: scale(1.05);
}
.sauna-gallery-section .sauna-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  border-radius: clamp(12px, 2vw, 20px);
}
@media (max-width: 1024px) {
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 {
    height: clamp(200px, 25vw, 300px);
  }
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-1 {
    flex: 0 0 calc(60% - 10px);
  }
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-2 {
    flex: 0 0 calc(40% - 10px);
  }
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 {
    height: clamp(200px, 25vw, 300px);
  }
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-3,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-4,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-5 {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .sauna-gallery-section .sauna-gallery-section {
    padding: 60px 0;
  }
  .sauna-gallery-section .sauna-gallery-header {
    padding: 0 15px 40px;
  }
  .sauna-gallery-section .sauna-gallery-container {
    padding: 0 15px;
  }
  .sauna-gallery-section .sauna-gallery-grid {
    flex-direction: column;
  }
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 {
    flex-direction: column;
    height: auto;
    gap: clamp(10px, 3vw, 15px);
  }
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-1,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-2,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-3,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-4,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-5,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-1,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-2,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-3,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-4,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-5 {
    flex: none;
    height: clamp(200px, 40vw, 250px);
  }
}
@media (max-width: 480px) {
  .sauna-gallery-section .sauna-gallery-section {
    padding: 40px 0;
  }
  .sauna-gallery-section .sauna-gallery-header {
    padding: 0 10px 30px;
  }
  .sauna-gallery-section .sauna-gallery-container {
    padding: 0 10px;
  }
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-1,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-2,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-3,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-4,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-1 .sauna-gallery-item-5,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-1,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-2,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-3,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-4,
  .sauna-gallery-section .sauna-gallery-grid .sauna-gallery-row-2 .sauna-gallery-item-5 {
    height: clamp(150px, 35vw, 200px);
    border-radius: 10px;
  }
  .sauna-gallery-section .sauna-gallery-image {
    border-radius: 10px;
  }
}
.sauna-gallery-section .sauna-pricing-section {
  padding: 80px 0 0;
  background: #fff;
}
.sauna-gallery-section .sauna-pricing-section .sauna-pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.sauna-gallery-section .sauna-pricing-section .sauna-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.sauna-gallery-section .sauna-pricing-section .sauna-pricing-rates .pricing-item {
  margin-bottom: clamp(20px, 3vw, 30px);
}
.sauna-gallery-section .sauna-pricing-section .sauna-pricing-rates .pricing-item:last-child {
  margin-bottom: 0;
}
.sauna-gallery-section .sauna-pricing-section .sauna-pricing-rates .pricing-item .pricing-header {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
  position: relative;
}
.sauna-gallery-section .sauna-pricing-section .sauna-pricing-rates .pricing-item .pricing-header .pricing-title {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sauna-gallery-section .sauna-pricing-section .sauna-pricing-rates .pricing-item .pricing-header .pricing-dots {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, transparent, transparent 2px, #ccc 2px, #ccc 4px);
  margin: 0 12px;
  position: relative;
  top: -3px;
}
.sauna-gallery-section .sauna-pricing-section .sauna-pricing-rates .pricing-item .pricing-header .pricing-price {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sauna-gallery-section .sauna-pricing-section .sauna-pricing-rates .pricing-item .pricing-subtitle {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #666;
  margin-left: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sauna-gallery-section .sauna-pricing-section .sauna-pricing-description p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  color: #333;
  margin-bottom: clamp(16px, 2.5vw, 20px);
  text-align: left;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sauna-gallery-section .sauna-pricing-section .sauna-pricing-description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .sauna-gallery-section .sauna-pricing-section .sauna-pricing-grid {
    gap: clamp(30px, 5vw, 50px);
  }
}
@media (max-width: 768px) {
  .sauna-gallery-section .sauna-pricing-section .sauna-pricing-section {
    padding: 60px 0 0;
  }
  .sauna-gallery-section .sauna-pricing-section .sauna-pricing-container {
    padding: 0 15px;
  }
  .sauna-gallery-section .sauna-pricing-section .sauna-pricing-grid {
    grid-template-columns: 1fr;
    gap: clamp(30px, 6vw, 40px);
  }
  .sauna-gallery-section .sauna-pricing-section .sauna-pricing-rates .pricing-item {
    margin-bottom: clamp(18px, 4vw, 25px);
  }
}
@media (max-width: 480px) {
  .sauna-gallery-section .sauna-pricing-section .sauna-pricing-section {
    padding: 40px 0 0;
  }
  .sauna-gallery-section .sauna-pricing-section .sauna-pricing-container {
    padding: 0 10px;
  }
  .sauna-gallery-section .sauna-pricing-section .sauna-pricing-grid {
    gap: clamp(25px, 5vw, 30px);
  }
  .sauna-gallery-section .sauna-pricing-section .sauna-pricing-rates .pricing-item {
    margin-bottom: clamp(15px, 3vw, 20px);
  }
  .sauna-gallery-section .sauna-pricing-section .sauna-pricing-rates .pricing-item .pricing-header .pricing-dots {
    margin: 0 8px;
  }
}

.about-section {
  padding: 80px 0;
  background: #f8f9fa;
}
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .about-container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .about-container {
    padding: 0 20px;
  }
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1024px) {
  .about-content {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}

.about-text {
  flex: 1;
  max-width: 600px;
}
@media (max-width: 768px) {
  .about-text {
    max-width: none;
  }
}

.about-title {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 30px 0;
  line-height: 1.2;
  position: relative;
  padding-left: 28px;
}
.about-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 60px;
  background: #2c3e50;
  border-radius: 2px;
}
@media (max-width: 1024px) {
  .about-title {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .about-title {
    font-size: 36px;
    text-align: center;
    padding-left: 0;
  }
  .about-title::before {
    display: none;
  }
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 40px 0;
  text-align: justify;
}
@media (max-width: 768px) {
  .about-description {
    text-align: center;
    font-size: 15px;
  }
}

.social-icons {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .social-icons {
    justify-content: center;
  }
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon.facebook {
  background: #e8e8e8;
  color: #1877f2;
}
.social-icon.facebook:hover {
  background: #1877f2;
  color: #fff;
  transform: translateY(-2px);
}
.social-icon.instagram {
  background: #e8e8e8;
  color: #e4405f;
}
.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  transform: translateY(-2px);
}
.social-icon.youtube {
  background: #e8e8e8;
  color: #ff0000;
}
.social-icon.youtube:hover {
  background: #ff0000;
  color: #fff;
  transform: translateY(-2px);
}
.social-icon.twitter {
  background: #e8e8e8;
  color: #1da1f2;
}
.social-icon.twitter:hover {
  background: #1da1f2;
  color: #fff;
  transform: translateY(-2px);
}

.about-image {
  flex: 1;
  max-width: 600px;
}
@media (max-width: 768px) {
  .about-image {
    max-width: 100%;
  }
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about-img:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .about-img {
    height: 300px;
  }
}

.services-section {
  padding: 80px 0;
  background: #f0f0f0;
}
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .services-container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .services-container {
    padding: 0 20px;
  }
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .services-header {
    margin-bottom: 60px;
  }
}

.services-title {
  font-size: 48px;
  font-weight: 400;
  color: #333;
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 1024px) {
  .services-title {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .services-title {
    font-size: 36px;
  }
}

.services-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 768px) {
  .services-subtitle {
    font-size: 16px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.service-card {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  align-items: stretch;
  min-height: 400px;
  margin-bottom: 80px;
}
.service-card:last-child {
  margin-bottom: 0;
}
.service-card.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .service-card.reverse {
    flex-direction: column;
  }
}

.service-image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .service-image {
    flex: none;
    height: 300px;
  }
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .service-content {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .service-content {
    padding: 20px 0;
  }
}

.service-title {
  font-size: 36px;
  font-weight: 400;
  color: #333;
  margin: 0 0 30px 0;
  line-height: 1.2;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 1024px) {
  .service-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .service-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.service-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 40px 0;
  text-align: justify;
}
@media (max-width: 768px) {
  .service-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

.service-link {
  color: #333;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.service-link:hover {
  color: #000;
  text-decoration: none;
  transform: translateX(4px);
}
.service-link::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.3s ease;
}
.service-link:hover::after {
  transform: translateX(6px);
}

.reviews-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 0;
  }
}

.reviews-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .reviews-container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .reviews-container {
    padding: 0 20px;
  }
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .reviews-header {
    margin-bottom: 40px;
  }
}

.reviews-title {
  font-size: 48px;
  font-weight: 400;
  color: #333;
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 1024px) {
  .reviews-title {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .reviews-title {
    font-size: 36px;
  }
}

.reviews-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 768px) {
  .reviews-subtitle {
    font-size: 16px;
  }
}

.reviews-slider {
  position: relative;
}

.review-card {
  margin: 0 15px;
}
@media (max-width: 768px) {
  .review-card {
    margin: 0 10px;
  }
}

.review-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  height: auto;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.review-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .review-content {
    padding: 25px;
    min-height: 250px;
  }
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 25px 0;
  text-align: left;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .review-text {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .author-avatar {
    width: 45px;
    height: 45px;
  }
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
@media (max-width: 768px) {
  .author-name {
    font-size: 15px;
  }
}

.reviews-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 40px 0 0 0;
  padding: 0;
  gap: 12px;
  bottom: -50px;
}

.reviews-slider .slick-dots li {
  margin: 0 !important;
  width: 12px;
  height: 12px;
  display: block;
}

.reviews-slider .slick-dots li button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  border: none !important;
  background: #ddd !important;
  padding: 0;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
.reviews-slider .slick-dots li button:hover {
  background: #bbb !important;
}
.reviews-slider .slick-dots li button:before {
  display: none !important;
}

.reviews-slider .slick-dots li.slick-active button {
  background: #333 !important;
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(51, 51, 51, 0.3);
}

.reviews-slider .slick-prev,
.reviews-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff !important;
  border: 2px solid #e0e0e0 !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.reviews-slider .slick-prev:hover,
.reviews-slider .slick-next:hover {
  background: #333 !important;
  border-color: #333 !important;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(51, 51, 51, 0.3);
}
.reviews-slider .slick-prev:before,
.reviews-slider .slick-next:before {
  content: "" !important;
  width: 10px;
  height: 10px;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  transform: rotate(-135deg);
  margin-left: 2px;
  transition: all 0.3s ease;
}
.reviews-slider .slick-prev:hover:before,
.reviews-slider .slick-next:hover:before {
  border-color: #fff;
}

.reviews-slider .slick-prev {
  left: -30px;
}
@media (max-width: 1200px) {
  .reviews-slider .slick-prev {
    left: -20px;
  }
}
@media (max-width: 768px) {
  .reviews-slider .slick-prev {
    left: 10px;
    top: -70px;
    transform: translateY(0);
    width: 44px;
    height: 44px;
  }
  .reviews-slider .slick-prev:hover {
    transform: translateY(0) scale(1.05);
  }
}

.reviews-slider .slick-next {
  right: -30px;
}
.reviews-slider .slick-next:before {
  transform: rotate(45deg);
  margin-left: -2px;
}
@media (max-width: 1200px) {
  .reviews-slider .slick-next {
    right: -20px;
  }
}
@media (max-width: 768px) {
  .reviews-slider .slick-next {
    right: 10px;
    top: -70px;
    transform: translateY(0);
    width: 44px;
    height: 44px;
  }
  .reviews-slider .slick-next:hover {
    transform: translateY(0) scale(1.05);
  }
}

@media (max-width: 768px) {
  .reviews-header {
    margin-bottom: 90px;
  }
  .reviews-slider .slick-dots {
    margin-top: 40px;
    gap: 10px;
  }
  .reviews-slider .slick-dots li {
    width: 10px;
    height: 10px;
  }
  .reviews-slider .slick-dots li button {
    width: 10px !important;
    height: 10px !important;
  }
}
.map-contacts-section {
  position: relative;
  width: 100vw;
  height: 700px !important;
  max-height: 700px !important;
  min-height: 700px;
  overflow: hidden;
  padding: 60px 0;
  background: #fff;
}

.map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 700px !important;
  z-index: 1;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}

.contact-block {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
  min-width: 500px;
  max-width: 400px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2c3e50;
  text-align: center;
  letter-spacing: -0.02em;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #2c3e50;
  stroke-width: 2;
}

.contact-link {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.contact-link:hover {
  color: #1a252f;
  text-decoration: underline;
}

.phone-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}

.email-link {
  word-break: break-all;
  font-size: 0.9rem;
}

.contact-text {
  color: #2c3e50;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-social .social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-social .social-icon.instagram {
  background: #e8e8e8;
  color: #e4405f;
}
.contact-social .social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  transform: translateY(-2px);
}
.contact-social .social-icon.youtube {
  background: #e8e8e8;
  color: #ff0000;
}
.contact-social .social-icon.youtube:hover {
  background: #ff0000;
  color: #fff;
  transform: translateY(-2px);
}
.contact-social .social-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .map-contacts-section {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    display: flex;
    flex-direction: column;
  }
  .map-container {
    position: relative;
    height: 400px;
    flex-shrink: 0;
  }
  .contact-block {
    position: static;
    transform: none;
    right: auto;
    top: auto;
    margin: 0;
    padding: 20px;
    min-width: auto;
    max-width: none;
    width: 100%;
    flex-shrink: 0;
  }
  .contact-title {
    font-size: 1.6rem;
  }
  .contact-item {
    margin-bottom: 16px;
  }
  .contact-social {
    gap: 12px;
  }
  .contact-social .social-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .map-container {
    height: 300px;
  }
  .contact-block {
    margin: 0;
    padding: 20px;
    width: 100%;
  }
  .contact-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .contact-item {
    gap: 10px;
    margin-bottom: 14px;
  }
  .contact-icon {
    width: 20px;
    height: 20px;
  }
  .phone-link {
    font-size: 1rem;
  }
  .email-link, .contact-text {
    font-size: 0.85rem;
  }
  .contact-social {
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
  }
  .contact-social .social-icon {
    width: 36px;
    height: 36px;
  }
  .contact-social .social-icon svg {
    width: 16px;
    height: 16px;
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate(50px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.contact-block {
  animation: slideInRight 0.8s ease-out;
}

@media (max-width: 768px) {
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .contact-block {
    animation: slideInUp 0.6s ease-out;
  }
}
.contact-form-section {
  position: relative;
  min-height: 70vh;
  background-image: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-container {
  width: 100%;
  max-width: 500px;
  padding: 0 20px;
}

.contact-form-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.contact-form-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.contact-form-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 40px;
  font-weight: 400;
}

.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  font-weight: 500;
}
.alert.alert-success {
  background: rgba(46, 204, 113, 0.1);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.alert.alert-error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form .form-group.checkbox-group {
  margin-bottom: 35px;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s ease;
  font-family: inherit;
}
.form-input::placeholder {
  color: #bdc3c7;
  font-weight: 400;
}
.form-input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.checkbox-group {
  text-align: left;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  color: #2c3e50;
  line-height: 1.5;
}
.checkbox-label input[type=checkbox] {
  display: none;
}
.checkbox-label .checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #bdc3c7;
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.checkbox-label .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.checkbox-label input[type=checkbox]:checked + .checkmark {
  background: #3498db;
  border-color: #3498db;
}
.checkbox-label input[type=checkbox]:checked + .checkmark::after {
  opacity: 1;
}
.checkbox-label strong {
  font-weight: 600;
  color: #2c3e50;
}

.checkbox-text {
  line-height: 1.6;
}
.checkbox-text a {
  color: #3498db;
  text-decoration: underline;
}
.checkbox-text a:hover {
  color: #2980b9;
}

.contact-form-button {
  width: 100%;
  padding: 18px 30px;
  background: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-form-button:hover {
  background: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}
.contact-form-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact-form-section {
    min-height: 60vh;
  }
  .contact-form-content {
    padding: 40px 30px;
  }
  .contact-form-title {
    font-size: 2rem;
  }
  .contact-form-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .contact-form-content {
    padding: 30px 25px;
  }
  .contact-form-title {
    font-size: 1.8rem;
  }
  .form-input {
    padding: 16px 18px;
    font-size: 0.95rem;
  }
  .contact-form-button {
    padding: 16px 25px;
    font-size: 1rem;
  }
}
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}
.thank-you-modal .modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease;
  position: relative;
}
@media (max-width: 480px) {
  .thank-you-modal .modal-content {
    padding: 40px 30px;
    border-radius: 16px;
  }
}
.thank-you-modal .modal-content h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media (max-width: 480px) {
  .thank-you-modal .modal-content h3 {
    font-size: 1.7rem;
  }
}
.thank-you-modal .modal-content p {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .thank-you-modal .modal-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}
.thank-you-modal .modal-content .modal-close-btn {
  background: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.thank-you-modal .modal-content .modal-close-btn:hover {
  background: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}
.thank-you-modal .modal-content .modal-close-btn:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .thank-you-modal .modal-content .modal-close-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact-us-section {
  padding: 80px 0;
  background: #f8f9fa;
}
@media (max-width: 768px) {
  .contact-us-section {
    padding: 60px 0;
  }
}

.contact-us-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .contact-us-container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .contact-us-container {
    padding: 0 20px;
  }
}

.contact-us-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 60px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .contact-us-main-title {
    margin-bottom: 40px;
  }
}

.contact-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-us-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .contact-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-us-info .contact-us-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}
@media (max-width: 768px) {
  .contact-us-info .contact-us-item {
    margin-bottom: 20px;
  }
}
.contact-us-info .contact-us-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #2c3e50;
  stroke-width: 2;
}
.contact-us-info .contact-us-link {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-us-info .contact-us-link:hover {
  color: #1a252f;
  text-decoration: underline;
}
.contact-us-info .contact-us-phone {
  font-size: 1.1rem;
  font-weight: 600;
}
.contact-us-info .contact-us-email {
  word-break: break-all;
  font-size: 0.95rem;
}
.contact-us-info .contact-us-address {
  color: #2c3e50;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-us-info .contact-us-social {
  display: flex;
  gap: 16px;
  margin: 32px 0;
}
@media (max-width: 768px) {
  .contact-us-info .contact-us-social {
    justify-content: center;
  }
}
.contact-us-info .contact-us-social .social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-us-info .contact-us-social .social-icon.instagram {
  background: #e8e8e8;
  color: #e4405f;
}
.contact-us-info .contact-us-social .social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  transform: translateY(-2px);
}
.contact-us-info .contact-us-social .social-icon.youtube {
  background: #e8e8e8;
  color: #ff0000;
}
.contact-us-info .contact-us-social .social-icon.youtube:hover {
  background: #ff0000;
  color: #fff;
  transform: translateY(-2px);
}
.contact-us-info .contact-us-social .social-icon svg {
  width: 24px;
  height: 24px;
}
.contact-us-info .contact-us-map {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .contact-us-info .contact-us-map {
    margin-top: 30px;
  }
}
.contact-us-info .contact-us-map-iframe {
  width: 100%;
  height: 300px;
  border: none;
  outline: none;
}
@media (max-width: 768px) {
  .contact-us-info .contact-us-map-iframe {
    height: 250px;
  }
}

.contact-us-form-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .contact-us-form-wrapper {
    padding: 30px 25px;
  }
}
.contact-us-form-wrapper .contact-us-form-title {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.contact-us-form-wrapper .contact-us-form-subtitle {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .contact-us-form-wrapper .contact-us-form-subtitle {
    margin-bottom: 24px;
  }
}
.contact-us-form-wrapper .contact-us-form .form-group {
  margin-bottom: 20px;
}
.contact-us-form-wrapper .contact-us-form .form-group:last-of-type {
  margin-bottom: 32px;
}
.contact-us-form-wrapper .contact-us-form .form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s ease;
  font-family: inherit;
}
.contact-us-form-wrapper .contact-us-form .form-input::placeholder {
  color: #bdc3c7;
  font-weight: 400;
}
.contact-us-form-wrapper .contact-us-form .form-input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}
.contact-us-form-wrapper .contact-us-form .form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
.contact-us-form-wrapper .contact-us-form .contact-us-submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-us-form-wrapper .contact-us-form .contact-us-submit-btn:hover {
  background: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}
.contact-us-form-wrapper .contact-us-form .contact-us-submit-btn:active {
  transform: translateY(0);
}

.contact-us-form-wrapper .alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-us-form-wrapper .alert.alert-success {
  background: rgba(46, 204, 113, 0.1);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.contact-us-form-wrapper .alert.alert-error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.thank-you-modal .modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.thank-you-modal .modal-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #2c3e50;
}
.thank-you-modal .modal-content p {
  margin-bottom: 20px;
  color: #666;
}
.thank-you-modal .modal-content .modal-close-btn {
  padding: 10px 20px;
  background: #2c3e50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.thank-you-modal .modal-content .modal-close-btn:hover {
  background: #34495e;
}

@media (max-width: 480px) {
  .contact-us-section {
    padding: 40px 0;
  }
  .contact-us-container {
    padding: 0 15px;
  }
  .contact-us-grid {
    gap: 30px;
  }
  .contact-us-info .contact-us-item {
    margin-bottom: 16px;
  }
  .contact-us-info .contact-us-social {
    margin: 24px 0;
  }
  .contact-us-form-wrapper {
    padding: 20px;
  }
  .contact-us-form-wrapper .form-group {
    margin-bottom: 16px;
  }
}
.hotel-rooms-section {
  padding: 0;
  margin: 0;
  background: #f8f9fa;
  position: relative;
}
.hotel-rooms-section .slick-slider .slick-dots {
  position: absolute !important;
  bottom: clamp(20px, 3vw, 30px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  text-align: center !important;
}
.hotel-rooms-section ul.slick-dots {
  position: absolute !important;
  bottom: clamp(20px, 3vw, 30px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.hotel-rooms-section .hotel-rooms-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.hotel-rooms-section .hotel-rooms-header {
  text-align: center;
  padding: 80px 20px 60px;
  background: #f8f9fa;
}
.hotel-rooms-section .hotel-rooms-header .hotel-rooms-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.2;
}
.hotel-rooms-section .hotel-rooms-header .hotel-rooms-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.hotel-rooms-section .hotel-rooms-slider {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.hotel-rooms-section .hotel-room-slider-container {
  position: relative;
  width: 100%;
}
.hotel-rooms-section .hotel-room-slider-container .hotel-room-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}
.hotel-rooms-section .hotel-room-slider-container .hotel-room-content-overlay .hotel-room-content {
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  pointer-events: auto;
  opacity: 0.5 !important;
}
.hotel-rooms-section .hotel-room-slider-container .hotel-room-content-overlay .hotel-room-content .hotel-room-name {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 600;
  margin-bottom: clamp(15px, 2vw, 25px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white !important;
}
.hotel-rooms-section .hotel-room-slider-container .hotel-room-content-overlay .hotel-room-content .hotel-room-price {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #c9a961;
  margin-bottom: clamp(20px, 3vw, 30px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.hotel-rooms-section .hotel-room-slider-container .hotel-room-content-overlay .hotel-room-content .hotel-room-description {
  max-width: 900px;
  margin: 0 auto clamp(30px, 4vw, 40px);
  line-height: 1.6;
}
.hotel-rooms-section .hotel-room-slider-container .hotel-room-content-overlay .hotel-room-content .hotel-room-description p {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: clamp(12px, 2vw, 18px);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  font-weight: 400;
  letter-spacing: 0.2px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.hotel-rooms-section .hotel-room-slider-container .hotel-room-content-overlay .hotel-room-content .hotel-room-description p:last-child {
  margin-bottom: 0;
}
.hotel-rooms-section .hotel-room-slider-container .hotel-room-content-overlay .hotel-room-content .hotel-room-book-btn {
  display: inline-block;
  padding: clamp(15px, 2.5vw, 20px) clamp(35px, 5vw, 50px);
  background: linear-gradient(135deg, #c9a961 0%, #b8964d 100%);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-align: center;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-shadow: none;
  border: 2px solid transparent;
}
.hotel-rooms-section .hotel-room-slider-container .hotel-room-content-overlay .hotel-room-content .hotel-room-book-btn:hover {
  background: linear-gradient(135deg, #b8964d 0%, #a68540 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}
.hotel-rooms-section .hotel-room-slider {
  position: relative;
  width: 100%;
  min-height: 1000px;
  height: 1000px;
  overflow: hidden;
  border-radius: 20px;
}
.hotel-rooms-section .hotel-room-slider .slick-list,
.hotel-rooms-section .hotel-room-slider .slick-track {
  height: 100%;
  min-height: 1000px;
}
.hotel-rooms-section .hotel-room-slider .slick-slide {
  height: 1000px;
  min-height: 1000px;
}
.hotel-rooms-section .hotel-room-slider .slick-slide > div {
  height: 100%;
  min-height: 1000px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.hotel-rooms-section .hotel-room-slide {
  position: relative;
  width: 100%;
  height: 1000px;
  min-height: 1000px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 20px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.hotel-rooms-section .hotel-room-slide .hotel-room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.hotel-rooms-section .slick-prev,
.hotel-rooms-section .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: clamp(50px, 6vw, 70px);
  height: clamp(50px, 6vw, 70px);
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotel-rooms-section .slick-prev:before,
.hotel-rooms-section .slick-next:before {
  content: "";
  width: clamp(10px, 1.8vw, 14px);
  height: clamp(10px, 1.8vw, 14px);
  border-top: 3px solid white;
  border-right: 3px solid white;
  border-radius: 2px;
}
.hotel-rooms-section .slick-prev:hover,
.hotel-rooms-section .slick-next:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}
.hotel-rooms-section .slick-prev {
  left: clamp(20px, 3vw, 40px);
}
.hotel-rooms-section .slick-prev:before {
  transform: rotate(-135deg);
  margin-left: -3px;
  margin-top: -1px;
}
.hotel-rooms-section .slick-next {
  right: clamp(20px, 3vw, 40px);
}
.hotel-rooms-section .slick-next:before {
  transform: rotate(45deg);
  margin-right: -3px;
  margin-bottom: -1px;
}
.hotel-rooms-section .slick-dots {
  position: absolute !important;
  bottom: clamp(20px, 3vw, 30px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 4 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  text-align: center !important;
}
.hotel-rooms-section .slick-dots li {
  display: inline-block !important;
  margin: 0 clamp(4px, 0.8vw, 6px) !important;
  padding: 0 !important;
  list-style: none !important;
}
.hotel-rooms-section .slick-dots li button {
  display: block !important;
  width: clamp(10px, 2vw, 14px) !important;
  height: clamp(10px, 2vw, 14px) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.5) !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 0 !important;
  line-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-indent: -9999px !important;
  outline: none !important;
}
.hotel-rooms-section .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  transform: scale(1.1) !important;
}
.hotel-rooms-section .slick-dots li.slick-active button {
  background: white !important;
  transform: scale(1.2) !important;
}

@media (max-width: 1024px) {
  .hotel-rooms-section .hotel-rooms-slider {
    gap: 30px;
  }
  .hotel-rooms-section .hotel-room-slider {
    min-height: 800px;
    height: 800px;
  }
  .hotel-rooms-section .hotel-room-slider .slick-list,
  .hotel-rooms-section .hotel-room-slider .slick-track,
  .hotel-rooms-section .hotel-room-slider .slick-slide,
  .hotel-rooms-section .hotel-room-slider .slick-slide > div {
    min-height: 800px;
    height: 800px;
  }
  .hotel-rooms-section .hotel-room-slide {
    height: 800px;
    min-height: 800px;
  }
}
@media (max-width: 768px) {
  .hotel-rooms-section .hotel-rooms-header {
    padding: 60px 15px 40px;
  }
  .hotel-rooms-section .hotel-rooms-slider {
    gap: 25px;
  }
  .hotel-rooms-section .hotel-room-slider {
    min-height: 700px;
    height: 700px;
  }
  .hotel-rooms-section .hotel-room-slider .slick-list,
  .hotel-rooms-section .hotel-room-slider .slick-track,
  .hotel-rooms-section .hotel-room-slider .slick-slide,
  .hotel-rooms-section .hotel-room-slider .slick-slide > div {
    min-height: 700px;
    height: 700px;
  }
  .hotel-rooms-section .hotel-room-slide {
    height: 700px;
    min-height: 700px;
  }
  .hotel-rooms-section .hotel-room-content-overlay .hotel-room-content {
    padding: 0 20px;
    max-width: 95%;
  }
  .hotel-rooms-section .hotel-room-content-overlay .hotel-room-content .hotel-room-name {
    font-size: clamp(2.2rem, 8vw, 3rem);
    margin-bottom: clamp(10px, 2vw, 15px);
  }
  .hotel-rooms-section .hotel-room-content-overlay .hotel-room-content .hotel-room-price {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: clamp(15px, 3vw, 20px);
  }
  .hotel-rooms-section .hotel-room-content-overlay .hotel-room-content .hotel-room-description p {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    margin-bottom: clamp(10px, 2.5vw, 15px);
    line-height: 1.5;
  }
  .hotel-rooms-section .slick-prev,
  .hotel-rooms-section .slick-next {
    width: 45px;
    height: 45px;
  }
  .hotel-rooms-section .slick-prev {
    left: 15px;
  }
  .hotel-rooms-section .slick-next {
    right: 15px;
  }
  .hotel-rooms-section .slick-dots {
    bottom: 15px !important;
  }
  .hotel-rooms-section .slick-dots li {
    margin: 0 3px !important;
  }
  .hotel-rooms-section .slick-dots li button {
    width: 10px !important;
    height: 10px !important;
  }
}
@media (max-width: 480px) {
  .hotel-rooms-section .hotel-rooms-slider {
    gap: 20px;
  }
  .hotel-rooms-section .hotel-room-slider {
    min-height: 600px;
    height: 600px;
  }
  .hotel-rooms-section .hotel-room-slider .slick-list,
  .hotel-rooms-section .hotel-room-slider .slick-track,
  .hotel-rooms-section .hotel-room-slider .slick-slide,
  .hotel-rooms-section .hotel-room-slider .slick-slide > div {
    min-height: 600px;
    height: 600px;
  }
  .hotel-rooms-section .hotel-room-slide {
    height: 600px;
    min-height: 600px;
  }
  .hotel-rooms-section .hotel-room-content-overlay .hotel-room-content {
    padding: 0 15px;
    max-width: 98%;
  }
  .hotel-rooms-section .hotel-room-content-overlay .hotel-room-content .hotel-room-name {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
    margin-bottom: clamp(8px, 2vw, 12px);
    letter-spacing: 0;
  }
  .hotel-rooms-section .hotel-room-content-overlay .hotel-room-content .hotel-room-price {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
    margin-bottom: clamp(12px, 3vw, 16px);
  }
  .hotel-rooms-section .hotel-room-content-overlay .hotel-room-content .hotel-room-description p {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: clamp(8px, 2vw, 12px);
    line-height: 1.4;
  }
  .hotel-rooms-section .hotel-room-content-overlay .hotel-room-content .hotel-room-book-btn {
    padding: clamp(12px, 3vw, 16px) clamp(25px, 6vw, 35px);
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
}
.site-footer {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  padding: 20px 0;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.footer-nav-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-nav {
  display: flex;
}

.footer-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.footer-nav-item {
  margin: 0;
}

.footer-nav-link {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-nav-link:hover {
  color: #3498db;
}

.footer-copyright {
  text-align: right;
}
.footer-copyright p {
  margin: 0;
  color: #7f8c8d;
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }
  .footer-logo-section {
    order: 1;
  }
  .footer-nav-section {
    order: 2;
    align-items: center;
  }
  .footer-nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav-link {
    font-size: 13px;
  }
  .footer-copyright {
    text-align: center;
  }
  .footer-copyright p {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .footer-nav-list {
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav-link {
    font-size: 14px;
  }
}
.banner-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.banner-popup.show {
  display: flex;
}
.banner-popup.hide {
  animation: fadeOut 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-content {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 25px;
  max-width: 650px;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: slideUpBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .banner-content {
    max-width: 92vw;
    max-height: 88vh;
    margin: 15px;
    border-radius: 20px;
  }
}

.banner-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ff4757, #ff3742);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4), 0 0 0 0 rgba(255, 71, 87, 0.7);
}
.banner-close:hover {
  background: linear-gradient(135deg, #ff3742, #ff2f3a);
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 6px 25px rgba(255, 71, 87, 0.6), 0 0 0 8px rgba(255, 71, 87, 0.1);
  border-color: rgb(255, 255, 255);
}
.banner-close:active {
  transform: scale(1.05) rotate(90deg);
}
.banner-close i {
  transition: transform 0.3s ease;
  font-weight: 900;
}
.banner-close:hover i {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .banner-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.banner-media {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}
.banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.banner-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-media::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  pointer-events: none;
}
@media (max-width: 768px) {
  .banner-media {
    height: 220px;
  }
}

.banner-body {
  padding: 40px 35px 35px;
  text-align: center;
  background: white;
  position: relative;
}
.banner-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .banner-body {
    padding: 30px 25px 25px;
  }
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .banner-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
}

.banner-description {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .banner-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}

.banner-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.banner-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transition: left 0.4s ease;
  z-index: -1;
}
.banner-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.3);
}
.banner-button:hover::before {
  left: 0;
}
.banner-button:active {
  transform: translateY(-1px) scale(1.02);
}
@media (max-width: 768px) {
  .banner-button {
    padding: 15px 32px;
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
  to {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
}
@keyframes slideUpBounce {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.8) rotateX(20deg);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1.02) rotateX(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}
.banner-popup.dark-theme .banner-content {
  background: linear-gradient(145deg, #2c3e50, #34495e);
  border-color: rgba(255, 255, 255, 0.1);
}
.banner-popup.dark-theme .banner-body {
  background: linear-gradient(145deg, #2c3e50, #34495e);
}
.banner-popup.dark-theme .banner-body::before {
  background: linear-gradient(90deg, #3498db, #9b59b6);
}
.banner-popup.dark-theme .banner-title {
  background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: white;
}
.banner-popup.dark-theme .banner-description {
  color: #bdc3c7;
}
.banner-popup.dark-theme .banner-button {
  background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
}
.banner-popup.dark-theme .banner-button::before {
  background: linear-gradient(135deg, #9b59b6 0%, #3498db 100%);
}

@media (max-width: 480px) {
  .banner-content {
    border-radius: 18px;
    margin: 10px;
  }
  .banner-media {
    height: 180px;
  }
  .banner-body {
    padding: 25px 20px 20px;
  }
  .banner-title {
    font-size: 1.4rem;
  }
  .banner-description {
    font-size: 0.95rem;
  }
  .banner-button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .banner-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
.phone-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.phone-popup.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-popup .popup-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  min-width: 300px;
  text-align: center;
}
.phone-popup .close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}
.phone-popup .close-popup:hover {
  color: #000;
}

/*# sourceMappingURL=main.css.map */
