/* public/css/footer.css - Ultra-Premium Footer Styles */

:root {
    --footer-bg: #0f172a;
    --footer-text: #94a3b8;
    --footer-heading: #f8fafc;
    --glass-footer-bg: rgba(15, 23, 42, 0.8);
    --newsletter-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --premium-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.footer-premium {
    background: var(--footer-bg);
    color: var(--footer-text);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

/* Newsletter Premium Card */
.newsletter-card {
    background: var(--newsletter-gradient);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--premium-shadow);
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.glass-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    backdrop-filter: blur(10px);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    box-shadow: none;
}

/* Typography & Headings */
.footer-heading {
    color: var(--footer-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

/* Premium Links */
.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bs-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social Links */
.social-link-premium {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-link-premium:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Contact List */
.contact-list-premium li {
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-list-premium i {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Divider & Bottom */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-legal a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 767.98px) {
    .footer-legal {
        text-align: center;
        margin-top: 1rem;
    }

    .footer-legal a {
        margin: 0 0.75rem;
    }
}