/* styles.css */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #76bc21; /* Цвет бренда */
    --accent-color: #5a9c0b; /* Темнее основного цвета бренда */
    --light-color: #f8f9fa;
    --dark-color: #0d0d0d;
    --text-color: #333333;
    --text-light: #777777;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.h1head {
    color: #76bc21;
}

h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    max-width: 100%;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(118, 188, 33, 0.3);
    border: 1px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 188, 33, 0.4);
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(90, 156, 11, 0.3);
    border: 1px solid var(--accent-color);
}

.btn-accent:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 188, 33, 0.4);
}

.btn-large {
    padding: 18px 45px;
    font-size: 17px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid #eee;
    width: 100%;
    overflow-x: hidden;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    width: 100%;
    max-width: 100%;
}

.logo {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo span.brand {
    color: var(--secondary-color);
}

.header-phone {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--secondary-color);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

/* Mobile header styles */
@media (max-width: 768px) {
    .header {
        padding-left: 0;
        padding-right: 0;
    }
    
    .header .container {
        flex-direction: column;
        padding: 15px 15px;
        gap: 10px;
        align-items: center;
        width: 100vw;
        margin: 0;
        box-sizing: border-box;
    }
    
    .nav {
        display: none !important;
    }
    
    .logo {
        text-align: center;
        width: auto;
        margin-bottom: 5px;
        justify-content: center;
        font-size: 24px;
    }
    
    .header-phone {
        text-align: center;
        width: auto;
        margin-bottom: 10px;
        font-size: 16px;
        max-width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    @media (max-width: 360px) {
        .header .container {
            padding: 12px 12px;
        }
        
        .logo {
            font-size: 22px;
        }
        
        .header-phone {
            font-size: 15px;
        }
        
        .btn-primary {
            max-width: 260px;
            padding: 10px 20px;
            font-size: 13px;
        }
    }
}

/* Sections */
.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 90px;
    width: 100%;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 200px;
        height: 80vh;
        min-height: 500px;
        padding-bottom: 40px;
        padding-top: 20px;
    }
    
    .hero-bg {
        left: 0;
        right: 0;
        width: 100vw;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.5s ease;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-content .subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    max-width: 650px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    text-shadow: 0 0 10px rgba(118, 188, 33, 0.3);
    font-family: 'Roboto', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Products Section */
.products {
    padding: 120px 0;
    background-color: var(--light-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(118, 188, 33, 0.3);
    font-family: 'Roboto', sans-serif;
}

.product-info {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.product-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -0.5px;
}

/* Features Section */
.features {
    padding: 120px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.feature-item {
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(248, 249, 250, 0.9), rgba(255, 255, 255, 1));
    transition: var(--transition);
    border: 1px solid rgba(118, 188, 33, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(118, 188, 33, 0.3);
}

.feature-icon {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 300;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(118, 188, 33, 0.03) 0%, rgba(248, 249, 250, 1) 100%);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid #eee;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 80px;
    color: var(--secondary-color);
    opacity: 0.05;
    font-family: serif;
    line-height: 1;
    font-weight: 800;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.testimonial-header img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.testimonial-header h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.testimonial-header p {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 400;
}

.testimonial-text {
    font-style: normal;
    margin-bottom: 25px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    padding-left: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.stars {
    color: var(--secondary-color);
    font-size: 20px;
    letter-spacing: 3px;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid #eee;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 0 30px rgba(118, 188, 33, 0.5);
    border: 1px solid rgba(118, 188, 33, 0.3);
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    transition: var(--transition);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.gallery-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    user-select: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-modal-nav:hover {
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.05);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

.gallery-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px 0;
}

.gallery-thumbnails-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 80%;
    margin: 0 auto;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    border-radius: 4px;
}

.thumbnail.active {
    border-color: var(--secondary-color);
    transform: scale(1.03);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cta-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.cta-form input {
    padding: 18px 25px;
    border: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.95);
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--secondary-color);
    background-color: white;
}

.guarantee {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--light-color);
    border-top: 1px solid #eee;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
}

.contact-section {
    margin-bottom: 25px;
}

.contact-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section h4::before {
    content: '';
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-section p {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.contact-section strong {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-map {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.map-placeholder:hover img {
    transform: scale(1.03);
}

.map-placeholder p {
    position: relative;
    z-index: 2;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    text-align: center;
}

.footer-logo .logo {
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-logo .logo span.brand {
    color: var(--secondary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 300px;
    margin: 0 auto;
}

.footer-contacts h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.footer-contacts p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
}

.payment-methods h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.payment-methods p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 50px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalOpen 0.5s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid #eee;
}

@keyframes modalOpen {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    top: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.close:hover {
    color: var(--secondary-color);
    background-color: rgba(118, 188, 33, 0.1);
    transform: rotate(90deg);
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 35px;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 25px;
    border: 2px solid #eee;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.modal-content input:focus,
.modal-content textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(118, 188, 33, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 25px;
    }
    
    .hero-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 992px) {
    .hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-content h1 {
        font-size: 44px;
    }
    
    .hero-content .subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 15px 15px;
    }
    
    .nav {
        display: none !important;
    }
    
    .logo {
        text-align: center;
        width: auto;
        margin-bottom: 5px;
        justify-content: center;
    }
    
    .header-phone {
        text-align: center;
        width: auto;
        margin-bottom: 10px;
        font-size: 16px;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero {
        margin-top: 200px;
        height: 80vh;
        min-height: 500px;
        padding-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        margin-top: 20px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .stat {
        flex: 1 1 45%;
    }
    
    .btn-large {
        padding: 16px 40px;
        font-size: 16px;
    }
    
    .cta-form {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        margin: 25% auto;
        padding: 40px 30px;
    }
    
    .gallery-modal-nav {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .gallery-item {
        pointer-events: none;
        cursor: default;
    }
    
    .gallery-item:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-item:hover img {
        transform: none;
    }
    
    .contact-map {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content .subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 15px 35px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .gallery-thumbnails-container {
        max-width: 100%;
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .hero {
        margin-top: 190px;
        min-height: 450px;
        padding-bottom: 40px;
    }
    
    .hero-content {
        padding-bottom: 20px;
        padding-top: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}