 :root {
	--primary-color: #0f233e;
	--primary-hover: #0a1a2e;
	--text-primary: #08172a;
	--text-secondary: #64748b;
	--text-light: #475569;
	--bg-light: #f8f9fa;
	--bg-gray: #f5f7fa;
	--white: #ffffff;
	--border-color: #e2e8f0;
	--accent-color: #2874b8;
	--accent-hover: #f70303;
	--transition-base: all 0.3s ease;
	--transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
	--container-padding: 20px;
	--container-max-width: 1450px;
	--header-height: 120px;
	--header-compact-height: 55px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
*:focus-visible {
	outline: none !important;
}
*::-moz-focus-inner {
	border: 0 !important;
}
@font-face {
	font-family: 'Open Sans';
	src: url('/font/OpenSans-VariableFont_wdth,wght.ttf') format('truetype-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Open Sans';
	src: url('/font/OpenSans-Italic-VariableFont_wdth,wght.ttf') format('truetype-variations');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}
html, body {
	max-width: 100%;
	overflow-x: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Open Sans', sans-serif;
	background: #fff;
	color: var(--text-primary);
	overflow-x: hidden;
	padding-top: var(--header-height);
	transition: var(--transition-base);
}
.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}
header {
	background: var(--white);
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: var(--shadow-sm);
	transition: var(--transition-smooth);
	height: var(--header-height);
	will-change: transform, height;
}
header.compact {
	height: var(--header-compact-height);
	box-shadow: var(--shadow-md);
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.7);
}
header.hidden {
	transform: translateY(-100%);
	box-shadow: none;
}
.nav-content {
	display: flex;
	height: 100%;
	transition: var(--transition-base);
}
.logo a, .mobile-logo-small a, .mobile-logo a {
	display: flex;
	align-items: center;
}
.logo a img, .mobile-logo-small a img, .mobile-logo a img {
	display: block;
	max-height: 100%;
}
.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
	width: 200px;
	padding-right: 50px;
	border-right: 1px solid var(--border-color);
	transition: var(--transition-base);
}
.logo img {
	max-width: 100%;
	height: auto;
}
.compact .logo img {
	max-height: 40px;
	width: auto;
}
.compact .logo {
	width: 130px;
	padding-right: 50px;
}
.logo-text {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	letter-spacing: -0.3px;
	transition: var(--transition-base);
	white-space: nowrap;
}
header.compact .logo-text {
	font-size: 24px;
}
.right-section {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
	transition: var(--transition-base);
	position: relative;
}
.top-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
	height: 50px;
	border-bottom: 1px solid var(--border-color);
	opacity: 1;
	visibility: visible;
	transition: var(--transition-base);
	overflow: visible;
	position: relative;
	z-index: 1003;
}
header.compact .top-section {
	opacity: 0;
	visibility: hidden;
	height: 0;
	border-bottom: none;
	overflow: hidden;
}
.bottom-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 1;
	transition: var(--transition-base);
	position: relative;
	z-index: 1002;
}
.icon {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 1.8;
	fill: none;
	transition: var(--transition-base);
	flex-shrink: 0;
}
.social-icon {
	stroke: currentColor;
	stroke-width: 1.8;
	fill: none;
}
.vk-icon {
	width: 20px;
	height: 20px;
}
.contact-info {
	display: flex;
	gap: 30px;
	padding-left: 25px;
	transition: var(--transition-base);
	align-items: center;
	flex-wrap: wrap;
}
.contact-item, .mobile-contact-item-compact {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition-base);
	font-weight: 400;
	font-size: 14px;
	white-space: nowrap;
}
.contact-item:hover, .mobile-contact-item-compact:hover {
	color: var(--primary-color);
}
.contact-item:hover .icon, .mobile-contact-item-compact:hover .icon {
	stroke: var(--primary-color);
}
.top-menu {
	display: flex;
	list-style: none;
	gap: 25px;
	transition: var(--transition-base);
	position: relative;
	z-index: 1004;
}
.top-menu-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}
.top-menu-link {
	color: var(--text-light);
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	padding: 5px 0;
	transition: var(--transition-base);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 4px;
}
.top-menu-link:hover {
	color: var(--primary-color);
}
.arrow-down-icon {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
}
.top-dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: #f8f8f8;
	min-width: 240px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-5px);
	transition: all 0.25s ease;
	z-index: 10000;
	padding: 7px;
	pointer-events: none;
}
.top-menu-item:hover .top-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.top-dropdown-item {
	padding: 0;
}
.top-dropdown-link {
	padding: 12px 20px;
	text-decoration: none;
	color: var(--text-light);
	display: block;
	transition: var(--transition-base);
	font-size: 13px;
	font-weight: 500;
}
.top-dropdown-link:hover {
	color: var(--primary-color);
	background-color: var(--white);
}
.nav-center {
	display: flex;
	justify-content: flex-start;
	flex: 1;
	position: relative;
	transition: var(--transition-base);
	padding-left: 12px;
}
.nav-menu {
	display: flex;
	list-style: none;
	gap: 0;
}
.nav-item {
	position: relative;
}
.nav-link {
	text-decoration: none;
	color: #000;
	font-weight: 500;
	padding: 24px 17px;
	display: block;
	position: relative;
	font-size: 15px;
	white-space: nowrap;
	transition: var(--transition-base);
	text-transform: uppercase;
	cursor: pointer;
}
header.compact .nav-link {
	padding: 17px 20px;
	font-size: 15px;
}
.nav-link::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	width: 0;
	height: 3px;
	background: var(--primary-color);
	transition: var(--transition-base);
	transform: translateX(-50%);
}
.nav-link:hover {
	color: var(--primary-color);
}
.nav-link:hover::after {
	width: calc(100% - 34px);
}
header.compact .nav-link:hover::after {
	width: calc(100% - 40px);
	bottom: 4px;
}
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #f8f8f8;
	min-width: 240px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-5px);
	transition: all 0.25s ease;
	z-index: 1001;
	padding: 8px 0;
	margin-top: 1px;
}
header.compact .dropdown-menu {
	margin-top: 7px;
}
.dropdown-item {
	padding: 0;
}
.dropdown-link {
	padding: 14px 28px;
	text-decoration: none;
	color: #000000;
	display: inline-block;
	transition: var(--transition-base);
	font-size: 15px;
	font-weight: 300;
	position: relative;
}
.dropdown-link::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 28px;
	width: 0;
	height: 1px;
	background: var(--primary-color);
	transition: var(--transition-base);
}
.dropdown-link:hover {
	color: var(--primary-color);
	background: transparent !important;
}
.dropdown-link:hover::after {
	width: calc(100% - 56px);
}
.nav-item:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.book-btn {
	background: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 14px 30px;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
	transition: var(--transition-base);
	flex-shrink: 0;
	letter-spacing: 0.5px;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	border: 1px solid var(--primary-color);
	white-space: nowrap;
}
.book-btn:hover {
	background: var(--white);
	color: var(--primary-color);
}
header.compact .book-btn {
	padding: 10px 20px;
	font-size: 14px;
}
.mobile-book-btn {
	background: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 10px 20px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: var(--transition-base);
	letter-spacing: 0.5px;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
	display: inline-block;
}
.mobile-book-btn:hover {
	background: var(--primary-hover);
}
.burger-menu {
	background: var(--primary-color);
	border: none;
	cursor: pointer;
	padding: 20px 12px;
	z-index: 1003;
	position: relative;
	flex-shrink: 0;
}
.burger-icon {
	display: block;
	width: 20px;
	height: 2px;
	background-color: #ffffff;
	position: relative;
	transition: var(--transition-base);
}
.burger-icon::before, .burger-icon::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 2px;
	background-color: #ffffff;
	left: 0;
	transition: var(--transition-base);
}
.burger-icon::before {
	top: -8px;
}
.burger-icon::after {
	bottom: -8px;
}
.burger-menu.active .burger-icon {
	background-color: transparent;
}
.burger-menu.active .burger-icon::before {
	transform: rotate(45deg);
	top: 0;
}
.burger-menu.active .burger-icon::after {
	transform: rotate(-45deg);
	bottom: 0;
}
.mobile-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 320px;
	height: 100%;
	background: var(--white);
	z-index: 1002;
	transition: var(--transition-smooth);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.mobile-menu.active {
	left: 0;
}
.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
	background: var(--primary-color);
	color: var(--white);
	flex-shrink: 0;
}
.close-menu {
	background: none;
	border: none;
	color: #ebeced;
	font-size: 24px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.close-menu:hover {
	opacity: 0.8;
}
.mobile-logo {
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
}
.mobile-logo img {
	width: 170px;
	height: auto;
}
.mobile-menu-content {
	flex: 1;
	overflow-y: auto;
	padding: 20px 0;
	-webkit-overflow-scrolling: touch;
}
.mobile-menu-section {
	padding: 0 20px;
	margin-bottom: 25px;
}
.mobile-menu-section-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border-color);
}
.mobile-nav-menu {
	list-style: none;
}
.mobile-nav-item {
	margin-bottom: 2px;
}
.mobile-nav-link {
	display: block;
	padding: 14px 20px;
	text-decoration: none;
	color: #0f233e ;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 15px;
	transition: var(--transition-base);
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
}
.mobile-nav-link:hover {
	background-color: #f1f5f9;
	color: var(--primary-color);
}
.mobile-nav-link.active, .mobile-hotels-toggle.active {
	background-color: #f1f5f9;
	color: var(--primary-color);
}
.mobile-dropdown-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.mobile-dropdown-toggle svg {
	transition: var(--transition-base);
}
.mobile-dropdown-toggle.active svg {
	transform: rotate(180deg);
}
.mobile-dropdown-menu {
	list-style: none;
	max-height: 0;
	overflow: auto;
	transition: var(--transition-base);
	background-color: #f8fafc;
	margin-top: 5px;
}
.mobile-dropdown-menu.active {
	max-height: 300px;
}
.mobile-dropdown-item {
	padding: 0;
}
.mobile-dropdown-link {
	display: block;
	padding: 12px 20px 12px 40px;
	text-decoration: none;
	color: #0f233e;
	font-size: 15px;
	transition: var(--transition-base);
}
.mobile-dropdown-link:hover {
	color: var(--primary-color);
	background-color: #f1f5f9;
}
.mobile-hotels-item {
	margin-bottom: 2px;
}
.mobile-hotels-toggle {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 10px 20px;
	text-decoration: none;
	color: var(--text-light);
	font-weight: 300;
	font-size: 12px;
	transition: var(--transition-base);
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	justify-content: center;
	gap: 8px;
}
.mobile-hotels-toggle:hover {
	background-color: #f1f5f9;
	color: var(--primary-color);
}
.mobile-hotels-toggle svg {
	transition: var(--transition-base);
}
.mobile-hotels-toggle.active svg {
	transform: rotate(180deg);
}
.mobile-hotels-dropdown {
	list-style: none;
	max-height: 0;
	overflow: hidden;
	transition: var(--transition-base);
	background-color: #f8fafc;
	margin-top: 5px;
}
.mobile-hotels-dropdown.active {
	max-height: 200px;
}
.mobile-hotels-option {
	padding: 0;
}
.mobile-hotels-link {
	display: block;
	padding: 12px 20px 12px 40px;
	text-decoration: none;
	color: var(--text-secondary);
	font-size: 15px;
	transition: var(--transition-base);
}
.mobile-hotels-link:hover {
	color: var(--primary-color);
	background-color: #f1f5f9;
}
.mobile-social-link img {
	width: 22px;
	height: auto;
	opacity: 0.7;
}
.mobile-social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	padding: 20px;
	border-top: 1px solid var(--border-color);
	background: var(--white);
	flex-shrink: 0;
	margin-top: 0;
}
.mobile-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #f1f5f8;
	color: var(--text-light);
	text-decoration: none;
	transition: var(--transition-base);
	border: 1px solid #f1f5f8;
}
.mobile-social-link svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	stroke-width: 1.8;
	fill: none;
}
.mobile-social-link:hover {
	background: #fff;
	color: var(--white);
	border-color: var(--primary-color);
}
.mobile-social-link:hover img {
	opacity: 1;
}
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-base);
}
.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}
.mobile-header {
	display: none;
	padding: 15px 0;
	flex-direction: column;
	gap: 15px;
}
.mobile-header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.mobile-header-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.mobile-logo-small {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	flex-shrink: 0;
}
.mobile-logo-small img {
	width: 180px;
	height: auto;
	margin: 8px 0 10px;
}
.mobile-contact-info-compact {
	display: flex;
	gap: 30px;
	font-size: 12px;
	width: 100%;
	justify-content: space-between;
	flex-wrap: wrap;
}
.live-stream-icon {
	background-color: var(--accent-color);
	padding: 3px 8px;
	border-radius: 7px;
	transition: var(--transition-base);
}
.live-stream-icon:hover {
	background-color: var(--accent-hover);
}
.live-stream-icon svg {
	stroke: var(--white);
	color: var(--white);
}
.slider {
	position: relative;
	width: 100%;
	height: 700px;
	overflow: hidden;
	margin-top: 0;
}
.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
}
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slide.active {
	opacity: 1;
	z-index: 1;
}
.slide-content {
	text-align: center;
	color: var(--white);
	max-width: 800px;
	padding: 0 20px;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0.3s;
}
.slide.active .slide-content {
	transform: translateY(0);
	opacity: 1;
}
.slide-subtitle {
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	opacity: 0.9;
	transform: translateY(20px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0.5s;
}
.slide.active .slide-subtitle {
	transform: translateY(0);
}
.slide-title {
	font-size: 55px;
	font-weight: 500;
	margin-bottom: 30px;
	line-height: 1.1;
	transform: translateY(30px);
	transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0.7s;
}
.slide.active .slide-title {
	transform: translateY(0);
}
.slide.active .slide-btn {
	transform: translateY(0);
	opacity: 1;
}
.slide-btn {
	background: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 15px 35px;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
	transition: var(--transition-base);
	letter-spacing: 1px;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	transform: translateY(40px);
	opacity: 0;
	text-decoration: none;
	display: inline-block;
}
.slide-btn:hover {
	background: #f0f0f0;
	color: var(--primary-color);
}
.slider-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
	pointer-events: none;
}
.slider-arrow {
	background: none;
	border: none;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition-base);
	pointer-events: all;
	opacity: 0.7;
}
.slider-arrow svg {
	width: 70px;
	height: 70px;
	stroke: var(--white);
	stroke-width: 1.8;
	fill: none;
}
.slider-arrow:hover {
	opacity: 1;
}
.rooms-section {
	padding: 80px 0;
	background: var(--bg-gray);
	overflow: hidden;
}
.section-header {
	text-align: center;
	margin-bottom: 60px;
}
.section-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}
.section-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}
.rooms-carousel {
	position: relative;
	padding: 0;
	min-height: 450px;
}
.roomsSwiper {
	width: 100%;
	padding: 20px 0 50px;
	overflow: hidden !important;
}
.roomsSwiper .swiper-wrapper {
	overflow: visible !important;
}
.roomsSwiper .swiper-slide {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.3s ease;
	height: auto;
}
.room-card {
	background: var(--white);
	overflow: hidden;
	transition: var(--transition-smooth);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	height: 100%;
	display: flex;
	flex-direction: column;
}
.room-image {
	height: 250px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
}
.room-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.room-card:hover .room-image img {
	transform: scale(1.05);
}
.room-content {
	padding: 30px;
	background: var(--white);
	flex: 1;
	display: flex;
	flex-direction: column;
}
.room-title, .room-title a {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	 text-decoration: none;
}
, .room-title a:hover {
	text-decoration: underline;
}
.room-price {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}
.room-price span {
	font-size: 14px;
	color: var(--text-secondary);
	font-weight: 500;
}
.room-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 25px;
	font-size: 15px;
	flex: 1;
}
.room-buttons {
	display: flex;
	gap: 15px;
	margin-top: auto;
	flex-shrink: 0;
}
.room-btn {
	flex: 1;
	text-align: center;
	padding: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition-base);
}
.room-btn-details {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}
.room-btn-details:hover {
	background: var(--primary-color);
	color: var(--white);
}
.room-btn-book {
	background: var(--primary-color);
	color: var(--white);
	border: 2px solid var(--primary-color);
}
.room-btn-book:hover {
	border-color: #f0f0f0;
	background: #f0f0f0;
	color: var(--primary-hover);
}
.rooms-section .swiper-button-next, .rooms-section .swiper-button-prev {
	width: 60px;
	height: 60px;
	background: var(--white);
	box-shadow: var(--shadow-sm);
	transition: var(--transition-base);
	top: 50%;
	transform: translateY(-50%);
	margin-top: 0;
	opacity: 0;
	z-index: 20;
	border-radius: 50%;
	pointer-events: none;
}
.rooms-section:hover .swiper-button-next, .rooms-section:hover .swiper-button-prev {
	opacity: 1;
	pointer-events: auto;
}
.rooms-section .swiper-button-next:after, .rooms-section .swiper-button-prev:after {
	font-size: 20px;
	color: var(--primary-color);
	font-weight: bold;
	transition: var(--transition-base);
}
.rooms-section .swiper-button-next:hover, .rooms-section .swiper-button-prev:hover {
	background: var(--primary-color);
}
.rooms-section .swiper-button-next:hover:after, .rooms-section .swiper-button-prev:hover:after {
	color: var(--white);
}
.rooms-section .swiper-button-prev {
	left: 10px;
}
.rooms-section .swiper-button-next {
	right: 10px;
}
.rooms-section .swiper-pagination {
	position: relative;
	margin-top: 20px;
	display: none;
}
.services-section {
	padding: 100px 0;
	background: var(--bg-gray);
	position: relative;
	overflow: hidden;
}
.services-carousel {
	position: relative;
	padding: 0;
}
.servicesSwiper {
	width: 100%;
	padding: 20px 0 50px;
	overflow: hidden !important;
}
.servicesSwiper .swiper-wrapper {
	overflow: visible !important;
}
.servicesSwiper .swiper-slide {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.3s ease;
	height: auto;
}
.service-card {
	background: var(--white);
	overflow: hidden;
	transition: var(--transition-smooth);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	height: 100%;
}
.service-image {
	overflow: hidden;
	position: relative;
}
.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
	transform: scale(1.05);
}
.service-content {
	padding: 25px;
	background: var(--white);
}
.service-title, .service-title a {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	 text-decoration: none;
}
 .service-title a:hover{
	text-decoration: underline;
}
.service-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 15px;
	height: 70px;
	overflow: hidden;
}
.service-link {
	display: inline-block;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: var(--transition-base);
	position: relative;
	padding-bottom: 5px;
}
.service-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: var(--transition-base);
}
.service-link:hover {
	color: var(--primary-hover);
}
.service-link:hover::after {
	width: 100%;
}
.services-section .swiper-button-next, .services-section .swiper-button-prev {
	width: 60px;
	height: 60px;
	background: var(--white);
	box-shadow: var(--shadow-sm);
	transition: var(--transition-base);
	top: 50%;
	transform: translateY(-50%);
	margin-top: 0;
	opacity: 0;
	z-index: 20;
	border-radius: 50%;
	pointer-events: none;
}
.services-section:hover .swiper-button-next, .services-section:hover .swiper-button-prev {
	opacity: 1;
	pointer-events: auto;
}
.services-section .swiper-button-next:after, .services-section .swiper-button-prev:after {
	font-size: 20px;
	color: var(--primary-color);
	font-weight: bold;
	transition: var(--transition-base);
}
.services-section .swiper-button-next:hover, .services-section .swiper-button-prev:hover {
	background: var(--primary-color);
}
.services-section .swiper-button-next:hover:after, .services-section .swiper-button-prev:hover:after {
	color: var(--white);
}
.services-section .swiper-button-prev {
	left: 10px;
}
.services-section .swiper-button-next {
	right: 10px;
}
.about-section {
	padding: 100px 0;
	background: var(--white);
}
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.about-label {
	display: inline-block;
	font-weight: 300;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 15px;
	padding-bottom: 8px;
	position: relative;
}
.about-label::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: var(--primary-color);
}
.about-title {
	font-size: 35px;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 25px;
	line-height: 1.2;
}
.about-text {
	line-height: 1.7;
	margin-bottom: 20px;
	font-size: 15px;
}
.about-text-content .about-text b {
	font-size: 18px;
}
.about-image-wrapper {
	position: relative;
}
.image-frame {
	position: relative;
	width: 100%;
	overflow: hidden;
	z-index: 1;
}
.about-image {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 0;
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	filter: brightness(0.8);
}
.image-frame::before {
	content: "";
	display: block;
	border-style: solid;
	border-width: 0;
	position: absolute;
	z-index: 3;
	border-color: rgba(255, 255, 255, 0.7);
	border-top-width: 1px;
	top: 2rem;
	border-right-width: 1px;
	right: 2rem;
	border-bottom-width: 1px;
	bottom: 2rem;
	border-left-width: 1px;
	left: 2rem;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	pointer-events: none;
}
.image-frame::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.5);
	top: 2rem;
	right: 2rem;
	bottom: 2rem;
	left: 2rem;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	pointer-events: none;
}
.image-frame:hover::before {
	transform: translate3d(-0.5rem, -0.5rem, 0);
}
.image-frame:hover::after {
	transform: translate3d(0.5rem, 0.5rem, 0);
	opacity: 1;
}
.image-frame:hover .about-image {
	transform: scale(1.05);
}
.zoom-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: rgba(15, 35, 62, 0.9);
	color: var(--white);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	z-index: 4;
	font-size: 24px;
	font-weight: 300;
}
.image-frame:hover .zoom-btn {
	opacity: 1;
}
.zoom-btn:hover {
	background: var(--primary-color);
}
.offers-section {
	padding: 100px 0;
	background: var(--white);
}
.offers-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 50px;
}
.offer-card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.offer-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.offer-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	filter: brightness(0.8);
}
.offer-image-wrapper::before {
	content: "";
	display: block;
	border-style: solid;
	border-width: 0;
	position: absolute;
	z-index: 1;
	border-color: rgba(255, 255, 255, 0.7);
	border-top-width: 1px;
	top: 2rem;
	border-right-width: 1px;
	right: 2rem;
	border-bottom-width: 1px;
	bottom: 2rem;
	border-left-width: 1px;
	left: 2rem;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	pointer-events: none;
}
.offer-image-wrapper::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.5);
	top: 2rem;
	right: 2rem;
	bottom: 2rem;
	left: 2rem;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	pointer-events: none;
}
.offer-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--white);
	z-index: 2;
	padding: 2rem;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.offer-title {
	font-size: 27px;
	font-weight: 700;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateY(20px);
	margin-bottom: 0;
	line-height: 1.2;
}
.offer-details {
	opacity: 0;
	transform: translateY(0);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.offer-details-btn {
	display: inline-block;
	background: transparent;
	color: var(--white);
	border: none;
	padding: 12px 35px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition-base);
	font-size: 16px;
	position: relative;
	overflow: hidden;
}
.offer-details-btn::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--white);
	transition: var(--transition-base);
}
.offer-details-btn:hover {
	color: rgba(255, 255, 255, 0.8);
}
.offer-details-btn:hover::after {
	width: calc(100% - 70px);
}
.offer-card:hover .offer-image {
	transform: scale(1.05);
}
.offer-card .offer-overlay {
	background: rgba(15, 35, 62, 0.1);
}
.offer-card:hover .offer-overlay {
	background: rgba(15, 35, 62, 0.5);
}
.offer-card:hover .offer-title {
	transform: translateY(0);
}
.offer-card:hover .offer-details {
	opacity: 1;
	transform: translateY(10px);
}
.offer-card:hover .offer-image-wrapper::before {
	transform: translate3d(-0.5rem, -0.5rem, 0);
}
.offer-card:hover .offer-image-wrapper::after {
	transform: translate3d(0.5rem, 0.5rem, 0);
	opacity: 1;
}
.offers-button-container {
	text-align: center;
	margin-top: 30px;
}
.offers-all-btn {
	display: inline-block;
	background: var(--primary-color);
	color: var(--white);
	border: 2px solid var(--primary-color);
	padding: 15px 35px;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
	transition: var(--transition-base);
	letter-spacing: 1px;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	text-decoration: none;
}
.offers-all-btn:hover {
	background: #f0f0f0;
	color: var(--primary-color);
	border-color: #f0f0f0;
}
.advantages-section {
	padding: 100px 0;
	background: var(--primary-color);
}
.advantages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.advantage-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.advantage-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
}
.advantage-icon img {
	width: 40px;
	height: 40px;
}
.advantage-content {
	flex: 1;
}
.advantage-title {
	font-size: 22px;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 10px;
	line-height: 1.5;
}
.advantage-description {
	font-size: 14px;
	color: #f0f0f0;
	line-height: 1.6;
}
.footer {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 60px 0 0;
}
.footer-content {
	padding-bottom: 50px;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	opacity: 0.9;
}
.footer-bottom {
	background-color: var(--primary-hover);
	padding: 20px 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}
.footer-bottom .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.footer-bottom a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: var(--transition-base);
	font-weight: 500;
}
.footer-bottom a:hover {
	color: var(--white);
	text-decoration: underline;
}
.back-to-top {
	position: fixed;
	bottom: 70px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: #f0f0f0;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition-base);
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}
.back-to-top svg {
	width: 24px;
	height: 24px;
	stroke: var(--primary-color);
	stroke-width: 1;
	fill: none;
	transition: var(--transition-base);
}
.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}
.back-to-top:hover {
	background: #c0c0c0;
}
.back-to-top:hover svg {
	stroke: var(--primary-hover);
}
.footer-content ul li {
	list-style: none;
}
.footer-info {
	padding: 10px 0 40px 0;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	align-items: center;
}
.footer-info__title {
	margin-bottom: 10px;
	font-size: 15px;
	color: #2874b8;
	text-align: left;
	font-weight: 300;
}
.footer-info__content {
	font-size: 22px;
	color: #fff;
}
.footer-info__content a {
	color: #fff;
	text-decoration: none;
}
.footer-info__content a:hover {
	text-decoration: underline;
}
.footer-info__item.logof img {
	max-width: 230px;
	max-height: 100px;
	width: auto;
	height: auto;
}
.footer-menu {
	padding: 40px 0 10px 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.footer-menu__item {
	padding: 0 20px;
}
.footer-menu__link {
	color: #e3e3e3 !important;
	transition: color 500ms ease;
	font-size: 14px;
	text-decoration: none;
}
.footer-menu__link:hover {
	color: #2874b8 !important;
}
.form_book {
	background: #fff;
	border-bottom: 1px solid rgba(15, 35, 62, 0.15);
}
#tl-search-form {
	min-height: 93px;
}
.premiya-link {
	display: block;
	text-decoration: none;
}
.premiya {
	position: relative;
	width: 100%;
	min-height: 58px;
	background: url(../images/premiya.svg);
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}
.premiya::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.3s ease;
	pointer-events: none;
}
.premiya:hover::before {
	background-color: rgba(0, 0, 0, 0.1);
}
.soc_seti img, .soc_seti svg {
	width: 23px;
	height: auto;
	background: #f0f0f0;
	padding: 5px;
	border-radius: 8px;
	transition: var(--transition-base);
	color: #000;
}
.soc_seti img:hover, .soc_seti svg:hover {
	background: #dbdbdb;
}
.soc_seti {
	display: flex;
	gap: 8px;
}
.dev {
	height: 23px;
	width: auto;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-dev] {
	position: relative;
	cursor: pointer;
}
[data-dev]::before {
	content: attr(data-dev);
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) scale(0.9);
	background: #fff;
	color: #182324;
	padding: 5px 15px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 9999;
	pointer-events: none;
	min-width: 120px;
	text-align: center;
}
[data-dev]:hover::before {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) scale(1);
}
[data-tool_niz] {
	position: relative;
	cursor: pointer;
}
[data-tool_niz]::before {
	content: attr(data-tool_niz);
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) scale(0.9);
	background: #f0f0f0;
	color: #182324;
	padding: 5px 15px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 9999;
	pointer-events: none;
	min-width: 120px;
	text-align: center;
}
[data-tool_niz]:hover::before {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) scale(1);
}
.live-stream-icon img {
	width: 18px;
	height: auto;
}
.contact-item:hover {
	text-decoration: underline;
}
.info_okom {
	gap: 15px;
	display: flex;
}
.pre_banne {
	height: 50px;
	width: auto;
}
.info_okom iframe {
	border-radius: 10px;
}
.info_okom img {
	transition: var(--transition-base);
}
.info_okom img:hover {
	filter: invert(7%);
	transition: var(--transition-base);
}
.tl-search-form, .tl-booking-form, .tl-container {
	max-width: 100%;
	overflow: visible;
}
.tl-booking-form iframe, .tl-search-form iframe, [id^="tlFrame"] {
	max-width: 100%;
	border: none;
}
@media (max-width: 1500px) {
	.container {
		max-width: 100%;
		padding: 0 40px;
	}
}
@media (max-width: 1200px) {
	.nav-link {
		padding: 10px 20px;
		font-size: 15px;
	}
	.book-btn {
		padding: 12px 28px;
		font-size: 15px;
	}
	.contact-info {
		gap: 20px;
	}
	.top-menu {
		gap: 20px;
	}
	.logo {
		width: 220px;
	}
	.logo-text {
		font-size: 24px;
	}
	header.compact .logo-text {
		font-size: 22px;
	}
	.slide-title {
		font-size: 54px;
	}
	.slider {
		height: 600px;
	}
	.rooms-section .swiper-button-next, .rooms-section .swiper-button-prev, .services-section .swiper-button-next, .services-section .swiper-button-prev {
		width: 50px;
		height: 50px;
	}
	.rooms-section .swiper-button-next:after, .rooms-section .swiper-button-prev:after, .services-section .swiper-button-next:after, .services-section .swiper-button-prev:after {
		font-size: 18px;
	}
	.about-content {
		gap: 60px;
	}
	.about-title {
		font-size: 32px;
	}
	.advantages-grid {
		gap: 30px;
	}
	.image-frame::before, .image-frame::after {
		top: 1.5rem;
		right: 1.5rem;
		bottom: 1.5rem;
		left: 1.5rem;
	}
	.offers-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	.offer-image-wrapper::before, .offer-image-wrapper::after {
		top: 1.5rem;
		right: 1.5rem;
		bottom: 1.5rem;
		left: 1.5rem;
	}
	.back-to-top {
		width: 50px;
		height: 50px;
		bottom: 25px;
		right: 25px;
	}
}
@media (max-width: 992px) {
	header {
		position: static;
		transform: translateY(0) !important;
		height: auto !important;
		box-shadow: none;
	}
	header.hidden, header.compact {
		transform: translateY(0) !important;
	}
	body {
		padding-top: 0;
	}
	.mobile-header {
		display: flex;
	}
	.right-section {
		display: none;
	}
	.logo {
		display: none;
	}
	.top-section {
		display: none;
	}
	.bottom-section {
		display: none;
	}
	.container {
		padding: 0 15px;
	}
	.mobile-header {
		padding: 20px 0;
		background: var(--white);
		margin-bottom: 0;
	}
	.mobile-logo-small {
		font-size: 20px;
	}
	.mobile-book-btn {
		padding: 8px 16px;
		font-size: 13px;
	}
	.burger-menu {
		padding: 20px 12px;
		background: var(--primary-color);
	}
	.mobile-contact-info-compact {
		font-size: 11px;
		gap: 15px;
	}
	.slider {
		height: 500px;
		margin-top: 0;
	}
	.slide-title {
		font-size: 42px;
	}
	.slide-subtitle {
		font-size: 16px;
	}
	.slide-btn {
		padding: 15px 35px;
		font-size: 15px;
	}
	.slider-arrow {
		width: 60px;
		height: 60px;
	}
	.slider-arrow svg {
		width: 28px;
		height: 28px;
	}
	.slider-nav {
		padding: 0 15px;
	}
	.rooms-section, .services-section, .offers-section, .advantages-section {
		padding: 80px 0;
	}
	.rooms-section .swiper-button-next, .rooms-section .swiper-button-prev, .services-section .swiper-button-next, .services-section .swiper-button-prev {
		width: 45px;
		height: 45px;
	}
	.rooms-section .swiper-button-next:after, .rooms-section .swiper-button-prev:after, .services-section .swiper-button-next:after, .services-section .swiper-button-prev:after {
		font-size: 16px;
	}
	.about-section {
		padding: 80px 0;
	}
	.about-content {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.about-title {
		font-size: 30px;
	}
	.advantages-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	.advantage-item {
		gap: 15px;
	}
	.advantage-icon {
		width: 50px;
		height: 50px;
	}
	.advantage-icon svg {
		width: 35px;
		height: 35px;
	}
	.image-frame::before, .image-frame::after {
		top: 1.5rem;
		right: 1.5rem;
		bottom: 1.5rem;
		left: 1.5rem;
	}
	.back-to-top {
		width: 45px;
		height: 45px;
		bottom: 20px;
		right: 20px;
	}
	.back-to-top svg {
		width: 20px;
		height: 20px;
	}
}
@media (max-width: 768px) {
	.service-image {
		display: none;
	}
	.about-image-wrapper {
		display: none;
	}
	.premiya {
		min-height: 40px;
		background-size: auto 100%;
	}
	.mob_hotels .mobile-hotels-link {
		font-size: 14px;
	}
	.mob_hotels {
		border-bottom: 1px solid var(--border-color);
		padding-bottom: 12px;
	}
	.mobile-header-bottom {
		padding: 20px 15px 5px 15px;
		border-top: 1px solid #eaeaea;
	}
	.kno_ssilki {
		display: flex;
		gap: 30px;
		padding-top: 10px;
	}
	.mobile-logo img {
		width: 170px;
	}
	.mobile-logo-small {
		font-size: 18px;
	}
	.mobile-logo-small img {
		width: 170px;
		margin: 8px 0 10px;
	}
	.mobile-book-btn {
		padding: 10px 12px;
		font-size: 15px;
		font-weight: 300;
	}
	.mobile-menu {
		width: 280px;
	}
	.mobile-menu-header {
		padding: 15px;
	}
	.mobile-menu-content {
		padding: 15px 0;
	}
	.mobile-social-links {
		padding: 15px;
	}
	.mobile-header-top {
		flex-direction: column;
	}
	.mobile-contact-info-compact {
		flex-direction: column;
		gap: 5px;
		align-items: center;
		padding: 10px 0;
	}
	.mobile-contact-item-compact {
		font-size: 14px;
	}
	.slider {
		height: 450px;
	}
	.slide-title {
		font-size: 36px;
	}
	.slide-subtitle {
		font-size: 15px;
		margin-bottom: 12px;
	}
	.slide-btn {
		padding: 14px 30px;
		font-size: 14px;
	}
	.slider-arrow {
		width: 50px;
		height: 50px;
	}
	.slider-arrow svg {
		width: 24px;
		height: 24px;
	}
	.rooms-section, .services-section, .offers-section, .advantages-section {
		padding: 60px 0;
	}
	.section-title {
		font-size: 30px;
	}
	.section-subtitle {
		font-size: 16px;
	}
	.room-title, .service-title {
		font-size: 20px;
	}
	.room-price {
		font-size: 18px;
	}
	.room-buttons {
		flex-direction: column;
	}
	.rooms-section .swiper-button-next, .rooms-section .swiper-button-prev {
		display: none;
	}
	.rooms-section .swiper-pagination {
		display: block;
	}
	.rooms-section .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
		background: var(--primary-color);
		opacity: 0.5;
	}
	.rooms-section .swiper-pagination-bullet-active {
		opacity: 1;
		width: 24px;
		border-radius: 4px;
	}
	.room-content {
		padding: 18px;
	}
	.room-title, .room-title a {
		font-size: 18px;
	}
	.room-price {
		font-size: 16px;
	}
	.room-description {
		font-size: 14px;
		margin-bottom: 20px;
	}
	.room-buttons {
		flex-direction: column;
		gap: 10px;
	}
	.room-btn {
		padding: 10px;
		font-size: 14px;
	}
	.services-section .swiper-button-next, .services-section .swiper-button-prev {
		width: 40px;
		height: 40px;
	}
	.services-section .swiper-button-next:after, .services-section .swiper-button-prev:after {
		font-size: 14px;
	}
	.about-section {
		padding: 60px 0;
	}
	.about-title {
		font-size: 28px;
	}
	.about-text {
		font-size: 15px;
	}
	.image-frame::before, .image-frame::after {
		top: 1.5rem;
		right: 1.5rem;
		bottom: 1.5rem;
		left: 1.5rem;
	}
	.image-frame:hover::before {
		transform: translate3d(-0.375rem, -0.375rem, 0);
	}
	.image-frame:hover::after {
		transform: translate3d(0.375rem, 0.375rem, 0);
	}
	.zoom-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	.offers-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.offer-card {
		max-width: 450px;
		margin: 0 auto;
	}
	.offer-title {
		font-size: 22px;
	}
	.offer-image-wrapper::before, .offer-image-wrapper::after {
		top: 1.5rem;
		right: 1.5rem;
		bottom: 1.5rem;
		left: 1.5rem;
	}
	.advantages-grid {
		gap: 25px;
	}
	.advantage-title {
		font-size: 18px;
		margin-bottom: 8px;
	}
	.advantage-description {
		font-size: 15px;
	}
	.footer-bottom .container {
		flex-direction: column;
		text-align: center;
		gap: 5px;
	}
	.servicesSwiper .swiper-pagination {
		margin-top: 20px;
	}
	.servicesSwiper .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
	.servicesSwiper .swiper-pagination-bullet-active {
		width: 24px;
	}
}
@media (max-width: 576px) {
	.slider {
		height: 400px;
	}
	.slide-title {
		font-size: 32px;
	}
	.slide-subtitle {
		font-size: 14px;
		letter-spacing: 1px;
	}
	.slide-content {
		max-width: 90%;
	}
	.slide-btn {
		padding: 12px 25px;
		font-size: 13px;
	}
	.slider-arrow {
		width: 45px;
		height: 45px;
	}
	.slider-arrow svg {
		width: 20px;
		height: 20px;
	}
	.slider-nav {
		padding: 0 10px;
	}
	.rooms-section, .services-section, .offers-section, .advantages-section {
		padding: 50px 0;
	}
	.section-title {
		font-size: 28px;
	}
	.room-content, .service-content {
		padding: 20px;
	}
	.rooms-section .swiper-button-next, .rooms-section .swiper-button-prev, .services-section .swiper-button-next, .services-section .swiper-button-prev {
		display: none;
	}
	.room-content {
		padding: 15px;
	}
	.room-title, .room-title a {
		font-size: 16px;
	}
	.room-price {
		font-size: 15px;
	}
	.room-description {
		font-size: 13px;
		margin-bottom: 15px;
	}
	.room-btn {
		padding: 8px;
		font-size: 13px;
	}
	.rooms-section .swiper-pagination-bullet {
		width: 6px;
		height: 6px;
	}
	.rooms-section .swiper-pagination-bullet-active {
		width: 20px;
	}
	.about-section {
		padding: 50px 0;
	}
	.about-title {
		font-size: 26px;
	}
	.image-frame::before, .image-frame::after {
		top: 1.25rem;
		right: 1.25rem;
		bottom: 1.25rem;
		left: 1.25rem;
	}
	.image-frame:hover::before {
		transform: translate3d(-0.3125rem, -0.3125rem, 0);
	}
	.image-frame:hover::after {
		transform: translate3d(0.3125rem, 0.3125rem, 0);
	}
	.zoom-btn {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
	.offer-title {
		font-size: 20px;
	}
	.offer-details-btn {
		padding: 10px 25px;
		font-size: 14px;
	}
	.offer-image-wrapper::before, .offer-image-wrapper::after {
		top: 1.25rem;
		right: 1.25rem;
		bottom: 1.25rem;
		left: 1.25rem;
	}
	.offers-all-btn {
		padding: 12px 30px;
		font-size: 14px;
	}
	.advantages-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.advantage-item {
		gap: 20px;
	}
	.advantage-icon {
		width: 60px;
		height: 60px;
	}
	.advantage-icon svg {
		width: 40px;
		height: 40px;
	}
	.back-to-top {
		width: 45px;
		height: 45px;
		bottom: 20px;
		right: 15px;
	}
	.back-to-top svg {
		width: 20px;
		height: 20px;
	}
}
@media (max-width: 480px) {
	.mobile-menu {
		width: 100%;
		max-width: 320px;
	}
	.mobile-logo-small {
		font-size: 18px;
	}
	.mobile-header {
		padding: 15px 0;
		gap: 12px;
	}
	.slider {
		height: 350px;
	}
	.slide-title {
		font-size: 28px;
		margin-bottom: 20px;
	}
	.slide-subtitle {
		font-size: 13px;
		margin-bottom: 10px;
	}
	.slide-btn {
		padding: 10px 20px;
		font-size: 12px;
	}
	.slider-arrow {
		width: 40px;
		height: 40px;
	}
	.slider-arrow svg {
		width: 18px;
		height: 18px;
	}
	.offer-title {
		font-size: 18px;
	}
	.offer-details-btn {
		padding: 8px 20px;
		font-size: 14px;
	}
	.offer-image-wrapper::before, .offer-image-wrapper::after {
		top: 1rem;
		right: 1rem;
		bottom: 1rem;
		left: 1rem;
	}
	.advantage-item {
		gap: 15px;
	}
	.advantage-icon {
		width: 50px;
		height: 50px;
	}
	.advantage-icon svg {
		width: 35px;
		height: 35px;
	}
}
@media (min-width: 768px) {
	.d-none {
		display: none;
	}
}
@media (max-width: 768px) {
	.m-none {
		display: none;
	}
	.footer {
		padding: 30px 0 0;
	}
	.footer-content {
		display: flex;
		flex-direction: column;
		padding-bottom: 10px;
	}
	.footer-info {
		display: flex;
		flex-direction: column;
		gap: 10px;
		padding: 20px 0 30px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		margin-bottom: 0;
	}
	.footer-info__item {
		width: 100%;
		text-align: center;
	}
	.footer-info__item.logof {
		margin-bottom: 20px;
	}
	.footer-info__title {
		text-align: center;
		font-size: 14px;
		margin-bottom: 8px;
		display: none;
	}
	.footer-info__content {
		font-size: 18px;
	}
	.footer-info__content a {
		font-size: 18px;
	}
	.footer-menu-section {
		width: 100%;
		margin: 20px 0 10px;
	}
	.footer-menu-tab {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	.footer-menu-header {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 10px 0;
		cursor: pointer;
		user-select: none;
		transition: var(--transition-base);
		position: relative;
	}
	.footer-menu-header:hover {
		background-color: rgba(255, 255, 255, 0.05);
	}
	.footer-menu-title {
		color: #fff;
		font-size: 16px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin: 0;
		padding: 0;
	}
	.footer-menu-arrow {
		margin-left: 10px;
		transition: transform 0.3s ease;
		display: inline-block;
	}
	.footer-menu-header.active .footer-menu-arrow {
		transform: rotate(180deg);
	}
	.footer-menu-arrow svg {
		width: 16px;
		height: 16px;
		stroke: #fff;
		stroke-width: 2;
		fill: none;
	}
	.footer-menu-container {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease-out;
		background-color: rgba(0, 0, 0, 0.2);
	}
	.footer-menu-container.active {
		max-height: 500px;
		transition: max-height 0.5s ease-in;
	}
	.footer-menu {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		padding: 20px 0 15px !important;
		margin: 0 !important;
		list-style: none !important;
		gap: 3px !important;
	}
	.footer-menu__item {
		padding: 0 !important;
		margin: 0 !important;
		width: 100%;
		text-align: center;
	}
	.footer-menu__link {
		display: inline-block !important;
		color: #e3e3e3 !important;
		font-size: 15px !important;
		padding: 5px 0 !important;
		text-decoration: none !important;
		transition: color 500ms ease !important;
		line-height: 1.5;
	}
	.footer-menu__link:hover {
		color: #2874b8 !important;
	}
	.footer-bottom .container {
		flex-direction: row;
		gap: 15px;
		padding: 15px 0;
		justify-content: center;
	}
	.footer-copyright {
		font-size: 13px;
		line-height: 1.5;
	}
	.dev {
		height: 15px;
	}
}
@media (max-width: 480px) {
	.footer-info__content {
		font-size: 16px;
	}
	.footer-info__content a {
		font-size: 16px;
	}
	.footer-menu-title {
		font-size: 15px;
	}
	.footer-menu__link {
		font-size: 14px !important;
	}
	.footer-copyright {
		font-size: 12px;
	}
}
.page-head-section {
	position: relative;
	width: 100%;
	height: 180px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	color: var(--white);
}
.page-head-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 0.7;
	z-index: 1;
	pointer-events: none;
}
.page-head-content {
	position: relative;
	z-index: 2;
	width: 100%;
}
.page-head-title {
	font-size: 38px;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 10px;
	text-transform: uppercase;
	text-align: center;
}
.page-breadcrumbs-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: center;
	align-items: center;
}
.page-breadcrumbs-item {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
}
.page-breadcrumbs-item:not(:last-child)::after {
	content: '/';
	margin: 0 10px;
	color: rgba(255, 255, 255, 0.6);
}
.page-breadcrumbs-link {
	color: var(--white);
	text-decoration: none;
	font-weight: 300;
}
.page-breadcrumbs-link:hover {
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.7);
}
.page-breadcrumbs-current {
	color: var(--accent-color);
	font-weight: 300;
	cursor: default;
}
@media (max-width: 992px) {
	.page-head-section {
		height: 150px;
	}
	.page-head-title {
		font-size: 36px;
	}
}
@media (max-width: 768px) {
	.page-head-section {
		height: 100px;
	}
	.page-head-title {
		font-size: 25px;
		margin-bottom: 0;
	}
	.page-head-breadcrumbs {
		display: none;
	}
}
.content-section {
	padding: 50px 0;
}
.content-block {
	background-color: var(--bg-light);
	padding: 50px;
	border-radius: 0;
}
.content-block h1 {
	font-size: 36px;
	margin-bottom: 20px;
}
.content-block h2 {
	font-size: 30px;
	margin-bottom: 15px;
}
.content-block h3 {
	font-size: 24px;
	margin-bottom: 15px;
}
.content-block h1, .content-block h2, .content-block h3 {
	color: var(--primary-color);
	font-weight: 500;
}
.content-block p {
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 25px;
	color: var(--text-primary);
}
.content-block p:last-child {
	margin-bottom: 0;
}
.content-block a {
	color: var(--primary-color);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
	font-weight: 500;
}
.content-block a:hover {
	border-bottom-color: var(--primary-color);
}
.content-block ul, .content-block ol {
	margin: -15px 0 20px 30px;
	line-height: 1.7;
}
.content-block ul:last-child, .content-block ol:last-child {
	margin-bottom: 0;
}
.content-block li {
	margin-bottom: 8px;
	color: var(--text-primary);
	font-size: 17px;
}
.content-block li:last-child {
	margin-bottom: 0;
}
.content-block ul li {
	list-style-type: disc;
}
.content-block ol li {
	list-style-type: decimal;
}
.content-block strong {
	font-weight: 700;
}
.content-block em {
	font-style: italic;
}
@media (max-width: 992px) {
	.content-block {
		padding: 40px;
	}
}
@media (max-width: 768px) {
	.content-section {
		padding: 40px 0;
	}
	.content-block {
		padding: 30px;
	}
	.content-block h1 {
		font-size: 28px;
	}
	.content-block h2 {
		font-size: 24px;
	}
	.content-block h3 {
		font-size: 20px;
	}
	.content-block ul, .content-block ol {
		margin-left: 20px;
	}
}
@media (max-width: 576px) {
	.content-section {
		padding: 30px 0;
	}
	.content-block {
		padding: 25px;
	}
}
.simple-slider-section {
	padding: 50px 0;
}
.otst-sider {
	margin-bottom: 40px;
}
.simple-slider {
	position: relative;
	width: 100%;
}
.simpleSwiper {
	width: 100%;
	overflow: hidden;
}
.simpleSwiper .swiper-slide {
	width: 100%;
	height: auto;
}
.simpleSwiper .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
}
.simple-slider-prev, .simple-slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-color: rgba(15, 35, 62, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.3s ease;
}
.simple-slider-prev:hover, .simple-slider-next:hover {
	background-color: var(--primary-color);
}
.simple-slider-prev {
	left: 20px;
}
.simple-slider-next {
	right: 20px;
}
@media (max-width: 992px) {
	.otst-sider {
		margin-bottom: 35px;
	}
	.simple-slider-prev {
		left: 15px;
	}
	.simple-slider-next {
		right: 15px;
	}
}
@media (max-width: 768px) {
	.otst-sider {
		margin-bottom: 30px;
	}
	.simple-slider-prev, .simple-slider-next {
		width: 40px;
		height: 40px;
	}
	.simple-slider-prev svg, .simple-slider-next svg {
		width: 20px;
		height: 20px;
	}
	.simple-slider-prev {
		left: 10px;
	}
	.simple-slider-next {
		right: 10px;
	}
}
@media (max-width: 576px) {
	.otst-sider {
		margin-bottom: 25px;
	}
	.simple-slider-prev, .simple-slider-next {
		width: 35px;
		height: 35px;
	}
	.simple-slider-prev {
		left: 8px;
	}
	.simple-slider-next {
		right: 8px;
	}
}
.content-section hr {
	border: none;
	height: 1px;
	background-color: #e4e8ec;
	margin: 40px 0;
}
.fancybox__content {
	padding: 0px !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}
.fancybox__backdrop {
	background: rgb(15 35 62 / 70%) !important;
}
.fancybox__slide {
	padding: 5% !important;
}
.tur-content .news-title {
	height: 35px;
	font-size: 23px;
}
.news-section {
	padding: 80px 0;
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.news-item {
	background-color: #f8f8f8;
	overflow: hidden;
	cursor: pointer;
}
.news-image-link {
	display: block;
	width: 100%;
	overflow: hidden;
	text-decoration: none;
}
.news-image {
	width: 100%;
}
.news-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}
.news-item:hover .news-image img {
	transform: scale(1.05);
}
.news-content {
	padding: 30px 35px 35px 35px;
	text-align: center;
}
.news-date {
	font-size: 12px;
	color: #777777;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.news-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 12px;
	line-height: 1.5;
	text-transform: uppercase;
	height: 83px;
	overflow: hidden;
}
.news-title a {
	color: var(--primary-color);
	text-decoration: none;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}
.news-title a:hover {
	border-bottom-color: var(--primary-color);
}
.news-excerpt {
	font-size: 14px;
	color: #222;
	line-height: 1.5;
	margin-bottom: 20px;
	height: 45px;
	overflow: hidden;
}
.news-link {
	display: inline-block;
	color: var(--primary-color);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}
.news-link:hover {
	border-bottom-color: var(--primary-color);
}
.news-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin-top: 50px;
}
.pagination-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #f8f8f8;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
}
.pagination-link:hover {
	background-color: #e8e8e8;
}
.pagination-link.active {
	background-color: var(--primary-color);
	color: white;
	cursor: default;
}
.pagination-link.active:hover {
	background-color: var(--primary-color);
}
.title-te {
	text-align: center;
	padding-bottom: 30px;
}
.pagination-prev svg, .pagination-next svg, .pagination-prev-double svg, .pagination-next-double svg {
	display: block;
}
@media (max-width: 992px) {
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	.news-content {
		padding: 25px 25px 30px 25px;
	}
}
@media (max-width: 768px) {
	.news-section {
		padding: 50px 0;
	}
	.title-te {
		padding-bottom: 10px;
	}
	.news-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	.news-content {
		padding: 25px 25px 30px 25px;
	}
	.news-title, .tur-content .news-title {
		font-size: 17px;
		height: auto;
	}
	.news-excerpt {
		font-size: 12px;
		height: 57px;
	}
	.pagination-link {
		width: 35px;
		height: 35px;
	}
	.news-pagination {
		margin-top: 30px;
	}
}
.phone-mobile {
	display: flex;
	gap: 20px;
	margin: 5px 0;
}
.travel-section {
	padding: 80px 0;
}
.travel-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 30px;
	align-items: start;
}
.travel-gallery {
	position: relative;
}
.travel-photo {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
	overflow: hidden;
	cursor: pointer;
}
.travel-photo:last-child {
	margin-bottom: 0;
}
.travel-photo img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease, filter 0.3s ease;
}
.travel-photo:hover img {
	transform: scale(1.05);
	filter: brightness(0.85);
}
.travel-photo-zoom {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background-color: rgba(15, 35, 62, 0.8);
	color: white;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 2;
	font-size: 32px;
	font-weight: 300;
}
.travel-photo-zoom span {
	line-height: 1;
}
.travel-photo:hover .travel-photo-zoom {
	opacity: 1;
}
.travel-photo-zoom:hover {
	background-color: var(--primary-color);
	transform: translate(-50%, -50%) scale(1.05);
}
.travel-content {
	position: relative;
}
.travel-title {
	font-size: 36px;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.travel-text p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--text-primary);
	margin-bottom: 20px;
}
.travel-text p:last-child {
	margin-bottom: 0;
}
.travel-text ul, .travel-text ol {
	margin: -15px 0 20px 30px;
	line-height: 1.7;
}
.travel-text ul:last-child, .travel-text ol:last-child {
	margin-bottom: 0;
}
.travel-text li {
	margin-bottom: 8px;
	color: var(--text-primary);
	font-size: 17px;
}
.travel-text li:last-child {
	margin-bottom: 0;
}
.travel-text ul li {
	list-style-type: disc;
}
.travel-text ol li {
	list-style-type: decimal;
}
@media (max-width: 992px) {
	.travel-section {
		padding: 60px 0;
	}
	.travel-grid {
		gap: 40px;
	}
	.travel-title {
		font-size: 32px;
	}
}
@media (max-width: 768px) {
	.travel-section {
		padding: 50px 0;
	}
	.travel-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.travel-gallery {
		order: 2;
	}
	.travel-content {
		order: 1;
	}
	.travel-title {
		font-size: 28px;
		margin-bottom: 20px;
	}
	.travel-text p {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.travel-text ul, .travel-text ol {
		margin-left: 20px;
	}
	.travel-text li {
		font-size: 16px;
	}
	.travel-photo {
		margin-bottom: 20px;
	}
	.travel-photo-zoom {
		width: 50px;
		height: 50px;
		font-size: 28px;
	}
}
@media (max-width: 576px) {
	.travel-section {
		padding: 40px 0;
	}
	.travel-grid {
		gap: 30px;
	}
	.travel-title {
		font-size: 24px;
	}
	.travel-text p {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 15px;
	}
	.travel-text ul, .travel-text ol {
		margin-left: 20px;
	}
	.travel-text li {
		font-size: 15px;
	}
	.travel-photo {
		margin-bottom: 15px;
	}
	.travel-photo-zoom {
		width: 45px;
		height: 45px;
		font-size: 24px;
	}
}
.faq-section {
	padding: 80px 0;
	background: transparent;
}
.faq-grid {
	width: 100%;
}
.faq-item {
	width: 100%;
	margin-bottom: 10px;
	background: transparent;
}
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 30px;
	cursor: pointer;
	background: #f8f8f8;
	transition: background 0.2s ease;
}
.faq-question:hover {
	background: #f3f3f3;
}
.faq-title {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-primary);
	transition: color 0.2s ease;
}
.faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: var(--primary-color);
	transition: transform 0.2s ease;
	display: inline-block;
}
.faq-answer {
	overflow: hidden;
	background: #ffffff;
	transition: height 0.3s ease-out;
	height: 0;
}
.faq-answer-content {
	padding: 30px;
}
.faq-answer-content ul, .faq-answer-content ol {
	margin: -10px 0px 15px 30px;
}
.faq-answer-content ul li, .faq-answer-content ol li {
	margin-bottom: 5px;
}
.faq-answer-content p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--text-primary);
	margin-bottom: 20px;
}
.faq-answer-content p:last-child {
	margin-bottom: 0;
}
.faq-item.active .faq-question {
	background: var(--primary-color);
}
.faq-item.active .faq-title {
	color: var(--white);
}
.faq-item.active .faq-icon {
	color: var(--white);
	transform: rotate(0deg);
	font-size: 0;
}
.faq-item.active .faq-icon::before {
	content: "−";
	font-size: 24px;
	display: inline-block;
}
.faq-item.active .faq-answer {
	height: auto;
}
@media (max-width: 768px) {
	.faq-section {
		padding: 60px 0;
	}
	.faq-question {
		padding: 15px 20px;
	}
	.faq-answer-content {
		padding: 20px;
	}
	.faq-title {
		font-size: 16px;
	}
	.faq-icon {
		font-size: 22px;
	}
	.faq-item.active .faq-icon::before {
		font-size: 22px;
	}
	.faq-answer-content p {
		font-size: 14px;
	}
}
.offers-section.arhiv-offers {
	padding: 80px 0;
}
.arhiv-offers .offers-grid {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.offers-section.arhiv-offers {
		padding: 50px 0;
	}
}
.rooms-showcase {
	padding: 100px 0;
	background: var(--white);
}
.room-showcase-item {
	position: relative;
	margin-bottom: 100px;
}
.room-showcase-item:last-child {
	margin-bottom: 0;
}
@media (min-width: 769px) {
	.room-showcase-item:nth-child(even) .room-showcase-inner {
		grid-template-columns: 1fr 1.2fr;
	}
	.room-showcase-item:nth-child(even) .room-showcase-image {
		order: 2;
	}
	.room-showcase-item:nth-child(even) .room-showcase-content {
		order: 1;
	}
}
.room-showcase-item::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 0;
	border-style: solid;
	border-width: 1px;
	border-color: #dadada;
	top: -2.5rem;
	right: 2.5rem;
	bottom: 2.5rem;
	left: 2.5rem;
	pointer-events: none;
}
.room-showcase-inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 0;
	align-items: stretch;
	position: relative;
	z-index: 1;
}
.room-showcase-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.room-showcase-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.room-showcase-item:hover .room-showcase-image img {
	transform: scale(1.03);
}
.room-showcase-content {
	background: #f8f8f8;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
.room-showcase-title {
	font-size: 28px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
	text-transform: uppercase;
}
.room-showcase-price {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}
.room-showcase-price span {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-secondary);
}
.room-showcase-description {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-secondary);
	margin-bottom: 30px;
}
.room-showcase-buttons {
	display: flex;
	gap: 15px;
}
.room-showcase-btn {
	display: inline-block;
	padding: 12px 30px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
	cursor: pointer;
}
.room-showcase-btn-details {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}
.room-showcase-btn-details:hover {
	background: var(--primary-color);
	color: var(--white);
}
.room-showcase-btn-book {
	background: var(--primary-color);
	color: var(--white);
	border: 2px solid var(--primary-color);
}
.room-showcase-btn-book:hover {
	background: transparent;
	color: var(--primary-color);
}
@media (max-width: 992px) {
	.rooms-showcase {
		padding: 60px 0;
	}
	.room-showcase-item::after {
		top: -2rem;
		right: 2rem;
		bottom: 2rem;
		left: 2rem;
	}
	.room-showcase-inner {
		grid-template-columns: 1.5fr 1fr;
	}
	.room-showcase-content {
		padding: 30px;
	}
	.room-showcase-title {
		font-size: 24px;
	}
	.room-showcase-price {
		font-size: 22px;
	}
}
@media (max-width: 768px) {
	.rooms-showcase {
		padding: 50px 0;
	}
	.room-showcase-item {
		margin-bottom: 60px;
	}
	.room-showcase-item::after {
		top: -1.5rem;
		right: 1.5rem;
		bottom: 1.5rem;
		left: 1.5rem;
	}
	.room-showcase-inner {
		grid-template-columns: 1fr;
	}
	.room-showcase-image {
		height: 280px;
	}
	.room-showcase-content {
		padding: 25px;
	}
	.room-showcase-title {
		font-size: 22px;
		margin-bottom: 10px;
	}
	.room-showcase-price {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.room-showcase-description {
		font-size: 14px;
		margin-bottom: 20px;
	}
	.room-showcase-buttons {
		flex-direction: column;
		gap: 10px;
	}
	.room-showcase-btn {
		padding: 10px 20px;
		font-size: 13px;
		text-align: center;
	}
}
.room-detail {
	padding: 80px 0;
	background: var(--white);
}
.room-detail-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 70px;
}
.room-detail-title {
	font-size: 36px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
	text-transform: uppercase;
}
.room-detail-price {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}
.price-value {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
}
.price-period {
	font-size: 14px;
	color: var(--text-secondary);
}
.room-detail-book {
	display: inline-block;
	background: var(--primary-color);
	color: var(--white);
	padding: 12px 35px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	border: 2px solid var(--primary-color);
}
.room-detail-book:hover {
	background: transparent;
	color: var(--primary-color);
}
.room-detail-gallery-full {
	position: relative;
	margin-bottom: 70px;
}
.roomGallerySwiperFull {
	width: 100%;
	overflow: hidden;
}
.roomGallerySwiperFull .swiper-slide {
	height: auto;
}
.roomGallerySwiperFull .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}
.room-gallery-link {
	display: block;
	width: 100%;
	cursor: zoom-in;
	overflow: hidden;
}
.room-gallery-link:hover img {
	transform: scale(1.02);
}
.room-gallery-prev-full, .room-gallery-next-full {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	background: rgba(15, 35, 62, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
}
.room-gallery-prev-full:hover, .room-gallery-next-full:hover {
	background: var(--primary-color);
}
.room-gallery-prev-full {
	left: 15px;
}
.room-gallery-next-full {
	right: 15px;
}
.room-gallery-prev-full svg, .room-gallery-next-full svg {
	width: 18px;
	height: 18px;
	stroke: white;
	stroke-width: 2;
	fill: none;
}
.room-detail-description-full {
	margin-bottom: 70px;
}
.room-detail-description-full p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--text-primary);
	margin-bottom: 20px;
}
.room-detail-description-full p:last-child {
	margin-bottom: 0;
}
.amenities-wrapper {
	position: relative;
}
#amenities-toggle {
	display: none;
}
.room-detail-amenities {
	margin-top: 20px;
	position: relative;
}
.room-detail-amenities > p {
	margin: 0 0 25px 0;
}
.room-detail-amenities > p strong {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	padding-bottom: 8px;
	border-bottom: 2px solid var(--accent-color);
	display: inline-block;
}
.room-detail-amenities > ul {
	margin: 0 0 50px 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.room-detail-amenities li {
	background: #f8f8f8;
	padding: 5px 15px;
	font-size: 14px;
	line-height: 1.4;
	color: var(--text-secondary);
	transition: all 0.2s ease;
	list-style: none;
}
.room-detail-amenities li:hover {
	background: var(--primary-color);
	color: var(--white);
	cursor: default;
}
.amenities-toggle-label {
	display: inline-block;
	background: transparent;
	color: var(--primary-color);
	border: none;
	padding: 10px 0 0 0;
	margin-top: 5px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.2s ease;
	border-bottom: 1px solid transparent;
}
.amenities-toggle-label:hover {
	border-bottom-color: var(--primary-color);
}
#amenities-toggle:not(:checked) ~ .room-detail-amenities {
	max-height: 250px;
	overflow: hidden;
	position: relative;
}
#amenities-toggle:not(:checked) ~ .room-detail-amenities::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(to bottom, transparent, #ffffff);
	pointer-events: none;
}
#amenities-toggle:checked ~ .room-detail-amenities {
	max-height: none;
	overflow: visible;
}
#amenities-toggle:checked ~ .room-detail-amenities::after {
	display: none;
}
#amenities-toggle:not(:checked) ~ .amenities-toggle-label::before {
	content: "Смотреть все удобства";
}
#amenities-toggle:checked ~ .amenities-toggle-label::before {
	content: "Свернуть";
}
.amenities-toggle-label span {
	display: none;
}
@media (max-width: 1200px) {
	.room-gallery-prev-full, .room-gallery-next-full {
		width: 40px;
		height: 40px;
	}
}
@media (max-width: 992px) {
	.room-detail {
		padding: 60px 0;
	}
	.room-detail-title {
		font-size: 32px;
	}
	.price-value {
		font-size: 26px;
	}
	.room-detail-description-full p {
		font-size: 16px;
	}
	.room-detail-amenities > p strong {
		font-size: 17px;
	}
	.room-detail-amenities li {
		padding: 5px 14px;
		font-size: 12px;
	}
	#amenities-toggle:not(:checked) ~ .room-detail-amenities {
		max-height: 280px;
	}
}
@media (max-width: 768px) {
	.room-detail {
		padding: 50px 0;
	}
	.room-detail-header {
		flex-direction: column;
		align-items: center;
		gap: 5px;
		margin-bottom: 40px;
	}
	.room-detail-title {
		font-size: 28px;
	}
	.room-detail-price {
		width: 100%;
		justify-content: center;
		gap: 15px;
	}
	.price-value {
		font-size: 24px;
	}
	.room-detail-book {
		padding: 10px 28px;
		font-size: 13px;
	}
	.room-detail-gallery-full {
		margin-bottom: 40px;
	}
	.room-gallery-prev-full, .room-gallery-next-full {
		width: 38px;
		height: 38px;
	}
	.room-detail-description-full {
		margin-bottom: 40px;
	}
	.room-detail-description-full p {
		font-size: 15px;
		margin-bottom: 15px;
	}
	.room-detail-amenities {
		margin-top: 15px;
	}
	.room-detail-amenities > p strong {
		font-size: 16px;
	}
	.room-detail-amenities > ul {
		gap: 8px;
		margin-bottom: 20px;
	}
	.room-detail-amenities li {
		padding: 5px 14px;
		font-size: 12px;
	}
	#amenities-toggle:not(:checked) ~ .room-detail-amenities {
		max-height: 250px;
	}
	.amenities-toggle-label {
		font-size: 12px;
	}
}
.nav-link.active::after {
	width: 30%;
}
.nav-link:hover::after {
	width: calc(100% - 34px);
	background: var(--primary-color);
}
.nav-link.active:hover::after {
	width: calc(100% - 34px);
	background: var(--primary-color);
}
.reviews-section {
	padding: 80px 0;
	background: var(--white);
}
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.review-item {
	background: #f8f8f8;
	padding: 25px 25px;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-item:hover {
	transform: translateY(-3px);
}
.review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}
.review-author {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.review-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
}
.review-date {
	font-size: 12px;
	color: var(--text-secondary);
}
.review-source-link {
	font-size: 12px;
	color: var(--accent-color);
	text-decoration: none;
	transition: all 0.2s ease;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	white-space: nowrap;
}
.review-source-link:hover {
	border-bottom-color: var(--accent-color);
}
.review-content {
	flex: 1;
}
.review-content p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-secondary);
	margin: 0;
}
@media (max-width: 1200px) {
	.reviews-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}
}
@media (max-width: 992px) {
	.reviews-section {
		padding: 60px 0;
	}
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.review-item {
		padding: 22px 20px;
	}
	.review-name {
		font-size: 15px;
	}
}
@media (max-width: 768px) {
	.reviews-section {
		padding: 50px 0;
	}
	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.review-item {
		padding: 20px;
	}
	.review-header {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.review-author {
		flex-direction: column;
		gap: 4px;
	}
	.review-name {
		font-size: 16px;
	}
	.review-date {
		font-size: 11px;
	}
	.review-source-link {
		font-size: 11px;
	}
	.review-content p {
		font-size: 14px;
	}
}
.contacts-section {
	padding: 80px 0;
	background: var(--white);
}
.contacts-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 50px;
}
.contacts-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.contacts-row:last-child {
	grid-template-columns: repeat(2, 1fr);
}
.contacts-card {
	background: #f8f8f8;
	padding: 30px;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contacts-card:hover {
	transform: translateY(-3px);
}
.contacts-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--accent-color);
	display: inline-block;
}
.contacts-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.contacts-phone {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.2s ease;
}
.contacts-phone:hover {
	color: var(--accent-color);
}
.contacts-email {
	display: inline-block;
	font-size: 15px;
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.2s ease;
	word-break: break-all;
}
.contacts-email:hover {
	color: var(--accent-color);
}
.contacts-content p {
	font-size: 15px;
	line-height: 1.5;
	color: var(--primary-color);
	margin: 0;
}
.contacts-desc {
	font-size: 12px !important;
	color: var(--text-secondary) !important;
	margin-top: 5px;
	line-height: 1.4;
}
.contacts-social {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
.contacts-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--white);
	border-radius: 8px;
	transition: all 0.2s ease;
}
.contacts-social-link:hover {
	transform: translateY(-2px);
	background: var(--primary-color);
}
.contacts-social-link img {
	width: 22px;
	height: 22px;
	transition: filter 0.2s ease;
}
.contacts-social-link:hover img {
	filter: brightness(0) invert(1);
}
.contacts-emails {
	margin-bottom: 12px;
}
.contacts-emails:last-child {
	margin-bottom: 0;
}
.contacts-email-desc {
	display: block;
	font-size: 12px;
	color: var(--text-secondary);
	margin-top: 4px;
}
.contacts-map {
	margin-top: 20px;
}
.grii_po {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 992px) {
	.contacts-section {
		padding: 60px 0;
	}
	.contacts-row, .contacts-row:last-child {
		grid-template-columns: repeat(2, 1fr);
	}
	.contacts-card {
		padding: 25px;
	}
}
@media (max-width: 768px) {
	.contacts-section {
		padding: 50px 0;
	}
	.contacts-row, .contacts-row:last-child {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.grii_po {
		grid-template-columns: 1fr;
	}
	.contacts-card {
		padding: 20px;
	}
	.contacts-title {
		font-size: 16px;
		margin-bottom: 15px;
	}
	.contacts-phone {
		font-size: 16px;
	}
	.contacts-email {
		font-size: 14px;
	}
	.contacts-content p {
		font-size: 14px;
	}
	.contacts-social-link {
		width: 40px;
		height: 40px;
	}
}
.sc-overlay--visible {
	opacity: 1;
	visibility: visible;
}
.sc-widget {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	max-width: 1100px;
	border-radius: 10px;
	position: fixed;
	z-index: 1000;
	bottom: -300px;
	left: 50%;
	transform: translateX(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	padding: 20px;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	transition: bottom 0.5s ease;
}
.sc-widget--visible {
	bottom: 50px;
}
@media (max-width: 768px) {
	.sc-widget {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		width: 88%;
	}
}
.sc-widget * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.sc-widget__img {
	width: 40px;
}
@media (max-width: 768px) {
	.sc-widget__img {
		margin-bottom: 15px;
	}
}
.sc-widget__text {
	width: calc(100% - 160px);
	padding-right: 15px;
	font-size: 15px;
}
@media (max-width: 768px) {
	.sc-widget__text {
		margin-bottom: 15px;
		text-align: center;
		width: 100%;
	}
}
.sc-widget__text a {
	text-decoration: underline;
	color: var(--text-primary);
}
.sc-widget__button {
	width: 120px;
	height: 40px;
	border: none;
	background: #0f233e;
	color: #fff;
	text-transform: uppercase;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	cursor: pointer;
}
.sc-widget__button:hover {
	background: #f5f7fa;
	color: #0f233e;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
table {
	border-collapse: collapse;
}
th, td {
	border: 1px solid #0f233e;
	padding: 10px 12px;
	text-align: center;
}
@media (max-width: 768px) {
	table {
		display: block;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
	}
	table[style*="width:1000px"] {
		width: 100% !important;
		max-width: 100%;
	}
}
table::-webkit-scrollbar {
	height: 8px;
}
table::-webkit-scrollbar-track {
	background: #ffffff;
	border-radius: 4px;
}
table::-webkit-scrollbar-thumb {
	background: #0f233e;
	border-radius: 4px;
}
table::-webkit-scrollbar-thumb:hover {
	background: #1a3a5e;
}
table {
	scrollbar-width: thin;
	scrollbar-color: #0f233e #ffffff;
}
.room-showcase-title a {
	color: var(--primary-color);
	text-decoration: none;
}
.room-showcase-title a:hover {
	text-decoration: underline;
}
 .d-merop img, .m-merop img {
	 width: 100%;
}
 @media (max-width: 720px) {
	 .d-merop{
		display: none
	}
}
 @media (min-width: 720px) {
	 .m-merop{
		display: none
	}
}
