* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 0 0;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 200px 300px 250px;
    gap: 60px;
    align-items: start;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.logo {
    width: 60px;
    height: 60px;
    background: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}
.logo::before,
.logo::after {
    display: none;
}
.footer-description {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1.09rem;
    max-width: 280px;
}
.footer-section h3 {
    color: #ffffff;
    font-size: 1.22rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 1px;
}
.footer-menu {
    list-style: none;
}
.footer-menu li {
    margin-bottom: 12px;
}
.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.09rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}
.footer-menu a:hover {
    color: #4a90a4;
    transform: translateX(5px);
}
.footer-menu a.dropdown::after {
    content: '+';
    margin-left: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.contact-info {
    color: #b0b0b0;
    font-size: 1.09rem;
    line-height: 1.6;
}
.contact-info strong {
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
}
.contact-info .address {
    margin-bottom: 15px;
}
.contact-info .email {
    color: #4a90a4;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info .email:hover {
    color: #4a90a4;
}
.contact-phones {
    margin-top: 15px;
}
.contact-phones .phone {
    font-size: 1.09rem;
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}
.contact-phones .phone:hover {
    color: #4a90a4;
}
.social-media {
    margin-top: 20px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-link {
    width: 45px;
    height: 45px;
    padding: 10px;
    background: #3a3a3a;
    display: flex;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.social-link:hover {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid #404040;
    margin-top: 50px;
    padding: 25px 0;
    text-align: center;
}
.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #888;
    font-size: 0.9rem;
}
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 180px 280px;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    .footer-brand {
        align-items: flex-start;
    }
    .social-links {
        justify-content: flex-start;
    }
}
@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0 0;
    }
    .footer-content {
        gap: 30px;
    }
    .logo {
        width: 50px;
        height: 50px;
    }
}
.footer-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
