        /* Стили для страницы Гостиницы */
        .hotels-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-top: 2rem;
        }
        
        .hotels-header h2 {
            color: #2a5298;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
            letter-spacing: 0.5px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hotels-header h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6600, #ff8c00);
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .hotels-header .subtitle {
            font-size: 1.3rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .hotels-intro {
            max-width: 800px;
            margin: 0 auto 3rem;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
        }
        
        /* Стили фильтров с квадратиками-галочками */
        .hotel-filters {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
        }
        
        .filter-title {
            color: #2a5298;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            border-bottom: 2px solid #ff6600;
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .filter-title i {
            color: #ff6600;
        }
        
        .filters-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .filter-group {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #2a5298;
        }
        
        .filter-group-title {
            color: #2a5298;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .filter-group-title i {
            color: #ff6600;
            font-size: 1rem;
        }
        
        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        /* Квадратики-галочки */
        .filter-checkbox {
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 6px;
            color: #555;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
            gap: 8px;
        }
        
        .filter-checkbox i {
            color: #94a3b8;
            font-size: 1rem;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .filter-checkbox.active {
            background: #2a5298;
            color: white;
            border-color: #2a5298;
        }
        
        .filter-checkbox.active i {
            color: white;
        }
        
        .filter-checkbox:hover {
            border-color: #2a5298;
            background: #f0f4ff;
        }
        
        .filter-checkbox.active:hover {
            background: #1e3c72;
            border-color: #1e3c72;
        }
        
        /* Ценовой фильтр */
        .price-filter {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #ff6600;
        }
        
        .price-slider-container {
            margin-top: 1rem;
        }
        
        .price-slider {
            width: 100%;
            height: 8px;
            -webkit-appearance: none;
            background: #e2e8f0;
            border-radius: 4px;
            outline: none;
        }
        
        .price-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #ff6600;
            cursor: pointer;
            border: 3px solid white;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        
        .price-slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #ff6600;
            cursor: pointer;
            border: 3px solid white;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        
        .price-value {
            color: #ff6600;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .reset-filters {
            background: #e2e8f0;
            color: #555;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0 auto;
        }
        
        .reset-filters:hover {
            background: #cbd5e1;
            color: #2a5298;
        }
        
        .reset-filters i {
            transition: transform 0.3s ease;
        }
        
        .reset-filters:hover i {
            transform: rotate(180deg);
        }
        
        /* Контейнер поиска */
        .search-container {
            max-width: 800px;
            margin: 0 auto 2rem;
            position: relative;
        }
        
        .search-box {
            width: 100%;
            padding: 1rem 1.5rem;
            padding-right: 3.5rem;
            font-size: 1.1rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            background-color: #f8fafc;
            color: #2a5298;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .search-box:focus {
            outline: none;
            border-color: #2a5298;
            background-color: white;
            box-shadow: 0 4px 15px rgba(42, 82, 152, 0.1);
        }
        
        .search-box::placeholder {
            color: #94a3b8;
        }
        
        .search-icon {
            position: absolute;
            right: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            font-size: 1.2rem;
            pointer-events: none;
        }
        
        /* Полоска с кнопкой фильтра */
        .filter-toggle-bar {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 0.8rem 1rem;
            background: #f8fafc;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border: 1px solid #e2e8f0;
            position: relative;
        }
        
        .filter-toggle-bar::before {
            content: '';
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: calc(100% - 120px);
            height: 2px;
            background: linear-gradient(90deg, #2a5298, #ff6600);
            border-radius: 1px;
        }
        
        .filter-toggle-btn {
            padding: 0.6rem 1.2rem;
            background-color: #2a5298;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            z-index: 1;
        }
        
        .filter-toggle-btn:hover {
            background-color: #1e3c72;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(42, 82, 152, 0.3);
        }
        
        .filter-toggle-btn i {
            transition: transform 0.3s ease;
        }
        
        .filter-toggle-btn.active i {
            transform: rotate(180deg);
        }
        
        .search-filters-container.hidden {
            display: none;
        }
        
        .search-results-info {
            text-align: center;
            margin-bottom: 1.5rem;
            color: #2a5298;
            font-size: 1.1rem;
            font-weight: 600;
            display: none;
        }
        
        .search-results-info.show {
            display: block;
        }
        
        .search-no-results {
            text-align: center;
            padding: 3rem;
            color: #94a3b8;
            font-size: 1.2rem;
            display: none;
        }
        
        .search-no-results.show {
            display: block;
        }
        
        /* Сортировка */
        .sorting-container {
            margin: 20px 0;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #dee2e6;
        }
        
        .sorting-title {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #333;
            font-weight: 600;
        }
        
        .sorting-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .sort-btn {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 8px 15px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            color: #555;
        }
        
        .sort-btn:hover {
            background-color: #f0f0f0;
            border-color: #aaa;
        }
        
        .sort-btn.active {
            background-color: #2a5298;
            color: white;
            border-color: #2a5298;
        }
        
        .sort-btn i {
            margin-right: 5px;
        }
        
        .sort-results-info {
            margin: 10px 0;
            padding: 10px;
            background-color: #e8f4fc;
            border-radius: 5px;
            font-size: 0.9rem;
            color: #2a5298;
            border-left: 3px solid #2a5298;
        }
        
        /* Навигация между разделами */
        .hotels-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        
        .nav-left {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .nav-right {
            display: flex;
            gap: 0.5rem;
        }
        
        .hotels-nav-btn {
            padding: 0.8rem 1.5rem;
            border: 2px solid #e2e8f0;
            background: #f8fafc;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            color: #2a5298;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        
        .hotels-nav-btn:hover {
            background: #edf2f7;
            border-color: #cbd5e0;
        }
        
        .hotels-nav-btn.active {
            background: #2a5298;
            color: white;
            border-color: #2a5298;
        }
        
        .hotels-section {
            display: none;
        }
        
        .hotels-section.active {
            display: block;
        }
        
        /* Флип-карточки */
        .flip-card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .flip-card {
            background-color: transparent;
            width: 100%;
            height: 420px;
            perspective: 1000px;
            border-radius: 12px;
            cursor: pointer;
        }
        
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }
        
        .flip-card.flipped .flip-card-inner {
            transform: rotateY(180deg);
        }
        
        .flip-card.hidden {
            display: none;
        }
        
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .flip-card-front {
            background-color: #fff;
            color: #333;
            display: flex;
            flex-direction: column;
        }
        
        .flip-card-front img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        
        .flip-card-front h3 {
            color: #2a5298;
            font-size: 1.3rem;
            margin: 0.8rem 0 0.3rem;
            padding: 0 1rem;
        }
        
        .hotel-address {
            color: #666;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .hotel-address i {
            color: #ff6600;
        }
        
        /* Кружки на флип-карточках */
        .hotel-circles {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            gap: 8px;
            z-index: 2;
        }
        
        .hotel-circle {
            width: auto;
            height: 36px;
            padding: 0 10px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 0.8rem;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
            white-space: nowrap;
        }
        
        .hotel-circle.city {
            background: linear-gradient(135deg, #FF6600, #FF8C00);
        }
        
        .hotel-circle.stars {
            background: linear-gradient(135deg, #2a5298, #1e3c72);
        }
        
        /* Стили для нового кружка */
        .hotel-circle.edin-reestr {
            background: linear-gradient(135deg, #28a745, #20c997); /* Зеленый градиент */
        }
        
        .flip-card-front .keywords {
            padding: 0.3rem 1rem;
            font-size: 0.85rem;
            line-height: 1.4;
            color: #555;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .keyword-line {
            margin-bottom: 0.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            color: #666;
            font-style: italic;
        }
        
        .keyword-line i {
            color: #ff6600;
            font-size: 0.7rem;
        }
        
        .flip-card-meta {
            display: flex;
            justify-content: space-between;
            padding: 0.6rem 1.2rem 0.8rem;
            color: #666;
            font-size: 0.8rem;
            border-top: 1px solid #eee;
            margin-top: auto;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .meta-item i {
            color: #ff6600;
        }
        
        .flip-card-back {
            background: linear-gradient(135deg, #2a5298, #1e3c72);
            color: white;
            transform: rotateY(180deg);
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .flip-card-back h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #fff;
        }
        
        .flip-card-back p {
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            overflow-y: auto;
            max-height: 180px;
            padding-right: 5px;
        }
        
        .flip-card-back p::-webkit-scrollbar {
            width: 4px;
        }
        
        .flip-card-back p::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }
        
        .flip-card-back p::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
        }
        
        .details-btn-flip {
            background-color: #ff6600;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 0.9rem;
            margin-top: auto;
        }
        
        .details-btn-flip:hover {
            background-color: #e55a00;
            transform: translateY(-2px);
        }
        
        /* Легенда */
        .hotel-legend {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
        }
        
        .hotel-legend h4 {
            color: #2a5298;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .hotel-legend h4 i {
            color: #ff6600;
        }
        
        .legend-items {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .legend-circle {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }
        
        .legend-circle.city {
            background: linear-gradient(135deg, #FF6600, #FF8C00);
        }
        
        .legend-circle.stars {
            background: linear-gradient(135deg, #2a5298, #1e3c72);
        }
        
        /* Легенда для нового кружка */
        .legend-circle.edin-reestr {
            background: linear-gradient(135deg, #28a745, #20c997);
        }
        
        .legend-text {
            font-size: 0.95rem;
            color: #555;
        }
        
        /* Галерея (оставлена как есть) */
        .gallery-section {
            margin: 40px 0;
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .section-header {
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .section-header i {
            margin-right: 10px;
            color: #3498db;
        }
        
        .gallery-main-image-container {
            position: relative;
            width: 100%;
            height: 500px;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 10px;
        }
        
        .gallery-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .gallery-main-image:hover {
            transform: scale(1.01);
        }
        
        .gallery-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #ff6600;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            max-width: 220px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            line-height: 1.3;
        }
        
        .thumbnail-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .thumbnail {
            width: 100px;
            height: 70px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .thumbnail:hover, .thumbnail.active {
            opacity: 1;
            transform: scale(1.05);
            border: 2px solid #3498db;
        }
        
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .lightbox-img {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 8px;
            object-fit: contain;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }
        
        .lightbox-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #ff6600;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            max-width: 220px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            transition: color 0.3s;
            z-index: 1001;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-close:hover {
            color: #ff6600;
            background: rgba(0, 0, 0, 0.7);
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            font-size: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1001;
        }
        
        .lightbox-nav:hover {
            background: rgba(0, 0, 0, 0.8);
            color: #ff6600;
            transform: translateY(-50%) scale(1.1);
        }
        
        .lightbox-prev {
            left: 20px;
        }
        
        .lightbox-next {
            right: 20px;
        }
        
        .lightbox-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.2rem;
            background: rgba(0, 0, 0, 0.5);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            z-index: 1001;
        }
        
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #ff6600;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-to-top:hover {
            background-color: #e55a00;
            box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4);
            transform: translateY(-3px);
        }
        
        .scroll-to-top i {
            color: white;
            font-size: 24px;
        }
        
        .booking-note {
            font-size: 0.9rem;
            color: #e74c3c;
            font-weight: 500;
            margin-bottom: 12px;
            padding: 8px 12px;
            background-color: #fdf2f2;
            border-radius: 5px;
            border-left: 3px solid #e74c3c;
        }
        
        @media (max-width: 768px) {
            .hotels-header h2 {
                font-size: 2.5rem;
            }
            .hotels-header .subtitle {
                font-size: 1.1rem;
            }
            .flip-card-container {
                grid-template-columns: 1fr;
            }
            .gallery-main-image-container {
                height: 300px;
            }
            .filters-container {
                grid-template-columns: 1fr;
            }
            .hotels-nav {
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }
            .nav-left, .nav-right {
                justify-content: center;
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .hotels-header h2 {
                font-size: 2rem;
            }
            .hotel-circle {
                height: 28px;
                padding: 0 8px;
                font-size: 0.7rem;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }