/* Footer Styles */
.modern-footer {
    background: #000;
    color: white;
    padding: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 60px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 20px;
}

/* Left Side - Footer Links */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    font-size: 36px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    color: white;
    margin-bottom: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Center Divider */
.footer-divider {
    width: 2px;
    height: 100%;
    min-height: 300px;
    background: white;
}

/* Right Side - App CTA */
.footer-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.app-cta h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: white;
    font-family: 'DM Sans', sans-serif;
}

.qr-code {
    width: 240px;
    height: 180px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'DM Sans', sans-serif;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .app-cta h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 50px 30px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-left {
        align-items: center;
        order: 2;
    }

    .footer-links {
        justify-items: center;
    }

    .footer-divider {
        width: 100%;
        height: 2px;
        min-height: auto;
        order: 1;
    }

    .footer-right {
        order: -1;
    }

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

    .app-cta h2 {
        font-size: 20px;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }
}