/* Базовые переменные - утонченная светлая тема */
:root {
    /* Основные цвета - светлая палитра */
    --primary-50: #f8f9f7;
    --primary-100: #f0f2ee;
    --primary-200: #e1e5dd;
    --primary-300: #c8cfc0;
    --primary-400: #a8b49a;
    --primary-500: #8b997a; /* Основной брендовый цвет */
    --primary-600: #6f7d5f;
    --primary-700: #58644a;
    --primary-800: #48513c;
    --primary-900: #3d4433;
    
    /* Акцентные цвета */
    --accent-50: #fdf8f5;
    --accent-100: #f9ece4;
    --accent-200: #f3d9c9;
    --accent-300: #e9bea3;
    --accent-400: #dc9e7a;
    --accent-500: #d18a5c; /* Основной акцент */
    --accent-600: #c2744a;
    --accent-700: #a15d3d;
    --accent-800: #834c35;
    --accent-900: #6b402e;
    
    /* Нейтральные цвета - светлые */
    --neutral-50: #ffffff;
    --neutral-100: #fafafa;
    --neutral-200: #f5f5f5;
    --neutral-300: #e8e8e8;
    --neutral-400: #d4d4d4;
    --neutral-500: #a3a3a3;
    --neutral-600: #737373;
    --neutral-700: #525252;
    --neutral-800: #404040;
    --neutral-900: #262626;
    
    /* Семантические цвета для светлой темы */
    --text-primary: var(--neutral-900);
    --text-secondary: var(--neutral-700);
    --text-muted: var(--neutral-600);
    --bg-primary: var(--neutral-50);
    --bg-secondary: var(--neutral-100);
    --bg-card: var(--neutral-50);
    --border-light: var(--neutral-200);
    --border-medium: var(--neutral-300);
    
    /* Glassmorphism эффекты */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glass-blur: blur(20px);
    
    /* Тени - утонченные */
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.03);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.04), 0 2px 4px -2px rgb(0 0 0 / 0.04);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.06), 0 8px 10px -6px rgb(0 0 0 / 0.06);
    
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
}

/* Элегантный анимированный градиентный фон */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.4;
    background: 
        radial-gradient(circle at 15% 50%, rgba(139, 153, 122, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(209, 138, 92, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(139, 153, 122, 0.06) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Тонкие плавающие линии */
.floating-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    overflow: hidden;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-400), transparent);
    animation: floatLine 15s infinite linear;
}

@keyframes floatLine {
    0% { transform: translateX(-100%) translateY(0) rotate(0deg); }
    100% { transform: translateX(100vw) translateY(-100px) rotate(360deg); }
}

/* Хедер - утонченный стеклянный эффект */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
}

.logo {
    font-family: 'Cormorant Infant', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-700);
    text-decoration: none;
    letter-spacing: 0.5px;
    z-index: 1002;
    position: relative;
    padding: 0.5rem 0;
}

.logo::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    transition: width 0.6s ease;
}

.logo:hover::before {
    width: 100%;
}

/* Правая часть хедера */
.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-phone {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Cormorant Infant', serif;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
}

.header-phone::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-500);
    transition: width 0.4s ease;
}

.header-phone:hover::before {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

/* Кнопки - элегантный дизайн */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    white-space: nowrap;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(209, 138, 92, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-600), var(--accent-700));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 138, 92, 0.35);
}

/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--primary-700);
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    padding: 6rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu .header-phone {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mobile-menu a:not(.header-phone) {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mobile-menu a:not(.header-phone):hover {
    color: var(--accent-500);
    padding-left: 10px;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Кнопка закрытия мобильного меню */
.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Социальные сети - обновленные стили */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border-medium);
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.5);
}

/* Цвета для соцсетей при наведении */
.social-links a.vk:hover {
    border-color: #4C75A3;
    background: #4C75A3;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(76, 117, 163, 0.25);
}

.social-links a.instagram:hover {
    border-color: #E4405F;
    background: #E4405F;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.25);
}

.social-links a.telegram:hover {
    border-color: #0088cc;
    background: #0088cc;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.25);
}

.social-links a.whatsapp:hover {
    border-color: #25D366;
    background: #25D366;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* Герой секция - утонченный дизайн */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--neutral-50) 50%, var(--accent-50) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 153, 122, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(209, 138, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 153, 122, 0.05) 0%, transparent 50%);
    animation: pulse 12s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-primary);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
    color: var(--primary-800);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.75rem;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    color: white;
    text-decoration: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(209, 138, 92, 0.25);
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.7s forwards;
}

.btn-hero::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.7s;
}

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

.btn-hero:hover {
    background: linear-gradient(135deg, var(--accent-600), var(--accent-700));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(209, 138, 92, 0.35);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1.5px solid var(--primary-500);
    color: var(--primary-600);
    box-shadow: 0 4px 15px rgba(139, 153, 122, 0.15);
}

.btn-hero-outline:hover {
    background: var(--primary-500);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 153, 122, 0.25);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Декоративные элементы в герое */
.hero-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 153, 122, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    animation: float 20s infinite linear;
    z-index: 1;
}

.decoration-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-2 {
    bottom: 10%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Секции */
.section {
    padding: 6rem 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.0rem, 4vw, 3.0rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 2rem auto 0;
    line-height: 1.6;
}

/* Секция отеля */
.about {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

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

.about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    order: 2;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
}

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

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

.about-image:hover {
    transform: translateY(-10px) rotate(0.5deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 15px 25px rgba(0, 0, 0, 0.06);
}

/* Секция номеров - улучшенный дизайн */
.rooms {
    background: rgba(248, 249, 247, 0.7);
    backdrop-filter: blur(10px);
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.room-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.06),
        0 5px 15px rgba(0, 0, 0, 0.03);
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s;
}

.room-card:hover::before {
    left: 100%;
}

.room-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.room-card:hover {
    transform: translateY(-8px);
    border-color: rgba(209, 138, 92, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 15px 30px rgba(0, 0, 0, 0.05);
}

.room-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.room-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-500);
    border-radius: 2px;
}

.room-card p {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.room-features {
    list-style: none;
    margin: 2.25rem 0;
}

.room-features li {
    margin-bottom: 0.85rem;
    padding-left: 1.75rem;
    position: relative;
    font-weight: 400;
    color: var(--text-secondary);
}

.room-features li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-500);
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.room-features li:hover::before {
    transform: translateX(3px);
}

/* Галерея */
.gallery {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    height: 300px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 153, 122, 0.1), rgba(209, 138, 92, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Бронирование */
.booking {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><polygon points="50,0 100,50 50,100 0,50" fill="%238b997a" opacity="0.02"/></svg>');
    background-size: 100px 100px;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    position: relative;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Контейнер для модуля бронирования */
.booking-widget {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Счетчики */
.stats {
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--bg-secondary) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--accent-600);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.stat-item p {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Расположение */
.location {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

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

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 1.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.location-features {
    list-style: none;
    margin: 2.5rem 0;
}

.location-features li {
    margin-bottom: 0.85rem;
    padding-left: 1.75rem;
    position: relative;
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.location-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-500);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.location-features li:hover::before {
    transform: translateX(3px);
}

.map-container {
    height: 350px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.map-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Стили для карты */
.map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-secondary);
    font-family: 'Cormorant Infant', serif;
    font-size: 1.1rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Параллакс секция */
.parallax {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
               url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%238b997a" opacity="0.05"/></svg>') fixed center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    padding: 4rem 0;
}

.parallax h2 {
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 1.75rem;
    position: relative;
}

/* Футер */
.footer {
    background: rgba(248, 249, 247, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    border-radius: 2px;
}

.footer-section p, .footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    line-height: 1.7;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-600);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-muted);
    font-weight: 400;
}

/* Анимации */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== СТИЛИ ДЛЯ МОДАЛЬНЫХ ОКОН ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.callback-modal,
.offer-modal,
.privacy-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.callback-modal {
    max-width: 500px;
}

.modal-overlay.active .callback-modal,
.modal-overlay.active .offer-modal,
.modal-overlay.active .privacy-modal {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-family: 'Cormorant Infant', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-700);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.offer-content,
.privacy-content {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 1rem;
    margin-top: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-300) transparent;
}

.offer-content::-webkit-scrollbar,
.privacy-content::-webkit-scrollbar {
    width: 6px;
}

.offer-content::-webkit-scrollbar-track,
.privacy-content::-webkit-scrollbar-track {
    background: transparent;
}

.offer-content::-webkit-scrollbar-thumb,
.privacy-content::-webkit-scrollbar-thumb {
    background-color: var(--primary-300);
    border-radius: 3px;
}

.offer-content::-webkit-scrollbar-thumb:hover,
.privacy-content::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-400);
}

.offer-content h2,
.privacy-content h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-700);
    font-weight: 600;
}

.offer-content h3,
.privacy-content h3 {
    font-size: 1.25rem;
    margin: 1.25rem 0 0.75rem;
    color: var(--primary-600);
    font-weight: 500;
}

.offer-content p,
.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.offer-content ul,
.offer-content ol,
.privacy-content ul,
.privacy-content ol {
    margin: 0.75rem 0 1rem 1.5rem;
}

.offer-content li,
.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.offer-content .date,
.privacy-content .date {
    text-align: right;
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-muted);
}

/* ========== СТИЛИ ДЛЯ МОДАЛЬНОГО ОКНА ОБРАТНОГО ЗВОНКА ========== */
.callback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    padding: 0.85rem 1.25rem;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    color: var(--text-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px rgba(209, 138, 92, 0.15);
}

.form-control::placeholder {
    color: var(--neutral-500);
}

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

.form-submit-btn {
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    color: white;
    border: none;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-600), var(--accent-700));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 138, 92, 0.25);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.2);
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #d32f2f;
    border: 1px solid rgba(244, 67, 54, 0.2);
    display: block;
}

/* Адаптивность - Мобильная версия */
@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .header-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .about-image {
        height: 300px;
    }
    
    .room-card {
        padding: 2rem;
    }
    
    .booking-container {
        padding: 2rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .parallax h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        gap: 2.5rem;
    }

    /* Модальные окна на мобильных */
    .offer-modal,
    .callback-modal,
    .privacy-modal {
        width: 95%;
        padding: 1.5rem;
        max-height: 90vh;
    }

    .offer-content,
    .privacy-content {
        padding-right: 0.5rem;
    }

    .offer-content h2,
    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .offer-content h3,
    .privacy-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .room-card {
        padding: 1.5rem;
    }
    
    .room-card h3 {
        font-size: 1.5rem;
    }
    
    .booking-container {
        padding: 1.5rem 1rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .offer-modal,
    .privacy-modal {
        padding: 1.25rem;
    }
}

/* Планшеты */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-image {
        order: 2;
        height: 350px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Десктоп */
@media (min-width: 1025px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-image {
        order: 2;
        height: 550px;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .location-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3.5rem;
    }
}

/* Улучшения доступности */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Фокус состояния для доступности */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent-500);
    outline-offset: 2px;
}

/* Улучшение тач-интерфейса для мобильных */
@media (hover: none) {
    .btn:hover,
    .btn-hero:hover,
    .room-card:hover,
    .gallery-item:hover,
    .stat-item:hover,
    .map-container:hover {
        transform: none;
    }
    
    .room-card:hover::before {
        left: -100%;
    }
}