/*
Theme Name: Liquidation Landing
Theme URI: https://stellar-web.ru
Author: @WebdevBF
Author URI: https://stellar-web.ru
Description: Оптимизированный лендинг, кастомная разработка для «ЮрТекс»
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liquidation-landing
Tags: landing-page, optimized, fast
This theme, like WordPress, is licensed under the GPL.
*/

/* ===== FONTS ===== */
/* Montserrat Regular */
@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Montserrat Bold */
@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Montserrat Black */
@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-yellow: #FFD700;
    --color-black: #1a1a1a;
    --color-dark-gray: #2d2d2d;
    --color-white: #ffffff;
    --color-blue: #0066cc;
    --font-primary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-logo a {
    color: var(--color-yellow);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.header-phone {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.header-phone:hover {
    color: var(--color-yellow);
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    background: var(--color-yellow);
    color: var(--color-black);
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
    align-items: center;
    gap: 8px;
    z-index: 1001;
    white-space: nowrap;
}

.menu-toggle:hover {
    background: #fff;
}

.hamburger {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: currentColor;
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
    left: 0;
    transition: var(--transition);
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ===== MAIN NAVIGATION ===== */
.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.primary-menu li {
    margin: 0;
    padding: 0;
}

.primary-menu a {
    display: block;
    padding: 8px 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 5px;
    white-space: nowrap;
}

.primary-menu a:hover {
    color: var(--color-black);
    background: var(--color-yellow);
}

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    color: var(--color-black);
    background: var(--color-yellow);
    font-weight: 700;
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }

    .header-container {
        flex-wrap: nowrap;
        position: relative;
    }

    .site-logo {
        flex: 0 0 auto;
        order: 1;
    }

    .site-logo a {
        font-size: 18px;
    }

    .menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .header-phone {
        display: none;
    }

    .main-navigation {
        order: 3;
        position: static;
        width: 100%;
    }

    .primary-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        background: var(--color-black);
        border-radius: 0 0 10px 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 0;
    }

    .primary-menu.active {
        display: flex;
    }

    .primary-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .primary-menu li:last-child {
        border-bottom: none;
    }

    .primary-menu a {
        padding: 15px 20px;
        color: #ffffff;
        border-left: 3px solid transparent;
        border-radius: 0;
    }

    .primary-menu a:hover {
        background: rgba(255, 215, 0, 0.1);
        border-left-color: var(--color-yellow);
    }

    .primary-menu .current-menu-item > a,
    .primary-menu .current_page_item > a {
        background: var(--color-yellow);
        color: var(--color-black);
        border-left-color: var(--color-black);
    }

    /* Исправляем отступ для hero section */
    .hero {
        padding: 120px 20px 60px;
    }
}
.header-contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icons {
    display: none;
    gap: 10px;
    align-items: center;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    color: #ffffff;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-icon.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.contact-icon.telegram {
    background: #0088cc;
}

.contact-icon.telegram:hover {
    background: #006699;
    transform: translateY(-2px);
}

.contact-icon.phone {
    background: var(--color-yellow);
    color: var(--color-black);
}

.contact-icon.phone:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 768px) {
    .header-phone {
        display: none;
    }

    .header-icons {
        display: flex;
    }

    .site-header {
        padding: 10px 0;
    }

    .header-container {
        flex-wrap: nowrap;
        position: relative;
    }

    .site-logo {
        flex: 0 0 auto;
        order: 1;
    }

    .site-logo a {
        font-size: 18px;
    }

    .menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .header-contacts {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-black);
        padding: 15px 20px;
        justify-content: center;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-contacts.show {
        display: flex;
    }

    .header-icons {
        display: flex !important;
        gap: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon svg {
        width: 28px;
        height: 28px;
    }

    .main-navigation {
        order: 3;
        position: static;
        width: 100%;
    }

    .primary-menu {
        display: none;
        position: absolute;
        top: calc(100% + 70px);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        background: var(--color-black);
        border-radius: 0 0 10px 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 0;
    }

    .primary-menu.active {
        display: flex;
    }

    .primary-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .primary-menu li:last-child {
        border-bottom: none;
    }

    .primary-menu a {
        padding: 15px 20px;
        color: #ffffff;
        border-left: 3px solid transparent;
        border-radius: 0;
    }

    .primary-menu a:hover {
        background: rgba(255, 215, 0, 0.1);
        border-left-color: var(--color-yellow);
    }

    .primary-menu .current-menu-item > a,
    .primary-menu .current_page_item > a {
        background: var(--color-yellow);
        color: var(--color-black);
        border-left-color: var(--color-black);
    }
}
/* Active menu item - для лендинга */
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu li.active > a {
    color: var(--color-black);
    background: var(--color-yellow);
    font-weight: 700;
}

/* Mobile active */
@media (max-width: 768px) {
    .primary-menu li.active > a {
        border-left: 4px solid var(--color-black);
        background: var(--color-yellow);
        color: var(--color-black);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 10%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/img/herobann-1.jpg') center center no-repeat;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: var(--color-yellow);
    color: var(--color-black);
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--color-white);
    margin-bottom: 40px;
    font-weight: 900;
    text-transform:uppercase;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--color-yellow);
    color: var(--color-black);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-large {
    padding: 25px 60px;
    font-size: 20px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--color-black);
    color: var(--color-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-yellow);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 80px 0;
    background: var(--color-yellow);
}

.features h2,
.advantages h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 50px;
    color: var(--color-black);
    text-transform: uppercase;
    font-weight: 900;
}

.advantages-list {
    max-width: 800px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: center;
    padding: 25px;
    margin-bottom: 20px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-check {
    width: 40px;
    height: 40px;
    background: var(--color-black);
    color: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: 900;
    flex-shrink: 0;
}

.advantage-item span {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    text-align: center;
}

.cta h2 {
    font-size: clamp(28px, 5vw, 48px);
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
}

.cta p {
    font-size: 20px;
    color: var(--color-yellow);
    margin-bottom: 40px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
    margin: 50px auto 0;
    padding: 40px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
    font-size: 14px;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid #28a745;
    animation: fadeInScale 0.5s ease-out;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 60px;
    font-weight: 900;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

.success-message h3 {
    font-size: 32px;
    color: #28a745;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.success-message p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== PAGE STYLES ===== */
.page-main {
    padding-top: 100px; /* Отступ для фиксированной шапки */
    min-height: 70vh;
    background: #f8f9fa;
}

.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.page-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
     padding-top: 30px;
    border-bottom: 3px solid var(--color-yellow);
    /* Важно: разрешаем перенос */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-title {
    font-size: clamp(24px, 4vw, 42px); /* Уменьшили минимальный размер */
    color: var(--color-black);
    font-weight: 900;
    text-transform: none; /* Убрали uppercase для лучшего переноса */
    margin: 0;
    line-height: 1.3; /* Уменьшили line-height для переноса */
    word-wrap: break-word; /* Разрешаем перенос длинных слов */
    overflow-wrap: break-word;
    hyphens: auto; /* Автоматическая расстановка переносов */
}

.page-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.page-content h2 {
    font-size: 28px;
    color: var(--color-black);
    margin: 40px 0 20px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 22px;
    color: var(--color-black);
    margin: 30px 0 15px;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.page-content a {
    color: var(--color-blue);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--color-yellow);
    background: var(--color-black);
}

.page-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.page-updated {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* ===== PRIVACY PAGE SPECIFIC ===== */
.page-template-template-privacy .page-wrapper {
    max-width: 1000px;
}

.page-content .privacy-section {
    margin-bottom: 40px;
}

.page-content .privacy-section h2 {
    background: var(--color-yellow);
    padding: 15px 25px;
    border-radius: 5px;
    display: inline-block;
}

/* ===== RESPONSIVE PAGE ===== */
@media (max-width: 768px) {
    .page-main {
        padding-top: 80px;
    }
    
    .page-wrapper {
        padding: 40px 20px; /* Уменьшили отступы */
        margin: 20px;
    }
    
    .page-title {
        font-size: 24px; /* Фиксированный размер для мобильных */
        line-height: 1.4;
    }
    
    .page-content {
        font-size: 16px;
    }
    
    .page-content h2 {
        font-size: 22px;
    }
    
    .page-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .page-wrapper {
        margin: 15px;
        padding: 30px 15px;
    }
    
    .page-title {
        font-size: 20px; /* Ещё меньше для очень маленьких экранов */
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .site-logo a {
        font-size: 18px;
    }

    .header-phone {
        display: none; /* Скрываем телефон на мобильном */
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .site-logo {
        order: 1;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        display: block;
    }

    .primary-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        background: var(--color-black);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .primary-menu.active {
        display: flex;
    }

    .primary-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .primary-menu li:last-child {
        border-bottom: none;
    }

    .primary-menu a {
        padding: 15px 20px;
        color: #ffffff;
        border-left: 3px solid transparent;
    }

    .primary-menu a:hover {
        background: rgba(255, 215, 0, 0.1);
        border-left-color: var(--color-yellow);
    }

    .primary-menu .current-menu-item > a,
    .primary-menu .current_page_item > a {
        background: var(--color-yellow);
        color: var(--color-black);
        border-left-color: var(--color-black);
    }

    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        padding: 18px 30px;
        font-size: 16px;
    }

    .features,
    .advantages,
    .cta {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
        margin: 30px 20px 0;
    }

    .success-message {
        padding: 40px 25px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }

    .success-message h3 {
        font-size: 24px;
    }

    .success-message p {
        font-size: 16px;
    }

    .page-main {
        padding-top: 80px;
    }

    .page-wrapper {
        padding: 40px 25px;
        margin: 20px;
    }

    .page-title {
        font-size: 22px;
    }

    .page-content {
        font-size: 16px;
    }

    .page-content h2 {
        font-size: 22px;
    }

    .page-content h3 {
        font-size: 18px;
    }
}

/* ===== CONTACT FORM 7 STYLES ===== */
.wpcf7 {
    max-width: 600px;
    margin: 50px auto 0;
}

.wpcf7-form {
    padding: 40px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wpcf7-form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: #fff;
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.wpcf7-textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7-submit {
    width: 100%;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: var(--color-yellow);
    color: var(--color-black);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: #fff;
}

.wpcf7-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form labels */
.wpcf7-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Validation messages */
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.wpcf7-form-control.wpcf7-not-valid {
    border-color: #dc3545;
}

/* Success message */
.wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

/* Error message */
.wpcf7-mail-sent-ng {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

/* Spam block */
.wpcf7-spam-blocked {
    background: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

/* Loading state */
.wpcf7 .ajax-loader {
    display: block;
    margin: 20px auto 0;
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-yellow);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hide default CF7 messages */
.wpcf7 .screen-reader-response {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 30px 20px;
    }

    .wpcf7-submit {
        padding: 18px 30px;
        font-size: 16px;
    }
}
/* Contact Form 7 Error Styles */
.wpcf7-form-control.wpcf7-not-valid {
    border-color: #dc3545 !important;
    background-color: #fff5f5;
}

.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    font-weight: 600;
}

.custom-error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 600;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
.wpcf7-response-output {display:none;}
.googpemap-2 iframe {
    width: 100%;
    height: 550px;
    filter: grayscale(100%) invert(90%);
    border:0!important;
    
}

.map {background: var(--color-black);}
.img-icon-card {width:80px; margin:0 auto;}
/* ===== FOOTER CONTACTS ===== */
.footer-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-phone {
    color: var(--color-yellow);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-phone:hover {
    color: #fff;
}

.footer-icons {
    display: none;
    gap: 15px;
    justify-content: center;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer-phone {
        display: none;
    }
    
    .footer-icons {
        display: flex;
    }
    
    .footer-contacts {
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
}
/* ===== CUSTOM SCROLLBAR ===== */
/* WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: 000000;
    border-radius: 0;
    border: 2px solid #1a1a1a;
   
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}

/* Firefox */
html {
    scrollbar-width: thick;
    scrollbar-color: #FFD700 #1a1a1a;
}

/* Internet Explorer 10+ */
html {
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
/* ===== CHECK LIST ===== */
.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black);
    font-weight: 500;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--color-black);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 768px) {
    .check-list li {
        padding-left: 40px;
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .check-list li::before {
        width: 28px;
        height: 28px;
        background-size: 16px;
    }
}
/* ===== HERO FEATURES - PERFECT ALIGNMENT ===== */
.hero-features-wrapper {
    display: flex;
    justify-content: center;
    margin: 0 0 50px 0;
    width: 100%;
}

.hero-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 470px; /* Ограничиваем ширину для выравнивания */
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: var(--color-white);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Важно: убираем все отступы */
    margin: 0;
    padding: 0;
    width: 100%;
}

.hero-features li::before {
    content: '';
    width: 32px;
    height: 32px;
    background: #28a745;
    border-radius: 50%;
    flex-shrink: 0;
    /* Фиксированный размер чтобы иконки не сжимались */
    min-width: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-features-wrapper {
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .hero-features {
        gap: 15px;
        max-width: 100%;
    }
    
    .hero-features li {
        font-size: 16px;
        gap: 12px;
    }
    
    .hero-features li::before {
        width: 28px;
        height: 28px;
        min-width: 28px;
        background-size: 16px;
    }
}
.flashback {
    width:100%;
    text-align:center;
    margin-top:30px;
}
.flashback a {
    color:#1a1a1a;
    text-decoration:none;
}
.flashback a:hover {
    color:#fff;
}
/* ===== 404 PAGE ===== */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.error-page-wrapper {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.error-code {
    font-size: 180px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 3px var(--color-yellow);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.error-title {
    font-size: 42px;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.error-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* Декоративные элементы */
.error-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-3 {
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== RESPONSIVE 404 ===== */
@media (max-width: 768px) {
    .error-code {
        font-size: 120px;
    }
    
    .error-title {
        font-size: 32px;
    }
    
    .error-description {
        font-size: 16px;
    }
    
    .error-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .circle-1 {
        width: 300px;
        height: 300px;
    }
    
    .circle-2 {
        width: 450px;
        height: 450px;
    }
    
    .circle-3 {
        width: 600px;
        height: 600px;
    }
}