/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 14 2026 | 12:32:08 */
/* ========== НОВАЯ ШАПКА (абсолютная поверх hero) ========== */
.nav {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1358px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(0,0,0,0.06);
    z-index: 1000;
    transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

.nav-logo img {
   /* height: 28px;*/
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links li a:hover,
.nav-links li.current-menu-item a {
    color: #F07A1E;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-phone {
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    text-decoration: none;
}

.lang-dropdown {
    position: relative;
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

.lang-icon {
    width: 18px;
    height: 18px;
}

.lang-menu {
    position: absolute;
    top: 200%;
    right: -50%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    min-width: 140px;
    display: none;
    z-index: 1001;
    list-style: none;
    padding: 8px 0;
}

.lang-menu.show {
    display: block;
}

.lang-menu li a {
    display: block;
    padding: 6px 20px;
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

.lang-menu li a:hover {
   /* color: #F07A1E;*/
}

/* Бургер-меню */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    cursor: pointer;
    padding: 4px;
}

.burger-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: 0.2s;
}

/* Мобильное меню (оверлей) */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    display: block;
}

.mobile-menu-inner {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: #fff;
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s;
}

.mobile-menu.open .mobile-menu-inner {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    font-size: 32px;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li a,
.mobile-menu-link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #E8E8E8;
    color: #1A1A1A;
    text-decoration: none;
}

.mobile-menu-link.phone-link {
    color: #F07A1E;
}

.mobile-lang {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 12px 0;
    border-top: 1px solid #E8E8E8;
    font-weight: 500;
}

.mobile-lang a {
    color: #F07A1E;
    text-decoration: none;
}

/* Hero-блок (общий стиль, чтобы меню было поверх) */
.hero-wrapper {
    position: relative;
    width: 100%;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero_no {
    position: relative;
    width: 100%;
    max-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 120px 24px 80px;
    max-width: 1400px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Страницы без hero – добавляем отступ, чтобы контент не уходил под шапку */
body.no-hero main > .container:first-child {
    padding-top: 130px;
}

/* Адаптив */
@media (max-width: 768px) {
    .nav-links, .nav-right {
        display: none;
    }
    .burger-menu {
        display: flex;
    }
    .nav {
        top: 30px;
        width: calc(100% - 32px);
        padding: 0 16px;
    }
    .hero {
        min-height: 380px;
    }
    .hero-content {
        padding-top: 100px;
    }
    .hero-desc {
        font-size: 1rem;
    }
    body.no-hero main > .container:first-child {
        padding-top: 100px;
    }
}
