/* responsive.css - Дополнительные адаптивные стили */

@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    .hamburger-btn {
        display: block;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .about-images {
        margin-bottom: 2rem;
        padding-right: 0;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .about-img-small {
        right: 20px;
    }
    
    .contact-info-block {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .btn-request {
        display: none;
    }
    
    .header-phones {
        display: none;
    }
    
    .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .dropdown-item {
        color: var(--color-text-light);
        padding: 0.5rem 0;
    }
    
    .dropdown-item:hover {
        background: transparent;
        color: var(--color-copper);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-desc {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-section {
        min-height: 500px;
        height: auto;
        padding: 100px 0;
    }
    
    .about-img-main img {
        height: 300px;
    }
    
    .about-img-small {
        width: 150px;
        bottom: -20px;
    }
    
    .about-img-small img {
        height: 110px;
    }
    
    .experience-badge {
        left: 10px;
        padding: 1rem;
    }
    
    .exp-number {
        font-size: 1.8rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .contact-actions-row {
        flex-direction: column;
    }
    
    .action-btn {
        text-align: center;
    }
    
    .map-container {
        min-height: 300px;
        margin-top: 2rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .footer-title {
        text-align: center;
        margin-top: 1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contacts {
        text-align: center;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .product-image {
        height: 160px;
    }
    
    .news-image {
        height: 160px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .social-link {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    
    .footer-contacts p {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .mobile-nav-list a {
        font-size: 1.2rem;
    }
    
    .mobile-phone {
        padding: 0.6rem;
    }
    
    .mobile-phone-number {
        font-size: 0.9rem;
    }
}