/*
Theme Name: vyvoz-perevozki
Theme URI: 
Author: Ваше имя
Author URI: 
Description: тема для сайта вывоза и перевозок
Version: 1.0
Text Domain: vyvoz-perevozki
*/

/* Основные стили */
       :root {
            --primary: #ff9900;
            --primary-dark: #e68a00;
            --secondary: #333333;
            --light: #f8f8f8;
            --dark: #222222;
            --gray: #666666;
            --light-gray: #e0e0e0;
            --success: #4caf50;
            --danger: #f44336;
            --warning: #ffc107;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: #ffffff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        header {
            background-color: var(--secondary);
            color: white;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav a {
            font-weight: 500;
            font-size: 16px;
            position: relative;
        }

        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        nav a:hover:after {
            width: 100%;
        }

        .phone a {
            font-weight: 700;
            font-size: 18px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .phone i {
            font-size: 20px;
        }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('metal-bg.jpg') no-repeat center/cover;
            color: white;
            text-align: center;
            padding: 100px 0 100px;
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            color: white;
        }

        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 16px;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 153, 0, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Sections */
        section {
            padding: 20px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Advantages */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .advantage-item {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }

        .advantage-item:hover {
            transform: translateY(-10px);
        }

        .advantage-item img {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
        }

        .advantage-item h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        /* Price table */
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .price-table th, .price-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--light-gray);
        }

        .price-table th {
            background-color: var(--secondary);
            color: white;
            font-weight: 600;
        }

        .price-table tr:nth-child(even) {
            background-color: var(--light);
        }

        .price-table tr:hover {
            background-color: #f0f0f0;
        }

        .up {
            color: var(--success);
        }

        .down {
            color: var(--danger);
        }

        .neutral {
            color: var(--gray);
        }

        .price-note {
            font-style: italic;
            color: var(--gray);
            margin: 20px 0;
            text-align: center;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-item {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-item:hover {
            transform: translateY(-5px);
        }

        .service-item h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .read-more {
            display: inline-block;
            margin-top: 15px;
            font-weight: 500;
            color: var(--primary);
            margin-right: 20px;
        }

        /* Reviews */
        .reviews-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
        }

        .review-item {
            min-width: 350px;
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            scroll-snap-align: start;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .review-author {
            color: var(--primary);
        }

        .review-date {
            color: var(--gray);
        }

        /* CTA Form */
        .cta-section {
            background-color: var(--secondary);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            color: white;
        }

        .cta-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            gap: 15px;
        }

        .cta-form input,
        .cta-form textarea,
        .cta-form button {
            width: 100%;
            padding: 15px;
            border-radius: var(--radius);
            border: none;
            font-family: inherit;
        }

        .cta-form input,
        .cta-form textarea {
            background-color: rgba(255, 255, 255, 0.9);
        }

        .cta-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .cta-form button {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .cta-form button:hover {
            background-color: var(--primary-dark);
        }

        .phone-block {
            margin-top: 30px;
            font-size: 18px;
        }

        .phone-block a {
            color: var(--primary);
            font-weight: 700;
        }

        /* FAQ */
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--light-gray);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 20px;
            background-color: var(--light);
            cursor: pointer;
            position: relative;
            font-size: 18px;
        }

        .faq-question:after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
        }

        .faq-question.active:after {
            content: '-';
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer p {
            padding: 15px 0;
        }

        /* Contacts */
        .contacts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contacts-info h3 {
            color: var(--primary);
            font-size: 20px;
            margin-top: 25px;
        }

        .contacts-info p {
            margin-bottom: 10px;
        }

        .contacts-map {
            height: 400px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .contacts-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        /* Fixed buttons */
        .fixed-buttons {
            position: fixed;
            right: 30px;
            bottom: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }

        .fixed-phone,
        .fixed-whatsapp {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .fixed-phone:hover,
        .fixed-whatsapp:hover {
            transform: scale(1.1);
        }

        .fixed-whatsapp {
            background-color: #25D366;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .contacts-grid {
                grid-template-columns: 1fr;
            }
            
            .contacts-map {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
               /*  flex-direction: column; */
                gap: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .hero {
                padding: 50px 0 80px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 10px;
            }
            
            .fixed-buttons {
                right: 15px;
                bottom: 15px;
            }
            
            .fixed-phone,
            .fixed-whatsapp {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }




/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.toggle-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-menu-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--secondary);
    z-index: 1000;
    transition: var(--transition);
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    color: white;
    font-size: 18px;
    padding: 10px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Move phone to mobile menu */
.header-phone {
    display: flex;
}

.mobile-phone {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.mobile-phone a {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 992px) {
    nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .phone {
        display: none;
    }
    
    .mobile-phone {
        display: block;
    }
    
    .header-container {
        justify-content: space-between;
    }
}


/* стили для блога */
.lwptoc {     
    padding: 20px;     
    background: #f9f8f8;     
    margin-top: 20px; 
}
.main-content{
    margin-top: 10px;
}
/* Основные стили статьи */
.primary-content {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Шапка статьи */
.article-header {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 25px 30px !important;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 5px solid #3498db;
}

.article-header h1 {
    font-size: 32px;
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.article-meta {
    font-size: 14px;
    color: #7f8c8d;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.article-meta time {
    color: #7f8c8d;
}

/* Основное содержимое */
.article-content {
    font-size: 18px;
    color: #444;
}

/* Заголовки */
.wp-block-heading {
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.wp-block-heading h2 {
    font-size: 28px;
    font-weight: 600;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.wp-block-heading h3 {
    font-size: 24px;
    font-weight: 500;
    color: #34495e;
}

/* Параграфы */
.article-content p {
    margin-bottom: 25px;
    text-align: justify;
}

/* Списки */
.wp-block-list {
    margin-left: 20px;
    margin-bottom: 25px;
}

.wp-block-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.wp-block-list li:marker {
    content: "•";
    color: #3498db;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Таблица */
.wp-block-table {
    margin: 30px 0;
    overflow-x: auto;
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.wp-block-table th {
    background-color: #3498db;
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.wp-block-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #ecf0f1;
}

.wp-block-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.wp-block-table tr:hover {
    background-color: #f1f8ff;
}

/* Разделитель */
.wp-block-separator {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, rgba(52,152,219,0) 0%, rgba(52,152,219,0.5) 50%, rgba(52,152,219,0) 100%);
    margin: 40px 0;
}

/* Оглавление */
.lwptoc {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.lwptoc_title {
    font-size: 20px !important;
    color: #2c3e50 !important;
    margin-bottom: 15px;
    display: block;
}

.lwptoc_item {
    margin-bottom: 8px;
}

.lwptoc_item a {
    color: #3498db !important;
    text-decoration: none !important;
    transition: color 0.3s;
}

.lwptoc_item a:hover {
    color: #2980b9 !important;
    text-decoration: underline !important;
}

.lwptoc_item_number {
    color: #7f8c8d;
    margin-right: 5px;
}

/* Подвал статьи */
.article-footer {
    margin-top: 50px;
    padding: 20px 0 !important;
    border-top: 1px solid #ecf0f1;
    font-size: 14px;
    color: #7f8c8d;
}

.article-categories a {
    color: #3498db;
    text-decoration: none;
}

.article-categories a:hover {
    text-decoration: underline;
}

/* Навигация по статьям */
.article-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
}

.nav-previous a, .nav-next a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-previous a:hover, .nav-next a:hover {
    background-color: #f1f8ff;
    color: #2980b9;
}

/* Форма комментариев */
.article-comments {
    margin-top: 50px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.comment-respond {
    margin-top: 20px;
}

.comment-reply-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 150px;
    margin-bottom: 15px;
}

.comment-form .submit {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.comment-form .submit:hover {
    background-color: #2980b9;
}

/* Адаптивность */
@media (max-width: 768px) {
    .primary-content {
        padding: 15px;
    }
    
    .article-header h1 {
        font-size: 26px;
    }
    
    .article-content {
        font-size: 16px;
    }
    
    .wp-block-heading h2 {
        font-size: 24px;
    }
    
    .wp-block-heading h3 {
        font-size: 20px;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 15px;
    }
}

/* Основные стили сайдбара */
.sidebar {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-left: 30px;
}

.widget-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.widget:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    font-weight: 600;
}

/* Поисковая форма */
.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.search-field:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52,152,219,0.2);
}

.search-submit {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.search-submit:hover {
    background-color: #2980b9;
}

/* Категории и статьи */
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.cat-item a::after {
    content: " (" attr(data-count) ")";
    font-size: 0.9em;
    color: #7f8c8d;
}

/* Облако тегов */
.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tagcloud a {
    display: inline-block;
    padding: 5px 12px;
    background-color: #ecf0f1;
    color: #2c3e50;
    border-radius: 15px;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.3s;
}

.tagcloud a:hover {
    background-color: #3498db;
    color: white !important;
}

/* Адаптивность */
@media (max-width: 992px) {
    .sidebar {
        margin-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .search-form {
        flex-direction: column;
    }
    
    .search-submit {
        width: 100%;
    }
    
    .widget-title {
        font-size: 18px;
    }
}

/* Стили для подвала статьи */
.article-footer {
    padding: 25px 0 !important;
    margin-top: 50px;
    border-top: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.article-tags a {
    display: inline-block;
    padding: 6px 12px;
    background-color: #e0e0e0;
    color: #2c3e50;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.article-tags a:hover {
    background-color: #3498db;
    color: white;
}

.article-categories {
    font-size: 15px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-categories a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 4px;
    transition: all 0.3s;
    margin-right: 10px;
}

.article-categories a:hover {
    background-color: rgba(52, 152, 219, 0.2);
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 15px !important;
    }
    
    .article-categories {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Основные стили подвала */
footer {
    color: #ecf0f1;
    padding: 60px 0 0;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #ee9104);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Сетка колонок */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.5);
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ee9104;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    padding: 5px 0;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Нижняя часть подвала */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none !important;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #3498db;
}

.copyright {
    color: #7f8c8d;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Стили для блока "Сайт свободен" */
footer p[style*="color: #ee9104"] {
    background: rgba(0, 0, 0, 0.2) !important;
    padding: 15px 25px !important;
    border-radius: 8px;
    border-left: 4px solid #ee9104;
    margin: 30px 0 !important;
    font-size: 16px !important;
}

footer p[style*="color: #ee9104"] a {
    color: #ee9104 !important;
    text-decoration: none !important;
    transition: all 0.3s;
    font-weight: 600;
}

footer p[style*="color: #ee9104"] a:hover {
    color: #ffaa33 !important;
    text-decoration: underline !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    footer p[style*="color: #ee9104"] {
        font-size: 16px !important;
        padding: 12px 20px !important;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        margin-bottom: 25px;
    }
    
    .footer-column h3 {
        margin-bottom: 15px;
    }
}