/*
Theme Name: Бороздим Бетон
Theme URI: https://xn----9sbbkhii6amcahr0b.xn--p1ai/
Author: Borozdim Beton
Description: Лендинг для услуги нарезки швов в бетонных полах коровников
Version: 1.0
Text Domain: borozdim-beton
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 2px solid #2e8b57;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #2e8b57;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.icon:hover {
    transform: scale(1.1);
}

.icon-telegram {
    background-color: #2AABEE;
}

.icon-whatsapp {
    background-color: #25D366;
}

.phone-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    color: white;
    max-width: 800px;
    padding: 40px;
    background: rgba(46, 139, 87, 0.9);
    border-radius: 10px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.highlight {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    display: block;
    margin: 15px 0;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ff6b00;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e55a00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Common */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2e8b57;
}

/* Problem Section */
.problem-section {
    background: #f8f9fa;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #ff6b00;
}

.problem-item h3 {
    font-size: 20px;
    color: #dc3545;
    margin-bottom: 15px;
}

/* Solution Section */
.solution-section {
    background: white;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.quote {
    font-size: 22px;
    font-weight: 700;
    color: #2e8b57;
    font-style: italic;
    margin: 30px 0;
    padding: 20px;
    border-left: 4px solid #2e8b57;
    background: #f8f9fa;
}

/* Patterns Section */
.patterns-section {
    background: #f8f9fa;
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.pattern-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pattern-card:hover {
    transform: translateY(-10px);
}

.pattern-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.pattern-content {
    padding: 25px;
}

.pattern-content h3 {
    font-size: 22px;
    color: #2e8b57;
    margin-bottom: 15px;
}

.pattern-content p {
    margin-bottom: 20px;
    color: #666;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b00;
}

/* Technology Section */
.tech-list {
    max-width: 800px;
    margin: 0 auto;
}

.tech-list ul {
    list-style: none;
}

.tech-list li {
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.tech-list li:before {
    content: "✓";
    color: #2e8b57;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

.tech-specs {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.tech-specs h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2e8b57;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.spec-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.spec-value {
    font-size: 24px;
    font-weight: 700;
    color: #2e8b57;
    display: block;
}

.spec-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #2e8b57 0%, #1e6b47 100%);
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffd700;
}

/* Pricing Section */
.pricing-section {
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.price-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: #2e8b57;
    transform: translateY(-5px);
}

.price-card h3 {
    font-size: 22px;
    color: #2e8b57;
    margin-bottom: 20px;
}

.price-card .price {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b00;
    margin: 20px 0;
}

.price-note {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    font-style: italic;
}

/* Estimate Section */
.estimate-section {
    background: #f8f9fa;
}

.fullwidth-image {
    width: 100%;
    margin: 30px 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.fullwidth-image img {
    width: 100%;
    height: auto;
    display: block;
}

.estimate-text {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #2e8b57;
}

.estimate-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #dc3545;
    display: block;
    margin: 15px 0;
}

/* Gallery Section */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2e8b57 0%, #1e6b47 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-phone {
    font-size: 32px;
    font-weight: 700;
    margin: 30px 0;
    color: #ffd700;
}

.social-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Footer */
.site-footer {
    background: #222;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2e8b57;
    margin-bottom: 20px;
}

.footer-contacts {
    font-size: 16px;
    line-height: 1.8;
}

.footer-contacts p {
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content {
        padding: 25px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .cta-phone {
        font-size: 26px;
    }
    
    .patterns-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');