/* Footer with Gold + Green Gradient */
.footer-gradient {
    background: linear-gradient(135deg, #155820 0%, #1e8b2a 25%, #2ab737 50%, #c9a961 75%, #d4b878 100%);
    position: relative;
    overflow: hidden;
}

.footer-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-gradient .container {
    position: relative;
    z-index: 2;
}

.footer-gradient h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-gradient p.text-muted,
.footer-gradient .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-gradient a.text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.footer-gradient a.text-muted:hover {
    color: #c9a961 !important;
}

.footer-gradient .social-links a {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: white !important;
}

.footer-gradient .social-links a:hover {
    background: #2ab737;
    border-color: #2ab737;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 183, 55, 0.4);
    color: white !important;
    text-decoration: none !important;
}

.footer-gradient .social-links a i {
    color: white !important;
}

.footer-gradient hr.bg-secondary {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border: none;
    height: 1px;
}
