/* ============================================
   FOOTER-FLOATING.CSS - כותרת תחתונה וכפתורים צפים
   ============================================ */

/* Footer - Netflix Style */
footer {
    background: #141414;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: #b3b3b3;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e50914;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: #737373;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    color: var(--gray-200);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: var(--shadow-glow);
}

.floating-btn.whatsapp:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn.phone:hover {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

/* Mobile Responsive */
@media (max-width: 768px) {
    footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .floating-buttons {
        left: 1rem;
        bottom: 1rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}