/* CSS Variables */
:root {
    --bg-primary: #0a0f12;
    --bg-secondary: #121c24;
    --text-primary: #ffffff;
    --text-secondary: #b8d0e0;
    --text-muted: #8aa0b8;
    --accent-gradient: linear-gradient(135deg, #00b8ff, #00ebaa, #3a7bd5);
    --accent-gradient-hover: linear-gradient(135deg, #33ccff, #33ffcc, #5e9eff);
    --glass-bg: rgba(10, 25, 35, 0.85);
    --glass-border: rgba(0, 200, 255, 0.1);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(12px);
    --whatsapp-color: #25D366;
    --whatsapp-hover: #20b859;
    --transition-smooth: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elegant: all 0.3s ease-in-out;
    --shadow-elegant: 0 8px 32px rgba(0, 184, 255, 0.3);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.6);
    --gold-accent: linear-gradient(135deg, #ffd700, #ffa500);
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Heebo', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* ========== PREMIUM HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(0 0 0 / 85%);
    ackdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-elegant);
}

.site-header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-elegant);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* ========== PREMIUM LOGO ========== */
.logo-link {
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.logo-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ========== PREMIUM PHONE ========== */
.header-phone {
    margin-left: auto;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    transition: var(--transition-elegant);
    position: relative;
    overflow: hidden;
}

.phone-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: left 0.4s ease;
    z-index: -1;
}

.phone-link:hover {
    border-color: transparent;
    color: white;
}

.phone-link:hover::before {
    left: 0;
}

.phone-icon {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* ========== DESKTOP NAVIGATION ========== */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: block;
        margin-right: auto;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.2rem;
}

.nav-list > .menu-item {
    position: relative;
}

.nav-list > .menu-item > a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem 0.8rem;
    transition: var(--transition-elegant);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    border-radius: 6px;
}

.nav-list > .menu-item > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-list > .menu-item > a:hover {
    color: var(--text-primary);
}

.nav-list > .menu-item > a:hover::before {
    transform: scaleX(1);
}

/* ========== DROPDOWN MENU - FIXED VERSION ========== */
.menu-item-has-children {
    position: relative;
}

/* Невидимый мост между пунктом меню и подменю */
.menu-item-has-children::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
    z-index: 101;
}

.sub-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 280px;
    background: rgba(20, 20, 35, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    list-style: none;
    z-index: 100;
    box-shadow: var(--shadow-elegant);
    pointer-events: none;
    border-top: 2px solid transparent;
    border-image: var(--accent-gradient);
    border-image-slice: 1;
    /* УБРАН СКРОЛЛ - теперь высота автоматическая */
    max-height: none;
    overflow-y: visible;
}

/* Показываем подменю при наведении на родительский пункт ИЛИ на само подменю */
.menu-item-has-children:hover .sub-menu,
.sub-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px) scale(1);
    pointer-events: all;
    transition-delay: 0.1s;
}

/* Декоративный треугольник */
.sub-menu::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item-has-children:hover .sub-menu::after,
.sub-menu:hover::after {
    opacity: 1;
}

/* Каскадная анимация пунктов подменю */
.sub-menu li {
    padding: 0.3rem 1.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    transition-delay: calc(0.05s * var(--item-index));
}

.menu-item-has-children:hover .sub-menu li,
.sub-menu:hover li {
    opacity: 1;
    transform: translateX(0);
}

/* Счетчики для каскадной анимации */
.sub-menu li:nth-child(1) { --item-index: 1; }
.sub-menu li:nth-child(2) { --item-index: 2; }
.sub-menu li:nth-child(3) { --item-index: 3; }
.sub-menu li:nth-child(4) { --item-index: 4; }
.sub-menu li:nth-child(5) { --item-index: 5; }
.sub-menu li:nth-child(6) { --item-index: 6; }
.sub-menu li:nth-child(7) { --item-index: 7; }
.sub-menu li:nth-child(8) { --item-index: 8; }
.sub-menu li:nth-child(9) { --item-index: 9; }
.sub-menu li:nth-child(10) { --item-index: 10; }
.sub-menu li:nth-child(11) { --item-index: 11; }
.sub-menu li:nth-child(12) { --item-index: 12; }
.sub-menu li:nth-child(13) { --item-index: 13; }
.sub-menu li:nth-child(14) { --item-index: 14; }
.sub-menu li:nth-child(15) { --item-index: 15; }

/* Стили для ссылок в подменю - УБРАНО ПОДЧЕРКИВАНИЕ */
.sub-menu a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: block;
    padding: 0.7rem 0;
    /* Убрано border-bottom */
    border-bottom: none;
    transition: var(--transition-elegant);
    position: relative;
    padding-right: 1.8rem;
    font-weight: 500;
    text-decoration: none; /* Явно убираем подчеркивание */
}

/* Добавляем тонкий разделитель через псевдоэлемент вместо border-bottom */
.sub-menu li:not(:last-child) a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.sub-menu a::before {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition-elegant);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.1rem;
}

.sub-menu a:hover {
    color: var(--text-primary);
    transform: translateX(-8px);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.sub-menu a:hover::before {
    opacity: 1;
    right: -5px;
}

/* ========== DROPDOWN ARROW ========== */
.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-right: 0.3rem;
}

.menu-item-has-children:hover .dropdown-arrow {
    transform: rotate(180deg) translateY(-2px);
}

/* Альтернативная треугольная стрелка */
.triangle-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
    margin-right: 0.3rem;
}

.menu-item-has-children:hover .triangle-arrow {
    transform: rotate(180deg);
}

/* ========== WHATSAPP BUTTON ========== */
header .whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--whatsapp-color);
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

header .whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

header .whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: var(--whatsapp-hover);
}

header .whatsapp-btn:hover::before {
    width: 300px;
    height: 300px;
}

header .whatsapp-icon {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* ========== BURGER MENU ========== */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00c7e7, #02e9ab);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    /* background: linear-gradient(90deg, #9F7AEA, #F472B6); */
}

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

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    /* background: linear-gradient(90deg, #9F7AEA, #F472B6); */
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    padding: 100px 2rem 2rem;
    overflow-y: auto;
    z-index: 1;
}

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

.mobile-nav-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

/* Анимация появления пунктов мобильного меню */
.mobile-menu-item {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.5s ease forwards;
}

.mobile-menu-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu-item:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu-item:nth-child(6) { animation-delay: 0.6s; }
.mobile-menu-item:nth-child(7) { animation-delay: 0.7s; }
.mobile-menu-item:nth-child(8) { animation-delay: 0.8s; }
.mobile-menu-item:nth-child(9) { animation-delay: 0.9s; }
.mobile-menu-item:nth-child(10) { animation-delay: 1s; }

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

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

.mobile-menu-item > a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    transition: var(--transition-elegant);
}

.mobile-menu-item > a:hover {
    color: transparent;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Мобильное подменю */
.mobile-sub-menu {
    list-style: none;
    padding-right: 1.5rem;
    margin: 0.5rem 0 1rem;
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

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

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

.mobile-menu-item-has-children.active .mobile-sub-menu {
    display: block;
}

.mobile-sub-menu li {
    margin-bottom: 0.5rem;
    animation: slideDown 0.3s ease forwards;
    transform-origin: top;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.mobile-sub-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition-elegant);
    position: relative;
    padding-right: 1rem;
    /* Убираем подчеркивание */
    border-bottom: none;
}

/* Добавляем тонкий разделитель для мобильного меню */
.mobile-sub-menu li:not(:last-child) a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.mobile-sub-menu a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-gradient);
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition-elegant);
}

.mobile-sub-menu a:hover {
    color: var(--text-primary);
    transform: translateX(-5px);
}

.mobile-sub-menu a:hover::before {
    opacity: 1;
    width: 8px;
    height: 8px;
}

/* Мобильная стрелка */
.mobile-dropdown-arrow {
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-menu-item-has-children.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

/* Мобильный телефон */
.mobile-phone {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-elegant);
}

.mobile-phone-link:hover {
    border-color: transparent;
    background: var(--accent-gradient);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ========== VIEW ALL CITIES ========== */
.view-all-cities {
    color: transparent !important;
    background: var(--accent-gradient);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    font-weight: 700 !important;
    position: relative;
    text-decoration: none !important;
}

.view-all-cities::after {
    content: '→';
    margin-right: 0.5rem;
    color: transparent;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    transition: transform 0.3s ease;
}

.view-all-cities:hover::after {
    transform: translateX(-5px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-container {
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo-link {
        font-size: 1.6rem;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-btn {
        padding: 0.7rem;
        border-radius: 50%;
    }

    .whatsapp-icon {
        width: 22px;
        height: 22px;
    }

    .mobile-menu-item > a {
        font-size: 1.2rem;
    }

    .mobile-sub-menu a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.6rem 1rem;
    }

    .logo-link {
        font-size: 1.4rem;
    }

    .mobile-menu {
        padding: 80px 1rem 2rem;
    }

    .mobile-menu-item > a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }

    .mobile-phone-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes subtlePulse {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
    }
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
}

.sub-menu:hover {
    animation: subtlePulse 2s infinite;
}

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

.sub-menu {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.98), rgba(30, 30, 45, 0.98));
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

/* ========== UTILITY CLASSES ========== */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

/* ========== RTL SPECIFIC ========== */
.rtl .sub-menu {
    right: 0;
    left: auto;
}

.rtl .sub-menu a {
    padding-right: 1.8rem;
    padding-left: 0;
}

.rtl .sub-menu a::before {
    right: 0;
    left: auto;
    content: '←'; /* Меняем направление стрелки для RTL */
}

.rtl .mobile-sub-menu {
    padding-right: 1.5rem;
    padding-left: 0;
}

.rtl .mobile-sub-menu a {
    padding-right: 1rem;
    padding-left: 0;
}

.rtl .mobile-sub-menu a::before {
    right: 0;
    left: auto;
}

.rtl .view-all-cities::after {
    margin-right: 0.5rem;
    margin-left: 0;
    content: '←'; /* Меняем направление стрелки для RTL */
}

.rtl .sub-menu a:hover {
    transform: translateX(8px); /* Меняем направление для RTL */
}

.rtl .mobile-sub-menu a:hover {
    transform: translateX(5px); /* Меняем направление для RTL */
}





/* ========== PREMIUM FOOTER ========== */
.site-footer {
    position: relative;
    margin-top: 4rem;
    background: rgb(0 255 245 / 6%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 1.5rem;
    transition: var(--transition-elegant);
}

.glass-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Сетка футера */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Колонки */
.footer-col {
    position: relative;
}

.footer-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

/* Меню футера */
.footer-menu {
    list-style: none;
}

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

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-elegant);
    position: relative;
    display: inline-block;
    padding-right: 0;
}

.footer-link::before {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition-elegant);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1rem;
}

.footer-link:hover {
    color: var(--text-primary);
    transform: translateX(-5px);
    padding-right: 5px;
}

.footer-link:hover::before {
    opacity: 1;
    right: -20px;
}

/* Контактная информация */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.8rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-elegant);
    padding: 0.3rem 0;
}

.contact-link:hover {
    color: var(--text-primary);
    transform: translateX(-5px);
}

.contact-icon {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    transition: var(--transition-elegant);
}

.contact-link:hover .contact-icon {
    transform: scale(1.1);
    color: transparent;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.whatsapp-contact {
    color: var(--whatsapp-color);
    font-weight: 600;
}

.whatsapp-contact:hover {
    color: var(--whatsapp-hover);
}

.address {
    cursor: default;
}

.address:hover {
    transform: none;
    color: var(--text-secondary);
}

/* Нижняя строка футера */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-copyright {
    font-weight: 500;
}

.footer-bottom-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bottom-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-elegant);
    position: relative;
}

.bottom-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.bottom-link:hover::after {
    transform: scaleX(1);
}

.separator {
    color: rgb(0 200 255);
    font-weight: 300;
}

.age-restriction {
    background: var(--accent-gradient);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

/* ========== RTL SPECIFIC FOR FOOTER ========== */
.rtl .footer-title::after {
    right: 0;
    left: auto;
}

.rtl .footer-link::before {
    content: '←';
    right: auto;
    left: -15px;
}

.rtl .footer-link:hover {
    transform: translateX(5px);
    padding-right: 0;
    padding-left: 5px;
}

.rtl .footer-link:hover::before {
    right: auto;
    left: -20px;
}

.rtl .contact-link:hover {
    transform: translateX(5px);
}

.rtl .bottom-link::after {
    left: auto;
    right: 0;
}

/* ========== FOOTER RESPONSIVE ========== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-link {
        display: inline-block;
    }

    .contact-link {
        justify-content: center;
    }

    .footer-bottom-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        /* display: none; */
    }
}

/* Анимация для age-restriction */
@keyframes pulseAge {
    0% {
        box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.6);
    }
    100% {
        box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
    }
}

.age-restriction {
    animation: pulseAge 2s infinite;
}

/* Украшательство: декоративная линия над футером */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(139, 92, 246, 0.5), 
        rgba(236, 72, 153, 0.5), 
        rgba(59, 130, 246, 0.5), 
        transparent
    );
}












/* Финальная CTA секция */
.cta-section {
    padding: 60px 0;
    /* background: linear-gradient(135deg, #0a0f12, #0e1a1f); */
    position: relative;
    overflow: hidden;
}



.cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Заголовок */
.cta-header {
    text-align: center;
    margin-bottom: 50px;
}

.cta-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.02);
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.03);
}

.cta-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 400;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

/* Красивая форма */
.elegant-form {
    position: relative;
    margin-bottom: 30px;
}

.form-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,184,255,0.2) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.3;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.05); }
}

.elegant-form-fields {
    background: rgba(20, 30, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(255,255,255,0.02);
    position: relative;
    z-index: 2;
}

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

.form-row.single {
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

/* Поле формы */
.form-field {
    position: relative;
}

.field-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    z-index: 3;
    transition: color 0.3s ease;
}

.form-field:hover .field-icon {
    color: #00b8ff;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-family: inherit;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 184, 255, 0.3);
}

.form-field input::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238aa0b8' 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: left 20px center;
    padding-left: 45px;
}

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

/* Анимированная граница */
.field-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
    z-index: 3;
}

.form-field input:focus ~ .field-border,
.form-field select:focus ~ .field-border {
    width: calc(100% - 40px);
}

/* Кнопки действий */
.cta-actions {
    display: flex;
    gap: 20px;
    margin: 30px 0 20px;
}

.action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 25px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    color: white;
}


.btn-icon,
.btn-text,
.btn-arrow {
    position: relative;
    z-index: 2;
}

.btn-arrow {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.action-btn:hover .btn-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 15px 30px -10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px #25D366;
}

.call-btn {
    background: var(--accent-gradient);
    box-shadow: 0 15px 30px -10px rgba(0, 184, 255, 0.3);
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px #00b8ff;
}

/* Дисклеймер */
.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    margin-top: 20px;
}

.cta-note svg {
    color: #00b8ff;
    opacity: 0.5;
}

.cta-note span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Адаптивность */
@media screen and (max-width: 1024px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 42px;
    }
    
    .elegant-form-fields {
        padding: 35px;
    }
}

@media screen and (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-container {
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: 38px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .elegant-form-fields {
        padding: 30px 25px;
        border-radius: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-field input,
    .form-field select {
        padding: 16px 45px 16px 18px;
        font-size: 15px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-btn {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .cta-note {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
}

@media screen and (max-width: 480px) {
    .cta-title {
        font-size: 32px;
    }
    
    .elegant-form-fields {
        padding: 25px 20px;
    }
    
    .form-field input,
    .form-field select {
        padding: 15px 40px 15px 16px;
        font-size: 14px;
    }
    
    .action-btn {
        font-size: 15px;
    }
}

/* Анимация появления */
.cta-header {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.elegant-form {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.cta-actions {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.cta-note {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

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





















/* ===== ОСНОВНОЙ ФОН BODY ===== */
body {
    background: #080c0f;
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Главный градиентный фон - чуть темнее */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 184, 255, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(0, 255, 184, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 35% 75%, rgba(58, 123, 213, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 65% 15%, rgba(0, 184, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 95% 35%, rgba(0, 255, 184, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 5% 55%, rgba(58, 123, 213, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 45% 45%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    filter: blur(90px);
    animation: universeBreath 25s ease-in-out infinite;
    pointer-events: none;
    z-index: -3;
    opacity: 0.75;
}

/* Второй слой - затемняющая дымка */
.atmosphere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(0 0 0) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(0 0 0) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

/* Третий слой - мягкие звезды (чуть тусклее) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1.5px 1.5px at 5% 10%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 20% 35%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 28% 48%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 35% 60%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 42% 72%, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 50% 85%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 58% 15%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 65% 28%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 72% 40%, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 80% 52%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 88% 65%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 95% 78%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 98% 90%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 15% 95%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 25% 82%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 40% 92%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 55% 20%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 70% 45%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 85% 70%, rgba(255,255,255,0.5), transparent);
    background-size: 600px 600px;
    opacity: 0.3;
    animation: starsSoftTwinkle 12s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Четвертый слой - туманность (приглушенная) */
.soft-nebula {
    position: fixed;
    top: -15%;
    left: -15%;
    width: 130%;
    height: 130%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 130, 180, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(0, 180, 130, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 45% 70%, rgba(40, 80, 160, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 25%, rgba(0, 130, 180, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 180, 130, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 55% 35%, rgba(160, 130, 0, 0.02) 0%, transparent 60%);
    filter: blur(70px);
    animation: softNebulaDrift 35s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Пятый слой - легкая текстура */
.soft-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 120px, rgba(255,255,255,0.008) 120px, rgba(0,130,180,0.008) 121px),
        repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(255,255,255,0.008) 120px, rgba(0,180,130,0.008) 121px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

/* Шестой слой - мягкие блики */
.soft-glitter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 10% 20%, rgba(0,184,255,0.12), transparent),
        radial-gradient(1px 1px at 20% 50%, rgba(0,255,184,0.12), transparent),
        radial-gradient(1px 1px at 30% 80%, rgba(200,170,0,0.08), transparent),
        radial-gradient(1px 1px at 40% 10%, rgba(58,123,213,0.12), transparent),
        radial-gradient(1px 1px at 50% 60%, rgba(0,184,255,0.12), transparent),
        radial-gradient(1px 1px at 60% 30%, rgba(0,255,184,0.08), transparent),
        radial-gradient(1px 1px at 70% 90%, rgba(200,170,0,0.12), transparent),
        radial-gradient(1px 1px at 80% 40%, rgba(58,123,213,0.08), transparent),
        radial-gradient(1px 1px at 90% 70%, rgba(0,184,255,0.12), transparent);
    background-size: 350px 350px;
    opacity: 0.15;
    animation: softGlitterPulse 7s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

/* Седьмой слой - усиленное виньетирование */
.soft-vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
    z-index: 3;
    opacity: 0.5;
}

/* Анимации */
@keyframes universeBreath {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.65;
    }
    33% {
        transform: scale(1.03) rotate(0.5deg);
        opacity: 0.75;
    }
    66% {
        transform: scale(0.98) rotate(-0.5deg);
        opacity: 0.65;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.65;
    }
}

@keyframes starsSoftTwinkle {
    0%, 100% { opacity: 0.25; }
    33% { opacity: 0.3; }
    66% { opacity: 0.35; }
}

@keyframes softNebulaDrift {
    0% {
        transform: translate(-2%, -2%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(2%, 2%) scale(1.03);
        opacity: 0.4;
    }
    100% {
        transform: translate(-2%, 2%) scale(0.98);
        opacity: 0.3;
    }
}

@keyframes softGlitterPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

/* Адаптивность */
@media (max-width: 1024px) {
    body {
        background: #070b0e;
    }
    
    body::before {
        filter: blur(70px);
        opacity: 0.65;
    }
    
    .soft-nebula {
        filter: blur(60px);
        opacity: 0.35;
    }
    
    .soft-vignette {
        opacity: 0.45;
    }
}

@media (max-width: 768px) {
    body {
        background: #060a0d;
    }
    
    body::before {
        opacity: 0.55;
        filter: blur(60px);
    }
    
    body::after {
        opacity: 0.25;
    }
    
    .soft-nebula {
        opacity: 0.25;
        filter: blur(50px);
    }
    
    .soft-texture {
        opacity: 0.12;
    }
    
    .soft-glitter {
        opacity: 0.12;
    }
    
    .soft-vignette {
        opacity: 0.4;
    }
}

/* Плавное появление контента */
body * {
    position: relative;
    z-index: 10;
}









        a {
            text-decoration: none;
        }

        .dancer-profile {
            max-width: 1400px;
            margin: 80px auto 0 auto;
            padding: 2rem 1.5rem 5rem;
        }

        /* Навигационная цепочка */
        .breadcrumbs {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            color: var(--text-muted);
            font-size: 0.95rem;
            flex-wrap: wrap;
        }

        .breadcrumbs a {
            color: var(--text-secondary);
            transition: color 0.3s ease;
        }

        .breadcrumbs a:hover {
            color: #00b8ff;
        }

        .breadcrumbs .separator {
            margin: 0 0.25rem;
        }

        .breadcrumbs .current {
            color: var(--text-primary);
            font-weight: 500;
        }

        























/* Секция FAQ */
.faq-section {
    padding: 60px 0;
    /* background: var(--bg-primary); */
    position: relative;
    overflow: hidden;
}


.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Заголовок секции */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 400;
    /* display: flex; */
    /* justify-content: center; */
}

.title-line {
    /* display: block; */
}

.gradient-text {
    /* background: var(--accent-gradient); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    /* font-weight: 500; */
}

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

/* FAQ список */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 50px 0;
}

/* Элемент FAQ */
.faq-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 184, 255, 0.2);
    box-shadow: 0 10px 25px -10px rgba(0, 184, 255, 0.2);
}

/* Вопрос */
.faq-question {
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,184,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::after {
    opacity: 1;
}

.question-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.question-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 184, 255, 0.05);
    border-radius: 50%;
    color: #00b8ff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .question-icon {
    transform: rotate(180deg);
    background: var(--accent-gradient);
    color: white;
}

/* Ответ */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Достаточно для любого ответа */
}

.answer-content {
    padding: 0 25px 25px 25px;
}

.answer-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
}

.answer-content a {
    color: #00b8ff;
    text-decoration: none;
    /* border-bottom: 1px solid rgba(0,184,255,0.25); */
    transition: var(--transition-elegant);
}
.answer-content a:hover {
    color: #00ebaa;
    border-bottom-color: rgba(0,235,170,0.4);
}
/* Адаптивность */
@media screen and (max-width: 1024px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-container {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .question-text {
        font-size: 16px;
    }
    
    .answer-content {
        padding: 0 20px 20px 20px;
    }
    
    .answer-content p {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 32px;
    }
    
    .faq-question {
        padding: 16px 18px;
    }
    
    .question-text {
        font-size: 15px;
    }
    
    .question-icon {
        width: 28px;
        height: 28px;
    }
    
    .answer-content p {
        font-size: 14px;
    }
}

/* Анимация появления */
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: faqFadeIn 0.5s ease forwards;
}

@keyframes faqFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:nth-child(1) { animation-delay: 0.02s; }
.faq-item:nth-child(2) { animation-delay: 0.04s; }
.faq-item:nth-child(3) { animation-delay: 0.06s; }
.faq-item:nth-child(4) { animation-delay: 0.08s; }
.faq-item:nth-child(5) { animation-delay: 0.10s; }
.faq-item:nth-child(6) { animation-delay: 0.12s; }
.faq-item:nth-child(7) { animation-delay: 0.14s; }
.faq-item:nth-child(8) { animation-delay: 0.16s; }
.faq-item:nth-child(9) { animation-delay: 0.18s; }
.faq-item:nth-child(10) { animation-delay: 0.20s; }

































/* =========================================
   CITY PAGE
   Excludes: .breadcrumbs, .faq-section,
   .action-btn, .bottom-cta-section,
   .review-card, .section-header
   ========================================= */

.city-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   HERO — bg image from thumbnail
   ========================================= */
.city-hero {
    position: relative;
    padding: 80px 0 70px;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    margin-top: 80px;
}

.city-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 12, 15, 0.97) 0%,
        rgba(8, 12, 15, 0.85) 40%,
        rgba(8, 12, 15, 0.45) 100%
    );
    z-index: 1;
}

.city-hero .city-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.city-hero-content {
    max-width: 750px;
}

.city-hero-title {
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 18px;
    color: var(--text-primary);
}

.city-hero-subtitle {
    font-size: clamp(15px, 2.2vw, 17px);
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 300;
    margin: 0 0 28px;
}

.city-hero-cta {
    justify-content: flex-start;
}



.city-districts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.city-district-card {
    padding: 28px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-elegant);
    direction: rtl;
}

.city-district-card:hover {
    border-color: rgba(0, 184, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 184, 255, 0.08);
    transform: translateY(-3px);
}

.city-district-header {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 10px; margin-bottom: 12px; flex-wrap: wrap;
}

.city-district-header h3 {
    font-size: 17px; font-weight: 700;
    color: var(--text-primary); margin: 0;
}

.city-district-tag {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 12px; border-radius: 50px;
    background: rgba(0, 184, 255, 0.08);
    color: #00b8ff;
    border: 1px solid rgba(0, 184, 255, 0.15);
    white-space: nowrap;
}

.city-district-card p {
    font-size: 14px; color: var(--text-secondary);
    line-height: 1.7; margin: 0;
}

.city-district-card a {
    color: #00b8ff; text-decoration: none;
    transition: var(--transition-elegant);
}

.city-district-card a:hover { color: #00ebaa; }

/* =========================================
   EVENTS — 4 cards
   ========================================= */
.city-events { padding: 60px 0; }

.city-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.city-event-card {
    padding: 28px 24px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: var(--transition-elegant);
    direction: rtl;
}

.city-event-card:hover {
    border-color: rgba(0, 235, 170, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 235, 170, 0.08);
}

.city-event-period {
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: #00ebaa; margin-bottom: 10px;
}

.city-event-card h3 {
    font-size: 17px; font-weight: 700;
    color: var(--text-primary); margin: 0 0 10px;
}

.city-event-card h3 a {
    color: inherit; text-decoration: none;
    transition: var(--transition-elegant);
}

.city-event-card h3 a:hover { color: #00b8ff; }

.city-event-card p {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.6; margin: 0;
}

.city-event-card p a {
    color: #00b8ff; text-decoration: none;
}

.city-event-card p a:hover { color: #00ebaa; }

/* =========================================
   PRICING
   ========================================= */
.city-pricing { padding: 40px 0; }

.city-pricing-box {
    display: flex;
    align-items: center; justify-content: space-between;
    gap: 40px; padding: 36px 40px;
    background: linear-gradient(135deg, rgba(0,184,255,0.06), rgba(0,235,170,0.06));
    border: 1px solid rgba(0, 235, 170, 0.2);
    border-radius: 24px; direction: rtl;
}

.city-pricing-content { flex: 1; }

.city-pricing-content h2 {
    font-size: clamp(18px, 3vw, 22px); font-weight: 700;
    color: var(--text-primary); margin: 0 0 10px;
}

.city-pricing-content p {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.7; margin: 0;
}

.city-pricing-price { text-align: center; flex-shrink: 0; }

.city-pricing-from {
    display: block; font-size: 13px;
    color: var(--text-muted); margin-bottom: 4px;
}

.city-pricing-amount {
    font-size: 48px; font-weight: 800;
    background: linear-gradient(135deg, #00b8ff, #00ffb8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}

.city-pricing-currency {
    font-size: 20px; color: var(--text-secondary); margin-right: 4px;
}

.city-pricing-link {
    display: block; margin-top: 8px; font-size: 13px;
    color: #00b8ff; text-decoration: none;
    transition: var(--transition-elegant);
}

.city-pricing-link:hover { color: #00ebaa; }

/* =========================================
   REVIEWS — дополнение
   ========================================= */
.city-reviews { padding: 60px 0; }

.city-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* =========================================
   NEARBY CITIES — image + title + desc
   ========================================= */
.city-nearby { padding: 60px 0; }

.city-nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.city-nearby-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-decoration: none;
    transition: var(--transition-elegant);
}

.city-nearby-card:hover {
    border-color: rgba(0, 184, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 184, 255, 0.12);
}

/* Image */
.city-nearby-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 184, 255, 0.05);
}

.city-nearby-image--placeholder {
    background: linear-gradient(135deg, rgba(0,184,255,0.08), rgba(0,235,170,0.08));
}

.city-nearby-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(18, 28, 36, 0.7) 0%,
        transparent 60%
    );
    transition: var(--transition-elegant);
}

.city-nearby-card:hover .city-nearby-image-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 184, 255, 0.3) 0%,
        transparent 60%
    );
}

/* Body */
.city-nearby-body {
    padding: 18px 20px 22px;
    direction: rtl;
}

.city-nearby-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
    transition: var(--transition-elegant);
}

.city-nearby-card:hover .city-nearby-name {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.city-nearby-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Отзывы */
        .reviews-section {
            margin-bottom: 1rem;
        }

        .reviews-grid {
            display: grid;
            gap: 1rem;
        }

        .review-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 1.2rem;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            border-color: #00b8ff;
            transform: translateY(-3px);
        }

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

        .review-author {
            font-weight: 700;
            color: var(--text-primary);
        }

        .review-rating {
            color: #ffd700;
            display: flex;
            gap: 0.25rem;
        }

        .review-text {
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 0.5rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .review-event {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .review-event-icon {
            color: #00b8ff;
        }
/* =========================================
   MOBILE
   ========================================= */
@media (max-width: 1024px) {
    .city-services-grid { grid-template-columns: repeat(2, 1fr); }
    .city-events-grid { grid-template-columns: repeat(2, 1fr); }
    .city-reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .city-nearby-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .city-hero {/* padding: 50px 0 40px; */min-height: 350px;margin-top: 60px;}
    .city-hero-cta { flex-direction: column; }
    .city-hero-cta .action-btn { width: 100%; }

    .city-services, .city-districts,
    .city-events, .city-reviews,
    .city-nearby { padding: 40px 0; }

    .city-container { padding: 0 1.25rem; }

    .city-services-grid,
    .city-districts-grid { grid-template-columns: 1fr; }
    .city-events-grid { grid-template-columns: 1fr; }
    .city-reviews-grid { grid-template-columns: 1fr; }
    .city-nearby-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .city-pricing-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px; gap: 20px;
    }
    .city-pricing-amount { font-size: 40px; }
}

@media (max-width: 480px) {
    .city-hero {p;/* padding: 80px 0 30px; *//* min-height: 480px; */}
    .city-service-card, .city-district-card,
    .city-event-card { padding: 20px; }
    .city-nearby-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
.city-service-card, .city-district-card,
.city-event-card, .city-nearby-card {
    opacity: 0; transform: translateY(20px);
    animation: cityCardIn 0.5s ease forwards;
}

@keyframes cityCardIn {
    to { opacity: 1; transform: translateY(0); }
}

.city-service-card:nth-child(1)  { animation-delay: 0.02s; }
.city-service-card:nth-child(2)  { animation-delay: 0.04s; }
.city-service-card:nth-child(3)  { animation-delay: 0.06s; }
.city-service-card:nth-child(4)  { animation-delay: 0.08s; }
.city-service-card:nth-child(5)  { animation-delay: 0.10s; }
.city-service-card:nth-child(6)  { animation-delay: 0.12s; }
.city-service-card:nth-child(7)  { animation-delay: 0.14s; }
.city-service-card:nth-child(8)  { animation-delay: 0.16s; }
.city-service-card:nth-child(9)  { animation-delay: 0.18s; }

.city-nearby-card:nth-child(1)  { animation-delay: 0.03s; }
.city-nearby-card:nth-child(2)  { animation-delay: 0.06s; }
.city-nearby-card:nth-child(3)  { animation-delay: 0.09s; }
.city-nearby-card:nth-child(4)  { animation-delay: 0.12s; }
.city-nearby-card:nth-child(5)  { animation-delay: 0.15s; }
.city-nearby-card:nth-child(6)  { animation-delay: 0.18s; }
.city-nearby-card:nth-child(7)  { animation-delay: 0.21s; }
.city-nearby-card:nth-child(8)  { animation-delay: 0.24s; }
.city-nearby-card:nth-child(9)  { animation-delay: 0.27s; }







































/*  Стили для секции с похожими танцовщицами */

  .related-dancers-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.related-dancers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Section Header (без бейджа) */
.related-dancers-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.related-dancers-section .section-title {
    margin-bottom: 1.5rem;
    /* text-align: center; */
    display: block;
}

.related-dancers-section .section-title .title-line {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    /* line-height: 1.3; */
}

.related-dancers-section .section-title .gradient-text {
    /* background: var(--accent-gradient); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
}

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

/* Dancers Grid - 4 колонки */
.dancers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Dancer Card - вся карточка ссылка */
.dancer-card {
    display: block;
    text-decoration: none;
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition-smooth);
    aspect-ratio: 3/4;
    position: relative;
    box-shadow: var(--shadow-elegant);
}

.dancer-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
}

/* Затемнение */
.dancer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
    transition: var(--transition-elegant);
}

.dancer-card:hover .dancer-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 184, 255, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* Контент карточки */
.dancer-card-content {
    position: relative;
    padding: 2rem 1.5rem;
    z-index: 2;
    width: 100%;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.dancer-card:hover .dancer-card-content {
    transform: translateY(0);
}

/* Имя танцовщицы */
.related-dancers-section .dancer-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Услуги в стиле сайта */
.related-dancers-section .dancer-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.related-dancers-section .dancer-service {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.related-dancers-section .dancer-service:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 184, 255, 0.4);
}

/* Card без изображения */
.related-dancers-section .dancer-card-image:not([style*="url"]) {
    background: var(--accent-gradient);
}

.related-dancers-section .dancer-card-image:not([style*="url"]) .dancer-overlay {
    display: none;
}

/* No Dancers Message */
.no-dancers {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Dancers Footer */
.dancers-footer {
    text-align: center;
    margin-top: 2rem;
}

.related-dancers-section .dancers-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 184, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.dancers-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 184, 255, 0.5);
}

.dancers-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-arrow {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.dancers-btn:hover .btn-arrow {
    transform: translateX(5px);
}



/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .dancers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .related-dancers-section {
        padding: 60px 0;
    }

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

    .dancer-card-content {
        padding: 1.5rem;
        transform: translateY(20px);
    }

    .related-dancers-section .dancer-name {
        /* font-size: 1.5rem; */
    }

    .related-dancers-section .dancer-service {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .related-dancers-section .section-title .title-line {
        font-size: 1.8rem;
    }

    .related-dancers-section .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .related-dancers-container {
        padding: 0 1rem;
    }

    .dancers-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.8rem;
    }

    .dancer-card-content {
        padding: 1rem;
        transform: translateY(15px);
    }

   .related-dancers-section .dancer-name {
        /* font-size: 1.2rem; */
        /* margin-bottom: 0.5rem; */
    }

    .related-dancers-section .dancer-service {
        /* font-size: 0.6rem; */
        /* padding: 0.2rem 0.6rem; */
    }

    .related-dancers-section .dancers-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Анимация появления карточек */
@keyframes dancerCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dancer-card {
    animation: dancerCardFadeIn 0.8s ease forwards;
    opacity: 0;
}

.dancer-card:nth-child(1) { animation-delay: 0.1s; }
.dancer-card:nth-child(2) { animation-delay: 0.2s; }
.dancer-card:nth-child(3) { animation-delay: 0.3s; }
.dancer-card:nth-child(4) { animation-delay: 0.4s; }










/* =========================================
   SERVICE PAGE — only NEW blocks
   ========================================= */

/* =========================================
   GLOBAL LINKS — text links in content
   ========================================= */
.service-intro a,
.service-steps a,
.service-events a,
.service-formats a,
.city-events a,
.city-reviews a,
.city-districts a,
.faq-answer a,
.price-info a,
.service-formats-note a,
.section-subtitle a {
    color: #00b8ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-intro a:hover,
.service-steps a:hover,
.service-events a:hover,
.service-formats a:hover,
.city-events a:hover,
.city-reviews a:hover,
.city-districts a:hover,
.faq-answer a:hover,
.price-info a:hover,
.service-formats-note a:hover,
.section-subtitle a:hover {
    color: #00ebaa;
}

/* =========================================
   INTRO (text block after hero)
   ========================================= */
.service-intro { padding: 50px 0 10px; }

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    direction: rtl;
    text-align: right;
}

.service-intro-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 16px;
}

.service-intro-text:last-of-type { margin-bottom: 24px; }

.service-intro-highlight {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 184, 255, 0.06);
    border: 1px solid rgba(0, 184, 255, 0.15);
    border-radius: 12px;
    font-size: 15px;
    color: #00b8ff;
    font-weight: 600;
}

/* =========================================
   STEPS — How it works
   ========================================= */
.service-steps { padding: 60px 0; }

.service-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-step-card {
    padding: 28px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    direction: rtl;
    transition: var(--transition-elegant);
}

.service-step-card:hover {
    border-color: rgba(0, 184, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 184, 255, 0.08);
}

.service-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--accent-gradient);
    color: white;
    font-size: 15px; font-weight: 800;
    margin-bottom: 14px;
}

.service-step-title {
    font-size: 17px; font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.service-step-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   EVENTS (wrapper only, cards = city-event)
   ========================================= */
.service-events { padding: 60px 0; }

/* =========================================
   FORMATS
   ========================================= */
.service-formats { padding: 60px 0; }

.service-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-format-card {
    padding: 28px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    direction: rtl;
    text-align: center;
    transition: var(--transition-elegant);
    position: relative;
}

.service-format-card:hover {
    border-color: rgba(0, 184, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 184, 255, 0.08);
}

.service-format-card--recommended {
    border-color: rgba(0, 184, 255, 0.2);
    background: linear-gradient(135deg, rgba(0,184,255,0.04), rgba(0,235,170,0.04));
}

.service-format-card--recommended::before {
    content: 'מומלץ';
    position: absolute;
    top: -10px; right: 20px;
    font-size: 11px; font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    background: var(--accent-gradient);
    color: white;
}

.service-format-icon {
    color: #00b8ff;
    margin-bottom: 12px;
    line-height: 0;
}

.service-format-card:hover .service-format-icon { color: #00ebaa; }

.service-format-name {
    font-size: 18px; font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
}

.service-format-people {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 12px;
}

.service-format-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.service-formats-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
    direction: rtl;
    text-align: center;
}

/* =========================================
   VIDEO SECTION (in PHP template)
   ========================================= */
.service-video-section {
    padding: 60px 0;
}

.service-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-secondary);
    /* padding-bottom fallback for older iOS Safari */
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

@supports (aspect-ratio: 16 / 9) {
    .service-video-wrapper {
        aspect-ratio: 16 / 9;
        padding-bottom: 0;
        height: auto;
    }
}

.service-video-wrapper iframe,
.service-video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
    background: #000;
}

/* =========================================
   MOBILE
   ========================================= */
@media (max-width: 768px) {
    .service-intro, .service-steps, .service-events,
    .service-formats, .service-video-section { padding: 40px 0; }

    .service-steps-grid { grid-template-columns: 1fr; }
    .service-formats-grid { grid-template-columns: 1fr; }
    .service-video-wrapper { border-radius: 14px; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
.service-step-card, .service-format-card {
    opacity: 0; transform: translateY(20px);
    animation: cityCardIn 0.5s ease forwards;
}

.service-step-card:nth-child(1) { animation-delay: 0.02s; }
.service-step-card:nth-child(2) { animation-delay: 0.04s; }
.service-step-card:nth-child(3) { animation-delay: 0.06s; }
.service-step-card:nth-child(4) { animation-delay: 0.08s; }
.service-step-card:nth-child(5) { animation-delay: 0.10s; }

.service-format-card:nth-child(1) { animation-delay: 0.02s; }
.service-format-card:nth-child(2) { animation-delay: 0.04s; }
.service-format-card:nth-child(3) { animation-delay: 0.06s; }



























/* ========== SERVICES SECTION ========== */
.services-section {
    position: relative;
    padding: 100px 0;
    /* background: var(--bg-primary); */
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 184, 255, 0.1);
    border: 1px solid rgba(0, 184, 255, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-title .title-line {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
}

.section-title .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Service Card - с изображением на всю карточку */
.service-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition-smooth);
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-elegant);
}

/* Затемнение для читаемости текста */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
    transition: var(--transition-elegant);
}

.service-card:hover .service-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 184, 255, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.service-card-inner {
    position: relative;
    padding: 2rem;
    z-index: 2;
    width: 100%;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-inner {
    transform: translateY(0);
}

/* Service Title */
.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Service Description */
.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 90%;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-elegant);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.service-link:hover {
    gap: 1rem;
    border-bottom-color: white;
}

.link-arrow {
    transition: transform 0.3s ease;
    fill: white;
}

.service-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Card без изображения (градиентный фон) */
.service-card:not([style*="url"]) {
    background: var(--accent-gradient);
}

.service-card:not([style*="url"]) .service-overlay {
    display: none;
}

/* No Services Message */
.no-services {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Services Footer */
.services-footer {
    text-align: center;
    margin-top: 2rem;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 184, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.services-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 184, 255, 0.5);
}

.services-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-arrow {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.services-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ========== RTL STYLES ========== */
.rtl .service-link:hover .link-arrow {
    transform: translateX(-5px);
}

.rtl .services-btn:hover .btn-arrow {
    transform: translateX(-5px);
}

.rtl .service-link {
    flex-direction: row-reverse;
}

.rtl .services-btn {
    flex-direction: row-reverse;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

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

    .service-card {
        min-height: 350px;
    }

    .service-card-inner {
        padding: 1.5rem;
        transform: translateY(20px);
    }

    .service-title {
        font-size: 1.5rem;
    }

    .section-title .title-line {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 1rem;
    }

    .service-card {
        min-height: 320px;
    }

    .service-card-inner {
        padding: 1.2rem;
        transform: translateY(15px);
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .services-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .service-card {
        min-height: 280px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
}

/* Анимация появления карточек */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: cardFadeIn 0.8s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }





































/* Секция прайса */
.price-section {
    padding: 60px 0;
    /* background: var(--bg-primary); */
    position: relative;
}

.price-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Заголовок секции */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0, 184, 255, 0.08);
    border-radius: 30px;
    color: #00b8ff;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 184, 255, 0.15);
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Обертка таблицы */
.price-table-wrapper {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin: 40px 0 30px;
    overflow-x: auto;
}

/* Таблица */
.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    min-width: 800px;
}

/* Заголовки */
.price-table thead tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table th {
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    background: rgba(0, 184, 255, 0.02);
}

.price-table th:first-child {
    border-radius: 12px 0 0 0;
}

.price-table th:last-child {
    border-radius: 0 12px 0 0;
}

/* Ячейки */
.price-table td {
    padding: 18px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 15px;
    vertical-align: middle;
}

/* Название шоу */
.show-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.show-title {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
}

.show-duration {
    color: var(--text-muted);
    font-size: 13px;
}

/* Ячейка цены */
.price-cell {
    font-weight: 600;
    white-space: nowrap;
    color: #00ffb8;
}

.price-value {
    font-size: 18px;
}

.price-currency {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 3px;
}

/* Ячейка "что включает" */
.includes-cell {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 14px;
}

/* Ячейка "подходит для" */
.for-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

.vip-tag {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.15);
    color: #ffd700;
}

/* Информационная карточка */
.price-info {
    margin: 30px 0 40px;
    display: flex;
    justify-content: center;
}

.info-card {
    background: rgba(0, 184, 255, 0.03);
    border-radius: 50px;
    padding: 16px 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 184, 255, 0.1);
    max-width: 700px;
}

.info-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 184, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b8ff;
    flex-shrink: 0;
}

.info-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.info-text strong {
    color: #00b8ff;
    font-weight: 500;
}

.info-highlight {
    color: #00ffb8;
}

/* Кнопка на полный прайс */
.price-footer {
    text-align: center;
}

.price-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: transparent;
    border: 1px solid rgba(0, 184, 255, 0.3);
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.price-button:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 184, 255, 0.2);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.price-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Адаптивность */
@media screen and (max-width: 1024px) {
    .price-section {
        padding: 60px 0;
    }
    
    .price-container {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .price-table-wrapper {
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    .price-section {
        padding: 50px 0;
    }
    
    .price-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .price-table-wrapper {
        padding: 15px;
        border-radius: 20px;
    }
    
    .price-table th {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .price-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .show-title {
        font-size: 15px;
    }
    
    .price-value {
        font-size: 16px;
    }
    
    .tag {
        padding: 3px 10px;
        font-size: 11px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 30px;
    }
    
    .info-text {
        font-size: 14px;
    }
    
    .price-button {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .price-table-wrapper {
        padding: 10px;
    }
}

/* Анимация появления */
.price-table-wrapper {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.price-info {
    opacity: 0;
    animation: fadeIn 0.6s ease 0.2s forwards;
}

.price-footer {
    opacity: 0;
    animation: fadeIn 0.6s ease 0.4s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}












