@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

footer.premium-footer {
    background: #0f172a;
    color: #e2e8f0;
    position: relative;
    padding-top: 100px;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    margin-top: 50px;
}

/* Wave Divider */
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 80px;
    transform: rotateY(180deg);
}

.footer-wave .shape-fill {
    fill: #ffffff; /* Match background above footer */
}

.footer-main {
    padding-bottom: 70px;
}

/* Brand Column */
.footer-logo {
    max-height: 100px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.footer-brand h3 {
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Title Styles */
.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
}

/* Links Wrapper */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(8px);
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li:hover a::before {
    opacity: 1;
}

.footer-links a:hover {
    color: #fff;
}

/* Contact Info List */
.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #94a3b8;
}

.contact-info-list i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-list li:hover i {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.contact-info-list span {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    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-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
}

/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copy-text {
    font-size: 0.9rem;
    color: #64748b;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    footer.premium-footer {
        padding-top: 80px;
    }
    .footer-col {
        text-align: center;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links a {
        justify-content: center;
    }
    .contact-info-list li {
        flex-direction: column;
        align-items: center;
    }
    .contact-info-list i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .social-links {
        justify-content: center;
    }
}
