/*
Theme Name: TimkawashEU Theme
Theme URI: https://example.com/
Author: Oleh
Author URI: https://example.com/
Description: Custom multilingual landing page theme built with ACF Pro and Polylang.
Version: 1.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: timkawaseu
Tags: landing-page, custom-theme, multilingual
*/

/* --- Normalization & Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body {
    margin: 0;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* --- Global Variables & Body --- */
:root {
    --primary-purple: #C826A3;
    --dark-purple: #9B1D80;
    --light-pink: #E8A7D6;
    --text-color: #313131;
    --background-color: #fbf5fa;
    --white-color: #FFFFFF;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

body.mobile-menu-open {
    overflow: hidden;
    /* Блокируем скролл страницы, когда меню открыто */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Header Styles --- */
.top-bar {
    background-color: var(--primary-purple);
    color: var(--white-color);
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
}

.site-header {
    background-color: var(--white-color);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.main-header .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.header-left,
.header-right {
    flex: 1;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-center .custom-logo-link img {
    max-height: 50px;
    width: auto;
}

.site-title-fallback {
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    color: var(--text-color);
}

/* --- Custom Language Switcher --- */
.language-switcher { 
    position: relative; 
    width: fit-content; 
}

/* ЗАМЕНИТЬ ЭТОТ БЛОК */
.lang-current {
    display: flex; /* Выстраиваем иконку и текст в ряд */
    align-items: center; /* Центрируем по вертикали */
    gap: 8px; /* Расстояние между иконкой и текстом */
    padding: 5px; /* Небольшой внутренний отступ для кликабельной области */
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.lang-current:hover {
    color: var(--primary-purple);
}

/* Стили для самой иконки */
.lang-current svg {
    width: 20px;
    height: 20px;
}

.lang-current span { 
    font-size: 14px; 
    font-weight: 600; 
    text-transform: uppercase;
}

/* Обновляем стили стрелочки */
.lang-current::after { 
    content: ''; 
    display: block; 
    width: 10px; 
    height: 6px; 
    margin-left: 4px; /* Небольшой отступ слева */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23313131' d='M5 6L0 1l1.4-1L5 4 8.6 0 10 1z'/%3E%3C/svg%3E"); 
    background-repeat: no-repeat; 
    background-position: center; 
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Меняем цвет стрелочки при наведении */
.lang-current:hover::after {
    /* Это простой трюк для смены цвета встроенного SVG */
    filter: invert(42%) sepia(88%) saturate(1451%) hue-rotate(279deg) brightness(81%) contrast(94%);
}

.language-switcher.is-open .lang-current::after { 
    transform: rotate(180deg); 
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: var(--white-color);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 5px 0;
    min-width: 100%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.language-switcher.is-open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.lang-dropdown a:hover {
    background-color: var(--background-color);
    color: var(--primary-purple);
}

/* --- Desktop Navigation --- */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-purple);
}

/* --- Burger Menu Toggle --- */
.burger-menu-toggle {
    display: none;
    /* Скрыт по умолчанию на десктопе */
    width: 30px;
    height: 24px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 20px;
    z-index: 1001;
    /* Выше чем панель меню */
}

.burger-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 3px;
    left: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger-menu-toggle span:nth-child(1) {
    top: 0px;
}

.burger-menu-toggle span:nth-child(2) {
    top: 10px;
}

.burger-menu-toggle span:nth-child(3) {
    top: 20px;
}

/* Анимация в "крестик" */
.burger-menu-toggle.is-active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.burger-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu-toggle.is-active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

.site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Затемнение */
    z-index: 999; /* Чуть ниже меню (1000), но выше всего остального */
    
    /* Эффект размытия (блюр) */
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    
    /* Скрываем по умолчанию */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.site-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* --- Footer Styles --- */
.site-footer {
    background-color: var(--white-color);
    border-top: 1px solid #e0e0e0;
    color: var(--text-color);
    font-size: 15px;
}

.footer-main {
    padding: 50px 0;
}

.footer-main .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    /* flex: 1; */
}

.footer-column-left {
    max-width: 300px;
    /* flex-basis: 30%; */
}

.footer-column-left img {
    max-width: 180px;
    height: auto;
}

.footer-column-center, .footer-column-right {
    /* flex-basis: 25%; */
}

.footer-description {
    margin: 15px 0;
    color: #666;
}

.footer-social-icons, .footer-messengers {
    display: flex !important;
    gap: 15px;
    align-items: center;
}

.social-icon, .messenger-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--text-color); /* Иконка унаследует этот цвет */
    transition: all 0.3s ease;
    background-color: var(--background-color);
    border-radius: 50%;
}

.social-icon:hover, .messenger-icon:hover {
    background-color: var(--primary-purple);
}

/* Стили для вставленного SVG */
.social-icon svg, .messenger-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--text-color); /* Заставляет SVG использовать цвет родителя (тега <a>) */
    transition: all 0.3s ease;
}

.social-icon:hover svg, .messenger-icon:hover svg {
    fill: var(--white-color);
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { text-decoration: none; color: #666; transition: color 0.3s; }
.footer-menu a:hover { color: var(--primary-purple); }

.footer-contact-info a, .footer-contact-info div { display: block; margin-bottom: 10px; color: #666; text-decoration: none; }
.footer-contact-info a:hover { color: var(--primary-purple); }
.footer-phone { font-weight: 600; color: var(--text-color); font-size: 18px; }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
}
.developer-credit a { color: #888; text-decoration: none; }
.developer-credit a:hover { color: var(--primary-purple); }

/* --- Hero Section Styles --- */
.hero-section {
    position: relative;
    height: 70vh; /* Высота 70% от высоты экрана */
    min-height: 450px;
    background-size: cover;
    background-position: center center;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-key-benefit {
    display: inline-flex; /* Используем inline-flex, чтобы блок был по центру */
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 50px; /* Делаем "капсулу" */
    background-color: rgba(255, 255, 255, 0.1); /* Легкая полупрозрачная подложка */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white-color);
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px; /* Небольшой отступ от субтитра */
    margin-bottom: 25px; /* Отступ до кнопки */
    -webkit-backdrop-filter: blur(3px); /* Легкий блюр фона (если оверлей полупрозрачный) */
    backdrop-filter: blur(3px);
}

.hero-key-benefit svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Затемнение для читаемости */
    backdrop-filter: blur(8px);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 850px; /* Ограничим ширину контента */
    margin: 0 auto;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-button {
    display: inline-block;
    background-color: var(--primary-purple);
    color: var(--white-color);
    padding: 16px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--primary-purple);
}

.hero-button:hover {
    background-color: var(--dark-purple);
    border-color: var(--dark-purple);
    transform: translateY(-2px); /* Легкий эффект "подъема" */
}

/* --- Brands Marquee Section (JS-Powered) --- */
/* @keyframes scroll-left был удален */

.brands-section {
    display: none;
    padding: 60px 0;
    background-color: var(--white-color);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap; /* Позволяет переноситься на новую строку */
    justify-content: center; /* Центрирует логотипы */
    align-items: center;
    gap: 40px; /* Отступы между логотипами */
}

.brand-logo-item img {
    width: auto;
    max-width: 150px; /* Ограничим макс. ширину, чтобы один не был слишком большим */
    opacity: 0.7;
    transition: opacity 0.3s;
}

.brand-logo-item img:hover {
    opacity: 1;
}

/* --- Production Cycle Section --- */
.cycle-section {
    padding: 60px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--text-color); /* Изменили цвет текста на более темный для светлого фона */
    background-color: var(--background-color); /* Добавим фоновый цвет на случай отсутствия картинки */
}

/* Оверлей для осветления фона, если картинка темная */
.cycle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* Более светлый оверлей */
    backdrop-filter: blur(10px);
    z-index: 1;
}

.cycle-section .container {
    position: relative;
    z-index: 2;
}

/* Новый класс для заголовка на светлом фоне */
.section-title-dark {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
    color: var(--text-color); /* Темный заголовок */
}

.cycle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start; /* Выравнивание по верху */
    gap: 40px;
}

/* =============================================
СТИЛИ ДЛЯ "ЛЕСЕНКИ" (ТОЛЬКО НА БОЛЬШИХ ЭКРАНАХ)
============================================= */

.cycle-steps-list {
    list-style: none;
    counter-reset: cycle-counter;
    padding: 0;
    margin: 0;
    display: grid;
    /* Создаем 2 колонки, но с гибким позиционированием */
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px 50px; /* Отступы между элементами */
}

.cycle-graphic-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.cycle-graphic-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.cycle-steps-list li {
    position: relative;
    padding-left: 0; /* Обнуляем старый padding */
    margin-bottom: 0; /* Обнуляем старый margin */
    min-height: auto;
    display: block; /* Изменяем на блок для лучшего контроля */
    line-height: 1.4;
}

.cycle-steps-list li:nth-child(even) {
    margin-block-start: 40px;
}

.cycle-steps-list li::before {
    counter-increment: cycle-counter;
    content: counter(cycle-counter);
    position: static; /* Становится обычным элементом в потоке */
    transform: none; /* Обнуляем старый transform */
    display: block; /* Чтобы цифра была над текстом */
    text-align: left; /* Цифра слева */
    font-size: 60px; /* Большая цифра */
    font-weight: 700;
    color: var(--primary-purple); /* Твой фирменный цвет */
    opacity: 0.8;
    margin-bottom: 5px; /* Отступ между цифрой и текстом */
}

.cycle-steps-list h4 {
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: 600;
    color: var(--dark-blue); /* Темный цвет для заголовка */
}

.cycle-steps-list p {
    margin: 0;
    font-size: 16px;
    color: #666;
    opacity: 1;
}

/* --- Advantages Section Styles (Обновленный дизайн) --- */
.advantages-section {
    padding: 60px 0;
    background-color: var(--white-color); /* Используем фон темы, чтобы карточки выделялись */
}

/* Общий заголовок для секций */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
    color: var(--text-color);
}

.advantages-grid {
    display: grid;
    /* Обновлено: 2 колонки в ряду */
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white-color); /* Новый фон для карточки */
    border: 1px solid #e0e0e0;           /* Новая рамка */
    border-radius: 24px;                  /* Скругление углов */
    box-shadow: 0 4px 12px rgba(0,0,0,0.03); /* Легкая тень */
    /* Плавный переход для ховер-эффекта */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.advantage-item:hover {
    /* Новый эффект при наведении */
    transform: translateY(-5px); /* "Поднимаем" карточку */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* Усиливаем тень */
    border-color: var(--primary-purple); /* Меняем цвет рамки */
}

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px; /* Немного уменьшим иконку */
    height: 70px;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
}

.advantage-title {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.advantage-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* --- Catalog Section Styles --- */
.catalog-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.catalog-grid {
    display: flex;
    flex-wrap: wrap; /* Позволяет переносить элементы на новую строку */
    justify-content: center; /* Центрирует ряды (ключевое требование) */
    gap: 30px; /* Пространство между карточками */
}

.catalog-item {
    /* Задаем базовую ширину. ~4 в ряд на 1200px. */
    width: calc(calc(100% - 90px) / 4); 
    text-align: center;
}

.catalog-item-image-wrapper {
    aspect-ratio: 1 / 1; 
    background-color: var(--light-pink);
    border-radius: 16px;
    margin-bottom: 15px;
    
    /* Добавляем overflow: hidden; - это КРИТИЧЕСКИ ВАЖНО для Swiper */
    overflow: hidden;
    position: relative; /* Для пагинации */
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-item:hover .catalog-item-image-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}

/* Стилизуем слайд, чтобы картинка была по центру */
.catalog-item-image-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-item-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.product-gallery-slider .swiper-pagination {
    bottom: 10px; /* Располагаем точки внизу */
}

.product-gallery-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.3); /* Полупрозрачные точки */
    opacity: 1;
    transition: background-color 0.3s;
}

.product-gallery-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-purple); /* Активная точка - в цвет бренда */
}

/* --- About Section Styles --- */
.about-section {
    padding: 60px 0;
    background-color: var(--white-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 равные колонки */
    align-items: center; /* Выравнивание по центру по вертикали */
    gap: 50px;
}

.about-image-wrapper {
    width: 100%;
    height: 100%;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Новый класс для заголовков, выровненных по левому краю */
.section-title-left {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-content {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}
.about-content p {
    margin-top: 0;
}

.about-values-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.value-icon {
    flex-shrink: 0; /* Иконка не будет сжиматься */
    width: 28px;
    height: 28px;
    color: var(--primary-purple);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-text {
    font-size: 17px;
    font-weight: 600;
}

/* --- Testimonials Section Styles --- */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.testimonials-slider-wrapper {
    position: relative; /* Для позиционирования стрелок */
    width: 100%;
    overflow: hidden; /* Важно для слайдера */
}

/* Мы добавляем отступы слева/справа к самому слайдеру,
  чтобы первый и последний слайды не "прилипали" к краям экрана.
*/
.testimonials-slider {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 50px; /* Место для пагинации */
}

.swiper-slide {
    height: auto; /* Позволяем слайдам иметь разную высоту */
}

.testimonial-item {
    background-color: var(--white-color); /* Твой фон */
    border-radius: 24px;
    padding: 25px;
    height: 100%; /* Карточка занимает всю высоту слайда */
    display: flex;
    flex-direction: column;
    border: 1px solid var(--primary-purple);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-purple); /* Твой розовый */
    color: var(--white-color);
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 600;
}

.testimonial-name {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.star {
    width: 16px;
    height: 16px;
    /* Используем mask, чтобы создать форму звезды и красить ее */
    background-color: #ccc; /* Цвет пустой звезды */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z'/%3E%3C/svg%3E");
}

.star.filled {
    background-color: #FFC107; /* Цвет заполненной звезды (золотой) */
}

.testimonial-content {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Стилизация навигации Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-purple); /* Цвет стрелок */
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev { left: 20px; }
.swiper-button-next { right: 20px; }

.swiper-pagination-bullet {
    background-color: #aaa;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-purple);
}

/* --- Contact Section Styles --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start; /* Выравнивание по верху */
    gap: 50px;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.contact-image {
    margin-top: 30px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =============================================
Стилизация Contact Form 7
=============================================
*/

/* Убираем лишние <p> теги, которые CF7 добавляет */
.wpcf7-form p {
    margin: 0;
}

/* Обертка для каждого поля (CF7 <p>) */
.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
}

/* Стили для текстовых полей */
.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--background-color);
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Убираем некрасивую тень на iPhone */
.contact-form-wrapper .wpcf7-form input,
.contact-form-wrapper .wpcf7-form textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Фокус на полях */
.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px var(--light-pink);
}

.contact-form-wrapper .wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Стили для кнопки "Отправить" */
.contact-form-wrapper .wpcf7-submit {
    display: inline-block;
    background-color: var(--primary-purple);
    color: var(--white-color);
    padding: 16px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--primary-purple);
    cursor: pointer;
    width: 100%; /* Кнопка на всю ширину */
}

.contact-form-wrapper .wpcf7-submit:hover {
    background-color: var(--dark-purple);
    border-color: var(--dark-purple);
    transform: translateY(-2px);
}

/* Сообщения об успехе / ошибке */
.contact-form-wrapper .wpcf7-response-output {
    margin: 20px 0 0 0 !important; /* !important нужен :( */
    padding: 15px !important;
    border-radius: 5px;
    font-size: 15px;
}
.contact-form-wrapper .wpcf7-mail-sent-ok {
    border: 1px solid #1F8E3C; /* Успех (темно-зеленый) */
    background: #F8FBF5;
    color: #1F8E3C;
}
.contact-form-wrapper .wpcf7-validation-errors {
    border: 1px solid #D8000C; /* Ошибка */
    background: #FFF8F8;
    color: #D8000C;
}

/* Адаптация для мобильных */
@media (max-width: 1200px) {
    /* На планшетах можно оставить 2 колонки, они уже настроены */
    .advantages-grid {
        gap: 20px;
    }
    .catalog-grid {
        gap: 20px;
    }
    .catalog-item {
        /* 2 колонки на планшетах */
        width: calc(50% - 10px);
    }
    .about-grid {
        gap: 30px;
    }
    .section-title-left {
        font-size: 30px;
    }
}

/* ==========================================================================
   Mobile & Tablet Styles (адаптация)
   ========================================================================== */
@media (max-width: 768px) {

    /* Показываем бургер */
    .burger-menu-toggle {
        display: block;
    }

    /* Превращаем навигацию в выезжающую панель */
    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        /* Ширина панели */
        max-width: 80%;
        height: 100dvh;
        background-color: var(--white-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 100px 30px 30px;
        z-index: 1000;
        transform: translateX(100%);
        /* Прячем за экраном */
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        /* Плавный выезд */
    }

    /* Класс is-open показывает панель */
    .main-navigation.is-open {
        transform: translateX(0);
    }

    /* Стилизуем меню внутри панели */
    .main-navigation ul {
        flex-direction: column;
        /* Вертикальное расположение */
        gap: 0;
    }

    .main-navigation li {
        width: 100%;
    }

    .main-navigation a {
        display: block;
        padding: 15px 0;
        font-size: 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Корректировка расположения логотипа на мобильных, если нужно */
    .header-center {
        /* Можно оставить как есть или сместить, если мешает */
    }

    
    .footer-main .container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }

    .footer-messengers {
        justify-content: space-between;
    }

    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .section-title-dark {
        margin-bottom: 30px;
    }

    .cycle-grid {
        grid-template-columns: 1fr; /* В одну колонку */
    }
    
    .cycle-graphic-wrapper {
        display: block; /* Показываем картинку на мобилке */
        margin-bottom: 40px;
    }
    .cycle-graphic-wrapper img {
        max-width: 100%;
        position: unset;
    }

    .cycle-steps-wrapper {
        grid-column: auto; /* Сбрасываем занимаемую ширину */
    }

    .cycle-steps-list {
        display: block; /* Возвращаем к обычному блочному поведению */
    }

    .cycle-steps-list li {
        padding-left: 80px; /* Возвращаем отступ для цифры слева */
        margin-bottom: 25px; /* Возвращаем отступ между элементами */
        min-height: 60px; /* Возвращаем минимальную высоту */
        display: flex; /* Возвращаем flex для выравнивания */
        align-items: center;
    }

    .cycle-steps-list li::before {
        position: absolute; /* Возвращаем абсолютное позиционирование */
        left: 0;
        top: 50%;
        transform: translateY(-50%); /* Возвращаем центрирование по вертикали */
        font-size: 60px;
        color: var(--primary-purple); /* Цвет цифры */
        opacity: 0.8;
        margin-bottom: 0; /* Убираем отступ */
        display: inline-block; /* Становится inline-block */
    }

    .cycle-steps-list h4,
    .cycle-steps-list p {
        color: var(--text-color); /* Снова темный текст */
    }

    .cycle-steps-list li:nth-child(even) {
        margin-block-start: unset;
    }
    .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    .advantages-grid {
        /* Обновлено: 1 колонка на мобильных */
        grid-template-columns: 1fr;
    }
    .catalog-item {
        /* 1 колонка на мобильных, но с ограничением */
        max-width: 600px; 
    }
    .about-grid {
        /* 1 колонка на мобильных */
        grid-template-columns: 1fr;
    }
    .about-image-wrapper {
        /* Изображение будет первым на мобильных */
        order: 1; 
    }
    .about-content-wrapper {
        order: 2;
        text-align: center; /* Центрируем контент */
    }
    .section-title-left {
        text-align: center;
    }
    .swiper-button-prev, .swiper-button-next {
        /* Прячем стрелки на мобильных для чистоты */
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content-wrapper {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title-left {
        text-align: center;
    }

    .contact-section,
    .testimonials-section,
    .about-section,
    .catalog-section,
    .advantages-section {
        padding: 40px 0;
    }
}