/* FOOTER STYLES */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00b4d8 0%, #6930c3 100%);
    box-shadow: 0 0 15px rgba(105,48,195,0.3);
}

.footer-brand {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00b4d8, #6930c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(105,48,195,0.3);
}

.footer h5 {
    color: #e2e8f0 !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem !important;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00b4d8;
    border-radius: 2px;
}

.footer-link {
    color: #94a3b8 !important;
    text-decoration: none !important;
    padding: 0.3rem 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
    color: #00b4d8 !important;
    transform: translateX(8px);
}

.footer-link::before {
    content: '▹';
    position: absolute;
    left: -15px;
    color: #00b4d8;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
    left: -12px;
}

.social-links .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    border-width: 2px !important;
}

.social-links .btn:hover {
    background: linear-gradient(45deg, #00b4d8, #6930c3) !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(105,48,195,0.3);
}

.border-top {
    border-color: rgba(255,255,255,0.1) !important;
}

/* Newsletter Form Styling */
.newsletter-form {
    position: relative;
    max-width: 400px;
}

.newsletter-input {
    background: rgba(255,255,255,0.05) !important;
    border: 2px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #00b4d8 !important;
    box-shadow: 0 0 15px rgba(0,180,216,0.2) !important;
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #00b4d8, #6930c3);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white !important;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(105,48,195,0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-link:hover {
        transform: translateX(0);
    }
    
    .social-links {
        justify-content: center !important;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.footer-brand {
    animation: float 4s ease-in-out infinite;
}

/* Hover Effects */
.list-unstyled li {
    transition: transform 0.3s ease;
}

.list-unstyled li:hover {
    transform: scale(1.02);
}