/* ===== CSS Переменные ===== */
:root {
    /* Цвета */
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;

    --primary: #fbbf24;
    --primary-light: #fcd34d;
    --primary-dark: #f59e0b;

    --secondary: #a855f7;
    --secondary-light: #c084fc;

    --accent: #06b6d4;
    --accent-light: #22d3ee;

    --neon-blue: #00f0ff;
    --neon-purple: #bd00ff;
    --neon-pink: #ff006e;
    --neon-yellow: #fbbf24;

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    --gradient-neon: linear-gradient(135deg, #fbbf24 0%, #a855f7 100%);
    --gradient-glow: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);

    /* Тени */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(251, 191, 36, 0.4);
    --shadow-neon: 0 0 20px rgba(251, 191, 36, 0.5);

    /* Анимации */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Размеры */
    --container-max: 1400px;
    --nav-height: 80px;
}

/* ===== Сброс и база ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #12121a 50%, #1a1a2e 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Noise Overlay ===== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== Градиентные пятна ===== */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.4;
    animation: orbFloat 18s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
    top: 40%;
    right: -120px;
    animation-delay: -6s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    bottom: -80px;
    left: 25%;
    animation-delay: -12s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, 40px) scale(1.08); }
    66% { transform: translate(-30px, 35px) scale(0.95); }
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Навигация ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition-base);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 5px 30px rgba(251, 191, 36, 0.1);
}

/* Исправление для мобильных - меню сбоку, без смещения бургера */
@media (max-width: 768px) {
    /* Навигация фиксированная */
    .navbar {
        position: fixed;
        height: var(--nav-height);
        min-height: auto;
    }

    .navbar .container {
        flex-wrap: nowrap;
        padding: 0 15px;
    }

    /* Логотип слева */
    .logo {
        order: 1;
        margin-right: auto;
        flex-shrink: 0;
    }

    /* Бургер - АБСОЛЮТНО ФИКСИРОВАННЫЙ */
    .burger {
        display: flex !important;
        width: 45px;
        height: 45px;
        position: fixed !important;
        right: 20px !important;
        top: 20px !important;
        background: rgba(251, 191, 36, 0.15);
        border: 2px solid rgba(251, 191, 36, 0.4);
        border-radius: 10px;
        padding: 10px;
        cursor: pointer;
        z-index: 1001 !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
        /* Убираем ЛЮБЫЕ transform */
        transform: none !important;
        margin: 0 !important;
    }

    .burger:hover {
        background: rgba(251, 191, 36, 0.25) !important;
        border-color: rgba(251, 191, 36, 0.6) !important;
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3) !important;
    }

    .burger.active {
        background: rgba(251, 191, 36, 0.3) !important;
        border-color: rgba(251, 191, 36, 0.8) !important;
    }

    /* Убираем hover когда меню открыто */
    .burger.active:hover {
        background: rgba(251, 191, 36, 0.3) !important;
        border-color: rgba(251, 191, 36, 0.8) !important;
    }

    .burger .line {
        width: 25px;
        height: 3px;
        background: linear-gradient(90deg, #fbbf24, #f59e0b);
        border-radius: 3px;
        transition: var(--transition-base);
    }

    .burger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }

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

    .burger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }

    /* Скрываем ВСЁ в навбаре на мобильных */
    .city-selector,
    .nav-auth,
    .nav-links,
    .nav-link {
        display: none !important;
    }

    /* Мобильное меню - боковая панель с красивым фоном */
    .mobile-menu {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: calc(100vh - var(--nav-height));
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        border-left: 1px solid rgba(251, 191, 36, 0.2);
        padding: 30px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1002; /* ВЫШЕ overlay! */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        
        /* Плавающие частицы на фоне */
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
            linear-gradient(135deg, rgba(26, 26, 46, 1) 0%, rgba(22, 33, 62, 1) 100%);
    }

    /* Анимированные частицы - теперь внутри меню, не перекрывают */
    .mobile-menu::before {
        content: '🎵';
        position: absolute;
        top: 10%;
        left: 10%;
        font-size: 24px;
        opacity: 0.15;
        animation: mobileParticle1 15s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
    }

    .mobile-menu::after {
        content: '🎸';
        position: absolute;
        bottom: 20%;
        right: 15%;
        font-size: 28px;
        opacity: 0.15;
        animation: mobileParticle2 18s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
    }

    @keyframes mobileParticle1 {
        0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
        50% { transform: translateY(-30px) rotate(10deg); opacity: 0.15; }
    }

    @keyframes mobileParticle2 {
        0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.12; }
        50% { transform: translateY(-25px) rotate(-10deg); opacity: 0.18; }
    }

    .mobile-menu.active {
        right: 0;
    }

    /* Overlay для затемнения */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 999;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
        cursor: pointer;
    }

    /* Заголовок меню */
    .mobile-menu-title {
        color: #fbbf24;
        font-size: 20px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(251, 191, 36, 0.3);
        text-align: center;
        position: relative;
        z-index: 10;
    }

    /* Ссылки мобильного меню */
    .mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        z-index: 10; /* ВЫШЕ частиц! */
    }

    .mobile-nav-links li {
        margin: 0;
    }

    .mobile-nav-links a {
        display: block;
        padding: 18px 22px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .mobile-nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #fbbf24, #f59e0b);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .mobile-nav-links a:hover::before {
        transform: scaleY(1);
    }

    .mobile-nav-links a:hover {
        background: rgba(251, 191, 36, 0.1);
        border-color: rgba(251, 191, 36, 0.3);
        transform: translateX(8px);
        padding-left: 30px;
    }

    /* Блокируем скролл фона */
    body.menu-open {
        overflow: hidden;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-icon {
    font-size: 2.2rem;
    animation: logoBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

@keyframes logoBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-5deg); }
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* ===== Выбор города ===== */
.city-selector {
    position: relative;
    flex-shrink: 0;
}

.city-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.city-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
}

.city-icon {
    font-size: 1.1rem;
}

.city-arrow {
    font-size: 0.7rem;
    transition: transform var(--transition-fast);
}

.city-btn.active .city-arrow {
    transform: rotate(180deg);
}

.city-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 320px;
    max-height: 600px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 1001;
    overflow: hidden;
}

.city-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.city-search {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.city-search input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.city-search input::placeholder {
    color: var(--text-muted);
}

.city-search input:focus {
    outline: none;
    border-color: var(--primary);
}

.city-list {
    max-height: 500px;
    overflow-y: auto;
    padding: 8px;
}

.city-list::-webkit-scrollbar {
    width: 6px;
}

.city-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.city-list::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.5);
    border-radius: 3px;
}

.city-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-secondary);
}

.city-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
}

.city-item.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.city-item-count {
    font-size: 0.8rem;
    opacity: 0.6;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 10px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    border-radius: 10px;
    opacity: 0;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.active {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.burger .line {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* Auth buttons in nav */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-text {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.btn-text:hover {
    color: var(--text-primary);
    background: rgba(251, 191, 36, 0.1);
}

/* ===== Кнопки ===== */
.btn-primary, .btn-secondary {
    position: relative;
    padding: 14px 32px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    text-decoration: none;
}

/* Кнопки в hero - одинаковой ширины */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    flex: 0 0 auto;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    align-self: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.6);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 2px solid rgba(251, 191, 36, 0.3);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    color: var(--primary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.6); }
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow,
.btn-book:hover .btn-arrow,
.btn-load-more:hover .load-icon {
    transform: translateX(5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== Hero секция ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(var(--nav-height) + 60px) 5% 80px;
    gap: 60px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    line-height: 1.2;
    margin-bottom: 5px;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.4));
}

.title-line:last-child {
    margin-bottom: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.5));
    font-style: italic;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    text-decoration: none;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

/* Выбор города в hero - скрыт на ПК, показан на мобильных */
.hero-city-selector {
    display: none;
}

@media (max-width: 768px) {
    .hero-city-selector {
        display: block;
        margin: 20px auto;
        text-align: center;
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

/* Популярные города */
.popular-cities {
    margin-top: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.cities-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.cities-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.city-chip {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.city-chip:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shapeFloat 8s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.shape-content {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.shape-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    border-radius: 20px;
}

.shape-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
    border-radius: 50%;
}

.shape-3 {
    top: 50%;
    right: 5%;
    animation-delay: 3s;
    border-radius: 15px;
}

.shape-4 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4.5s;
    border-radius: 30% 70% 70% 30%;
}

.shape-5 {
    bottom: 10%;
    right: 25%;
    animation-delay: 6s;
    border-radius: 50%;
}

/* Исправление для мобильных - убираем плавающие элементы или делаем их меньше */
@media (max-width: 768px) {
    .floating-shapes .shape {
        display: none; /* Убираем плавающие элементы на мобильных */
    }
    
    .hero-visual {
        height: 300px;
    }
}

@keyframes shapeFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translateY(-30px) rotate(10deg) scale(1.05);
        box-shadow: 0 30px 60px rgba(99, 102, 241, 0.3);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Секции ===== */
section {
    padding: 120px 5%;
    position: relative;
}

.section-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

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

/* ===== Cities Section ===== */
.cities-section {
    background: transparent;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.city-card {
    position: relative;
    padding: 20px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
}

.city-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-5px);
}

.city-card.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.city-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.city-card-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Featured Artists Section ===== */
.featured-artists-section {
    padding: 100px 5%;
    background: transparent;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.view-all-artists {
    text-align: center;
    margin-top: 50px;
}

/* ===== Artists Section ===== */
.artists-section {
    background: transparent;
}

.filter-container {
    margin-bottom: 50px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

/* Artist Card */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.artist-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(40px);
}

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

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-card:hover .image-placeholder {
    transform: scale(1.1);
    filter: brightness(1.3);
}

.card-glow {
    display: none;
}

.card-image {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d1b4e 0%, #1a1a2e 50%, #0f0f1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    transition: all var(--transition-slow);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #000;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

.card-badge.hot {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    color: #fff;
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.4);
}

.card-content {
    padding: 0;
    margin-top: 15px;
}

.card-header {
    margin-bottom: 12px;
}

.artist-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.artist-category {
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    text-decoration: none;
}

.artist-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-decoration: none;
}

.artist-bio-short {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.artist-price {
    display: flex;
    align-items: center;
    gap: 4px;
}

.artist-price .price-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.artist-price .price-value {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.artist-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-value {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.price {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 2;
}

.artist-card:hover .card-overlay {
    opacity: 1;
}

.btn-view-profile {
    padding: 14px 32px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 14px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.artist-card:hover .btn-view-profile {
    transform: translateY(0);
}

.card-content {
    padding: 28px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #fcd34d 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.artist-name:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artist-category {
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.artist-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 10px;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-value {
    font-weight: 600;
    font-size: 0.95rem;
}

.artist-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.tag:hover {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-book {
    padding: 12px 28px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: var(--primary-light);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.btn-book:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.load-more {
    text-align: center;
}

.btn-load-more {
    padding: 18px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-base);
}

.btn-load-more:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.load-icon {
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
}

/* ===== Services Section ===== */
.services-section {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 32px;
    background: rgba(18, 18, 26, 0.6);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(40px);
}

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

.service-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    transform: translateY(-10px);
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 25px;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 100px 5%;
    overflow: hidden;
    background: transparent;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

/* ===== Contact Section ===== */
.contact-section {
    background: transparent;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(18, 18, 26, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.info-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-content p {
    font-size: 1rem;
    font-weight: 500;
}

.social-section {
    margin-top: 20px;
}

.social-section h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    background: rgba(18, 18, 26, 0.6);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 50px;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Scroll Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.6);
}

/* ===== Нет артистов ===== */
.no-artists {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.no-artists-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-artists h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-artists p {
    color: var(--text-secondary);
}

/* ===== Адаптивность ===== */
@media (max-width: 1024px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--nav-height) + 40px);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        height: 400px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex !important;
    }

    .burger {
        display: flex;
    }

    .city-selector {
        order: 1;
    }
    
    .logo {
        order: 2;
    }
    
    .btn-primary {
        display: none;
    }
    
    .city-dropdown {
        left: 0 !important;
        transform: none !important;
        width: 280px;
    }
    
    .city-dropdown.active {
        transform: none !important;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        justify-content: center;
    }
    
    .cities-list {
        justify-content: center;
    }
}

/* ===== Дополнительные эффекты ===== */

/* Мерцающие звёзды на фоне */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(255,255,255,1), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,1), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 250px 100px, rgba(255,255,255,1), transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 350px 200px, rgba(255,255,255,1), transparent);
    background-repeat: repeat;
    background-size: 400px 300px;
    animation: starsTwinkle 4s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes starsTwinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

/* ===== Beam прожекторы (световые лучи) ===== */
.beam-spotlight {
    position: fixed;
    bottom: -200px;
    width: 40px;
    height: 1400px;
    pointer-events: none;
    z-index: -2;
    transform-origin: bottom center;
    filter: blur(20px);
}

.beam-1 {
    left: 5%;
    background: linear-gradient(to top, 
        rgba(251, 191, 36, 1) 0%, 
        rgba(251, 191, 36, 0.6) 30%, 
        transparent 70%);
    transform: rotate(-20deg);
    animation: beamRotate1 12s ease-in-out infinite;
    opacity: 0.9;
}

.beam-6 {
    right: 5%;
    background: linear-gradient(to top, 
        rgba(251, 191, 36, 1) 0%, 
        rgba(251, 191, 36, 0.6) 30%, 
        transparent 70%);
    transform: rotate(20deg);
    animation: beamRotate6 14s ease-in-out infinite;
    opacity: 0.9;
}

@keyframes beamRotate1 {
    0%, 100% { transform: rotate(-20deg) translateX(0); opacity: 0.9; }
    50% { transform: rotate(-15deg) translateX(50px); opacity: 1; }
}

@keyframes beamRotate2 {
    0%, 100% { transform: rotate(15deg) translateX(0); opacity: 0.85; }
    50% { transform: rotate(20deg) translateX(-50px); opacity: 0.95; }
}

@keyframes beamRotate3 {
    0%, 100% { transform: rotate(-10deg) translateX(0); opacity: 0.85; }
    50% { transform: rotate(-15deg) translateX(50px); opacity: 0.95; }
}

@keyframes beamRotate4 {
    0%, 100% { transform: rotate(10deg) translateX(0); opacity: 0.85; }
    50% { transform: rotate(15deg) translateX(-50px); opacity: 0.95; }
}

@keyframes beamRotate5 {
    0%, 100% { transform: rotate(-15deg) translateX(0); opacity: 0.85; }
    50% { transform: rotate(-10deg) translateX(50px); opacity: 0.95; }
}

@keyframes beamRotate6 {
    0%, 100% { transform: rotate(20deg) translateX(0); opacity: 0.9; }
    50% { transform: rotate(15deg) translateX(-50px); opacity: 1; }
}

/* ===== Прожекторы по бокам ===== */
.spotlight-side {
    position: fixed;
    bottom: 0;
    width: 500px;
    height: 800px;
    pointer-events: none;
    z-index: -3;
    filter: blur(80px);
}

.spotlight-left {
    left: -150px;
    background: linear-gradient(45deg, 
        rgba(251, 191, 36, 0.5) 0%, 
        rgba(251, 191, 36, 0.2) 40%, 
        transparent 70%);
    transform: rotate(-30deg);
    transform-origin: bottom left;
    animation: spotlightLeftSway 8s ease-in-out infinite;
}

.spotlight-right {
    right: -150px;
    background: linear-gradient(-45deg, 
        rgba(168, 85, 247, 0.5) 0%, 
        rgba(168, 85, 247, 0.2) 40%, 
        transparent 70%);
    transform: rotate(30deg);
    transform-origin: bottom right;
    animation: spotlightRightSway 8s ease-in-out infinite;
}

@keyframes spotlightLeftSway {
    0%, 100% { 
        transform: rotate(-30deg) scaleY(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(-25deg) scaleY(1.15);
        opacity: 0.8;
    }
}

@keyframes spotlightRightSway {
    0%, 100% { 
        transform: rotate(30deg) scaleY(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(35deg) scaleY(1.15);
        opacity: 0.8;
    }
}

/* Плавающие частицы */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    box-shadow: 0 0 30px rgba(251, 191, 36, 1);
    animation: particleFloat 20s ease-in-out infinite;
    opacity: 0.8;
}

/* Разные цвета для частиц */
.particle:nth-child(5n+1) { 
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    box-shadow: 0 0 30px rgba(251, 191, 36, 1);
}
.particle:nth-child(5n+2) { 
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
    box-shadow: 0 0 30px rgba(168, 85, 247, 1);
}
.particle:nth-child(5n+3) { 
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    box-shadow: 0 0 30px rgba(6, 182, 212, 1);
}
.particle:nth-child(5n+4) { 
    background: radial-gradient(circle, #f97316 0%, transparent 70%);
    box-shadow: 0 0 30px rgba(249, 115, 22, 1);
}
.particle:nth-child(5n+5) { 
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    box-shadow: 0 0 30px rgba(236, 72, 153, 1);
}

/* Разные позиции и задержки */
.particle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { top: 20%; left: 15%; animation-delay: -5s; animation-duration: 28s; }
.particle:nth-child(3) { top: 30%; left: 25%; animation-delay: -10s; animation-duration: 22s; }
.particle:nth-child(4) { top: 40%; left: 35%; animation-delay: -15s; animation-duration: 26s; }
.particle:nth-child(5) { top: 50%; left: 45%; animation-delay: -20s; animation-duration: 24s; }
.particle:nth-child(6) { top: 60%; left: 55%; animation-delay: -3s; animation-duration: 27s; }
.particle:nth-child(7) { top: 70%; left: 65%; animation-delay: -8s; animation-duration: 23s; }
.particle:nth-child(8) { top: 80%; left: 75%; animation-delay: -13s; animation-duration: 29s; }
.particle:nth-child(9) { top: 90%; left: 85%; animation-delay: -18s; animation-duration: 21s; }
.particle:nth-child(10) { top: 15%; left: 90%; animation-delay: -23s; animation-duration: 25s; }
.particle:nth-child(11) { top: 25%; left: 80%; animation-delay: -6s; animation-duration: 26s; }
.particle:nth-child(12) { top: 35%; left: 70%; animation-delay: -11s; animation-duration: 24s; }
.particle:nth-child(13) { top: 45%; left: 60%; animation-delay: -16s; animation-duration: 28s; }
.particle:nth-child(14) { top: 55%; left: 50%; animation-delay: -21s; animation-duration: 22s; }
.particle:nth-child(15) { top: 65%; left: 40%; animation-delay: -4s; animation-duration: 27s; }
.particle:nth-child(16) { top: 75%; left: 30%; animation-delay: -9s; animation-duration: 23s; }
.particle:nth-child(17) { top: 85%; left: 20%; animation-delay: -14s; animation-duration: 29s; }
.particle:nth-child(18) { top: 95%; left: 10%; animation-delay: -19s; animation-duration: 25s; }
.particle:nth-child(19) { top: 5%; left: 95%; animation-delay: -24s; animation-duration: 26s; }
.particle:nth-child(20) { top: 12%; left: 50%; animation-delay: -7s; animation-duration: 24s; }
.particle:nth-child(21) { top: 22%; left: 60%; animation-delay: -12s; animation-duration: 28s; }
.particle:nth-child(22) { top: 32%; left: 70%; animation-delay: -17s; animation-duration: 22s; }
.particle:nth-child(23) { top: 42%; left: 80%; animation-delay: -22s; animation-duration: 27s; }
.particle:nth-child(24) { top: 52%; left: 90%; animation-delay: -2s; animation-duration: 23s; }
.particle:nth-child(25) { top: 62%; left: 5%; animation-delay: -25s; animation-duration: 29s; }
.particle:nth-child(26) { top: 72%; left: 15%; animation-delay: -20s; animation-duration: 25s; }
.particle:nth-child(27) { top: 82%; left: 25%; animation-delay: -15s; animation-duration: 26s; }
.particle:nth-child(28) { top: 92%; left: 35%; animation-delay: -10s; animation-duration: 24s; }
.particle:nth-child(29) { top: 8%; left: 45%; animation-delay: -5s; animation-duration: 28s; }
.particle:nth-child(30) { top: 18%; left: 55%; animation-delay: 0s; animation-duration: 22s; }
.particle:nth-child(31) { top: 28%; left: 65%; animation-delay: -23s; animation-duration: 27s; }
.particle:nth-child(32) { top: 38%; left: 75%; animation-delay: -18s; animation-duration: 23s; }
.particle:nth-child(33) { top: 48%; left: 85%; animation-delay: -13s; animation-duration: 29s; }
.particle:nth-child(34) { top: 58%; left: 95%; animation-delay: -8s; animation-duration: 25s; }
.particle:nth-child(35) { top: 68%; left: 8%; animation-delay: -3s; animation-duration: 26s; }
.particle:nth-child(36) { top: 78%; left: 18%; animation-delay: -21s; animation-duration: 24s; }
.particle:nth-child(37) { top: 88%; left: 28%; animation-delay: -16s; animation-duration: 28s; }
.particle:nth-child(38) { top: 98%; left: 38%; animation-delay: -11s; animation-duration: 22s; }
.particle:nth-child(39) { top: 7%; left: 48%; animation-delay: -6s; animation-duration: 27s; }
.particle:nth-child(40) { top: 17%; left: 58%; animation-delay: -1s; animation-duration: 23s; }
.particle:nth-child(41) { top: 27%; left: 68%; animation-delay: -24s; animation-duration: 29s; }
.particle:nth-child(42) { top: 37%; left: 78%; animation-delay: -19s; animation-duration: 25s; }
.particle:nth-child(43) { top: 47%; left: 88%; animation-delay: -14s; animation-duration: 26s; }
.particle:nth-child(44) { top: 57%; left: 98%; animation-delay: -9s; animation-duration: 24s; }
.particle:nth-child(45) { top: 67%; left: 12%; animation-delay: -4s; animation-duration: 28s; }
.particle:nth-child(46) { top: 77%; left: 22%; animation-delay: -22s; animation-duration: 22s; }
.particle:nth-child(47) { top: 87%; left: 32%; animation-delay: -17s; animation-duration: 27s; }
.particle:nth-child(48) { top: 97%; left: 42%; animation-delay: -12s; animation-duration: 23s; }
.particle:nth-child(49) { top: 6%; left: 52%; animation-delay: -7s; animation-duration: 29s; }
.particle:nth-child(50) { top: 16%; left: 62%; animation-delay: -2s; animation-duration: 25s; }
.particle:nth-child(51) { top: 26%; left: 72%; animation-delay: -12s; animation-duration: 27s; }
.particle:nth-child(52) { top: 36%; left: 82%; animation-delay: -17s; animation-duration: 23s; }
.particle:nth-child(53) { top: 46%; left: 92%; animation-delay: -22s; animation-duration: 28s; }
.particle:nth-child(54) { top: 56%; left: 3%; animation-delay: -5s; animation-duration: 24s; }
.particle:nth-child(55) { top: 66%; left: 13%; animation-delay: -10s; animation-duration: 26s; }
.particle:nth-child(56) { top: 76%; left: 23%; animation-delay: -15s; animation-duration: 22s; }
.particle:nth-child(57) { top: 86%; left: 33%; animation-delay: -20s; animation-duration: 29s; }
.particle:nth-child(58) { top: 96%; left: 43%; animation-delay: -8s; animation-duration: 25s; }
.particle:nth-child(59) { top: 9%; left: 53%; animation-delay: -13s; animation-duration: 27s; }
.particle:nth-child(60) { top: 19%; left: 63%; animation-delay: -18s; animation-duration: 23s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -80px) scale(1);
        opacity: 0.9;
    }
    75% {
        transform: translate(40px, -60px) scale(1.1);
        opacity: 0.7;
    }
}

/* Светящаяся рамка при наведении */
.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
    filter: blur(10px);
}

.glow-border:hover::before {
    opacity: 0.5;
}

/* ===== Плавающие кнопки связи ===== */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition-base);
    animation: floatPulse 3s ease-in-out infinite;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.whatsapp:hover {
    background: #20bd5a;
}

.float-btn.telegram {
    background: #24A1DE;
}

.float-btn.telegram:hover {
    background: #1e8fc4;
}

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

/* Адаптив для плавающих кнопок */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 80px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   АНИМАЦИИ КАРТОЧЕК АРТИСТОВ
   ============================================ */
.artist-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.artist-card * {
    text-decoration: none !important;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(251, 191, 36, 0.15),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

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

.artist-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 80px rgba(251, 191, 36, 0.35);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(251, 191, 36, 0.2),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.artist-card:hover .card-glow {
    opacity: 1;
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(251, 191, 36, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.artist-card:hover .card-image::after {
    opacity: 1;
    left: 100%;
}

.card-img {
    transition: transform 0.4s ease;
}

.artist-card:hover .card-img {
    transform: scale(1.08);
}

/* Улучшенные эффекты для кнопок */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

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

.btn-primary:hover .btn-shine {
    left: 100%;
}

/* Анимация для бейджей */
.popular-badge,
.featured-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(251, 191, 36, 0.6);
    }
}

/* Анимация для статистики */
.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(251, 191, 36, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

/* Анимация для отзывов */
.review-item {
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateX(10px);
    background: rgba(251, 191, 36, 0.05);
}

/* Скелетоны для загрузки */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-card) 0%,
        var(--bg-card-hover) 50%,
        var(--bg-card) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 400px;
    border-radius: 16px;
}

.skeleton-avatar {
    width: 100%;
    height: 250px;
    border-radius: 16px 16px 0 0;
}

.skeleton-title {
    height: 24px;
    width: 80%;
    margin: 16px;
    border-radius: 6px;
}

.skeleton-text {
    height: 16px;
    width: 90%;
    margin: 8px 16px;
    border-radius: 4px;
}

.skeleton-price {
    height: 20px;
    width: 100px;
    margin: 16px;
    border-radius: 6px;
}

/* Уведомления */
.messages-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: var(--bg-card);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 450px;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    color: var(--text-primary);
    font-size: 14px;
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.notification-close:hover {
    color: var(--text-primary);
}

.notification-success {
    border-left: 4px solid var(--success);
}

.notification-error {
    border-left: 4px solid var(--error);
}

.notification-warning {
    border-left: 4px solid var(--warning);
}

.notification-info {
    border-left: 4px solid var(--accent);
}

/* Кнопки навигации */
.notification-btn,
.chat-btn-nav,
.favorites-btn-nav {
    position: relative;
    padding: 10px;
    color: var(--text-secondary);
    transition: var(--transition-base);
    border-radius: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.notification-btn:hover,
.chat-btn-nav:hover,
.favorites-btn-nav:hover {
    background: var(--bg-card-hover);
    color: var(--primary);
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 10;
    line-height: 1;
    display: inline-block !important;
    visibility: visible !important;
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--bg-dark);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

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

.mobile-nav-links {
    list-style: none;
    padding: 20px;
}

.mobile-nav-links li {
    margin-bottom: 10px;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition-base);
}

.mobile-nav-links a:hover {
    background: var(--bg-card-hover);
    color: var(--primary);
}

/* Бургер меню */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.burger .line {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 3px;
    transition: var(--transition-base);
}

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

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

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

/* Фильтры с ползунками */
.range-slider-container {
    padding: 20px;
}

.range-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-card-hover);
    outline: none;
    -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
    transition: var(--transition-base);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.7);
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
    transition: var(--transition-base);
}

.range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Календарь доступности */
.availability-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    padding: 20px;
}

.calendar-day {
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
}

.calendar-day:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.calendar-day.available {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--success);
}

.calendar-day.busy {
    background: rgba(239, 68, 68, 0.2);
    border-color: var(--error);
}

.calendar-day.unavailable {
    background: rgba(107, 114, 128, 0.2);
    border-color: var(--text-muted);
    opacity: 0.5;
}

.calendar-day .day-number {
    font-size: 16px;
}

.calendar-day .day-status {
    font-size: 10px;
    margin-top: 4px;
    text-transform: uppercase;
}

/* Чат */
.chat-list-container {
    max-width: 800px;
    margin: 0 auto;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-item:hover {
    background: var(--bg-card-hover);
    transform: translateX(5px);
}

.chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-card-hover);
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.chat-last-message {
    color: var(--text-secondary);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

.chat-time {
    font-size: 12px;
    color: var(--text-muted);
}

.chat-unread {
    background: var(--primary);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    min-width: 24px;
    text-align: center;
}

/* Аналитика */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.analytics-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.analytics-value {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.analytics-label {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.analytics-chart {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
}

/* Избранное */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.favorite-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
}

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

.favorite-remove {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.favorite-card:hover .favorite-remove {
    opacity: 1;
}

.favorite-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Адаптив */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .auth-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .messages-container {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .notification {
        min-width: auto;
        max-width: none;
    }
    
    .modal-window {
        width: 95%;
        margin: 10px;
    }
    
    .availability-calendar {
        grid-template-columns: repeat(7, 1fr);
        gap: 4px;
    }
    
    .calendar-day {
        border-radius: 8px;
        font-size: 12px;
    }
    
    .calendar-day .day-number {
        font-size: 14px;
    }
    
    .calendar-day .day-status {
        font-size: 8px;
    }
}

/* Кнопка избранного */
.btn-icon-favorite {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    color: var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition-base);
}

.btn-icon-favorite:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: var(--primary);
    transform: scale(1.05);
}

.btn-icon-favorite.active {
    background: rgba(239, 68, 68, 0.2);
    border-color: var(--error);
}

/* Модальное окно бронирования */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
}

.booking-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal {
    background: var(--bg-card);
    border-radius: 24px;
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

/* ============================================
   МОБИЛЬНАЯ ВЕРСИЯ - ИСПРАВЛЕНИЯ
   ============================================ */

/* Чтобы элементы не вылезали за экран */
@media (max-width: 768px) {
    /* Общие контейнеры */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Hero секции */
    .hero-section {
        padding: 80px 15px !important;
    }
    
    .hero-title {
        font-size: 28px !important;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
    }
    
    /* Карточки */
    .card, .artist-card, .stat-card {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Изображения */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Таблицы */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Кнопки */
    .btn-primary, .btn-secondary, .btn-large {
        padding: 14px 20px !important;
        font-size: 15px !important;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Формы */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="date"],
    textarea,
    select {
        max-width: 100%;
        font-size: 16px; /* Убирает зум на iPhone */
    }
    
    /* Модальные окна */
    .modal, .booking-modal {
        padding: 10px;
    }
    
    .modal-content, .booking-modal-content {
        max-width: 95% !important;
        margin: 10px auto !important;
    }
    
    /* Dashboard */
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .dashboard-card {
        padding: 15px !important;
    }
    
    .booking-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Artist profile - упрощаем для мобильных */
    .artist-info-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .artist-content-grid {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }

    .artist-hero-modern {
        height: auto !important;
        min-height: 400px !important;
        padding: 40px 0 !important;
    }

    .artist-hero-content-modern {
        flex-direction: column !important;
        text-align: center;
        padding: 20px !important;
    }

    .artist-hero-grid-modern {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .artist-hero-avatar-modern {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto !important;
    }

    .artist-hero-avatar-wrapper-modern {
        margin-bottom: 20px !important;
    }

    .artist-hero-info-modern h1 {
        font-size: 26px !important;
        margin-bottom: 10px !important;
    }

    .artist-hero-category-modern {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }

    /* Скрываем статистику в hero на мобильных */
    .artist-hero-stats-modern {
        display: none !important;
    }

    .artist-actions-modern {
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }

    .artist-actions-modern .btn-primary,
    .artist-actions-modern .btn-secondary {
        width: 100% !important;
    }

    .artist-main-content {
        grid-template-columns: 1fr !important;
    }

    .artist-sidebar {
        display: block !important; /* Показываем на мобильных */
        margin-top: 30px;
    }

    .artist-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .artist-features .feature-item {
        padding: 15px !important;
        min-height: auto !important;
    }

    .shape {
        display: none !important; /* Убираем плавающие элементы */
    }

    /* Галерея */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Услуги */
    .services-grid-modern {
        grid-template-columns: 1fr !important;
    }

    .service-card-modern {
        padding: 15px !important;
    }

    /* Отзывы */
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }

    /* Кнопки действий */
    .action-buttons-fixed {
        position: static !important;
        flex-direction: column !important;
        gap: 10px !important;
        padding: 15px !important;
        background: var(--bg-card) !important;
        border-top: 1px solid rgba(251, 191, 36, 0.2) !important;
    }

    .action-buttons-fixed .btn-primary,
    .action-buttons-fixed .btn-secondary {
        width: 100% !important;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Services */
    .services-grid, .services-grid-modern {
        grid-template-columns: 1fr !important;
    }
    
    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr !important;
    }
    
    .stat-card-value {
        font-size: 28px !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

.booking-modal-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.booking-modal-close {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--bg-card-hover);
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

.booking-modal-close:hover {
    background: var(--primary);
    color: #000;
    transform: rotate(90deg);
}

.booking-modal-body {
    padding: 30px;
}

.booking-form-group {
    margin-bottom: 20px;
}

.booking-form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form-input,
.booking-form-select,
.booking-form-textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-card-hover);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
}

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

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

.booking-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}
