/* 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;
        }

        /* Сетка профиля */
        .profile-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        /* Левая колонка - Галерея */
        .gallery-section {
            position: relative;
        }

        .main-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 1rem;
            aspect-ratio: 3/4;
            box-shadow: var(--shadow-elegant);
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 2rem 1.5rem 1.5rem;
            pointer-events: none;
        }

        .image-badge {
            display: inline-block;
            background: var(--accent-gradient);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            color: white;
            box-shadow: 0 4px 15px rgba(0,184,255,0.4);
        }

        .thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
        }

        .thumbnail-item {
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .thumbnail-item:hover {
            border-color: #00b8ff;
            transform: translateY(-2px);
        }

        .thumbnail-item.active {
            border-color: #00b8ff;
            box-shadow: 0 0 15px rgba(0,184,255,0.5);
        }

        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Правая колонка - Информация */
        .info-section {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            border-radius: 32px;
            padding: 2.5rem;
            box-shadow: var(--shadow-elegant);
        }

        .dancer-header {
            margin-bottom: 1.5rem;
        }

        .dancer-name {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, #fff, #00b8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .dancer-tagline {
            font-size: 1.2rem;
            color: var(--text-secondary);
            background: rgba(255,255,255,0.05);
            padding: 0.75rem 1.5rem;
            border-radius: 60px;
            display: inline-block;
            border: 1px solid rgba(0,184,255,0.2);
        }

        .dancer-tagline .highlight {
            color: #00b8ff;
            font-weight: 700;
        }

        /* Секция "О себе" */
        .about-section {
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-title-icon {
            color: #00b8ff;
            font-size: 1.5rem;
        }

        .about-text {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1rem;
            background: rgba(255,255,255,0.02);
            padding: 1.2rem;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.03);
        }

        /* Бейджи с характеристиками */
        .dancer-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .meta-item {
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--glass-border);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .meta-icon {
            color: #00b8ff;
        }

        /* Цена */
        .price-box {
            background: linear-gradient(135deg, rgba(0,184,255,0.1), rgba(0,235,170,0.1));
            border: 1px solid rgba(0,235,170,0.3);
            border-radius: 24px;
            padding: 1.5rem 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

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

        .price-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #00b8ff, #00ffb8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .price-currency {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-right: 0.25rem;
        }

        .price-note {
            font-size: 0.9rem;
            color: var(--text-muted);
            width: 100%;
            margin-top: 0.5rem;
        }

        .price-note a {
            color: #00b8ff;
            text-decoration: none;
        }

        .price-note a:hover {
            text-decoration: underline;
        }

        /* Кнопка WhatsApp */
        .whatsapp-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            text-decoration: none;
            padding: 1.2rem 2rem;
            border-radius: 60px;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            border: none;
            cursor: pointer;
            width: 100%;
        }

        .whatsapp-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-button svg {
            width: 28px;
            height: 28px;
        }

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

        .dancer-name-small {
            background: rgba(255,255,255,0.2);
            padding: 0.25rem 1rem;
            border-radius: 50px;
            font-size: 1rem;
        }

        /* Кнопка телефона */
        .phone-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--glass-border);
            color: var(--text-primary);
            text-decoration: none;
            padding: 1rem 2rem;
            border-radius: 60px;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .phone-button:hover {
            background: rgba(255,255,255,0.1);
            border-color: #00b8ff;
            transform: translateY(-2px);
        }

        /* Ссылки на услуги */
        .services-links {
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: rgba(0,184,255,0.05);
            border-radius: 24px;
            border: 1px solid rgba(0,184,255,0.15);
        }

        .services-links-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .services-links-title-icon {
            color: #00b8ff;
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .service-link {
            background: rgba(0,184,255,0.1);
            border: 1px solid rgba(0,184,255,0.2);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            color: #00b8ff;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            background: #00b8ff;
            color: white;
            transform: translateY(-2px);
        }

        /* Блок "Лучше всего подходит для" */
        .best-for-section {
            margin-bottom: 1.5rem;
        }

        .events-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .event-tag {
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--glass-border);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .event-tag:hover {
            background: var(--accent-gradient);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
        }

        /* Отзывы */
        .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;
        }

        /* Адаптивность */
        @media (max-width: 1024px) {
            .profile-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .dancer-name {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .dancer-profile {
                padding: 1rem 1rem 3rem;
            }
            
            .info-section {
                padding: 1.5rem;
            }
            
            .dancer-name {
                font-size: 1.8rem;
            }
            
            .dancer-tagline {
                font-size: 1rem;
                padding: 0.5rem 1rem;
            }
            
            .price-box {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.2rem;
            }
            
            .price-value {
                font-size: 2rem;
            }
            
            .whatsapp-button {
                font-size: 1.1rem;
                padding: 1rem;
            }
            
            .phone-button {
                font-size: 1rem;
                padding: 0.8rem;
            }
            
            .thumbnail-grid {
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .thumbnail-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .meta-item {
                width: 100%;
            }
            
            .dancer-name {
                font-size: 1.5rem;
            }
            
            .services-grid, .events-list {
                gap: 0.5rem;
            }
            
            .service-link, .event-tag {
                padding: 0.4rem 1rem;
                font-size: 0.9rem;
            }
        }














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

  .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; }













/* Секция 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; }














/* =========================================
   ALL DANCERS PAGE

/* --- Hero --- */
.all-dancers-hero {padding: 40px 0 20px;margin-top: 80px;}
.all-dancers-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


/* --- H1 --- */
.page-header { text-align: center; margin-bottom: 32px; }
.page-title {
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0 0 14px;
}
.page-subtitle {
    font-size: clamp(15px, 2.5vw, 19px); color: var(--text-secondary);
    line-height: 1.6; max-width: 700px; margin: 0 auto;
}

/* --- Top CTA --- */
.page-cta { justify-content: center; margin-bottom: 10px; }

/* =========================================
   DROPDOWN FILTERS
   ========================================= */
.dancers-filter-bar {
    direction: rtl;
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 20px 24px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-elegant);
    z-index: 11;
}
.dancers-filter-bar:hover {
    border-color: var(--glass-border-hover);
}

.filter-dropdowns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* --- Dropdown button --- */
.filter-dropdown { position: relative; }

.filter-dropdown-btn {
    width: 100%;
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    background: rgba(0, 184, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-elegant);
    color: var(--text-primary);
    font-family: inherit; font-size: 15px; text-align: right;
}
.filter-dropdown-btn:hover {
    background: rgba(0, 184, 255, 0.08);
    border-color: var(--glass-border-hover);
}
.filter-dropdown.open .filter-dropdown-btn {
    background: rgba(0, 184, 255, 0.1);
    border-color: rgba(0, 184, 255, 0.3);
    box-shadow: 0 0 24px rgba(0, 184, 255, 0.08);
}

/* Icon */
.filter-dropdown-icon {
    flex-shrink: 0; line-height: 0;
    color: var(--text-muted);
    transition: var(--transition-elegant);
}
.filter-dropdown.open .filter-dropdown-icon,
.filter-dropdown.has-value .filter-dropdown-icon {
    color: #00b8ff;
}

/* Label */
.filter-dropdown-label {
    font-size: 10px; font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.6px;
    position: absolute; top: 6px; right: 48px;
    pointer-events: none;
    transition: var(--transition-elegant);
}

/* Value */
.filter-dropdown-value {
    flex: 1; font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-top: 8px;
}
.filter-dropdown.has-value .filter-dropdown-value {
    color: #00ebaa;
    font-weight: 600;
}

/* Arrow */
.filter-dropdown-arrow {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--text-muted);
}
.filter-dropdown.open .filter-dropdown-arrow {
    transform: rotate(180deg);
    color: #00b8ff;
}

/* --- Dropdown menu --- */
.filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 100;
    background: var(--bg-secondary);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 6px;
    max-height: 280px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,184,255,0.05);
}
.filter-dropdown.open .filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Scrollbar */
.filter-dropdown-menu::-webkit-scrollbar { width: 4px; }
.filter-dropdown-menu::-webkit-scrollbar-track { background: transparent; }
.filter-dropdown-menu::-webkit-scrollbar-thumb { background: rgba(0,184,255,0.25); border-radius: 4px; }

/* --- Option --- */
.filter-dropdown-option {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-elegant);
    display: flex; align-items: center; gap: 8px;
}
.filter-dropdown-option:hover {
    background: rgba(0, 184, 255, 0.08);
    color: var(--text-primary);
}
.filter-dropdown-option.active {
    background: linear-gradient(135deg, rgba(0,184,255,0.12), rgba(0,235,170,0.12));
    color: #00ebaa;
    font-weight: 600;
}
.filter-dropdown-option.active::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-gradient);
    flex-shrink: 0;
}

/* --- Footer --- */
.filter-bar-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--glass-border);
    z-index: 1;
}
.filter-counter {
    font-size: 14px; color: var(--text-muted);
}
.filter-counter span {
    font-weight: 700; font-size: 16px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filter-reset-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    background: rgba(0,184,255,0.05);
    color: var(--text-muted);
    font-size: 13px; font-family: inherit;
    cursor: pointer;
    transition: var(--transition-elegant);
}
.filter-reset-btn:hover {
    background: rgba(0,184,255,0.1);
    color: var(--text-primary);
    border-color: rgba(0,184,255,0.25);
}
.filter-reset-btn svg { color: inherit; }

/* --- No results --- */
.no-results-message { text-align: center; padding: 40px 20px; }
.no-results-message p { font-size: 18px; color: var(--text-muted); }

/* --- Card animation --- */
.dancer-card { transition: opacity 0.35s ease, transform 0.35s ease; }
.dancer-card.filter-hidden {
    opacity: 0; transform: scale(0.92);
    pointer-events: none; position: absolute;
    width: 0; height: 0; overflow: hidden; margin: 0; padding: 0;
}

/* =========================================
   SEO TEXT
   ========================================= */
.seo-text-section { padding: 50px 0; }
.seo-text-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.seo-intro {
    direction: rtl; text-align: right;
    max-width: 900px; margin: 0 auto;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}
.seo-intro h2 {
    font-size: clamp(20px,3vw,26px); font-weight: 700;
    color: var(--text-primary); margin: 0 0 16px; line-height: 1.4;
}
.seo-intro h2:not(:first-child) { margin-top: 28px; }
.seo-intro p {
    font-size: 16px; color: var(--text-secondary);
    line-height: 1.8; margin: 0 0 14px;
}
.seo-intro p:last-child { margin-bottom: 0; }
.seo-intro a {
    color: #00b8ff;
    text-decoration: none;
    /* border-bottom: 1px solid rgba(0,184,255,0.25); */
    transition: var(--transition-elegant);
}
.seo-intro a:hover {
    color: #00ebaa;
    border-bottom-color: rgba(0,235,170,0.4);
}

/* =========================================
   BOTTOM CTA
   ========================================= */
.bottom-cta-section { padding: 50px 0 60px; text-align: center; }
.bottom-cta-container {
    max-width: 700px; margin: 0 auto; padding: 36px 30px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}
.bottom-cta-container h2 {
    font-size: clamp(22px,4vw,30px); font-weight: 700;
    color: var(--text-primary); margin: 0 0 12px;
}
.bottom-cta-container p {
    font-size: 16px; color: var(--text-secondary);
    margin: 0 0 24px; line-height: 1.6;
}
.bottom-cta-buttons { justify-content: center; }

/* =========================================
   MOBILE
   ========================================= */
@media (max-width: 768px) {
    .all-dancers-hero { padding: 24px 0 16px; }
    .all-dancers-hero .breadcrumbs { margin-bottom: 20px; font-size: 13px; }
    .page-header { margin-bottom: 24px; }

    .filter-dropdowns { grid-template-columns: 1fr; gap: 10px; }
    .dancers-filter-bar { padding: 16px; margin-bottom: 20px; }
    .filter-dropdown-btn { padding: 12px 14px; font-size: 14px; }
    .filter-dropdown-menu { max-height: 220px; }
    .filter-bar-footer { flex-direction: column; gap: 10px; text-align: center; }

    .seo-intro { padding: 20px; }
    .seo-intro h2 { font-size: 19px; }
    .seo-intro p { font-size: 15px; line-height: 1.7; }

    .bottom-cta-section { padding: 40px 20px; }
    .bottom-cta-container { padding: 24px 16px; }

    .page-cta, .bottom-cta-buttons { flex-direction: column; }
    .page-cta .action-btn, .bottom-cta-buttons .action-btn { width: 100%; }
}