/* Footer Background */
.lifed-footer {
    background: linear-gradient(135deg, #0f2f2f, #132f2f 60%, #0c2424);
    color: #fff;
}

/* Brand Styling */
.lifed-brand {
    letter-spacing: 2px;
    color: #2fd4a3;
}

/* Links */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d8f5ec;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #2fd4a3;
    padding-left: 5px;
}

/* Accent Color */
.lifed-accent {
    color: #2fd4a3;
}

/* Social Icons */
.lifed-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.lifed-social:hover {
    background: #2fd4a3;
    color: #0f2f2f;
    transform: translateY(-3px);
}

/* Bottom Link */
.lifed-link {
    color: #2fd4a3;
    text-decoration: none;
}

.lifed-link:hover {
    text-decoration: underline;
}

.footer-contact-link {
    color: #d8f5ec;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-contact-link:hover {
    color: #2fd4a3;
}

.footer-muted {
    color: rgba(255, 255, 255, 0.75);
}