/* ==========================
   service.css
   Стили для страницы "Сервис MUL"
   ========================== */

/* RESET и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* СТИЛИ ДЛЯ КНОПКИ .header-btn */
.header-btn {
    background: linear-gradient(45deg, #f25c05, #ff8c33);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1.5;
    min-height: 40px;
    font-size: 1rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(242, 92, 5, 0.6), 0 0 5px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #d94a00, #ff8c33);
    animation: pulse 0.5s infinite;
}

/* Анимация пульсации */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(242, 92, 5, 0.6), 0 0 5px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1);
    }
}

/* Hero-секция: фон синий */
.hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: #1a3c5e;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Блок "Оригинальные запасные части" */
.parts-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.parts-section h2 {
    font-size: 2.2rem;
    color: #f25c05;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.parts-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.parts-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.parts-card:hover {
    transform: translateY(-5px);
}

.parts-card h3 {
    font-size: 1.2rem;
    color: #1a3c5e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.parts-card h3 .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #f25c05;
    border-radius: 50%;
}

.parts-card h3 .icon-wrapper .material-icons {
    font-size: 1.8rem;
    color: #fff;
}

.parts-card p {
    font-size: 0.95rem;
    color: #0d1b2a;
    line-height: 1.5;
}

/* Стили для списка преимуществ */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #0d1b2a;
    margin-bottom: 10px;
    line-height: 1.5;
}

.benefits-list li .material-icons {
    font-size: 1.5rem;
    color: #f25c05;
}

.benefits-list li strong {
    color: #1a3c5e;
}

/* Обновленный блок "Почему стоит выбирать оригинальные комплектующие MUL?" */
.why-mul-new {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
}

.why-mul-new h2 {
    font-size: 2rem;
    color: #f25c05;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.why-mul-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.why-mul-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.why-mul-card:hover {
    transform: translateY(-5px);
}

.why-mul-card .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #f25c05;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.why-mul-card .icon-wrapper .material-icons {
    font-size: 2.5rem;
    color: #fff;
}

.why-mul-card h3 {
    font-size: 1.2rem;
    color: #1a3c5e;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.why-mul-card p {
    font-size: 0.95rem;
    color: #0d1b2a;
    line-height: 1.5;
}

/* Адаптивность */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .parts-section h2,
    .why-mul-new h2 {
        font-size: 1.8rem;
    }
    .parts-card h3,
    .why-mul-card h3 {
        font-size: 1.1rem;
    }
    .parts-card p,
    .benefits-list li,
    .why-mul-card p {
        font-size: 0.9rem;
    }
    .why-mul-cards {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 300px;
        padding: 40px 15px;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .header-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .parts-section,
    .why-mul-new {
        padding: 20px 15px;
    }
    .why-mul-card .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .why-mul-card .icon-wrapper .material-icons {
        font-size: 2rem;
    }
}
