/* ===== NEW FOOTER STYLES ===== */
.footer-new {
    background: linear-gradient(180deg, #1a2740 0%, #0f1a2e 100%);
    color: #c8d6e5;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.footer-accent {
    height: 3px;
    background: linear-gradient(90deg, #2d7dd2, #f0c040, #e74c3c, #2d7dd2);
    background-size: 300% 100%;
    animation: gradientMove 6s ease infinite;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}
/* Column 1: Brand */
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-brand .footer-logo svg {
    width: 36px;
    height: 36px;
}
.footer-brand .footer-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.footer-brand .footer-tagline {
    font-size: 13px;
    color: #f0c040;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
.footer-brand .footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}
.footer-brand .footer-info-item svg {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    fill: #f0c040;
}
/* Headings */
.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #f0c040;
    border-radius: 2px;
}
/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a,
.footer-links li a {
    color: #9fb3c8 !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none !important;
    padding: 0 !important;
    background: none !important;
}
.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: #f0c040;
    transition: width 0.3s ease;
}
.footer-links a:hover {
    color: #fff !important;
    transform: translateX(5px);
}
.footer-links a:hover::before {
    width: 12px;
}
/* Social icons */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}
.footer-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social-icons a.fb { background: #1877f2; }
.footer-social-icons a.yt { background: #ff0000; }
.footer-social-icons a.zalo { background: #0068ff; }
.footer-social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.footer-social-icons a svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
/* Newsletter */
.footer-newsletter p {
    font-size: 13px;
    margin-bottom: 12px;
    color: #9fb3c8;
    line-height: 1.5;
}
.footer-newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.footer-newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 13px;
    outline: none;
    font-family: 'Inter', sans-serif;
}
.footer-newsletter-form input::placeholder {
    color: #6b7f96;
}
.footer-newsletter-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #2d7dd2, #1a5fa8);
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}
.footer-newsletter-form button:hover {
    background: linear-gradient(135deg, #3a8fe0, #2d7dd2);
}
/* Divider */
.footer-divider {
    max-width: 1200px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
}
/* Bottom bar */
.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 18px 20px;
}
.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #6b7f96;
}
/* Override old menu styles in footer */
.footer-new .menu-footer01 {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-new .menu-footer01 li {
    display: block !important;
    width: auto !important;
    float: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 10px;
    height: auto !important;
    line-height: normal !important;
}
.footer-new .title-menu-ft,
.footer-new .title-memu-bottom {
    display: none;
}
/* Mobile */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px 20px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
