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

        




/* ==============================================
   Click2Dance — Blog Single Post
   ============================================== */

/* Article */
.blog-article {
    padding: 120px 0 40px;
}
.blog-article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Title */
.article-title {
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 30px;
    color: var(--text-primary);
}

/* Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.article-meta-item svg { color: var(--text-muted); }

/* Featured Image */
.article-featured-image {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
}
.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   CONTENT — matches site link/text style
   ========================================= */
.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.article-content h2 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--text-primary);
}
.article-content h3 {
    font-size: clamp(17px, 2.5vw, 20px);
    font-weight: 700;
    margin: 30px 0 12px;
    color: var(--text-primary);
}
.article-content p {
    margin-bottom: 16px;
}
.article-content a {
    color: #00b8ff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.article-content a:hover {
    color: #00ebaa;
}
.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}
.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-right: 24px;
}
.article-content li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}
.article-content blockquote {
    border-right: 3px solid #00b8ff;
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(0, 184, 255, 0.04);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-secondary);
}
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 20px 0;
}

/* Table — matches .price-table style */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
}
.article-content th {
    padding: 18px 15px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(0, 184, 255, 0.04);
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.article-content td {
    padding: 16px 15px;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    vertical-align: middle;
}
.article-content td a {
    color: #00b8ff;
}
.article-content td a:hover {
    color: #00ebaa;
}
.article-content tr:hover td {
    background: rgba(0, 184, 255, 0.02);
}

/* =========================================
   RELATED POSTS — city-nearby-card style
   ========================================= */
.blog-related {
    padding: 60px 0;
}
.blog-related-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Заголовок секции */
.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;
}
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    z-index: 99999;
}

/* Card = city-nearby-card clone */
.related-post-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);
    /* opacity: 0; */
    transform: translateY(20px);
    animation: cityCardIn 0.5s ease forwards;
}
.related-post-card:nth-child(1) { animation-delay: 0.03s; }
.related-post-card:nth-child(2) { animation-delay: 0.06s; }
.related-post-card:nth-child(3) { animation-delay: 0.09s; }

.related-post-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 */
.related-post-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);
}
.related-post-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 28, 36, 0.7) 0%, transparent 60%);
    transition: var(--transition-elegant);
}
.related-post-card:hover .related-post-image::after {
    background: linear-gradient(to top, rgba(0, 184, 255, 0.3) 0%, transparent 60%);
}

/* Body = city-nearby-body */
.related-post-content {
    padding: 18px 20px 22px;
    direction: rtl;
}
.related-post-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
    transition: var(--transition-elegant);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}
.related-post-card:hover .related-post-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.related-post-date {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}
.related-posts-footer {
    text-align: center;
    margin-top: 60px;
}
.dancers-footer {
    text-align: center;
    margin-top: 2rem;
}
.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);
}
/* =========================================
   MOBILE
   ========================================= */
@media (max-width: 768px) {
    .blog-article { padding: 100px 0 30px; }
    .blog-article-container { padding: 0 1.25rem; }
    .article-meta { gap: 12px; }
    .article-content { font-size: 15px; }
    .article-featured-image { border-radius: 14px; }
    .related-posts-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .article-content table { font-size: 13px; }
    .article-content th,
    .article-content td { padding: 12px 10px; }
}

@media (max-width: 480px) {
    .blog-article { padding: 90px 0 20px; }
    .related-posts-grid { grid-template-columns: 1fr; }
    .article-content th,
    .article-content td { padding: 10px 8px; font-size: 12px; }
}