:root {
    /* Новая палитра "Свежесть и Чистота" */
    --primary-color: #0284c7;  /* Насыщенный синий */
    --primary-light: #e0f2fe;  /* Светло-голубой фон */
    --accent-color: #10b981;   /* Мятный/Зеленый для акцентов */
    --bg-color: #ffffff;       /* Чистый белый */
    --text-main: #334155;      /* Темно-серый текст */
    --text-light: #64748b;     /* Светло-серый текст */
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Open Sans', sans-serif; /* Читабельный шрифт */
    line-height: 1.7;
}

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif; /* Современный заголовок */
    font-weight: 700;
}

/* Навигация */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--navbar-bg);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05); /* Легкая тень вместо рамки */
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px); /* Эффект матового стекла */
}

.logo {
    font-size: 1.4rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-switch button {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 50px; /* Закругленные кнопки */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-switch button:hover,
.lang-switch button:active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

/* Герой (Главный экран) */
.hero {
    min-height: 85vh;
    /* Мы накладываем синий градиент поверх вашего фото, чтобы текст читался */
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.8), rgba(16, 185, 129, 0.7)),
                url('https://png.pngtree.com/thumb_back/fh260/background/20221015/pngtree-automatic-industrial-line-for-washing-and-cleaning-carpets-photo-image_39717908.jpg') center/cover no-repeat;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    color: white;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    opacity: 0.95;
}

/* Кнопка действия */
.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* Секции */
.section {
    padding: 6rem 5%;
    text-align: center;
}

.section h2 {
    color: var(--text-main);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Линия подчеркивания под заголовком */
.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-text {
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.15rem;
    color: var(--text-light);
}

.bg-light {
    background-color: var(--primary-light); /* Светло-голубой фон */
}

/* Процесс работы (Сетка) */
/* Контейнер для этапов */
.process-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    padding: 0 1rem;
}

/* Линия, соединяющая этапы (серый пунктир) */
.process-container::before {
    content: '';
    position: absolute;
    top: 50px; /* Высота линии (середина иконки) */
    left: 50px;
    right: 50px;
    height: 3px;
    background-image: linear-gradient(to right, var(--primary-color) 50%, transparent 50%);
    background-size: 20px 100%; /* Размер пунктира */
    background-repeat: repeat-x;
    z-index: 0;
    opacity: 0.3;
}

/* Отдельный шаг */
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
    z-index: 1; /* Чтобы быть выше линии */
}

/* Круг с иконкой */
.step-icon-wrap {
    width: 100px;
    height: 100px;
    background-color: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-step:hover .step-icon-wrap {
    transform: scale(1.1);
    background-color: var(--primary-light);
}

/* Сама иконка внутри круга */
.step-icon-wrap i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Маленький кружок с номером (1, 2, 3...) */
.step-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color); /* Зеленый/Мятный цвет */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid white;
}

/* Заголовки этапов */
.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 700;
}

/* Текст описания */
.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* АДАПТАЦИЯ ДЛЯ ТЕЛЕФОНОВ */
@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    /* Скрываем горизонтальную линию на телефонах */
    .process-container::before {
        display: none; 
    }
    
    /* Можно добавить вертикальную линию, если хочется */
    .process-step::after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        width: 2px;
        height: 2rem;
        background: #ccc;
        transform: translateX(-50%);
    }
    
    .process-step:last-child::after {
        display: none;
    }
}

.process-item:hover {
    transform: translateY(-10px);
}

.process-item .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.process-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Галерея */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px; /* Скругленные углы */
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Современный Футер */
.footer {
    background-color: #1e293b; /* Темно-синий/серый цвет (очень современно) */
    color: #f1f5f9;
    padding: 4rem 1.5rem 1.5rem;
    font-family: 'Open Sans', sans-serif;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Адаптивные колонки */
    gap: 3rem;
}

/* Логотип в футере */
.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-desc {
    color: #94a3b8; /* Светло-серый текст */
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Заголовки колонок */
.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Список контактов */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.contact-list li i {
    color: var(--accent-color); /* Зеленый/Мятный цвет иконок */
    width: 25px;
    font-size: 1.1rem;
    margin-right: 10px;
}

.contact-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--primary-color); /* Голубой при наведении */
}

/* КНОПКА WHATSAPP */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* Официальный цвет WhatsApp */
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-top: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.4rem;
    margin-right: 10px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background-color: #20bd5a;
}

.footer-subtext {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Соцсети (Инстаграм) */
.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

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

/* Копирайт (нижняя полоска) */
.copyright {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #64748b;
    font-size: 0.9rem;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .section { padding: 4rem 5%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .navbar { flex-wrap: wrap; gap: 1rem; justify-content: center; }
}
/* About Section Styling */
.about-text-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    text-align: center;
}

/* Price Block Styling */
.price-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.price-card,
.min-order-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 1.5rem;
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card:hover,
.min-order-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.price-icon,
.min-icon {
    font-size: 2.5rem;
    background: #f0f4f8;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.price-info {
    flex: 1;
}

.price-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    line-height: 1.2;
}

.price-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 0.25rem;
}

.min-info {
    flex: 1;
}

.min-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e67e22;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.min-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e67e22;
    line-height: 1.2;
}

.min-desc {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 550px) {
    .price-card,
    .min-order-card {
        min-width: 100%;
        justify-content: center;
    }
    
    .price-main,
    .min-amount {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}
