/*
Theme Name: Gazelle Transport Pro
Theme URI: https://example.com/gazelle-theme
Author: Your Company
Author URI: https://example.com
Description: Современная и адаптивная тема для сайта по заказу газелей с удобной системой управления услугами и ценами
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gazelle-theme
Tags: transport, business, responsive, custom-menu, custom-logo, featured-images, flexible-header
*/

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #28A745;
    --secondary-color: #1E7E34;
    --accent-color: #5CB85C;
    --dark-color: #1A1A2E;
    --light-color: #F5F5F5;
    --white: #FFFFFF;
    --text-color: #333333;
    --gray-color: #666666;
    --success-color: #28A745;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* ========================================
   TOP BAR (Верхняя панель с контактами)
   ======================================== */

.top-bar {
    background: var(--white);
    border-bottom: 1px solid #E5E5E5;
    padding: 15px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.top-bar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-logo svg {
    width: 50px;
    height: 50px;
    fill: var(--primary-color);
}

.top-bar-logo-text h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.2;
}

.top-bar-logo-text p {
    font-size: 12px;
    color: var(--gray-color);
    margin: 0;
}

.top-bar-contacts {
    display: flex;
    gap: 30px;
    align-items: center;
}

.top-bar-phone-group {
    display: flex;
    flex-direction: column;
}

.top-bar-phone-group a {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-color);
    line-height: 1.3;
}

.top-bar-phone-group a:hover {
    color: var(--primary-color);
}

.top-bar-phone-group small {
    font-size: 12px;
    color: var(--gray-color);
}

.top-bar-email-group {
    display: flex;
    flex-direction: column;
}

.top-bar-email-group a {
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 1.3;
}

.top-bar-email-group a:hover {
    color: var(--primary-color);
}

.top-bar-email-group small {
    font-size: 12px;
    color: var(--gray-color);
}

.top-bar-button {
    background: var(--success-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.4;
}

.top-bar-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* ========================================
   NAVIGATION (Навигационное меню)
   ======================================== */

.main-navigation {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.site-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo svg {
    width: 36px;
    height: 36px;
    fill: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* ========================================
   BREADCRUMBS (Хлебные крошки)
   ======================================== */

.breadcrumbs-wrapper {
    background: transparent;
    padding: 10px 0 15px 0;
    border-bottom: none;
    margin-bottom: 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

.breadcrumbs a {
    color: rgba(0, 0, 0, 0.7);
    transition: color 0.3s ease;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs .separator {
    margin: 0 6px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 12px;
}

.breadcrumbs .current {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* Хлебные крошки в Hero-секции (компактный стиль) */
.page-hero-section .breadcrumbs-wrapper {
    padding: 8px 0 12px 0;
}

.page-hero-section .breadcrumbs {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
}

.page-hero-section .breadcrumbs a {
    color: rgba(0, 0, 0, 0.7);
}

.page-hero-section .breadcrumbs a:hover {
    color: var(--primary-color);
}

.page-hero-section .breadcrumbs .separator {
    color: rgba(0, 0, 0, 0.5);
}

.page-hero-section .breadcrumbs .current {
    color: var(--dark-color);
    font-weight: 600;
}

/* ========================================
   HERO SECTION (Главная секция)
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--success-color);
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.hero-price span {
    font-size: 24px;
    color: var(--gray-color);
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-feature svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.hero-feature span {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    min-width: 200px;
    justify-content: center;
    text-decoration: none;
    line-height: 1.4;
}

.btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.btn-primary:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    object-fit: cover;
}

.hero-badge-float {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.hero-badge-float.rating {
    top: 20px;
    right: 20px;
}

.hero-badge-float.experience {
    bottom: 20px;
    left: 20px;
}

.hero-badge-float svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

/* ========================================
   SERVICES SECTION (Секция услуг)
   ======================================== */

.services-section {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.service-title a {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: var(--primary-color);
}

.service-description {
    color: var(--gray-color);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.service-feature svg {
    width: 18px;
    height: 18px;
    fill: var(--success-color);
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-color);
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-price span {
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
}

/* ========================================
   PRICING TABLE (Таблица цен)
   ======================================== */

.pricing-section {
    background: var(--light-color);
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.pricing-table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.pricing-table th {
    padding: 20px;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--light-color);
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: #E8F5E9;
}

.pricing-table td {
    padding: 18px 20px;
    font-size: 15px;
}

.pricing-table td[data-label] {
    text-align: left;
}

.pricing-table .price-cell {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

.pricing-table .action-cell {
    text-align: center;
}

.btn-small {
    padding: 12px 28px;
    font-size: 14px;
    min-width: 160px;
}

/* ========================================
   ADVANTAGES SECTION (Преимущества)
   ======================================== */

.advantages-section {
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.advantage-card {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 20px;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

/* Dashicons в иконках преимуществ */
.advantage-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: var(--white);
    line-height: 1;
}

.advantage-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.advantage-description {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
   CTA SECTION (Призыв к действию)
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1E7E34 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--light-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section {
    min-width: 0;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

/* Контакты с иконками */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
}

.contact-text {
    flex: 1;
    line-height: 1.5;
}

/* Меню в футере */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Виджеты в футере */
.footer-widget {
    margin-bottom: 20px;
}

.footer-widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color);
}

/* Соцсети */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* Футер bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
}

.footer-inn,
.footer-ogrn,
.footer-additional {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ========================================
   PAGE TEMPLATE STYLES
   ======================================== */

.page-hero-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 100%);
    padding: 60px 0;
}

.page-content-section {
    background: var(--white);
}

.page-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.page-content-wrapper h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 40px 0 20px;
}

.page-content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 30px 0 15px;
}

.page-content-wrapper p {
    margin-bottom: 20px;
}

.page-content-wrapper ul,
.page-content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content-wrapper li {
    margin-bottom: 10px;
    list-style: disc;
}

.service-includes-section {
    background: var(--light-color);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.include-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.include-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.include-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.include-text {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.5;
}

.page-advantages-section {
    background: var(--white);
}

/* ========================================
   БЛОК 1: НАБОРЫ ПРАЙСОВ
   ======================================== */

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    width: 100%;
}

.pricing-cards-grid[data-columns="4"] {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-card-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.pricing-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.pricing-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.pricing-card-title a {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.pricing-card-title a:hover {
    color: var(--primary-color);
}

.pricing-card-description {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}

.pricing-card-description p {
    margin-bottom: 10px;
}

.pricing-card-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-description li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
	list-style: none; 
}

.pricing-card-description ul {
    list-style: none;
    padding-left: 0;
}

.pricing-card-description li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.pricing-card-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light-color);
    margin-top: auto;
    align-items: center;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pricing-card-price strong {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-card-price span {
    font-size: 14px;
    color: var(--gray-color);
    font-weight: 500;
}

.pricing-card-footer .btn {
    width: 100%;
    padding: 14px 28px;
}

/* ========================================
   БЛОК 2: АВТОПАРК
   ======================================== */

.fleet-showcase {
    margin: 60px auto;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.fleet-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.fleet-tab {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.fleet-tab:hover,
.fleet-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

.fleet-slider-container {
    position: relative;
    width: 100%;
}

.fleet-category-group {
    width: 100%;
}

.fleet-slider {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 40px 60px;
}

.fleet-prev,
.fleet-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-prev {
    left: -30px;
}

.fleet-next {
    right: -30px;
}

.fleet-prev:hover,
.fleet-next:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.fleet-slide {
    display: none;
}

.fleet-slide.active {
    display: block;
}

.fleet-vehicle-title {
    display: none;
}

.fleet-content > div > h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fleet-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
    align-items: start;
    margin-bottom: 0;
}

.fleet-image {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fleet-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.fleet-cube {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.fleet-cube-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-cube-wrapper img {
    width: 100%;
    height: auto;
    max-width: 180px;
    position: relative;
}

.fleet-dimensions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.fleet-dimensions span {
    position: absolute;
    font-weight: 800;
    font-size: 14px;
    color: var(--primary-color);
    text-shadow: 0 0 4px white, 0 0 8px white, 0 0 12px white;
}

.dim-length {
    bottom: 15%;
    left: 70%;
    transform: translateX(-50%);
}

.dim-width {
    right: 80%;
    top: 70%;
    transform: translateY(-50%);
}

.dim-height {
    left: 45%;
    top: 60%;
    transform: translateY(-50%);
}

.fleet-specs {
    border-left: 3px solid var(--light-color);
    padding-left: 20px;
}

.fleet-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-specs li {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2px 0;
    font-size: 14px;
    line-height: 1.3;
    position: relative;
}

.fleet-specs li:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    border-bottom: 1px dotted #d1d1d1;
    left: 0;
    bottom: 4px;
    z-index: 0;
}

.fleet-specs li:not(:last-child) {
    margin-bottom: 0.4em;
}

.fleet-specs li span:first-child {
    color: var(--text-color);
    font-weight: 400;
    background-color: var(--white);
    position: relative;
    z-index: 1;
    padding-right: 2px;
}

.fleet-specs li span:last-child {
    color: var(--primary-color);
    font-weight: 700;
    text-align: right;
    background-color: var(--white);
    position: relative;
    z-index: 1;
    padding-left: 2px;
    max-width: 50%;
}

.fleet-description {
    border-left: 3px solid var(--light-color);
    padding-left: 20px;
}

.fleet-description p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0 0 8px 0;
}

.fleet-description p {
    margin: 0 0 8px 0;
}

.fleet-order {
    width: 100%;
    margin-top: 10px;
}

.fleet-order .btn {
    width: 100%;
    font-size: 15px;
    padding: 12px 30px;
    min-width: auto;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1199px) {
    .fleet-slider {
        padding: 35px 50px;
    }
    
    .fleet-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .fleet-image {
        grid-column: span 1;
    }
    
    .fleet-cube {
        grid-column: span 1;
    }
    
    .fleet-specs {
        grid-column: span 1;
    }
    
    .fleet-description {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-price {
        font-size: 38px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-card-content {
        padding: 25px;
    }
    
    /* Футер на планшетах - 2 колонки */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .top-bar-logo {
        width: 100%;
        justify-content: center;
    }
    
    .top-bar-contacts {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .top-bar-phone-group,
    .top-bar-email-group {
        text-align: center;
    }
    
    .top-bar-button {
        width: 100%;
        max-width: 320px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-price {
        font-size: 32px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .page-hero-section {
        padding: 40px 0;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .page-content-wrapper h2 {
        font-size: 26px;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card-image {
        height: 180px;
    }
    
    .pricing-card-content {
        padding: 20px;
    }
    
    .pricing-card-title {
        font-size: 20px;
    }
    
    .pricing-card-price strong {
        font-size: 28px;
    }
    
    .fleet-showcase {
        padding: 0 15px;
    }
    
    .fleet-tabs {
        flex-direction: column;
    }
    
    .fleet-tab {
        width: 100%;
        text-align: center;
    }
    
    .fleet-slider {
        padding: 25px 15px;
    }
    
    .fleet-prev,
    .fleet-next {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .fleet-prev {
        left: -15px;
    }
    
    .fleet-next {
        right: -15px;
    }
    
    .fleet-vehicle-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .fleet-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fleet-image {
        gap: 0;
    }
    
    .fleet-order {
        margin-top: 15px;
    }
    
    .fleet-cube {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .fleet-cube img {
        max-width: 180px;
        width: 100%;
    }
    
    .fleet-specs h4,
    .fleet-description h4 {
        margin-top: 0;
    }
    
    .fleet-order .btn {
        width: 100%;
        min-width: auto;
        font-size: 15px;
        padding: 12px 25px;
    }
    
    /* Футер на мобильных - 1 колонка */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 25px;
    }
    
    .footer-copyright {
        font-size: 13px;
        line-height: 1.8;
    }
    
    .footer-separator {
        display: inline-block;
    }
    
    /* Адаптивная таблица цен - карточки для мобильных */
    .pricing-table-wrapper {
        border-radius: 15px;
        margin-top: 30px;
    }
    
    .pricing-table {
        min-width: 0;
        border: 0;
    }
    
    .pricing-table thead {
        display: none;
    }
    
    .pricing-table tbody {
        display: block;
    }
    
    .pricing-table tbody tr {
        display: block;
        background: var(--white);
        margin-bottom: 20px;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        border: none;
        overflow: hidden;
        transition: var(--transition);
    }
    
    .pricing-table tbody tr:hover {
        box-shadow: 0 5px 20px rgba(40, 167, 69, 0.15);
        background: var(--white);
        transform: translateY(-3px);
    }
    
    .pricing-table tbody tr:last-child {
        margin-bottom: 0;
    }
    
    .pricing-table td {
        display: block;
        padding: 0;
        border: none;
        text-align: left;
    }
    
    /* Первая колонка (заголовок карточки) */
    .pricing-table td:first-child {
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        color: var(--white);
        font-weight: 700;
        font-size: 18px;
        padding: 18px 20px;
        border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    }
    
    /* Остальные колонки (данные) */
    .pricing-table td:not(:first-child) {
        padding: 14px 20px;
        font-size: 15px;
        border-bottom: 1px solid var(--light-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .pricing-table td:last-child {
        border-bottom: none;
        padding-bottom: 18px;
    }
    
    /* Метки (названия колонок) перед значениями */
    .pricing-table td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-color);
        margin-right: 10px;
        flex: 0 0 50%;
    }
    
    /* Значения */
    .pricing-table td:not(:first-child) {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .fleet-slider {
        padding: 20px 12px;
    }
    
    .fleet-prev,
    .fleet-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .fleet-prev {
        left: -12px;
    }
    
    .fleet-next {
        right: -12px;
    }
    
    .fleet-vehicle-title {
        font-size: 20px;
    }
}

/* ========================================
   НАБОРЫ УСЛУГ (Service Sets)
   ======================================== */

.service-set-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    width: 100%;
}

.service-set-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.service-set-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-set-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-set-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-set-title {
    padding: 25px 25px 20px 25px;
    text-align: center;
}

.service-set-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.4;
}

.service-set-title a {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.service-set-title a:hover {
    color: var(--primary-color);
}

.service-set-title a:hover h3 {
    color: var(--primary-color);
}

.service-set-description {
    padding: 15px 25px 25px 25px;
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
}

.service-set-description p {
    margin-bottom: 12px;
    margin-top: 0;
    text-indent: 0;
}

.service-set-description p:first-child {
    margin-top: 0;
}

.service-set-description p:last-child {
    margin-bottom: 0;
}

.service-set-description ul,
.service-set-description ol {
    margin: 15px 0;
    padding-left: 30px;
}

.service-set-description li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.service-set-description li:last-child {
    margin-bottom: 0;
}

.service-set-description strong,
.service-set-description b {
    font-weight: 600;
    color: var(--text-color);
}

/* Адаптив для наборов услуг */
@media (max-width: 992px) {
    .service-set-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .service-set-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-set-image {
        height: 200px;
    }
    
    .service-set-title {
        padding: 20px;
    }
    
    .service-set-title h3 {
        font-size: 18px;
    }
    
    .service-set-description {
        padding: 12px 20px 20px 20px;
        font-size: 14px;
    }
    
    .service-set-description p {
        margin-bottom: 10px;
    }
    
    .service-set-description ul,
    .service-set-description ol {
        padding-left: 25px;
        margin: 12px 0;
    }
    
    .service-set-description li {
        margin-bottom: 8px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.mb-small {
    margin-bottom: 20px;
}

.mb-medium {
    margin-bottom: 40px;
}

.mb-large {
    margin-bottom: 60px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}
