/* ===== ROOT VARIABLES ===== */
:root {
    /* Brown & Trustworthy Colors Palette */
    --primary-brown: #8B4513;
    --secondary-brown: #A0522D;
    --light-brown: #D2B48C;
    --dark-brown: #654321;
    --cream: #F5F5DC;
    --warm-beige: #F4E6D4;
    
    /* Trust Colors */
    --trust-blue: #2F4F4F;
    --trust-green: #556B2F;
    --gold-accent: #DAA520;
    --soft-gold: #F4E8C1;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F8F8;
    --gray: #E5E5E5;
    --dark-gray: #666666;
    --text-dark: #2C2C2C;
    --text-light: #777777;
    
    /* System Colors */
    --success: #28A745;
    --warning: #FFC107;
    --error: #DC3545;
    --info: #17A2B8;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header h2 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-brown);
    color: var(--white);
    padding: 1rem 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.cookie-notice.show {
    transform: translateY(0);
}

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

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.cookie-btn.accept {
    background: var(--gold-accent);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: #B8860B;
}

.cookie-btn.reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-btn.reject:hover {
    background: var(--white);
    color: var(--dark-brown);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-light);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1,
.logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin: 0;
}

.logo span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-brown);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-brown);
    color: var(--white);
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.phone-btn:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

.contact-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.telegram-btn {
    background: #0088cc;
    color: var(--white);
}

.telegram-btn:hover {
    background: #0077bb;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background: #1eb154;
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-brown);
    transition: var(--transition-fast);
    border-radius: 2px;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.7) 0%, rgba(47, 79, 79, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: var(--white);
}

.hero-text h1,
.hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ===== BOOKING FORM ===== */
.booking-form-container {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-heavy);
}

.booking-form h3 {
    color: var(--primary-brown);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

/* Phone validation styles - отключено по запросу */

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    color: var(--white);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: var(--transition-fast);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== SLIDER CONTROLS ===== */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ===== SECTION STYLES ===== */
.about-hotel, .advantages, .rooms-section, 
.reviews-section, .promotions-section, .video-section, 
.comparison-section, .awards-section, .guarantees-section, 
.company-section, .faq-section, .tips-section, .blog-section, 
.contacts-section {
    padding: 5rem 0;
}

.about-hotel {
    background: var(--light-gray);
}

.promotions-section {
    background: var(--warm-beige);
}



.video-section {
    background: var(--light-gray);
}

.awards-section {
    background: var(--warm-beige);
}

.guarantees-section {
    background: var(--light-gray);
}

.faq-section {
    background: var(--warm-beige);
}

.tips-section {
    background: var(--light-gray);
}

.contacts-section {
    background: var(--warm-beige);
}

.rooms-section {
    background: var(--light-gray);
}

/* ===== ABOUT HOTEL SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.hotel-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    border: 1px solid var(--gray);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--gold-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.advantage-card h3,
.advantage-title {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
}



/* ===== QUIZ FLOATING BUTTON ===== */
.quiz-float-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--primary-brown) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer !important;
    z-index: 10001 !important;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
    pointer-events: auto !important;
    user-select: none;
}

.quiz-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

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

/* ===== QUIZ MODAL ===== */
.quiz-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10002;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    pointer-events: none;
}

.quiz-modal[style*="display: flex"],
.quiz-modal[style*="display:flex"] {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.quiz-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.quiz-content {
    background: var(--white);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.quiz-header {
    padding: 2rem;
    border-bottom: 1px solid var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-header h3,
.modal-title {
    color: var(--primary-brown);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.quiz-close {
    font-size: 1.5rem;
    color: var(--text-light);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-close:hover {
    color: var(--text-dark);
}

.quiz-body {
    padding: 2rem;
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
}

.quiz-question h4,
.quiz-question-title {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.success-title {
    color: #28a745;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.quiz-result-title {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.quiz-options {
    display: grid;
    gap: 1rem;
}

.quiz-option {
    padding: 1rem;
    border: 2px solid var(--gray);
    border-radius: 8px;
    background: var(--white);
    text-align: left;
    transition: var(--transition-fast);
    cursor: pointer;
}

.quiz-option:hover {
    border-color: var(--primary-brown);
    background: var(--warm-beige);
}

.quiz-phone-input {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-phone-input input {
    padding: 0.75rem;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-size: 1rem;
}

.quiz-phone-input input:focus {
    outline: none;
    border-color: var(--primary-brown);
}

.quiz-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.4;
}

.quiz-submit-btn {
    padding: 0.75rem 2rem;
    background: var(--primary-brown);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.quiz-submit-btn:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

.quiz-submit-btn i {
    font-size: 0.9rem;
}

/* Форма обратного звонка */
.callback-form-wrapper {
    padding: 1rem 0;
}

#callback-success i {
    display: block;
}

#callback-success h4 {
    margin: 0;
}

.quiz-result {
    display: none;
    text-align: center;
}

.quiz-result.active {
    display: block;
}

.recommended-room {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.recommended-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin: 1rem 0;
}

.book-recommended {
    background: var(--primary-brown);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.book-recommended:hover {
    background: var(--dark-brown);
}

.quiz-progress {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid var(--gray);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--primary-brown);
    transition: var(--transition-medium);
    width: 25%;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    display: block;
}

/* ===== ROOMS SECTION ===== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.rooms-grid.rooms-grid-single {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
}

.room-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

/* Room carousel */
.room-carousel {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .carousel-images img {
    opacity: 0.95;
}

/* Carousel buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.room-card:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Carousel dots */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Legacy support for single image rooms */
.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.room-features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

.feature {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.room-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-info h3,
.room-info h4,
.room-title {
    color: var(--primary-brown);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.room-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.room-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    margin-top: auto;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.old-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.room-details-btn {
    background: var(--primary-brown);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition-fast);
    width: 100%;
    margin-top: auto;
}

.room-details-btn:hover {
    background: var(--dark-brown);
    transform: translateY(-1px);
}

/* ===== REVIEWS SECTION ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    border: 1px solid var(--gray);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.review-content h4,
.review-author {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--gold-accent);
}

.review-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

/* ===== PROMOTIONS SECTION ===== */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    position: relative;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.promo-card.featured {
    border: 2px solid var(--gold-accent);
}

.promo-header {
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--primary-brown) 100%);
    text-align: center;
}

.promo-badge {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.promo-content {
    padding: 2rem;
}

.promo-content h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.promo-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promo-timer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.timer-item {
    text-align: center;
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    min-width: 70px;
}

.timer-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    font-family: var(--font-heading);
}

.timer-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.promo-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    justify-content: center;
}

.promo-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.promo-old {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.promo-discount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.promo-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-brown);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.promo-btn:hover {
    background: var(--dark-brown);
    transform: translateY(-1px);
}

/* ===== VIDEO SECTION ===== */
.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--dark-gray);
    aspect-ratio: 16/9;
}

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

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(139, 69, 19, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-brown);
}

.video-description h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-features {
    margin-top: 1.5rem;
}

.video-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.video-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

/* ===== COMPARISON SECTION ===== */
.comparison-table {
    overflow-x: auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--gray);
}

.comparison-table th {
    background: var(--warm-beige);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.comparison-table th.our-hotel,
.comparison-table td.our-hotel {
    background: var(--soft-gold);
    font-weight: 600;
}

.comparison-table .fas.fa-check {
    color: var(--success);
    font-size: 1.2rem;
}

.comparison-table .fas.fa-times {
    color: var(--error);
    font-size: 1.2rem;
}

.comparison-table .paid {
    color: var(--warning);
    font-weight: 500;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

/* ===== AWARDS SECTION ===== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--primary-brown) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.award-item h3 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.award-item p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.award-org {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== GUARANTEES SECTION ===== */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.guarantee-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    border: 1px solid var(--gray);
}

.guarantee-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-brown);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--trust-blue) 0%, var(--primary-brown) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.guarantee-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.guarantee-card p {
    line-height: 1.6;
    color: var(--text-light);
}

/* ===== COMPANY SECTION ===== */
.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-text h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.company-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.value-item i {
    color: var(--primary-brown);
    font-size: 1.2rem;
}

.value-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.company-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-brown);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
    background: var(--light-gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.6;
    color: var(--text-light);
}

/* ===== TIPS SECTION ===== */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.3rem;
}

.tip-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.tip-card ul {
    list-style: none;
}

.tip-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.tip-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.tip-card a {
    color: var(--primary-brown);
    text-decoration: underline;
}

.tip-card a:hover {
    color: var(--dark-brown);
}

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-category {
    font-size: 0.85rem;
    background: var(--primary-brown);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.blog-content h3 {
    color: var(--primary-brown);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.blog-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    font-size: 0.95rem;
}

.blog-read-more {
    color: var(--primary-brown);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition-fast);
	font-size: 10px;
}

.blog-read-more:hover {
    color: var(--dark-brown);
}

/* ===== CONTACTS SECTION ===== */
.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-text p {
    margin: 0;
    line-height: 1.5;
}

.contact-text a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary-brown);
}

.messenger-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition-fast);
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
}

.map-container {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 300px;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--light-gray);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-brown);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.footer-logo span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-info p {
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-menu h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-menu ul li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: var(--gold-accent);
    padding-left: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1,
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* =========================
   POPUP STYLES
   ========================= */

/* Popup overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Popup content */
.popup-content {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

/* Close button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #f5f5f5;
    color: #333;
}

/* Popup header */
.popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-header h3 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.popup-header p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Popup form */
.popup-form .form-group {
    margin-bottom: 1.5rem;
}

.popup-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.popup-form input:focus,
.popup-form textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.popup-form textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
}

/* Submit button */
.popup-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.popup-submit-btn:hover {
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.popup-submit-btn:active {
    transform: translateY(0);
}

.popup-submit-btn i {
    font-size: 1rem;
}

/* Tablets */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Header оптимизация для мобильных */
    .header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .logo h1,
    .logo .logo-text {
        font-size: 1.4rem;
    }
    
    .logo span {
        font-size: 0.75rem;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-medium);
        border-radius: 0 0 15px 15px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.mobile-active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray);
        display: block;
        width: 100%;
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .burger-menu {
        display: flex;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0.5rem;
    }
    
    /* Header actions оптимизация */
    .header-actions {
        gap: 0.5rem;
    }
    
    .phone-btn {
        padding: 0.5rem;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
        font-size: 1rem;
    }
    
    .phone-btn i {
        margin: 0;
    }
    
    .phone-btn .phone-number {
        display: none;
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1,
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    /* Form rows */
    .form-row,
    .calc-row {
        grid-template-columns: 1fr;
    }
    
    /* Первый form-row (даты) остается в две колонки для экономии места */
    .booking-form .form-row:first-of-type {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    /* Уменьшаем размер шрифта в полях дат на мобильных */
    .booking-form .form-row:first-of-type .form-group label {
        font-size: 0.8rem;
    }
    
    .booking-form .form-row:first-of-type input {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    /* Carousel на мобильных - кнопки всегда видимы */
    .carousel-btn {
        opacity: 1;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .carousel-btn.prev {
        left: 5px;
    }
    
    .carousel-btn.next {
        right: 5px;
    }
    
    .carousel-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Cookie notice */
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hotel-stats {
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Video */
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Company */
    .company-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-values {
        grid-template-columns: 1fr;
    }
    
    /* Contacts */
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .footer-menu h3 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-menu a {
        font-size: 0.85rem;
    }
    
    .footer-menu ul li {
        margin-bottom: 0.4rem;
    }
    
    /* Timer */
    .promo-timer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 0.75rem 0.5rem;
    }
    
    /* Quiz */
    .quiz-float-btn span {
        display: none;
    }
    
    .quiz-float-btn {
        padding: 1rem;
        border-radius: 50%;
    }
}

    /* Popup mobile styles */
    .popup-content {
        padding: 1.5rem;
        max-width: 95%;
        border-radius: 10px;
    }
    
    .popup-header h3 {
        font-size: 1.5rem;
    }
    
    .popup-form input,
    .popup-form textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .popup-submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* Tablet & Medium screens */
@media (max-width: 992px) and (min-width: 769px) {
    /* Reviews для средних экранов - 3 колонки */
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    
    /* Sections padding */
    .about-hotel,
    .advantages,
    .calculator-section,
    .rooms-section,
    .reviews-section,
    .promotions-section,
    .video-section,
    .comparison-section,
    .awards-section,
    .guarantees-section,
    .company-section,
    .faq-section,
    .tips-section,
    .blog-section,
    .contacts-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Hero */
    .hero {
        min-height: 80vh;
    }
    
    .hero-text h1,
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    /* Cards */
    .advantage-card,
    .guarantee-card,
    .award-item,
    .tip-card {
        padding: 1.5rem;
    }
    
    /* Booking form */
    .booking-form-container {
        padding: 1.5rem;
    }
    
    /* Первый form-row (даты) в две колонки на мобильных */
    .booking-form .form-row:first-of-type {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    /* Компактные размеры для полей дат */
    .booking-form .form-row:first-of-type .form-group label {
        font-size: 0.75rem;
    }
    
    .booking-form .form-row:first-of-type input {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    /* Quiz */
    .quiz-content {
        width: 95%;
        margin: 0 10px;
    }
    
    .quiz-header,
    .quiz-body {
        padding: 1.5rem;
    }
    
    /* Stats */
    .hotel-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Grids */
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .guarantees-grid,
    .awards-grid,
    .tips-grid,
    .blog-grid,
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Advantages optimization for mobile */
    .advantage-card {
        padding: 1rem;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
        font-size: 1.2rem;
    }
    
    .advantage-card h3,
    .advantage-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .advantage-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Reviews оптимизация для планшетов */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-content h4,
    .review-author {
        font-size: 1rem;
    }
    
    .review-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Table */
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    /* Contact buttons оптимизация */
    .contact-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Extra small screens */
@media (max-width: 320px) {
    .timer-item {
        min-width: 50px;
        padding: 0.5rem 0.25rem;
    }
    
    .timer-value {
        font-size: 1.2rem;
    }
    
    .timer-label {
        font-size: 0.7rem;
    }
    
    .quiz-float-btn {
        bottom: 1rem;
        right: 1rem;
    }
    
    /* Reviews для маленьких экранов */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-content h4,
    .review-author {
        font-size: 0.95rem;
    }
    
    .review-content p {
        font-size: 0.85rem;
    }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-brown);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10001;
    transition: var(--transition-fast);
}

.skip-link:focus {
    top: 6px;
}

/* Print Styles */
@media print {
    .header,
    .cookie-notice,
    .quiz-float-btn,
    .quiz-modal,
    .slider-controls {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        min-height: auto;
        page-break-after: always;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}
