/* ==========================================================================
   Footer Styles - Unified layout
   ========================================================================== */

.main-footer {
    background: linear-gradient(135deg, rgb(8, 50, 45) 0%, var(--dark-teal) 50%, rgb(15, 80, 72) 100%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Top Footer Section - CTA */
.footer-cta {
    padding: 40px 0;
}

.footer-cta .dark-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 40px;
    color: var(--white);
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 980px;
    margin: 0 auto;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--white);
}

.footer-cta .final-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.footer-cta .final-cta-actions .link {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-cta .final-cta-actions .link:hover {
    color: var(--white);
}

/* Middle Footer Section - Rating */
.footer-rating {
    padding: 40px 0;
    text-align: center;
}

.footer-rating .review-score {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin: 0;
}

.footer-rating .review-score a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-rating .review-score a:hover {
    color: var(--white);
}

/* Bottom Footer Section - Links & Copyright */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-cta {
        padding: 30px 0;
    }
    
    .footer-cta .dark-section {
        padding: 30px 20px;
    }
    
    .footer-cta h2 {
        font-size: 2rem;
    }
    
    .footer-cta .final-cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-rating {
        text-align: center;
    }
    
    .footer-rating .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
}