/* Блоки главной страницы
-------------------------------------------------------------- */

/* Общие стили для секций */
.home-section {
    padding: 80px 0;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.home-section:nth-child(even) {
    background-color: #f8faf8;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a3a2a;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f49c1a;
    border-radius: 2px;
}

/* Hero секция */
.hero-section {
    background: linear-gradient(135deg, #1a3a2a 0%, #74af89 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero-section h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f49c1a;
    color: #1a3a2a;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #fff;
    color: #1a3a2a;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a3a2a;
    transform: translateY(-3px);
}

/* Преимущества (колонки) */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    margin-bottom: 15px;
    color: #1a3a2a;
}

.advantage-card p {
    color: #666;
    margin: 0;
}

/* Почему мы */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-us-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #f49c1a;
}

.why-us-item h3 {
    margin-bottom: 10px;
    color: #1a3a2a;
}

/* Услуги плиткой */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #e0e8e0;
}

.service-card:hover {
    background: #f49c1a;
    color: #fff;
    transform: translateY(-5px);
}

.service-card:hover h3 {
    color: #1a3a2a;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

/* Пошаговый заказ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #f49c1a;
    color: #1a3a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: #666;
}

/* География */
.geography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.geography-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.geography-card h3 {
    color: #f49c1a;
    margin-bottom: 15px;
}

.geography-card p {
    margin-bottom: 8px;
}

/* Контактный блок */
.contact-block {
    text-align: center;
    background: linear-gradient(135deg, #1a3a2a 0%, #74af89 100%);
    color: #fff;
    padding: 60px 20px;
    border-radius: 24px;
}

.contact-block h2 {
    color: #fff;
    margin-bottom: 20px;
}

.contact-block p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Адаптив */
@media (max-width: 768px) {
    .home-section {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .subtitle {
        font-size: 1rem;
    }
    
    .advantages-grid,
    .why-us-grid,
    .services-grid,
    .steps-grid,
    .geography-grid {
        grid-template-columns: 1fr;
    }
}
/* Страница каталога
-------------------------------------------------------------- */
.catalog-category {
    margin-bottom: 60px;
}

.catalog-category h2 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f49c1a;
    display: inline-block;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.catalog-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e0e8e0;
    transition: transform 0.3s;
}

.catalog-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.catalog-item h3 {
    color: #1a3a2a;
    margin-bottom: 12px;
}

.catalog-item p {
    color: #666;
    margin-bottom: 15px;
}

.catalog-badge {
    display: inline-block;
    background: #f49c1a;
    color: #1a3a2a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.brand-tag {
    background: #eef3ea;
    color: #1a3a2a;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
}

.brand-tag:hover {
    background: #f49c1a;
    color: #1a3a2a;
    transform: scale(1.05);
}

.service-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    border-left: 4px solid #f49c1a;
}

/* Страница контактов */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-card h2 {
    color: #f49c1a;
    margin-bottom: 20px;
}

.contact-card p {
    margin-bottom: 12px;
}

.contact-card a {
    color: #1e6b3b;
}

.map-block,
.requisites-block,
.form-block {
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.map-block h2,
.requisites-block h2,
.form-block h2 {
    margin-bottom: 20px;
    color: #1a3a2a;
}

/* Страница О компании */
.about-block {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-block h2 {
    color: #f49c1a;
    margin-bottom: 15px;
}

.about-block ul {
    margin-left: 20px;
}

.about-block li {
    margin-bottom: 8px;
}

.about-block.conclusion {
    text-align: center;
    background: #1a3a2a;
    color: #fff;
}

.about-block.conclusion p {
    margin: 0;
    font-size: 1.2rem;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
    color: #1a3a2a;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}