/* ═══════════════════════════════════════════════
   ДОПОЛНИТЕЛЬНЫЕ УЛУЧШЕНИЯ ДЛЯ INTOURIST
   Добавить в конец основного styles.css
   ═══════════════════════════════════════════════ */

/* 3D Room Cards Enhancement */
.room-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.room-card:hover {
    transform: translateY(-12px) scale(1.01) rotateX(2deg) rotateY(-2deg) !important;
}

.room-card .room-image {
    transform: translateZ(20px);
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.room-card .room-info {
    transform: translateZ(10px);
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

/* ═══════════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════════ */

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

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.lang-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

@media (max-width: 768px) {
    .lang-switcher {
        position: absolute;
        top: 1rem;
        right: 4rem;
        z-index: 1001;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* ═══════════════════════════════════════════════
   PREMIUM MODAL STYLES
   ═══════════════════════════════════════════════ */
.stats {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l2 8-2 8-8-2 8-2-8-2 8-2z' fill='%23D4A373' fill-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card);
    border: 1px solid rgba(212, 163, 115, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 163, 115, 0.4);
}

.stat-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(212, 163, 115, 0.3));
}

.stat-icon svg {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    stroke-width: 1.5px;
    transition: transform 0.4s ease;
}

.stat-item:hover .stat-icon svg {
    transform: scale(1.1);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(235, 224, 211, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Reviews Summary */
.reviews-summary {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.rating-display {
    display: inline-block;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    border: 1px solid rgba(212, 163, 115, 0.25);
    backdrop-filter: blur(10px);
}

.rating-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(212, 163, 115, 0.4);
}

.rating-stars {
    font-size: 1.5rem;
    color: var(--color-gold);
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 0.85rem;
    color: rgba(235, 224, 211, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════ */
body {
    cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='%23D4A373' fill-opacity='0.3'/%3E%3Ccircle cx='12' cy='12' r='3' fill='%23D4A373'/%3E%3C/svg%3E") 12 12, auto;
}

a, button, .clickable, .nav-link, .btn, .room-card, .review-card, .faq-item {
    cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='12' fill='none' stroke='%23CA7045' stroke-width='2'/%3E%3Ccircle cx='16' cy='16' r='4' fill='%23CA7045'/%3E%3C/svg%3E") 16 16, pointer;
}

/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVE ADDITIONS
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Hide booking widget indicator on mobile */
    .booking-widget::before {
        display: none;
    }

    /* Stats grid mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .rating-display {
        padding: 1.5rem 2rem;
    }

    .rating-number {
        font-size: 3rem;
    }
}