/* ========== FOOTER ========== */
.footer {
    background: #141414;
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 80px;
    font-family: 'Manrope', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Верхняя часть футера */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(133, 102, 57, 0.3);
}

/* Логотип */
.footer-logo svg {
    width: 200px;
    height: auto;
}

/* Навигация */
.footer-nav h3 {
    color: #856639;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: #856639;
    transform: translateX(5px);
}

/* Контакты */
.footer-contacts h3 {
    color: #856639;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: #856639;
    font-size: 16px;
    width: 20px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #856639;
}

/* WhatsApp кнопка */
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.footer-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp i {
    font-size: 20px;
}

/* Социальные сети */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(133, 102, 57, 0.2);
    border-radius: 50%;
    color: #856639;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(133, 102, 57, 0.3);
}

.footer-socials a:hover {
    background: #856639;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(133, 102, 57, 0.3);
}

/* Нижняя часть футера */
.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-copyright {
    color: #856639;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 8px 0;
}

.footer-privacy {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-privacy:hover {
    color: #856639;
}