/* ==========================
   about_brand.css
   Стили для контентных блоков на странице MUL
   ========================== */

/* Общие стили для кнопок */
.mul-contact-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;
}

.mul-contact-btn:disabled {
    background: #cccccc !important;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

.mul-contact-btn:hover:not(:disabled) {
    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;
}

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

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #1a3c5e;
}

.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;
}

/* Блок "О компании" */
.about {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-text,
.about-image {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #f25c05;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1rem;
    color: #1a3c5e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Почему MUL */
.why-mul {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.why-card p {
    font-size: 0.95rem;
    color: #1a3c5e;
    line-height: 1.5;
}

/* Продукция */
.products {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.product-col:hover {
    transform: translateY(-5px);
}

.product-col img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.product-col h3 {
    font-size: 1.2rem;
    color: #1a3c5e;
    margin-bottom: 10px;
}

.product-col p {
    font-size: 0.95rem;
    color: #1a3c5e;
    line-height: 1.5;
}

/* Технологии */
.tech {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.tech-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Увеличил минимальную ширину для лучшей читаемости */
    gap: 20px;
    justify-items: center;
}

.tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 400px;
    /* Фиксированная минимальная высота для единообразия */
}

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

.tech-card__image-wrapper {
    width: 100%;
    height: 200px;
    /* Фиксированная высота для изображений */
    overflow: hidden;
    border-radius: 8px;
    background: #e9ecef;
    /* Лёгкий фон для изображений */
    margin-bottom: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

.tech-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Масштабирование изображений без искажений */
    object-position: center;
    border-radius: 8px;
}

.tech-card__image-wrapper:hover {
    transform: scale(1.05);
    /* Лёгкое увеличение изображения при наведении */
}

.tech-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    /* Контент занимает оставшееся пространство */
}

.tech-card h3 {
    font-size: 1.2rem;
    color: #1a3c5e;
    margin-bottom: 10px;
    font-weight: 600;
    /* Увеличил жирность для лучшей читаемости */
}

.tech-card p {
    font-size: 0.95rem;
    color: #1a3c5e;
    line-height: 1.6;
    /* Увеличил высоту строки для читаемости */
    margin: 0;
}

/* Эффект пульсации */
@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);
    }
}