/* public/css/footer.css */

/* ======================================================== */
/* ==   FOOTER PREMIUM CONTAINER                         == */
/* ======================================================== */
.footer-premium {
    background-color: hsl(260, 20%, 8%); /* Deep Dark */
    color: rgba(255, 255, 255, 0.7);
    padding-top: 0; /* Line takes space */
    position: relative;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Neon Top Line */
.footer-neon-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--first-color), var(--second-color, cyan));
    box-shadow: 0 0 20px rgba(252, 0, 168, 0.5); /* Brand Glow */
}

.footer-premium .container {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

/* ======================================================== */
/* ==   GRID LAYOUT                                      == */
/* ======================================================== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr; /* Brand wider */
    gap: 4rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .footer-brand-col {
        grid-column: span 2; /* Brand takes full width on tablet */
        text-align: center;
    }
    .footer-brand-col .footer-desc {
        max-width: 600px;
        margin: 0 auto 1.5rem;
    }
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand-col, .footer-links-col, .footer-contact-col {
        grid-column: span 1;
        text-align: center; /* Center everything on mobile */
    }
    .footer-socials {
        justify-content: center;
    }
    /* Re-align lists for center text */
    .contact-list li {
        justify-content: center;
    }
    .footer-nav li a {
        justify-content: center;
    }
}

/* ======================================================== */
/* ==   COLUMNS & CONTENT                                == */
/* ======================================================== */

/* Headings */
.footer-heading {
    font-family: var(--second-font, 'Lora', serif);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--first-color);
    transition: width 0.3s ease;
}

.footer-col:hover .footer-heading::after {
    width: 100%; /* Line expands on hover */
}

@media (max-width: 600px) {
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Brand Column */
.footer-logo {
    max-width: 160px;
    margin-bottom: 1.5rem;
    filter: brightness(1.2); /* Pop against dark */
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Socials Glass */
.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-glass {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-glass:hover {
    background: var(--gradient-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 0, 168, 0.3);
}

/* Navigation Links */
.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-nav li a i {
    color: var(--first-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-nav li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-nav li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start; /* Top align for multiline address */
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.contact-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list li a:hover {
    color: var(--first-color);
}

.icon-box {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--first-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ======================================================== */
/* ==   COPYRIGHT BOTTOM                                 == */
/* ======================================================== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom strong {
    color: #fff;
}