/*
 * AnowXRadio Footer Styles
 * Mobile Responsive - Logo Centered
 */

/* ===== Download Section ===== */
.download-section {
    background: linear-gradient(135deg, #3D0A1E, #1a0a12);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(220,20,60,0.08), transparent 60%);
    pointer-events: none;
}
.download-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.download-icon {
    margin-bottom: 20px;
}
.download-icon i {
    font-size: 50px;
    color: var(--accent-pink, #FF1493);
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.download-content h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.download-content p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin: 0 0 30px 0;
}
.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
}
.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.store-btn i {
    font-size: 30px;
}
.store-text {
    text-align: left;
}
.store-text small {
    display: block;
    font-size: 10px;
    opacity: 0.6;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.store-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

/* ===== Social Icons ===== */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.social-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-circle:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255,255,255,0.12);
    color: #fff;
}

/* ===== Main Footer ===== */
.main-footer {
    background: var(--footer-bg, #1a0a12);
    padding: 40px 20px;
    text-align: center;
}
.footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== Footer Logo - CENTERED ===== */
.footer-logo {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-logo img {
    max-width: 180px;
    max-height: 60px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* ===== Footer Description ===== */
.footer-description {
    color: var(--footer-text, rgba(255,255,255,0.7));
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 24px 0;
    max-width: 500px;
    text-align: center;
}

/* ===== Footer Links ===== */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--footer-border, rgba(255,255,255,0.06));
    width: 100%;
}
.footer-links a {
    color: var(--footer-link, rgba(255,255,255,0.6));
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
}
.footer-links a:hover {
    color: var(--footer-link-hover, #fff);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
}

/* ===== Footer Border Line ===== */
.footer-border-line {
    height: 1px;
    width: 100%;
    max-width: 400px;
    background: linear-gradient(90deg, transparent, var(--footer-border, rgba(255,255,255,0.1)), transparent);
    margin: 20px auto;
}

/* ===== Footer Text ===== */
.made-in {
    color: var(--footer-text, rgba(255,255,255,0.7));
    font-size: 14px;
    margin: 0 0 8px 0;
    text-align: center;
}
.copyright {
    color: var(--footer-copyright, rgba(255,255,255,0.35));
    font-size: 13px;
    margin: 0;
    text-align: center;
}
.powered-by {
    color: var(--footer-copyright, rgba(255,255,255,0.35));
    font-size: 12px;
    margin: 8px 0 0 0;
    text-align: center;
}

/* ===== Scroll Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red, #DC143C), var(--accent-pink, #FF1493));
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(220,20,60,0.4);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ========================================
   RESPONSIVE STYLES - MOBILE
   ======================================== */

@media screen and (max-width: 768px) {
    /* Download Section Mobile */
    .download-section {
        padding: 50px 16px;
    }
    .download-icon i {
        font-size: 40px;
    }
    .download-content h2 {
        font-size: 22px;
    }
    .download-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }
    .store-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        justify-content: center;
    }
    .store-btn i {
        font-size: 26px;
    }
    .store-text strong {
        font-size: 16px;
    }
    
    /* Social Icons Mobile */
    .social-icons {
        gap: 10px;
    }
    .social-circle {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    /* Main Footer Mobile */
    .main-footer {
        padding: 35px 16px;
    }
    .footer-container {
        align-items: center;
    }
    
    /* Footer Logo Mobile - CENTERED */
    .footer-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 16px;
    }
    .footer-logo img {
        max-width: 150px;
        max-height: 50px;
        margin: 0 auto;
        display: block;
    }
    
    /* Footer Description Mobile */
    .footer-description {
        font-size: 13px;
        text-align: center;
        padding: 0 10px;
    }
    
    /* Footer Links Mobile */
    .footer-links {
        gap: 6px;
        padding-bottom: 20px;
        margin-bottom: 20px;
        justify-content: center;
    }
    .footer-links a {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    /* Footer Text Mobile */
    .made-in {
        font-size: 13px;
        text-align: center;
    }
    .copyright {
        font-size: 12px;
        text-align: center;
    }
    .powered-by {
        font-size: 11px;
        text-align: center;
    }
    
    /* Scroll Top Mobile */
    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    /* Download Section Small Mobile */
    .download-section {
        padding: 40px 14px;
    }
    .download-content h2 {
        font-size: 20px;
    }
    .download-content p {
        font-size: 13px;
    }
    .store-btn {
        max-width: 100%;
        padding: 10px 16px;
    }
    .store-btn i {
        font-size: 24px;
    }
    .store-text small {
        font-size: 9px;
    }
    .store-text strong {
        font-size: 15px;
    }
    
    /* Social Icons Small Mobile */
    .social-icons {
        gap: 8px;
    }
    .social-circle {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    /* Footer Logo Small Mobile - CENTERED */
    .footer-logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .footer-logo img {
        max-width: 130px;
        max-height: 45px;
        margin: 0 auto;
    }
    
    /* Footer Links Small Mobile - Stack */
    .footer-links {
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }
    .footer-links a {
        display: block;
        width: 100%;
        max-width: 200px;
        padding: 10px 16px;
        background: rgba(255,255,255,0.04);
        border-radius: 8px;
        text-align: center;
    }
    
    /* Footer Border Line Small Mobile */
    .footer-border-line {
        max-width: 200px;
    }
    
    /* Footer Text Small Mobile */
    .copyright {
        font-size: 11px;
        padding: 0 10px;
    }
}

/* ===== Extra Small Devices ===== */
@media screen and (max-width: 360px) {
    .download-content h2 {
        font-size: 18px;
    }
    .store-btn {
        padding: 10px 14px;
        gap: 10px;
    }
    .store-btn i {
        font-size: 22px;
    }
    .store-text strong {
        font-size: 14px;
    }
    .footer-logo img {
        max-width: 120px;
    }
    .footer-links a {
        font-size: 12px;
        padding: 8px 14px;
    }
}