
footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 60px 0 20px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 95, 61, 0.1);
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 95, 61, 0.5) 50%, 
        transparent 100%);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section {
    display: flex;
    flex-direction: column;
}
.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff5f3d 0%, #ff4520 100%);
}
.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaaaaa;
    margin: 0;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}
.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: #ff5f3d;
}
.footer-links a:hover {
    color: #ff5f3d;
    padding-left: 20px;
}
.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #cccccc;
}
.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: #ff5f3d;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact-item a:hover {
    color: #ff5f3d;
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-copyright {
    font-size: 13px;
    color: #888888;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.footer-logo img {
    height: 32px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.footer-logo:hover img {
    opacity: 1;
}
.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #ff5f3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-metrika {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.footer-metrika:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    footer {
        padding: 40px 0 100px 0; 
        margin-top: 60px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    .footer-copyright {
        width: 100%;
        text-align: center;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
.footer-pwa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    font-size: 13px;
    color: #4CAF50;
    margin-top: 12px;
    transition: all 0.3s;
}
.footer-pwa-badge:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.5);
}
.footer-pwa-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
