/* ==================================== */
/* 0. Общие стили и сброс */
/* ==================================== */
body {
    /* Используем современный, легко читаемый шрифт */
    font-family: 'Open Sans', sans-serif; 
    margin: 0;
    padding: 0;
    color: #373632; /* Основной цвет текста: темно-серый */
    background-color: #f4f4f4; /* Светлый серый фон */
    line-height: 1.6;
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
a {
    text-decoration: none;
    color: #f9ac00; /* Акцентный цвет для ссылок */
    transition: color 0.3s;
}
a:hover {
    color: #373632;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
section {
    padding: 60px 0; 
}
h2 {
    /* Используем акцентный шрифт для заголовков */
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #373632;
    text-transform: uppercase;
    font-weight: 900; 
}
h3 {
    font-family: 'Montserrat', sans-serif;
}
.btn {
    padding: 14px 30px; 
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.1s;
    display: inline-block;
    text-align: center;
    line-height: 1; 
}
.primary-btn {
    background-color: #f9ac00; /* Яркий акцентный цвет */
    color: #373632; 
}
.primary-btn:hover {
    background-color: #e39b00;
    transform: translateY(-2px);
}
.secondary-btn {
    background-color: #373632;
    color: white;
}
.secondary-btn:hover {
    background-color: #555;
}
.large-btn {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
}
input, select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}


/* ==================================== */
/* 1. Стили ШАПКИ (HEADER) */
/* ==================================== */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
}
.header__info-top {
    background-color: #f4f4f4; 
    color: #373632;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a {
    color: #373632;
    margin-left: 20px;
}
.work-schedule {
     margin-left: auto;
     font-weight: 600;
}
.whatsapp-link {
    background-color: #f9ac00; 
    color: #373632;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.header__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    font-size: 32px;
    font-weight: 900;
    color: #373632;
}

/* Навигация */
.main-nav-full ul {
    display: flex;
    gap: 20px;
}
.main-nav-full a {
    color: #373632;
    font-weight: 600;
    padding: 5px 0;
    display: block;
}
.main-nav-full a.active {
    color: #f9ac00;
}
.main-nav-full a:hover {
    color: #f9ac00;
    border-bottom: 2px solid #f9ac00; 
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    min-width: 250px;
    padding: 10px 0;
    border-radius: 4px;
}
.dropdown:hover .dropdown-menu {
    display: block; 
}
.dropdown-menu li a {
    padding: 8px 15px;
    font-weight: normal;
    font-size: 15px;
    color: #373632;
    border-bottom: none;
}
.dropdown-menu li a:hover {
    background-color: #f4f4f4;
}


/* ==================================== */
/* 2. Стили ГЛАВНОГО ЭКРАНА (HERO-SECTION) */
/* ==================================== */
.hero-section {
    padding: 40px 0;
    background-color: white;
}
.hero-grid {
    display: grid;
    grid-template-columns: 350px 1fr; 
    gap: 30px;
    min-height: 450px; 
}

/* --- ЛЕВАЯ КОЛОНКА (ФОРМА) --- */
.calculator-panel {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.calculator-header-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #373632;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.calc-step-info {
    font-size: 15px;
    margin-bottom: 15px;
    color: #666;
}
.calc-step-number {
    font-weight: bold;
    color: #373632;
}
.address-input-group {
    margin-bottom: 15px;
}
.address-input-group label {
    display: block;
    font-size: 13px;
    color: #373632;
    margin-bottom: 5px;
}
.input-with-icon {
    position: relative;
}
.icon-map, .icon-calendar {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #f9ac00;
    pointer-events: none;
}
.add-address-link {
    display: block;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
}
/* Кнопки времени подачи */
.time-select-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #373632;
}
.radio-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.time-option {
    flex-grow: 1;
    background-color: white;
    border: 1px solid #ddd;
    color: #373632;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s, border-color 0.2s;
}
.time-option.active {
    background-color: #373632;
    color: white;
    border-color: #373632;
    font-weight: 700;
}
.datetime-group {
    display: flex;
    gap: 20px;
}
.datetime-group > div {
    flex: 1;
}
.datetime-group label {
    font-size: 13px;
    color: #373632;
    margin-bottom: 5px;
}

/* --- ПРАВАЯ КОЛОНКА (БАННЕР: ОБНОВЛЕННЫЕ СТИЛЫ) --- */
.banner-area {
    /* Основной контейнер для фона и всего контента */
    position: relative;
    min-height: 550px; 
    border-radius: 8px;
    overflow: hidden;
    background-color: #373632; 
    
    /* Фоновое изображение (укажите путь к вашему изображению) */
    background-image: url('img/blank-cargo-truck-road.jpg');
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

/* Затемняющий слой поверх изображения для читаемости текста */
.banner-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}

/* Обёртка для всего контента поверх фона */
.banner-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    /* Упрощаем сетку: Заголовок и Карточки */
    grid-template-rows: auto auto; 
    gap: 25px; /* Отступ между заголовком и карточками */
    padding: 25px;
    max-width: 1100px; /* Увеличиваем ширину для размещения карточек */
    margin: 0 auto;
}

/* Заголовок и подзаголовок */
.hero-text-overlay {
    text-align: center;
    margin-bottom: 0;
}
.hero-text-overlay h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px; 
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    color: white; 
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}
.hero-text-overlay .subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    color: white; /* Подзаголовок белый */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


/* --- КОНТЕЙНЕР ДЛЯ ВСЕХ 4 КАРТОЧЕК --- */
.banner-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 колонки одинаковой ширины */
    gap: 10px; /* Уменьшаем зазор между карточками */
}

/* --- ОБЩИЕ СТИЛИ КАРТОЧЕК (offer-card и feature-card) --- */
.offer-card, .feature-card {
    padding: 15px 10px; /* Уменьшаем отступы для компактности */
    border-radius: 8px; 
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white; /* Весь текст белый */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.offer-card:hover, .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/* Стили для контейнера иконки */
.card-icon {
    width: 48px; 
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    line-height: 1;
}
/* Стили для PNG-изображений внутри контейнера иконки */
.card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Гарантируем, что иконки будут белыми на темном фоне */
    filter: brightness(0) invert(1);
}


/* 1. offer-card: Быстрый заказ (уникальные элементы) */
.offer-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px; 
    font-weight: 900;
    margin: 0 0 4px;
    text-transform: uppercase;
    color: white; 
}
.price-highlight {
    font-size: 24px; 
    font-weight: 900;
    color: #f9ac00; /* Акцентный цвет для стоимости */
    display: block;
    text-shadow: none;
    line-height: 1.2;
}

/* 2. detailed-service: Под ключ */
.detailed-service {
    text-align: center;
}
.detailed-service h3 {
    color: white; 
    margin-bottom: 0;
}
.detailed-service p {
    font-size: 13px; 
    margin: 4px 0 0;
    color: #ccc; /* Светлый текст для параграфа */
}

/* 3. и 4. feature-card: Круглосуточно и Грузчики */
.feature-card h3 {
    font-size: 16px; 
    font-weight: 700;
    margin: 0 0 4px;
    color: white;
    text-align: center;
}
.feature-detail {
    font-size: 13px;
    margin: 0;
    color: #ccc;
    text-align: center;
}
.feature-detail strong {
    color: #f9ac00;
}

/* --- Дополнительные стили для блока ИТОГО в калькуляторе --- */
.btTotalNextWrapper {
    /* Обеспечиваем выравнивание элементов и отступы */
    padding-top: 20px;
    border-top: 1px solid #ddd;
    margin-top: 10px;
}
.btQuoteTotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}
.btQuoteTotalText {
    font-size: 18px;
    font-weight: 600;
    color: #373632;
}
.btQuoteTotalCalc {
    font-size: 32px;
    font-weight: 900;
    color: #f9ac00;
    line-height: 1;
}
.btQuoteTotalCurrency {
    font-size: 16px;
    font-weight: 600;
    color: #373632;
}

/* --- Стилизация кнопки как в оригинальном плагине (Оставить заявку) --- */
.btTotalNextWrapper .primary-btn {
    /* Сбрасываем старые стили large-btn */
    padding: 10px 25px;
    
    /* Основные стили */
    background-color: #f9ac00; 
    color: #373632;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    
    /* Размещение иконки/стрелки */
    position: relative;
    display: flex; /* Используем Flexbox для выравнивания текста и иконки */
    align-items: center;
    justify-content: center;
    gap: 8px; /* Расстояние между текстом и иконкой */
    
    /* Выравниваем кнопку по правому краю */
    margin-left: auto;
}
.btTotalNextWrapper .primary-btn:hover {
    background-color: #e39b00;
}
/* ==================================== */
/* 3. Стили БЛОКА УСЛУГ (SERVICES) */
/* ==================================== */
.services-block {
    padding: 60px 0;
    background-color: white;
}

/* Сетка для всех 12 карточек */
.services-grid {
    display: grid;
    /* 4 колонки на больших экранах, как в примере */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

/* Стиль отдельной карточки услуги */
.service-item {
    background-color: white; /* Белый фон */
    padding: 20px;
    border-radius: 4px; 
    border: 1px solid #eee; /* Легкая рамка */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Легкая тень */
    transition: box-shadow 0.3s;
    text-align: left;
}
.service-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Иконка */
.service-icon {
    float: left; /* Размещаем слева */
    margin-right: 15px;
    font-size: 32px;
    color: #f9ac00; /* Оранжевый акцентный цвет */
    /* Если используются PNG: */
    /* width: 32px; height: 32px; */
}

/* Заголовок */
.service-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #373632;
    margin: 0;
    /* Очищаем обтекание, чтобы текст начинался ниже иконки */
    overflow: hidden; 
    line-height: 1.2;
    padding-top: 5px; /* Небольшой отступ сверху */
}

/* Краткое описание */
.service-description {
    font-size: 14px;
    color: #666;
    margin: 10px 0 10px;
    clear: both; /* Обязательно, чтобы описание начиналось под иконкой */
    min-height: 40px; /* Чтобы все карточки были одинаковой высоты */
}

/* Цена */
.service-price {
    font-size: 16px;
    font-weight: 700;
    color: #f9ac00; /* Оранжевый акцентный цвет */
    margin-top: 5px;
}
.service-price.link {
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1024px) {
    /* 3 колонки на планшетах */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    /* 2 колонки на узких экранах */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-item {
        padding: 15px;
    }
    .service-icon {
        font-size: 28px;
    }
}
@media (max-width: 480px) {
    /* 1 колонка на мобильных */
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================== */
/* 4. БЛОК АВТОПАРКА (TRANSPORT-PRICES) */
/* ==================================== */
.transport-prices {
    background-color: #f4f4f4;
}
.transport-image {
    width: 100%; /* Занимает всю ширину карточки */
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Скрываем части, если изображение слишком большое */
    border-radius: 4px;
}

.transport-image img {
    max-width: 100%; /* Изображение не выйдет за границы контейнера */
    max-height: 100%;
    height: auto;
    object-fit: contain; /* Сохраняем пропорции, помещая его полностью в контейнер */
}
.price-note {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.transport-card {
    /* Добавляем Flexbox для вертикального выравнивания содержимого */
    display: flex;
    flex-direction: column;
    
    /* Основное оформление карточки */
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%; /* Убедимся, что все карточки в сетке transport-grid имеют одинаковую высоту */
}
.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Стилизация кнопки внутри карточки */
.transport-card .btn {
    /* Самое главное: отталкиваем кнопку к самому низу */
    margin-top: auto;
}

/* Стилизация самого списка */
.transport-card ul.suited-for {
    /* Добавляем небольшой отступ снизу, чтобы список не прилипал к кнопке */
    margin-bottom: 20px; 
}
/* --- Стили для сворачиваемого блока --- */
.collapsible-content {
    /* Скрываем контент по умолчанию */
    max-height: 0; 
    overflow: hidden;
    /* Добавим плавность для красивого открытия/закрытия */
    transition: max-height 0.4s ease-out; 
    padding-top: 0;
}

/* Класс, который JS будет добавлять для отображения контента */
.collapsible-content.active {
    /* Устанавливаем достаточно большое значение, чтобы контент поместился */
    max-height: 500px; 
    padding-top: 15px; /* Вернем отступ сверху */
}

/* --- Стилизация кнопки "Подробнее" (переключателя) --- */
.details-toggle {
    background: none;
    border: none;
    color: #f9ac00; /* Цвет нашего акцента */
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0 20px;
    padding: 0;
    text-align: left;
    display: block; /* Занимает всю ширину, чтобы не мешать выравниванию Flexbox */
    
    /* Добавим иконку-стрелку для визуала */
    position: relative;
    padding-right: 18px;
    transition: color 0.2s;
}

.details-toggle:hover {
    color: #e39b00;
}

/* Иконка-стрелка */
.details-toggle::after {
    content: "\25BE"; /* Символ "Черный треугольник вниз" */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.2s;
    font-size: 10px;
}

/* Поворачиваем стрелку, когда контент активен (открыт) */
.details-toggle.active::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Убедимся, что кнопка "Подробнее" не мешает кнопке "ЗАКАЗАТЬ" прижиматься к низу */
.transport-card .details-toggle {
    margin-top: 10px; /* Добавим небольшой отступ */
}
/* --- Стили для технических деталей и преимуществ --- */
.transport-details {
    /* Небольшой отступ от основного описания цены */
    margin: 10px 0 15px; 
    padding: 10px 0;
    border-top: 1px dashed #ddd; /* Отделяем детали от цены и списка */
}

.transport-details p {
    margin: 0 0 4px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.car-model {
    font-weight: 600;
    color: #373632;
    margin-bottom: 5px !important;
}

.car-dimens {
    /* Более приглушенный цвет для габаритов */
    color: #777; 
}

.car-feature {
    /* Выделяем преимущество */
    font-weight: 600;
    color: #3f9500; /* Зеленый или другой акцентный цвет для преимущества */
}

/* Обновляем список, чтобы он не сливался с деталями */
.transport-card ul.suited-for {
    padding-top: 15px; 
    border-top: 1px dashed #ddd;
}
.specs {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.price {
    font-size: 52px;
    color: #f9ac00;
    font-weight: bold;
    line-height: 1;
}
.unit {
    font-size: 18px;
    font-weight: normal;
    color: #373632;
    display: block;
    margin-top: 10px;
}
.price-extra {
    margin: 5px 0 15px;
    font-size: 16px;
    color: #333;
}
.suited-for {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
    font-size: 15px;
}
/* ==================================== */
/* 5. БЛОК БЫСТРАЯ ЗАЯВКА (QUICK-ORDER) */
/* ==================================== */
.quick-order-section {
    padding: 60px 0;
    overflow: hidden; 
    position: relative;
    /* Убедимся, что секция занимает 100% ширины, чтобы фон был желтым на всю ширину экрана */
    width: 100%; 
}

/* Используем стандартный .container (max-width: 1100px) для ограничения контента */
/* Мы используем комбинацию .container и .quick-order-container */
.container.quick-order-container {
    background-color: #f9ac00; 
    display: flex;
    align-items: center; 
    gap: 40px;
    /* Сбрасываем лишние margin/padding, если они были, хотя .container должен это делать */
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.order-form-content {
    flex: 1 1 50%; /* Занимает около половины контейнера */
    max-width: 550px;
    padding-right: 20px;
}

.order-form-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #373632;
    margin-bottom: 15px;
}

.order-form-content .description {
    font-size: 16px;
    color: #373632;
    margin-bottom: 25px;
}

/* --- Стилизация полей формы --- */
.quick-order-form .form-group {
    margin-bottom: 15px;
}

.quick-order-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: #373632;
}

.quick-order-form input {
    width: 100%;
    /* Имитируем стиль яркого, подсвеченного поля */
    background-color: #ffda7a; 
    border: 1px solid transparent; 
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 16px;
    color: #373632;
    transition: background-color 0.2s;
}

.quick-order-form input:focus {
    background-color: white;
    border-color: #373632;
    outline: none;
}

/* --- Кнопка и Примечание о политике --- */
/* Класс secondary-btn будет черным на желтом фоне */
.secondary-btn {
    background-color: #373632; 
    color: white;
    border: 2px solid #373632;
    transition: background-color 0.3s;
}
.secondary-btn:hover {
    background-color: #1e1e1e;
}
.quick-order-form .large-btn {
    width: 250px; /* Фиксированная ширина кнопки */
    margin-top: 10px;
}

.privacy-note {
    font-size: 12px;
    color: #373632;
    margin-top: 20px;
    max-width: 350px;
}
.privacy-link {
    color: #373632;
    text-decoration: underline;
    font-weight: 600;
}

/* --- Изображение Грузовика --- */
.order-image-wrapper {
    flex: 1 1 50%;
    text-align: right;
}
.order-image-wrapper img {
    max-width: 100%;
    height: auto;
}


/* АДАПТИВНОСТЬ */
@media (max-width: 992px) {
    .quick-order-container {
        flex-direction: column; /* На узких экранах располагаем вертикально */
        text-align: center;
    }
    .order-form-content {
        max-width: 100%;
        padding-right: 0;
    }
    .order-form-content h2 {
        font-size: 30px;
    }
    .order-image-wrapper {
        text-align: center;
        padding: 0 20px;
    }
    .quick-order-form .large-btn {
        width: 100%; 
    }
    .privacy-note {
        margin-left: auto;
        margin-right: auto;
    }
}
/* ==================================== */
/* 5. БЛОК ЦЕН НА ГРУЗЧИКОВ/РАЗНОРАБОЧИХ */
/* ==================================== */
.labour-prices {
    background-color: #f4f4f4;
}
.labour-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.labour-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid #373632;
}
.labour-card h3 {
    color: #373632;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-top: 0;
    text-align: center;
}
.price-main {
    font-size: 36px;
    color: #f9ac00;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 5px;
}
.min-order {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    color: #373632;
}
.included {
    list-style: disc;
    padding-left: 20px;
    font-size: 15px;
}
.extra-note {
    font-size: 13px;
    color: #999;
    margin: 15px 0;
}
.labour-card .btn {
    width: 100%;
}

/* ==================================== */
/* 6. БЛОК УПАКОВОЧНЫХ МАТЕРИАЛОВ */
/* ==================================== */
.packing-materials {
    background-color: #ffffff;
}
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.material-item {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.material-name {
    font-weight: 600;
    color: #373632;
    margin: 0 0 5px;
}
.material-price {
    font-size: 24px;
    font-weight: 700;
    color: #f9ac00;
    margin: 0;
}

/* ==================================== */
/* 7. СТИЛИ ДЛЯ ПОЛНОГО БЛОКА КАЛЬКУЛЯТОРА */
/* ==================================== */
.calculator-full-section {
    padding: 40px 0;
    /* Можно добавить контрастный фон, если нужно выделить блок */
    background-color: #fcfcfc; 
}

/* Оформляем сам виджет калькулятора, но ограничиваем его ширину внутри контейнера */
.calculator-panel {
    max-width: 600px; /* Ограничиваем ширину, чтобы он не был слишком растянутым */
    margin: 0 auto; /* Центрируем внутри контейнера */
    padding: 25px;
    background-color: white;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.calculator-header-text {
    font-size: 24px;
    font-weight: 700;
    color: #373632;
    margin-bottom: 25px;
    text-align: center;
}

/* Стили для новых элементов ИТОГО */
.btTotalNextWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Выравниваем элементы справа */
    padding-top: 15px;
    border-top: 1px solid #ddd;
    margin-top: 15px;
}
.estimated-time-display {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}
.btQuoteTotal {
    /* Оставляем выравнивание для "Итого" */
    width: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}
.btTotalNextWrapper .primary-btn {
    /* Используем компактный стиль, как договаривались ранее, но можно сделать его шире */
    width: 250px; 
    text-align: center;
    justify-content: center;
}
/* ==================================== */
/* 7. БЛОК ПРЕИМУЩЕСТВ И ЦИФРЫ (ADVANTAGES-FULL) */
/* ==================================== */
.advantages-full {
    background-color: white;
    padding-bottom: 30px;
}
.advantages-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
    margin-bottom: 50px;
}
.advantage-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: border-color 0.3s;
}
.advantage-item:hover {
    border-color: #f9ac00;
}
.advantage-item .icon {
    font-size: 40px;
    color: #f9ac00;
    display: block;
    margin-bottom: 10px;
}
.advantage-item h3 {
    font-size: 16px;
    color: #373632;
    font-weight: 700;
    margin: 0;
}

.achievements {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
    background-color: #373632;
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}
.achievement-item .number {
    font-size: 72px;
    font-weight: 900;
    color: #f9ac00;
    margin: 0;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}
.achievement-item .text {
    font-size: 18px;
    color: #bbb;
    margin-top: 5px;
}

/* ==================================== */
/* 8. БЛОК ЭТАПОВ РАБОТЫ (WORKFLOW) */
/* ==================================== */
.workflow {
    background-color: #f4f4f4;
}
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: center;
}
.workflow-step {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #f9ac00;
}
.workflow-step span {
    color: #373632;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

/* ==================================== */
/* 9. БЛОК ОТЗЫВОВ (REVIEWS-SECTION) */
/* ==================================== */
.reviews-section {
    padding: 60px 0;
    background-color: #f4f4f4; /* Светло-серый фон для секции */
}

/* Сетка для расположения отзывов */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Две колонки */
    gap: 30px;
    margin-top: 30px;
}

/* Стиль отдельной карточки отзыва */
.review-card {
    background-color: white; /* Белый фон карточки */
    padding: 30px;
    border-radius: 12px; /* Скругленные углы */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Легкая тень */
    height: 100%; /* Гарантирует одинаковую высоту */
    
    /* Используем Flexbox для прижатия автора к низу */
    display: flex;
    flex-direction: column;
}

.review-text {
    font-size: 15px;
    color: #373632;
    line-height: 1.6;
    margin-bottom: 20px;
    /* Важно: отталкиваем блок автора вниз */
    margin-top: auto; 
}

/* Блок автора с фото и именем */
.review-author {
    display: flex;
    align-items: center;
    margin-top: 15px; /* Отделяем автора от текста, если текст короткий */
    padding-top: 15px;
    border-top: 1px solid #eee; /* Аккуратный разделитель */
}

.author-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Круглое фото */
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #f9ac00; /* Небольшой акцентный ободок */
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #373632;
    margin: 0;
}


/* АДАПТИВНОСТЬ */
@media (max-width: 992px) {
    /* На планшетах делаем отзывы в одну колонку */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .review-card {
        padding: 20px;
    }
}
/* ==================================== */
/* 10. БЛОК КЛИЕНТОВ */
/* ==================================== */
.clients {
    background-color: #f4f4f4;
}

/* ==================================== */
/* 11. БЛОК КОНТАКТЫ И РЕЙТИНГИ (CONTACT-FOOTER-INFO) */
/* ==================================== */
.contact-footer-info {
    background-color: #373632;
    color: white;
    padding: 40px 0 20px;
}
.info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.info-blocks h3 {
    color: #f9ac00;
    margin-top: 0;
    font-size: 20px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}
.contact-details .phone-large {
    font-size: 28px;
    font-weight: bold;
    color: #f9ac00;
    margin: 10px 0;
}
.rating-block p {
    margin: 5px 0;
    font-size: 16px;
}
.popular-services-footer ul a {
    color: #bbb;
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}
.attention-note {
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #555;
    padding-top: 15px;
}

/* ==================================== */
/* 12. Стили ПОДВАЛА (FOOTER) */
/* ==================================== */
.footer {
    background-color: #222;
    color: #aaa;
    padding: 15px 0;
    font-size: 14px;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-nav a {
    color: #aaa;
    margin-left: 20px;
}
.footer-nav a:hover {
    color: #f9ac00;
}

/* ==================================== */
/* АДАПТИВНОСТЬ (MOBILE) */
/* ==================================== */
@media (max-width: 1024px) {
    .main-nav-full {
        display: none; 
    }
    .header__main {
        justify-content: space-between;
    }
    .hero-grid {
        grid-template-columns: 1fr; 
    }
    .banner-area {
        min-height: 400px;
    }
    .banner-content-wrapper {
        padding: 15px;
        gap: 10px;
    }
    .calculator-panel {
        order: -1; 
    }
    .hero-text-overlay h1 {
        font-size: 38px;
    }
    .hero-text-overlay .subtitle {
        font-size: 18px;
    }
    
    /* На планшетах делаем 2 ряда по 2 карточки */
    .banner-cards-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .offer-card h3, .feature-card h3 {
        font-size: 17px;
    }
    .price-highlight {
        font-size: 28px;
    }
    .card-icon {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 768px) {
    h2 {
        font-size: 28px;
    }
    .top-bar {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .work-schedule {
        margin: 5px 0;
    }
    .top-contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .top-contacts a {
        margin: 5px 0;
    }
    
    /* На мобильных делаем 4 карточки в один столбец */
    .banner-cards-row {
        grid-template-columns: 1fr;
    }
    .offer-card, .feature-card {
        padding: 15px;
    }
    .hero-text-overlay h1 {
        font-size: 28px;
    }
    .hero-text-overlay .subtitle {
        font-size: 15px;
    }
    .offer-card h3, .feature-card h3 {
        font-size: 16px;
    }
    .price-highlight {
        font-size: 24px;
    }
    .detailed-service p, .feature-detail {
        font-size: 12px;
    }

    .transport-grid, .labour-grid, .reviews-grid, .workflow-grid, .info-blocks, .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements {
        flex-direction: column;
        gap: 30px;
    }
    .achievement-item .number {
        font-size: 50px;
    }
    
    .info-blocks h3 {
        text-align: center;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav {
        margin-top: 10px;
    }
    .footer-nav a {
        margin: 0 10px;
    }
}