/* Modern Footer Styles */

.modern-footer {
    background: linear-gradient(135deg, #1a3849 0%, #023047 100%);
    color: #ffffff;
    padding: 4rem 0 0 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Column */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    max-width: 160px;
    height: auto;
    display: block;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #32a8ee;
    transform: translateY(-2px);
    color: #ffffff;
}

/* App Store Buttons */
.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-app-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-app-btn:hover {
    transform: translateY(-2px);
}

.footer-app-btn img {
    height: 44px;
    width: auto;
    display: block;
}

/* Footer Columns */
.footer-column-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #32a8ee;
    padding-left: 4px;
}

.footer-links a svg {
    display: inline-block;
    vertical-align: middle;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 3rem 0 0 0;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-apps {
        align-items: center;
    }

    .footer-column-title {
        margin-bottom: 1rem;
    }

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

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }

    .footer-logo img {
        max-width: 140px;
    }

    .footer-description {
        font-size: 0.875rem;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
    }

    .footer-app-btn img {
        height: 40px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.footer-logo:focus,
.footer-social-link:focus,
.footer-app-btn:focus,
.footer-links a:focus {
    outline: 2px solid #32a8ee;
    outline-offset: 2px;
}

