
/* =========================
   Footer Styles
   ========================= */
.main-footer {
    background: #0a0a10;
    color: #b0b0b0;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 4px solid var(--primary-color);
    position: relative;
    font-size: 0.95rem;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/Image/0205%285%29.gif') no-repeat center center/cover;
    opacity: 0.05;
    pointer-events: none;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

/* Brand Column */
.footer-brand {
    flex: 2;
    min-width: 300px;
}

.footer-logo-text h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-logo-text span {
    color: var(--primary-color);
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #888;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.fb:hover { background: #1877f2; }
.social-link.dc:hover { background: #5865f2; }
.social-link.yt:hover { background: #ff0000; }

/* Navigation Columns */
.footer-nav {
    display: flex;
    gap: 3rem;
    flex: 2;
    justify-content: center;
}

.nav-column h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.nav-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.nav-column ul {
    list-style: none;
}

.nav-column li {
    margin-bottom: 0.8rem;
}

.nav-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Contact Column */
.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 170, 0, 0.3);
}

/* Separator & Bottom */
.footer-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom strong {
    color: #fff;
}

.footer-policy {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-policy a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-policy a:hover {
    color: var(--primary-color);
}

.footer-policy .sep {
    color: #444;
}

@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
    }
    
    .footer-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-policy {
        justify-content: center;
    }
}
