/* Footer */
:root {
    --primary-color: #37B34A;
    --primary-dark: #2d8f3a;
    --primary-light: #5bc46a;
}

.footer-custom {
    background: #212529;
    color: #adb5bd;
}

.footer-custom h5 {
    color: white;
    font-weight: 600;
}

.footer-custom a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-custom a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #343a40;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}