.footer-new {
    background: #303133;
    padding: 60px 0 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 176, 59, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-new::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 176, 59, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 250px repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-block {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

.footer-logo:hover img {

    transform: scale(1.05);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-block-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-block-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #FBB03B;
}

.work-schedule-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.work-schedule-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.schedule-day {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.schedule-time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    width: 12px;
    height: 2px;
    background: #FBB03B;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #FBB03B;
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 16px;
}

.footer-middle {
    padding: 10px 0;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 24px;
    background: rgba(251, 176, 59, 0.08);
    border: 1px solid rgba(251, 176, 59, 0.25);
    border-radius: 8px;
    color: #FBB03B;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: rgba(251, 176, 59, 0.15);
    border-color: #FBB03B;
    transform: translateY(-2px);
    color: #FBB03B;
    box-shadow: 0 5px 20px rgba(251, 176, 59, 0.2);
}

.footer-btn svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.footer-btn:hover svg {
    transform: scale(1.1);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.footer-social-item:hover {
    background: rgba(251, 176, 59, 0.1);
    transform: translateX(5px);
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-item:hover .footer-social-icon {
    background: #FBB03B;
    transform: rotate(5deg);
}

.footer-social-icon img {
    width: 20px;
    height: 20px;
}

.footer-social-text {
    font-size: 15px;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
}

.footer-social-item:hover .footer-social-text {
    color: #FBB03B;
}

.footer-social-networks {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social-networks a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-networks a:hover {
    background: #FBB03B;
    transform: translateY(-5px) rotate(5deg);
}

.footer-social-networks a img {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    padding: 10px 0;
    text-align: right;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.footer-copyright strong {
    color: #FBB03B;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-new {
        padding: 40px 0 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-block-title {
        font-size: 16px;
    }
    
    .footer-link,
    .footer-social-text {
        font-size: 14px;
    }
    
    .footer-social-networks {
        justify-content: flex-start;
    }
    
    .footer-middle {
        padding: 25px 0;
    }
}