/* assets/css/footer_services.css */
.footer-top-row {
    display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 30px; text-align: left;
}

.footer-why-us { flex: 1; min-width: 300px; }

.footer-why-us h4, .footer-services h4 {
    color: var(--brand-orange); font-size: 1.8rem; margin-bottom: 15px;
}

.footer-why-us p { color: #ccc; font-size: 0.95rem; line-height: 1.6; }

.footer-services { flex: 2; min-width: 300px; }

.footer-services-list {
    display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;
}

.f-service-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px; width: 90px; text-align: center;
}

.f-icon {
    width: 60px; height: 60px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.1); border: 2px solid var(--primary-blue); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--brand-green); transition: all 0.3s ease;
}

.f-service-item:hover .f-icon {
    background-color: var(--primary-blue); color: var(--white); transform: translateY(-5px);
}

.f-service-item span {
    font-size: 0.85rem; color: #ddd; font-weight: bold; line-height: 1.2;
}

@media (max-width: 768px) {
    .footer-top-row { flex-direction: column; text-align: center; }
    .footer-services h4 { text-align: center; }
}