/* assets/css/sections/footer.css */
.footer-vivid {
    background-color: #FF5E00;
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
}

.footer-hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    overflow: visible;
}

.f-hero-content { flex: 1; }

.f-badge {
    display: inline-block;
    background: #ffffff;
    color: #FF5E00;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.f-call-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.f-phone-massive {
    display: block;
    font-size: clamp(2.2rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.1;
    margin: 10px 0 20px;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.f-phone-massive:hover { transform: scale(1.02); }

.f-sub-info {
    display: flex;
    gap: 30px;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    flex-wrap: wrap;
}

.f-sub-info i { margin-right: 8px; }

.f-hero-mascot {
    position: relative;
    width: 350px;
    margin-right: -20px;
    margin-top: -30px;
    align-self: flex-end;
    z-index: 5;
}

.f-mascot-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    display: block;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.f-brand-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.f-about {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.f-socials-row { display: flex; gap: 15px; }
.f-social-btn {
    width: 44px; height: 44px;
    background: #ffffff;
    color: #FF5E00;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}
.f-social-btn:hover { background: #0056D2; color: #fff; transform: translateY(-3px); }

.f-col-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.f-list, .f-list-checks { list-style: none; padding: 0; }
.f-list li, .f-list-checks li { margin-bottom: 15px; font-size: 1.1rem; font-weight: 500; }

.f-list a { color: #ffffff; text-decoration: none; opacity: 0.8; transition: 0.2s; }
.f-list a:hover { opacity: 1; padding-left: 5px; }

.f-list-checks i { margin-right: 10px; font-size: 1rem; }

.footer-legal-bar {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.8;
}

.f-legal-links { display: flex; gap: 25px; }
.f-legal-links a { color: #fff; text-decoration: none; }
.f-legal-links a:hover { text-decoration: underline; }

@media (max-width: 1100px) {
    .f-hero-mascot { 
        width: 250px; 
        margin-top: 0;
    }
}

@media (max-width: 900px) {
    .footer-hero-card { flex-direction: column; text-align: center; padding: 40px 20px; }
    .f-hero-mascot { margin: 30px auto 0; width: 200px; align-self: center; }
    .f-sub-info { flex-direction: column; gap: 10px; }
    .footer-main-grid { grid-template-columns: 1fr; text-align: center; }
    .f-socials-row { justify-content: center; }
    .footer-legal-bar { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 576px) {
    .footer-hero-card {
        padding: 30px 15px;
    }
    .f-call-title {
        font-size: 1.8rem;
    }
    .f-phone-massive {
        font-size: 12vw;
    }
}