﻿.footer {
    position: relative;
    background: linear-gradient(180deg, #2D2A6C, #1A162E);
    color: #F5F5F5;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 2rem;
    font-family: sans-serif;
}

.footer-bg-cover {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent);
    opacity: 0.3;
    z-index: 0;
}

.footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #AABBFF, transparent);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid-4-cols {
    display: grid;
    grid-column: auto;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #AABBFF, #FF7799);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand-text {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    color: transparent;
    transition: all 0.3s ease;
}

    .social-btn:hover {
        background: rgba(255,255,255,0.2);
        transform: scale(1.1);
    }

    .social-btn i {
        z-index: 1;
        text-decoration: none !important;
        line-height: 1 !important;
        color: white !important;
    }

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        font-size: 0.875rem;
        opacity: 0.8;
        position: relative;
        text-decoration: none;
        color: #F5F5F5;
        transition: opacity 0.3s, color 0.3s;
    }

        .footer-links a:hover {
            opacity: 1;
            color: #AABBFF;
        }

        .footer-links a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #AABBFF;
            transition: width 0.3s;
        }

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

.footer-contact div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-contact i {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0.375rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

    .footer-contact i:hover {
        transition: all 0.3s ease;
        background: rgba(255,255,255,0.2);
        box-shadow: 0 0 20px rgba(170,187,255,0.5);
    }

.footer-divider {
    position: relative;
    margin-bottom: 2rem;
}

    .footer-divider::before {
        content: "";
        display: block;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    }

    .footer-divider::after {
        content: "";
        position: absolute;
        top: -0.5em;
        left: 50%;
        width: 1rem;
        height: 1rem;
        background: linear-gradient(to bottom right, #3b82f6, #393185);
        border-radius: 50%;
        transform: translateX(-50%);
        box-shadow: 0 0 10px rgba(170,187,255,0.5);
    }

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

@media(min-width: 768px) {
    .footer-bottom {
        justify-content: space-between;
        flex-direction: row;
    }
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .footer-right a {
        margin-right: 1rem;
        text-decoration: none;
        color: #F5F5F5;
        transition: color 0.3s, opacity 0.3s;
    }

        .footer-right a:hover {
            color: #AABBFF;
            opacity: 1;
        }

.heart-icon {
    color: #e74c3c;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.scroll-top-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

    .scroll-top-btn:hover {
        background: rgba(255,255,255,0.2);
        box-shadow: 0 0 20px rgba(170,187,255,0.5);
        transform: scale(1.1);
    }

    .scroll-top-btn i {
        display: block;
        transform: translateY(0);
        transition: transform 0.3s;
    }

    .scroll-top-btn:hover i {
        transform: translateY(-4px);
    }

.decor-dot {
    position: absolute;
    background: radial-gradient(circle, #AABBFF30, transparent);
    border-radius: 50%;
}

.dot-1 {
    bottom: 0;
    left: 0;
    width: 8rem;
    height: 8rem;
    filter: blur(50px);
}

.dot-2 {
    top: 0;
    right: 0;
    width: 12rem;
    height: 12rem;
    filter: blur(80px);
}

.logo-cont img {
    height: 40px;
    cursor: pointer;
}