
/* Premium Footer Styling - Upgraded */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

.main-footer {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(103, 119, 239, 0.1);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.02);
}

.footer-left {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.footer-left span {
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Highlighting Development Company */
.company-highlight {
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(90deg, #6777ef, #b5c0ff, #6777ef);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    text-decoration: none !important;
    margin-left: 8px;
    display: inline-block;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.support-link {
    color: #34395e;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.support-link i {
    color: #6777ef;
}

.support-link:hover {
    color: #6777ef;
    transform: scale(1.02);
}

.whatsapp-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-link i {
    font-size: 18px;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 991px) {
    .main-footer {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        text-align: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 15px;
    }
}
