/* === FULL WIDTH CLEAN FOOTER === */
.custom-footer {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    padding: 40px 20px 20px;
    font-family: 'Inter', sans-serif;
    margin-top: 60px;
}

.custom-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Logo */
.custom-footer .footer-logo img {
    max-height: 40px;
    margin-bottom: 20px;
}

/* Links */
.custom-footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.custom-footer .footer-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom-footer .footer-links a:hover {
    color: #22c55e;
}

/* Social Media */
.custom-footer .footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-footer .footer-social a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom-footer .footer-social a:hover {
    color: #22c55e;
}

/* Bottom Copyright */
.custom-footer .footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-footer .footer-links ul,
    .custom-footer .footer-social {
        flex-direction: column;
        gap: 15px;
    }
}
