.contacts-section {
    padding: 180px 0 150px;
    background: #fff;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 60px;
    align-items: start;
}

.contacts-info h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #060607;
    margin: 0 0 20px 0;
}

.work-hours {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #060607;
    margin: 0 0 40px 0;
}

.contact-item {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #060607;
    margin-bottom: 25px;
}

.contact-item strong {
    font-weight: 600;
    margin-right: 8px;
}

.phone-link {
    color: #060607;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #38a817;
}

.social-links {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #060607;
    transition: all 0.3s ease;
}

.social-link img {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: #38a817;
    color: #fff;
}

.write-btn {
    margin-top: 20px;
    padding: 15px 40px;
    background: #060607;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.write-btn:hover {
    background: #38a817;
    transform: translateY(-2px);
}

.map-placeholder {
    width: 550px;
    height: 638px;
    background: #38a817;
    border-radius: 12px;
}

@media (max-width: 1200px) {
    .contacts-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-placeholder {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 100px 0 100px;
    }
    
    .contacts-info h1 {
        font-size: 32px;
    }
    
    .work-hours,
    .contact-item {
        font-size: 14px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .write-btn {
        width: 100%;
    }
    
    .map-placeholder {
        height: 300px;
    }
}


@media (max-width: 992px) {
    .contacts-section {
        padding: 130px 0 100px;
    }
}

@media (max-width: 768px) {
    .contacts-info h1 {
        font-size: 28px;
    }
    
    .contact-item {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .social-link {
        font-size: 13px;
        padding: 8px 16px;
    }
}
