.fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #1a5f4a 0%, #2d8659 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            z-index: 1002;
        }
        
        .fixed-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 10px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        
        .fixed-logo {
            flex-shrink: 0;
        }
        
        .fixed-logo img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }
        
        .fixed-logo img:hover {
            transform: scale(1.05);
        }
        
        .fixed-booking {
            flex: 1;
            max-width: 1000px;
			position:relative;
        }
        
        .fixed-booking .booking-form {
            /*background: rgba(255, 255, 255, 0.95);*/
            border-radius: 12px;
            padding: 0px;
            display: flex;
            gap: 15px;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
			position: absolute;
			top: 0;
        }
        
        .fixed-booking .form-field {
            flex: 1;
            min-width: 120px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.2s ease;
        }
        
        .fixed-booking .form-field:hover {
            background: rgba(26, 95, 74, 0.05);
        }
        
        .fixed-booking .field-label {
            font-size: 11px;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 4px;
        }
        
        .fixed-booking .field-value {
            font-size: 14px;
            font-weight: 600;
            color: #1a5f4a;
        }
        
        .fixed-booking .icon {
            width: 20px;
            height: 20px;
            fill: #1a5f4a;
            flex-shrink: 0;
        }
        
        .fixed-booking .btn-select {

            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .fixed-booking .btn-select:hover {

            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 134, 89, 0.3);
        }
        
        /* Бургер-меню */
        .burger-menu {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .burger-menu:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .burger-menu span {
            width: 24px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .burger-menu.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger-menu.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
        /* Мобильное меню */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            max-width: 85%;
            height: 100vh;
            background: linear-gradient(180deg, #1a5f4a 0%, #2d8659 100%);
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            padding: 80px 30px 30px;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-menu nav li {
            margin-bottom: 10px;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.3s ease;
        }
        
        .mobile-menu.active nav li {
            opacity: 1;
            transform: translateX(0);
        }
        
        .mobile-menu.active nav li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active nav li:nth-child(2) { transition-delay: 0.15s; }
        .mobile-menu.active nav li:nth-child(3) { transition-delay: 0.2s; }
        .mobile-menu.active nav li:nth-child(4) { transition-delay: 0.25s; }
        .mobile-menu.active nav li:nth-child(5) { transition-delay: 0.3s; }
        .mobile-menu.active nav li:nth-child(6) { transition-delay: 0.35s; }
        .mobile-menu.active nav li:nth-child(7) { transition-delay: 0.4s; }
        
        .mobile-menu nav a {
            display: block;
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            padding: 15px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .mobile-menu nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
		
		/* Подменю в мобильном меню */
        .mobile-menu .has-submenu {
            position: relative;
        }
        
        .mobile-menu .submenu-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }
        
        .mobile-menu .submenu-toggle i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        
        .mobile-menu .has-submenu.submenu-active .submenu-toggle i {
            transform: rotate(180deg);
        }
        
        .mobile-menu .submenu {
            list-style: none;
            padding: 0;
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-menu .has-submenu.submenu-active .submenu {
            max-height: 500px;
        }
        
        .mobile-menu .submenu li {
            margin-bottom: 5px;
            padding-left: 20px;
        }
        
        .mobile-menu .submenu a {
            font-size: 16px;
            padding: 12px 20px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .mobile-menu .submenu a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: white;
        }
        
        /* Оверлей для меню */
        body.menu-open::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Адаптивность */
        @media (max-width: 1024px) {
            .fixed-container {
                padding: 12px 20px;
            }
            
            .fixed-booking {
                max-width: 600px;
            }
            
            .fixed-booking .form-field {
                min-width: 100px;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .fixed-booking .booking-form {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .fixed-booking .form-field {
                flex: 1 1 calc(50% - 10px);
                min-width: 0;
            }
            
            .fixed-booking .btn-select {
                flex: 1 1 100%;
                padding: 10px 20px;
            }
        }
        
        @media (max-width: 640px) {
            body {
                padding-top: 60px;
            }
            
            .fixed-logo img {
                height: 40px;
            }
            
            .fixed-booking {
                display: none;
            }
            
            .fixed-container {
                justify-content: space-between;
            }
        }
		.promo-banner{display:none}
		
		#page{
			position:relative;
			margin: 4.5rem 0 0
		}
		.rest-card-inner {
    display: flex;
    overflow: hidden;
    background: #fafafa;
    border-radius: 10px;
    padding: 0;
    margin: 0 0 1rem;
    border: 1px solid #eee;
    box-shadow: 0 1px 6px #00000000;
	max-height: 300px;
}
.rc-text a
 {
    color: #63917c;
}
.rest-video.video-preview
 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-wrapper .rest-img img
 {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.review-video-box
 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.padding ul
 {
    margin: 0 1rem;
}
.rc-text a:hover{text-decoration:underline}
.rc-text a.btn{color:#fff}
.rc-text a.btn:hover{text-decoration:none}
.rc-left {
    width: 30%;
    height: auto;
}
.rc-left video, .rc-left img {
    width: 100%;
	height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
    filter: grayscale(.5);
    transition: all .3s ease;
}
.rc-left video:hover, .rc-left img:hover{filter: grayscale(0);}
.rc-right
 {
    width: 70%;
}
.rc-text {
    padding: 1rem 2rem;
    color: #5a756a;
    line-height: 1.5;
}
.rc-text h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: .5rem;
}
body .rc-text p {
    color: #5a756a;
    line-height: 1.4;
    font-size: 1rem;
    letter-spacing: normal;
    word-spacing: normal;
    padding: 0 0 5px;
}
body .rc-text ul{
	margin: 0 1rem;
}
body .rc-text ul li {
    font-size: .9rem;
    font-weight: 500;
    color: #999;
}
.bath-box
 {
    display: flex;
    margin: 3rem 0 1rem;
    background: #f9f9f9;
    border-radius: 10px;
}
.bath-coll {
    width: 50%;
}
.bath-coll video {
    border-radius: 10px;
    width: 100%;
}

.offers-page .news-title{display:none;}
.offers-page .title-pad h2{
	padding:1rem 0
}
.wrap
 {
    position: relative;
    margin: 0;
    background: url(img/u1517289984.webp) no-repeat center;
	background-size:cover;
}
.wrap::before{
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	background: #ffffff85;
}
.wrap .video-carousel-wrapper {position:relative}
/* Базовые стили карусели */
.splide__pagination
 {
    bottom: 0.2em;
 }
.video-carousel-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.video-splide {
    padding: 40px 0;
}

/* Стили слайда */
.video-slide-container {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-slide-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Видео обертка (сохраняет пропорции 16:9) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Информация о видео */
.video-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #2c3e50;
    line-height: 1.4;
}

.video-info p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Стрелки навигации */
.video-splide .splide__arrow {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 3em;
    height: 3em;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-splide .splide__arrow:hover {
    opacity: 1;
    background: #ffffff;
}

.video-splide .splide__arrow svg {
    fill: #3498db;
}

/* Точки пагинации */
.video-splide .splide__pagination__page {
    background: #bdc3c7;
    width: 10px;
    height: 10px;
}

.video-splide .splide__pagination__page.is-active {
    background: #3498db;
}

/* Адаптивность */

/* Планшеты (от 768px) - 2 видео */
@media (min-width: 768px) {
    .video-slide-container {
        margin: 0 10px;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
}

/* Десктоп (от 1024px) - 3 видео */
@media (min-width: 1024px) {
    .video-slide-container {
        margin: 0 15px;
    }
    
    .video-info h3 {
        font-size: 1.3rem;
    }
}

/* Мобильные (до 767px) - 1 видео */
@media (max-width: 767px) {
    .video-carousel-wrapper {
        margin: 20px auto;
        padding: 0 10px;
    }
    
    .video-slide-container {
        margin: 0 5px;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.85rem;
    }
}
.contact-map iframe {
    width: 100%;
}
.contact-dark
 {
    background: linear-gradient(63deg, #222, #505050);
    color: #999;
}
.contact-flex {
    max-width: 1200px;
    margin: auto;
    display: flex;
    padding: 2rem 0;
    justify-content: center;
    align-items: flex-start;
	gap: 5px;
}
.contact-box
 {
    width: 33.333333%;
    padding: 1rem;
    text-align: center;
	transition:all .5s ease;
	border: 5px solid transparent;
	box-sizing: border-box;
}
.contact-box:hover{
	background: #222;
    border: 5px solid #3d3d3d;
    box-shadow: 0 3px 15px #00000057;
}
.contact-box i
 {
    font-size: 30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #999;
    color: #333;
    border-radius: 50%;
}
.contact-box h3
 {
    color: #efefef;
    padding: 1rem 0;
    text-transform: uppercase;
    letter-spacing: .05rem;
}
.contact-box p {
    line-height: 1.6;
    font-size: .95rem;
    padding: 0 1rem;
}
.contact-bottom
 {
    display: flex;
    max-width: 1200px;
    margin: auto;
}
.contact-width
 {
    width: 50%;
    position: relative;
	padding-top: 2rem;
}
.construct
 {
    position: relative;
    padding: 10px;
    margin-bottom: 100px;
}
.con-img {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}
.construct img {
    width: 100%;
    object-fit: cover;
    height: auto;
}
img.con1
 {
    width: 80%;
    border-radius: 50px;
}
.con-rev
 {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #287b55;
    width: 180px;
    height: 130px;
    border: 10px solid #fff;
    border-radius: 50px 50px 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-direction: column;
}
.con-rev span
 {
    display: block;
    font-size: 3rem;
    font-weight: 500;
}
.con-img2 {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 250px;
    height: 250px;
    border-radius: 50px;
    border: 10px solid #fff;
    overflow: hidden;
}
.con-widget {
    position: absolute;
    top: 50px;
    right: 80px;
    border-radius: 20px;
    overflow: hidden;
    width: 80px;
    height: 85px;
}
.contact-text
 {
    text-align: center;
}
.contact-text h2 {
    font-weight: 400;
    font-size: 2.6rem;
}
body p.onb
 {
    background: #393939;
    color: #d7d7d7;
    width: 70%;
    font-size: 1rem;
    margin: 10px auto;
    border-radius: 25px;
}
body p.onb a{color:#d7d7d7}
body p.onb a:hover{color:#fff}
.article-content {
    max-width: 1200px;
    margin: auto;
    width: 100%;
}
article.article
 {
    width: 100%;
    padding: 0 2rem;
}
.article-imgs
 {
    max-width: 1000px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
}
.article-imgs img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(0.5);
}
article.article p{
	line-height: 1.5;
    font-weight: 300;
    font-size: 1.2rem;
    padding: 1rem;
}
article.article ul {
    margin: 0 2rem;
}
article.article li {
    color: #bfbfbf;
}
article.article li p {
    padding: .5rem;
    font-size: 1.1rem;
	color:#777;
}
article.article a{
	color:#333;
	text-decoration:underline;
	font-weight:400;
}
article.article a:hover{
	color:#000;
}
.gallery-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    padding: 15px 15px 65px;
    box-shadow: 0 1px 3px #00000029;
    border-radius: 5px;
    background: linear-gradient(316deg, #1b3f30, #257653);
	position:relative;
}
.gallery-light{
	background:white;
	padding:15px;
}
.gallery-section a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-section img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.gallery-section a:hover img {
    transform: scale(1.05);
}
#gallery-container button
 {
    position: absolute;
    bottom: 15px;
    height: 40px;
    width: 200px;
    display: block;
    left: calc(50% - 100px);
}
ul.listing
 {
    margin: 2rem 0 1rem;
    padding: 1rem 2rem;
    background: #f7f7f7;
    border-radius: 10px;
}
ul.listing li
 {
    list-style: circle;
    color: #6e6e6e;
    font-size: 1.1rem;
    letter-spacing: .01rem;
    line-height: 1.7;
    padding: 5px;
}

.padding
 {
    padding: 1rem;
}
.title-pad
 {
    text-align: center;
    padding: 1rem 0;
    text-transform: uppercase;
}
.crumps {
    background: #fbf9f4;
    padding: 1rem;
	box-shadow: 0 0 5px #00000036 inset;
}
ul#breadcrumb li
 {
    list-style: none;
    display: inline-block;
    padding: 0 .5rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 500;
    color: #a59d89;
	position: relative;
}
ul#breadcrumb li::before {
    content: "»";
    position: absolute;
    right: -5px;
    top: -2px;
	font-size: .8rem;
}
ul#breadcrumb li:last-child::before{display:none}
ul#breadcrumb a
 {
    color: #4d9372;
    text-decoration: underline;
}
ul#breadcrumb a:hover{color:#000;}
.tline-preview
 {
    border: 1px solid #ededed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 20rem;
    font-size: 2rem;
    color: #d9d2d2;
    box-shadow: 0 1px 8px #0000000d;
}
.title-pad h2 {
    color: #c1b79d;
    letter-spacing: .03rem;
}
.padding p {
    padding: 1rem;
    font-size: 1.1rem;
    letter-spacing: .03rem;
    word-spacing: .1rem;
    color: #333;
}
p.pricing {
    color: #1f6a4e;
    font-weight: 500;
}
p.pricing b
 {
    color: #ff4543;
	font-weight: 500;
}
.services-container {
            margin: 3rem auto;
            background: #fff;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .services-title {
            text-align: center;
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 50px;
            font-weight: 600;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: #63b78f;
            background: #fff;
        }

        .service-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #7abf9c 0%, #297e56 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            transition: all 0.3s ease;
        }

        .service-item:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-content {
            flex: 1;
        }


p.service-text {
    padding: 0;
    line-height: 1.5;
    color: #6d917d;
    font-size: 15px;
}
.mw{
	    background: url(img/mw2.png) no-repeat center;
    background-size: contain;
    display: block;
    width: 22px;
    height: 100%;
}

@media (max-width: 1600px) {
	.gallery-section {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
}
@media (max-width: 1200px) {
	.gallery-section {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}


        @media (max-width: 768px) {
			.bath-box{display:block;
			}
			.bath-coll
 {
    width: 100%;
}
            .services-container {
                padding: 30px 20px;
            }

            .services-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-item {
                padding: 20px;
            }
#page {
    position: relative;
    margin: 0;
}

        }
@media (max-width: 600px) {	
.rest-card-inner {
    display: block;
	max-height:100%;
}
.rc-left {
    width: 100%;
    height: auto;
}
.rc-right {
    width: 100%;
}
.rc-text a.btn {
    width: 100%;
    text-align: center;
}
.title-pad h2{display:none}
.contact-flex {
    max-width: 100%;
    flex-direction: column;
}
.contact-box {
    width: 100%;
}
.contact-bottom {
    flex-direction: column;
}
.contact-width {
    width: 100%;
}
.title-pad {
    text-transform: none;
}
.title-pad h1
 {
    font-size: 1.6rem;
}
}	