/* ============================================================
   PREMIUM UNIVERSAL FOOTER STYLING
   ============================================================ */

.main-footer {
    background-color: #080808;
    color: #eee;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(255, 98, 0, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 10px;
}

/* 1. Brand Column */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-col .footer-logo img {
    width: 260px;
    margin-bottom: 20px;
}

.brand-tagline {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #888;
    font-weight: 700;
}

/* 2. Common Column Headings */
.footer-heading {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    color: #ff6200;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 2. Navigation */
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-links a:hover {
    background: #ff6200;
    color: #fff;
    transform: translateY(-3px);
    border-color: #ff6200;
    box-shadow: 0 5px 15px rgba(255, 98, 0, 0.3);
}

/* Make the last link full width if odd number */
.footer-links li:last-child:nth-child(odd) {
    grid-column: span 2;
}

/* 4. Address & Contact Content */
.footer-address-content p, 
.footer-contact-details p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-address-content i,
.footer-contact-details i {
    color: #ff6200;
    margin-right: 10px;
    width: 20px;
}

.footer-address-content a,
.footer-contact-details a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-address-content a:hover,
.footer-contact-details a:hover {
    color: #ff6200;
}

/* 5. Social Grid */
.footer-social-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-link-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link-icon:hover {
    background: #ff6200;
    color: #fff;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(255, 98, 0, 0.3);
}

/* 6. Footer Bottom Strip */
.footer-bottom-strip {
    background: #000;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-strip p {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 40px;
    box-sizing: border-box;
}

.footer-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 9999;
}

.footer-sponsor-btn {
    background: #ff6200;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 98, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-sponsor-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 98, 0, 0.6);
    background: #ff751a;
}

.footer-top-btn {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-top-btn:hover {
    background: #ff6200;
    border-color: #ff6200;
    transform: translateY(-2px);
}

/* RESPONSIVE FOOTER */
@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px 40px;
    }
    .footer-logo { align-items: center; }
    .footer-social-grid { justify-content: center; }
    .footer-links a:hover { padding-left: 0; transform: scale(1.1); }
}