/* Download App CTA Banner - Refined Size & Roundness */
.footer-cta-banner {
    position: absolute;
    top: -65px; 
    left: 50%;
    transform: translateX(-50%);
    /* REDUCED WIDTH: More compact */
    width: 80%; 
    max-width: 1000px;
    background-color: var(--theme); 
    /* INCREASED ROUNDNESS */
    border-radius: 40px; 
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    z-index: 999 !important; 
}

.footer-cta-content h3 {
    font-size: 26px; /* Slightly smaller */
    font-weight: 900;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.2;
    text-transform: uppercase;
}

.footer-cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.footer-cta-btn {
    padding: 12px 35px;
    background-color: #fff;
    color: var(--theme);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.footer-cta-btn:hover {
    background-color: var(--header);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .footer-cta-banner {
        width: 90%;
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        top: -90px;
    }
}
