.hero-section {
    padding: 140px 0 60px;
    background: #ffffff;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 700px;
}

.hero-text {
    max-width: 100%;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #2D4A2D;
    margin-bottom: 32px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-description {
    font-size: 1.3rem;
    color: #6B7B6B;
    margin-bottom: 50px;
    line-height: 1.7;
}

.hero-cta-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #5A8A5A, #7BA428);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(90, 138, 90, 0.3);
    transition: all 0.3s ease;
    width: fit-content;
}

.hero-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(90, 138, 90, 0.4);
    text-decoration: none;
    color: white;
}

.hero-phone i {
    font-size: 22px;
}

.hero-image-container {
    position: relative;
    height: 700px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(90, 138, 90, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    background: url('../img/photo-1596733430284-f7437764b1a9.avif') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    position: relative;
}

.hero-image:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 138, 90, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image:hover .image-overlay {
    opacity: 1;
}


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

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-box {
        padding: 20px 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .hero-image-container {
        height: 450px;
        order: -1;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-phone {
        font-size: 1.1rem;
        padding: 18px 28px;
    }
    
    .features-floating-section {
        margin-top: -60px;
        margin-bottom: 60px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-features {
        gap: 16px;
    }
    
    .feature-box {
        padding: 24px 16px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .hero-image-container {
        height: 350px;
    }
    
    .features-floating-section {
        margin-top: -40px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text .hero-title {
    animation-delay: 0.1s;
}

.hero-text .hero-description {
    animation-delay: 0.2s;
}

.hero-text .hero-cta-section {
    animation-delay: 0.3s;
}

.hero-image-container {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature-box {
    animation: fadeInUp 0.8s ease-out both;
}

.feature-box:nth-child(1) {
    animation-delay: 0.6s;
}

.feature-box:nth-child(2) {
    animation-delay: 0.7s;
}

.feature-box:nth-child(3) {
    animation-delay: 0.8s;
}

.hero-phone:focus,
.feature-box:focus {
    outline: 2px solid #5A8A5A;
    outline-offset: 2px;
}

@media print {
    .hero-section {
        background: white !important;
        box-shadow: none !important;
    }
    
    .hero-phone,
    .feature-box {
        box-shadow: none !important;
    }
}