/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
}

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

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 179, 134, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 179, 134, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(30, 58, 138, 0.2));
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon {
    filter: drop-shadow(0 4px 12px rgba(30, 58, 138, 0.3));
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a, #ffb386);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-logo:hover .logo-text {
    background: linear-gradient(135deg, #ffb386, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 6px 12px;
    background: rgba(255, 179, 134, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 179, 134, 0.2);
    transition: all 0.3s ease;
    height: 36px;
}

.nav-menu-toggle:hover {
    background: rgba(255, 179, 134, 0.15);
    border-color: rgba(255, 179, 134, 0.3);
    transform: translateY(-1px);
}

.menu-icon {
    width: 20px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 1.5px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-menu-toggle.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-menu-toggle.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.nav-menu-toggle.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    z-index: 1000;
    border: 1px solid rgba(255, 179, 134, 0.1);
    border-top: none;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .nav-menu.active {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 1;
    transform: translateY(0);
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.9rem;
    padding: 12px 16px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: block;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffb386, #ffa366);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-link:hover {
    color: #ffb386;
    background: rgba(255, 179, 134, 0.1);
}

.nav-link.active {
    color: #ffb386;
}

.nav-link.active::before {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: auto;
}

.phone {
    font-size: 0.85rem;
    color: #666;
    font-weight: 700;
    position: relative;
    padding: 6px 12px;
    background: rgba(255, 179, 134, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 179, 134, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone:hover {
    background: rgba(255, 179, 134, 0.15);
    border-color: rgba(255, 179, 134, 0.3);
    transform: translateY(-1px);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb386, #ffa366);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 179, 134, 0.3);
    border: 1px solid rgba(255, 179, 134, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffa366, #ff8c42);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 179, 134, 0.4);
}



/* Главная секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 2rem;
    margin-left: 0;
    margin-top: 10%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.8);
    line-height: 1.1;
}

.hero-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ffb386;
    margin-top: 1rem;
}

/* Слайдер */
.hero-slider {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.slider-container * {
    pointer-events: none;
}

.slider-container img {
    pointer-events: auto;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.slide.active img,
.slide.active video {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.3), rgba(255, 179, 134, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

.slide-content {
    color: white;
    text-align: left;
}

.slide-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}



/* Навигация слайдера */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {
    background: rgba(255, 179, 134, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 179, 134, 0.3);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Индикаторы */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: #ffb386;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 179, 134, 0.8);
    transform: scale(1.2);
}

.indicator.active::before {
    width: 6px;
    height: 6px;
}

.indicator:hover {
    background: rgba(255, 179, 134, 0.6);
    transform: scale(1.1);
}

/* Анимации для слайдов */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(1.1) translateX(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    to {
        opacity: 0;
        transform: scale(1.1) translateX(-30px);
    }
}

.slide.slide-in {
    animation: slideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.slide-out {
    animation: slideOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Адаптивность для слайдера */
@media (max-width: 768px) {
    .hero-slider {
        width: 100%;
        position: relative;
        height: 300px;
        margin-top: 2rem;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
    }
}

/* Наши избранные коттеджи */
.picks {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ffb386;
    margin: 1rem auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pick-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 179, 134, 0.1);
}

.pick-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 179, 134, 0.15);
}

.pick-image {
    position: relative;
    height: 320px;
}

.pick-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pick-card:hover .pick-image img {
    transform: scale(1.05);
}

.rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #ffb386;
}

.rating i {
    color: #ffb386;
}

.pick-info {
    padding: 2rem;
}

.pick-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #1e3a8a;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffb386;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    font-size: 0.9rem;
}

.pick-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 1rem 0;
}

/* Больше чем просто комната */
.experience {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #ffb386 100%);
    color: white;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.experience-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.experience-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.2;
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.exp-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.exp-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.exp-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffb386;
    margin-bottom: 1rem;
}

.exp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.exp-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.exp-card i {
    font-size: 2rem;
    color: #ffb386;
}

/* Выбирайте с уверенностью */
.confidence {
    padding: 100px 0;
    background: white;
}

.confidence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.confidence-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.confidence-image .video-preview {
    width: 90%;
    height: 700px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.confidence-image .video-preview:hover {
    transform: scale(1.02);
}

.confidence-image .video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.confidence-image:hover img {
    transform: scale(1.02);
}

.confidence-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e3a8a;
}

.confidence-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ffb386;
    margin-top: 1rem;
}

.confidence-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-list {
    margin-top: 3rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 179, 134, 0.2);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-item:last-child {
    border-bottom: none;
}

.service-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffb386;
    min-width: 40px;
}

.service-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.service-item i {
    color: #ffb386;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Удобства */
.facilities {
    padding: 100px 0;
    background: #f8fafc;
}

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

.facility-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 179, 134, 0.1);
}

.facility-card:hover {
    transform: translateY(-5px);
    border-color: #ffb386;
}

.facility-card i {
    font-size: 2.5rem;
    color: #ffb386;
    margin-bottom: 1.5rem;
}

.facility-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.facility-card p {
    color: #666;
    line-height: 1.6;
}

/* О нас */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e3a8a;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ffb386;
    margin-top: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid rgba(255, 179, 134, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffb386;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 179, 134, 0.1), rgba(255, 140, 66, 0.1));
    z-index: 1;
    pointer-events: none;
}

.about-image iframe {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.about-image > div {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    border: none !important;
    outline: none !important;
}



/* Контакты */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 179, 134, 0.1);
}

.contact-item i {
    color: #ffb386;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 179, 134, 0.1);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e3a8a;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffb386;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-map {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 179, 134, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-map h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e3a8a;
    text-align: center;
    padding: 2.5rem 2.5rem 0 2.5rem;
}

.contact-map > div {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

/* Футер */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #ffb386 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffb386;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-right: 0.5rem;
    color: #ffb386;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 179, 134, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-contact {
        gap: 1rem;
    }
    
    .phone {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        width: 100%;
        text-align: center;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        opacity: 1;
        transform: translateY(0);
        padding: 1rem 0;
        right: 0;
        left: auto;
        width: 250px;
        border-radius: 12px 0 12px 12px;
    }

    .nav-contact {
        display: flex;
        gap: 0.5rem;
    }
    
    .phone {
        display: none;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .nav-logo {
        gap: 8px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        top: 65px;
        padding: 1.5rem 0;
    }
} 

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
}

.button-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}



 

/* Модальное окно для видео */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-modal video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95%;
        max-height: 80%;
    }
    
    .video-close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
} 

.facilities-slider {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
}

.facilities-container {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.facility-card {
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 179, 134, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb386, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.facility-card:hover::before {
    transform: scaleX(1);
}

.facility-card i {
    font-size: 2.5rem;
    color: #ffb386;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.facility-card:hover i {
    transform: scale(1.1);
    color: #ff8c42;
}

.facility-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.facility-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.facilities-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.facilities-prev,
.facilities-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    pointer-events: all;
}

.facilities-prev:hover,
.facilities-next:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.facilities-prev i,
.facilities-next i {
    color: #ffb386;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.facilities-prev:hover i,
.facilities-next:hover i {
    color: #ff8c42;
}

.facilities-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.facility-indicator {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 179, 134, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.facility-indicator.active {
    background: #ffb386;
    transform: scale(1.2);
}

.facility-indicator:hover {
    background: #ffb386;
    transform: scale(1.1);
} 

@media (max-width: 768px) {
    .facilities-slider {
        padding: 0 20px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .facilities-container {
        padding: 15px 0;
        max-width: 100%;
    }
    
    .facility-card {
        min-width: 250px;
        width: 250px;
        max-width: 250px;
        padding: 1.5rem;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .facilities-prev,
    .facilities-next {
        width: 40px;
        height: 40px;
    }
    
    .facilities-prev i,
    .facilities-next i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .facilities-slider {
        padding: 0 15px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .facility-card {
        min-width: 220px;
        width: 220px;
        max-width: 220px;
        padding: 1.2rem;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .facility-card i {
        font-size: 2rem;
    }
    
    .facility-card h3 {
        font-size: 1.1rem;
    }
    
    .facility-card p {
        font-size: 0.9rem;
    }
} 

/* Модальные окна для коттеджей */
.cottage-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.cottage-modal.active {
    display: flex;
}

.cottage-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cottage-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cottage-close:hover {
    color: #ffb386;
    transform: scale(1.1);
}

.cottage-header {
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.cottage-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.cottage-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

.cottage-info {
    padding: 1.5rem 2.5rem;
}

.cottage-section {
    margin-bottom: 2rem;
}

.cottage-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cottage-section h3 i {
    color: #ffb386;
    font-size: 1.1rem;
}

.room-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.room-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #ffb386;
}

.room-item i {
    color: #ffb386;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.room-item span {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
}

.capacity-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.capacity-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ffb386, #ff8c42);
    border-radius: 10px;
    color: white;
}

.capacity-item i {
    font-size: 1.2rem;
}

.capacity-item span {
    font-weight: 600;
    font-size: 1rem;
}

.cottage-footer {
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cottage-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.price-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 134, 0.3), transparent);
    margin: 1rem 0;
}

.price-label {
    color: #64748b;
    font-size: 0.9rem;
}

.price-value {
    color: #1e3a8a;
    font-size: 1.5rem;
    font-weight: 700;
}

.book-now {
    padding: 12px 24px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .cottage-modal-content {
        width: 95%;
        max-height: 95%;
    }
    
    .cottage-header {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }
    
    .cottage-header h2 {
        font-size: 1.6rem;
    }
    
    .cottage-info {
        padding: 1rem 1.5rem;
    }
    
    .cottage-footer {
        padding: 1rem 1.5rem 2rem 1.5rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .book-now {
        width: 100%;
    }
    
    /* Мобильные стили для контактов */
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .contact-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        font-size: 1rem;
    }
} 

@media (max-width: 768px) {
    .hero-content {
        margin-left: 0;
        margin-top: 15%;
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-left: 0;
        margin-top: 20%;
        padding: 1rem;
        max-width: 95%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
} 

/* Видео галерея */
.video-gallery {
    padding: 100px 0;
}

.video-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
}

.video-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
    pointer-events: none;
}

.video-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: auto;
    z-index: 101;
    position: relative;
}

.video-nav-btn:hover {
    background: rgba(255, 179, 134, 0.3);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 179, 134, 0.3);
}

.video-nav-btn:active {
    transform: scale(0.95);
}

.video-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.video-container {
    display: flex;
    gap: 2rem;
    height: 100%;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
}

.video-slide {
    min-width: 350px;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
}

.video-preview {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-slide:hover .video-preview video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-slide:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-overlay .play-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 179, 134, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-overlay .play-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 179, 134, 0.5);
    border-radius: 50%;
    animation: videoPulse 2s infinite;
}

.video-overlay .play-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255, 179, 134, 0.3);
    border-radius: 50%;
    animation: videoPulse 2s infinite 0.5s;
}

.video-overlay .play-icon i {
    color: #ffb386;
    font-size: 1.6rem;
    margin-left: 3px;
    z-index: 1;
    position: relative;
}

.video-slide:hover .video-overlay .play-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

@keyframes videoPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}



.video-nav-btn:active {
    transform: scale(0.95);
}

.video-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}



/* Модальное окно для видео */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-modal video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    max-height: 80vh;
    object-fit: contain;
}

/* Адаптивность для видео слайдера */
@media (max-width: 1024px) {
    .video-slider {
        max-width: 900px;
    }
    
    .video-slide {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .video-slider {
        max-width: 600px;
        height: 450px;
    }
    
    .video-slide {
        min-width: 250px;
        width: 250px;
        max-width: 250px;
        flex-shrink: 0;
        margin-right: 10px;
    }
    
    .video-container {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .video-overlay .play-icon {
        width: 60px;
        height: 60px;
    }
    
    .video-overlay .play-icon i {
        font-size: 1.2rem;
    }
    
    .video-nav {
        padding: 0 15px;
        z-index: 100;
    }
    
    .video-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        z-index: 101;
        position: relative;
        touch-action: manipulation;
    }
    

}

@media (max-width: 480px) {
    .video-slider {
        max-width: 400px;
        height: 400px;
    }
    
    .video-slide {
        min-width: 200px;
        width: 200px;
        max-width: 200px;
        flex-shrink: 0;
    }
    
    .video-overlay .play-icon {
        width: 50px;
        height: 50px;
    }
    
    .video-overlay .play-icon i {
        font-size: 1rem;
    }
    
    .video-nav {
        padding: 0 10px;
        z-index: 100;
    }
    
    .video-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        z-index: 101;
        position: relative;
        touch-action: manipulation;
    }
    

} 

/* Мобильная адаптация */
@media (max-width: 480px) {
    /* Общие ограничения ширины */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
        overflow: hidden;
    }
    
    /* Навигация */
    .navbar {
        padding: 0.3rem 0;
        min-height: 60px;
    }
    
    .nav-container {
        padding: 0 10px;
        max-width: 100%;
        align-items: center;
        min-height: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        opacity: 1;
        transform: translateY(0);
        padding: 1rem 0;
        right: 0;
        left: auto;
        width: 250px;
        border-radius: 12px 0 12px 12px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 20px;
        margin: 0;
        border-radius: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 179, 134, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background: rgba(255, 179, 134, 0.1);
        color: #ff6b35;
    }
    
    .mobile-phone-item {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 2px solid rgba(255, 179, 134, 0.2);
    }
    
    .mobile-phone-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 1rem;
        padding: 15px 20px;
        color: #ff6b35;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .mobile-phone-link:hover {
        background: rgba(255, 107, 53, 0.1);
        color: #ff6b35;
    }
    
    .mobile-phone-link i {
        font-size: 1.1rem;
    }
    
    /* Добавляем номер телефона в мобильное меню */
    .nav-menu::after {
        content: '';
        display: block;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 2px solid rgba(255, 179, 134, 0.2);
    }
    
    .nav-menu::before {
        content: '📞 +7 (963) 400-07-92';
        display: block;
        text-align: center;
        padding: 15px 20px;
        color: #ff6b35;
        font-weight: 600;
        font-size: 1rem;
        background: rgba(255, 107, 53, 0.1);
        margin: 10px 0;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu::before:hover {
        background: rgba(255, 107, 53, 0.2);
    }
    
    .nav-logo {
        gap: 10px;
        flex-shrink: 0;
        align-items: center;
    }
    
    .logo-icon {
        width: 42px;
        height: 42px;
    }
    
    .logo-text {
        font-size: 1.3rem;
        white-space: nowrap;
    }
    
    .nav-contact {
        gap: 0.5rem;
        flex-shrink: 0;
        align-items: center;
    }
    
    .nav-menu-toggle {
        padding: 6px 10px;
        height: 36px;
        min-width: 36px;
    }
    
    .menu-icon {
        width: 18px;
        height: 14px;
    }
    
    .menu-icon span {
        height: 1.5px;
        background: #ff6b35;
    }
    
    .phone {
        font-size: 0.7rem;
        padding: 3px 6px;
        height: 28px;
        display: none;
    }
    
    .btn {
        display: none;
    }
    
    /* Главная секция */
    .hero {
        min-height: 74vh;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
    }
    
    .hero-content {
        padding: 0 20px 0;
        text-align: center;
        order: 1;
        flex-shrink: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .button-row {
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        height: 48px;
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Слайдер */
    .hero-slider {
        height: 50vh;
        margin-top: 0;
        order: 2;
        width: 100%;
        max-width: 100%;
    }
    
    .slider-nav {
        display: flex;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        justify-content: space-between;
        padding: 0 15px;
        z-index: 10;
    }
    
    .nav-btn {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: #333;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-btn:hover {
        background: rgba(255, 179, 134, 0.3);
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(255, 179, 134, 0.3);
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    

    
    /* Секции */
    .picks, .experience, .confidence, .facilities, .about, .contact {
        padding: 60px 0 100px 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Карточки коттеджей */
    .picks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px 35px 20px;
    }
    
    .pick-card {
        max-width: 100%;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        margin-bottom: 35px;
    }
    
    .pick-image {
        height: 200px;
    }
    
    .pick-info {
        padding: 1.5rem;
    }
    
    .pick-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .price {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    /* Опыт */
    .experience-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .exp-card {
        padding: 1.5rem;
        border-radius: 16px;
        text-align: center;
    }
    
    .exp-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .exp-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    /* Удобства */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .facility-card {
        padding: 1.5rem;
        border-radius: 16px;
        text-align: center;
    }
    
    .facility-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .facility-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    /* Выбирайте с уверенностью */
    .confidence {
        padding: 60px 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .confidence-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .confidence-image {
        order: 2;
        margin-top: 2rem;
    }
    
    .confidence-image img {
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }
    
    .confidence-image .video-preview {
        width: 100%;
        height: 400px;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }
    
    .confidence-text {
        order: 1;
        text-align: center;
    }
    
    .confidence-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .confidence-text h2::after {
        margin: 1rem auto 0;
    }
    
    .confidence-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .services-list {
        margin-top: 1.5rem;
    }
    
    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
        padding: 1.2rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 179, 134, 0.2);
        margin-bottom: 0.8rem;
        border-bottom: none;
    }
    
    .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(255, 179, 134, 0.2);
    }
    
    .service-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .service-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .service-content p {
        font-size: 0.85rem;
    }
    
    .service-item i {
        font-size: 1.3rem;
        margin-top: 0.3rem;
    }
    
    /* О нас */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .about-stats {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .stat {
        width: 100%;
        padding: 1.5rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ff6b35;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
        color: #333;
        font-weight: 500;
    }
    
    .about-image {
        height: 250px;
        order: 2;
        margin-top: 2rem;
    }
    
    .about-text {
        order: 1;
    }
    
    /* Контакты */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-map {
        order: 3;
        margin-top: 2rem;
    }
    
    .contact-map h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-map > div {
        height: 300px;
    }
    
    /* Форма */
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    /* Футер */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-bottom {
        padding: 20px;
        text-align: center;
    }
    
    /* Видео галерея */
    .video-gallery {
        padding: 60px 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .video-slider {
        height: 300px;
        max-width: 100%;
        margin: 0;
        overflow: hidden;
    }
    
    .video-container {
        padding: 0 20px;
        gap: 1rem;
    }
    
    .video-slide {
        min-width: 280px;
        width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        margin-right: 15px;
    }
    
    .video-overlay .play-icon {
        width: 50px;
        height: 50px;
    }
    
    .video-overlay .play-icon i {
        font-size: 1.2rem;
    }
    
    /* Модальные окна */
    .video-modal-content {
        width: 95%;
        height: 60vh;
        margin: 20px;
    }
    
    .cottage-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 20px;
        overflow-y: auto;
    }
    
    .cottage-header h2 {
        font-size: 1.5rem;
    }
    
    .cottage-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cottage-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .book-now {
        width: 100%;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        max-width: 100%;
        padding: 0 10px;
        overflow: hidden;
    }
    
    .nav-container {
        padding: 0 8px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-menu-toggle {
        padding: 5px 9px;
        height: 34px;
        min-width: 34px;
    }
    
    .menu-icon {
        width: 17px;
        height: 13px;
    }
    
    .btn {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-slider {
        height: 45vh;
    }
    
    .nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .picks-grid,
    .experience-cards,
    .facilities-grid,
    .about-content,
    .contact-content {
        padding: 0 15px;
    }
    
    .video-slide {
        min-width: 250px;
    }
    
    .video-overlay .play-icon {
        width: 40px;
        height: 40px;
    }
    
    .video-overlay .play-icon i {
        font-size: 1rem;
    }
    
    /* Выбирайте с уверенностью для очень маленьких экранов */
    .confidence-text h2 {
        font-size: 1.8rem;
    }
    
    .service-item {
        padding: 1rem;
        gap: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .service-number {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }
    
    .service-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    
    .service-content p {
        font-size: 0.8rem;
    }
    
    .service-item i {
        font-size: 1.2rem;
        margin-top: 0.2rem;
    }
    
    .confidence-image .video-preview {
        width: 100%;
        height: 250px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
}

/* Плавающая кнопка бронирования */
.floating-booking {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none; /* По умолчанию скрыта, показывается только на мобильных */
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: floatingPulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 140px;
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.floating-menu-item:hover {
    background: #f8f9fa;
    color: #ff6b35;
}

.floating-menu-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Анимация пульсации для плавающей кнопки */
@keyframes floatingPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }
}

/* Показываем плавающую кнопку только на мобильных */
@media (max-width: 768px) {
    .floating-booking {
        display: block;
    }
} 