/* =========================================
   PREMIUM FOOTER STYLES
   ========================================= */

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 70px 20px 30px;
    /* Slightly more top/bottom air */
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 55px;
    /* Increased vertical breathing room between blocks */
}

/* --- Brand Block --- */
.footer-brand {
    margin-bottom: 15px;
    /* Extra air specifically below brand before Navigation */
}

.footer-brand h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-brand h2 span {
    color: var(--red-brand, #E63946);
}

.footer-brand p {
    color: #ccc;
    /* Improved contrast for readability */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--red-brand, #E63946);
    transform: translateY(-3px);
}

/* --- Link Groups --- */
.footer-links h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 28px;
    /* More breathing room */
    letter-spacing: 1px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    /* Better contrast */
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--red-brand, #E63946);
    /* Brand interaction */
    padding-left: 5px;
}

/* --- Contact Info --- */
.footer-contact h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 28px;
    /* Increased spacing */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
    /* Contrast */
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--red-brand, #E63946);
    margin-top: 3px;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: var(--red-brand, #E63946);
}

/* --- Bottom Bar --- */
.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    /* Sharper contrast for visibility */
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: var(--red-brand, #E63946);
}

/* --- Desktop Layout --- */
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }

    .main-footer {
        padding: 80px 40px 30px;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-bottom p {
        margin-bottom: 0;
    }
}