/* ============================================
   NEW FOOTER STYLES
   ============================================ */

/* Sticky Footer Solution */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.site-content {
    flex: 1 0 auto;
    padding: 20px 0;
}

.new-footer {
    flex-shrink: 0;
    background: #1a1a1a;
    color: #aaa;
    padding: 60px 0 30px;
}

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

.new-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.new-footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: #A6371E;
    margin-bottom: 20px;
}

.new-footer-logo img {
    height: 45px;
    width: auto;
}

.new-footer-desc {
    color: #888;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.new-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.new-social-links a {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: all 0.3s;
}

.new-social-links a:hover {
    background: #A6371E;
    color: white;
    transform: translateY(-3px);
}

.new-footer-section h4 {
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.new-footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.new-footer-section ul li a:hover {
    color: #A6371E;
    padding-left: 5px;
}

.new-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.new-footer-bottom a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.new-footer-bottom a:hover {
    color: #A6371E;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .new-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .new-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .new-footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
}