/* hero.css */
.container-hero {
    padding: 0 0 0 12rem;
}
.contacts-hero-section {
    /* padding: var(--spacing-3xl) 0 var(--spacing-2xl); */
    background: linear-gradient(135deg, var(--color-white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contacts-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 500px;
}

.contacts-main-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-h1);
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    line-height: var(--line-height-tight);
}

.contacts-subtitle {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h3);
    color: var(--color-black);
    opacity: 0.9;
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-xl);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 300px;
}

.hero-image {
    width: 130%;
    max-width: 700px;
    height: auto;
    /* border-radius: var(--border-radius-background); */
    object-fit: cover;
    /* box-shadow: var(--shadow-lg); */
}

/* Адаптация */
@media (max-width: 992px) {
    .contacts-hero {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-visual {
        height: 250px;
        order: -1;
        justify-content: center;
    }
    
    .hero-image {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .contacts-hero-section {
        /* padding: var(--spacing-2xl) 0 var(--spacing-xl); */
    }
    
    .contacts-main-title {
        font-size: var(--font-size-h1-tablet);
    }
    
    .contacts-subtitle {
        font-size: var(--font-size-h3-tablet);
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .hero-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .contacts-main-title {
        font-size: var(--font-size-h1-mobile);
    }
    
    .contacts-subtitle {
        font-size: var(--font-size-h3-mobile);
    }
    
    .hero-visual {
        height: 150px;
    }
    
    .hero-image {
        max-width: 200px;
    }
}