/* =========================================
   CSS ПЕРЕМЕННЫЕ И БАЗОВЫЕ НАСТРОЙКИ
   ========================================= */
:root {
    --bg-primary: #050505;
    --bg-secondary: #0f0f0f;
    --bg-card: #141414;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    
    --gold-primary: #D4AF37;
    --gold-light: #F4E285;
    --gold-dark: #AA8A26;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --gold-glow: rgba(212, 175, 55, 0.3);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1440px; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gold {
    display: inline-block;
    padding: 10px 22px;
    background: var(--gold-gradient);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--gold-glow);
    white-space: nowrap;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--gold-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold-primary);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 20px var(--gold-glow);
}

/* =========================================
   HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-block {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1;
}

.slogan {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    margin-top: 2px;
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 15px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link::after {
    content: '▼';
    font-size: 7px;
    transition: var(--transition);
    color: var(--text-secondary);
}

.nav-item:last-child .nav-link::after {
    display: none;
}

/* Выпадающее меню (Десктоп) */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-card);
    min-width: 220px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    z-index: 1002;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-item:hover .nav-link::after {
    transform: rotate(180deg);
    color: var(--gold-primary);
}

.dropdown-link {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition);
    border-left: 2px solid transparent;
}

.dropdown-link:hover {
    color: var(--text-primary);
    background: rgba(212, 175, 55, 0.05);
    border-left-color: var(--gold-primary);
    padding-left: 22px;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.header-phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
    white-space: nowrap;
}

.header-phone:hover {
    color: var(--gold-primary);
}

.header-email {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.header-email:hover {
    color: var(--gold-primary);
}

.header-cta-wrapper {
    flex-shrink: 0;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   АДАПТАЦИЯ ХИДЕРА: ДВУХРЯДНОЕ МЕНЮ (Планшеты)
   ========================================= */
@media (max-width: 1280px) {
    .nav-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px 20px;
        justify-items: center;
    }

    .dropdown {
        left: 50%;
        transform: translateX(-50%) translateY(10px);
    }
    
    .nav-item:hover .dropdown {
        transform: translateX(-50%) translateY(0);
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 140px 0 100px;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    position: relative;
    z-index: 3;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--gold-glow);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 44px);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px var(--gold-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    margin-bottom: 24px;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 9px;
    top: 4px;
}

.service-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* =========================================
   PORTFOLIO / WORKS SECTION
   ========================================= */
.works {
    background: var(--bg-secondary);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.work-item {
    position: relative;
    height: 280px;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: var(--transition);
}

.work-item:hover {
    border-color: var(--gold-primary);
}

.work-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.work-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.work-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(212, 175, 55, 0.05) 50%, var(--bg-primary) 100%);
    position: relative;
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 24px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #000000;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer h4 {
    font-size: 15px;
    margin-bottom: 24px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contacts p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contacts a {
    color: var(--text-primary);
    font-weight: 600;
}

.footer-contacts a:hover {
    color: var(--gold-primary);
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    color: var(--text-secondary);
    font-size: 13px;
}

.legal-details {
    text-align: right;
}

.legal-details p {
    margin-bottom: 4px;
}

/* =========================================
   МОБИЛЬНЫЙ ЛОГОТИП (СКРЫТ НА ДЕСКТОПЕ)
   ========================================= */
.mobile-logo-block {
    display: none !important;
}

/* =========================================
   MOBILE ADAPTATION (ИСПРАВЛЕННЫЙ БУРГЕР)
   ========================================= */
@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .mobile-logo-block {
        display: none;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav.active .mobile-logo-block {
        display: flex !important;
    }

    .mobile-logo {
        font-family: 'Montserrat', sans-serif;
        font-size: 32px;
        font-weight: 900;
        letter-spacing: -1px;
        line-height: 1;
        margin-bottom: 8px;
    }

    .mobile-slogan {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--gold-primary);
        font-weight: 600;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 90%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px 24px;
        font-size: 18px;
        text-align: left;
    }

    .nav-link::after {
        content: '▼';
        font-size: 10px;
        color: var(--gold-primary);
        transition: transform 0.3s ease;
    }

    .nav-link.active-arrow::after {
        transform: rotate(180deg) !important;
    }

    .nav-item:hover .dropdown {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-item:hover .nav-link::after {
        transform: none !important;
    }

    .nav-link:hover {
        color: inherit; 
    }

    .dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.4s ease, padding 0.4s ease;
        width: 100%;
        display: block;
    }

    .dropdown.active {
        max-height: 600px !important;
        padding: 0 0 15px 0;
    }

    .dropdown-link {
        display: block;
        color: var(--text-secondary);
        font-size: 15px;
        padding: 10px 24px 10px 44px;
        transition: var(--transition);
        border-left: 2px solid rgba(212, 175, 55, 0.3);
    }

    .dropdown-link:hover {
        color: var(--gold-primary);
        padding-left: 48px;
        background: transparent;
    }

    .header-contacts,
    .header-cta-wrapper {
        display: none;
    }

    .burger {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

.hero p {
    max-width: 100%;
}

    /* Скрываем изображение на планшетах */
    .hero-image {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* === ВЫБОР ГОРОДА ПО ЦЕНТРУ НА МОБИЛЬНЫХ === */
    .city-selector {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 28px 0 32px;
    }

    .city-dropdown {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .city-selected {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .services-grid, .works-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contacts p {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .legal-details {
        text-align: center;
    }
}

/* =========================================
   WHAT WE CAN DO SECTION
   ========================================= */
.what-we-do {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.what-we-do-header {
    text-align: center;
    margin-bottom: 50px;
}

.what-we-do-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.what-we-do-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.what-we-do-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.what-we-do-item:hover {
    transform: translateX(8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--gold-glow);
}

.what-we-do-item:hover::before {
    transform: scaleY(1);
}

.what-we-do-icon {
    font-size: 42px;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.what-we-do-item:hover .what-we-do-icon {
    background: var(--gold-gradient);
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.what-we-do-item h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    transition: var(--transition);
}

.what-we-do-item:hover h3 {
    color: var(--gold-primary);
}

/* Специальный стиль для последнего элемента */
.what-we-do-item-special {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.what-we-do-item-special::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.what-we-do-item-special:hover::before {
    transform: scaleX(1);
}

.what-we-do-item-special:hover {
    transform: translateY(-5px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .what-we-do {
        padding: 60px 0;
    }
    
    .what-we-do-header {
        margin-bottom: 35px;
    }
    
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .what-we-do-item {
        padding: 24px 20px;
    }
    
    .what-we-do-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .what-we-do-item h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .what-we-do-item {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
    
    .what-we-do-icon {
        margin-bottom: 10px;
    }
}

/* =========================================
   CITY SELECTOR (ВЫПАДАЮЩИЙ СПИСОК ГОРОДОВ)
   ========================================= */
.city-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
}

.city-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.city-dropdown {
    position: relative;
    min-width: 220px;
    z-index: 10000;
}

.city-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
}

.city-selected:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.city-current {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.city-arrow {
    font-size: 9px;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.city-dropdown.open .city-arrow {
    transform: rotate(180deg);
}

.city-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px var(--gold-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10001;
}

.city-dropdown.open .city-list {
    max-height: 300px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 8px 0;
}

.city-list li {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;
    font-family: 'Inter', sans-serif;
}

.city-list li:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--text-primary);
    border-left-color: var(--gold-primary);
    padding-left: 20px;
}

.city-list li.active {
    color: var(--gold-primary);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.05);
    border-left-color: var(--gold-primary);
}

/* Кастомный скроллбар для списка */
.city-list::-webkit-scrollbar {
    width: 6px;
}

.city-list::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.city-list::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 3px;
}

.city-list::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Адаптивность */
@media (max-width: 768px) {
    .city-dropdown {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .city-dropdown {
        width: 100%;
        max-width: 280px;
    }
}