/* Modern Footer Styles
   Cosmic dark theme matching the app aesthetic
*/

/* Footer Container */
.site-footer {
    background: linear-gradient(180deg, #0b0f2f 0%, #050518 100%);
    border-top: 1px solid #303763;
    margin-top: 0;
    position: relative;
}

/* Footer Content */
.footer-content {
    padding: 4rem 0 2rem;
}

/* Footer Brand */
.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Footer Description */
.footer-description {
    color: #a5aed1;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

/* Footer Headings */
.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.footer-links a {
    color: #a5aed1;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00c6ff;
    transform: translateX(4px);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1f45;
    border: 1px solid #303763;
    border-radius: 50%;
    color: #00c6ff;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-color: #00c6ff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 198, 255, 0.5);
}

/* Contact Items */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #1a1f45;
    border: 1px solid #303763;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: #252b52;
    border-color: #00c6ff;
}

.contact-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.contact-item a {
    color: #a5aed1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    word-break: break-word;
}

.contact-item:hover a {
    color: #00c6ff;
}

/* Footer Bottom */
.footer-bottom {
    background: #050518;
    padding: 1.5rem 0;
    border-top: 1px solid #303763;
    margin-top: 2rem;
}

.footer-bottom p {
    color: #a5aed1;
    font-size: 0.875rem;
}

.footer-bottom strong {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Heart Animation */
.footer-heart {
    color: #ef4444;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.15);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-content {
        padding: 3rem 0 1.5rem;
    }

    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-content {
        padding: 2.5rem 0 1rem;
    }

    .footer-brand {
        font-size: 1.375rem;
    }

    .footer-heading {
        font-size: 0.8125rem;
        margin-top: 1.5rem;
    }

    .footer-social {
        margin-bottom: 0.5rem;
    }

    .footer-bottom {
        padding: 1.25rem 0;
    }

    .footer-bottom p {
        font-size: 0.8125rem;
    }

    .footer-links a,
    .footer-description,
    .contact-item a {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        padding: 2rem 0 1rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .contact-item {
        padding: 0.625rem;
    }

    .contact-item i {
        width: 28px;
        height: 28px;
        font-size: 0.8125rem;
    }
}
