.footer {
    background-color: #ffffff;
    color: #1a1a1a;
    border-top: 4px solid #D4AF37;
}

.footer-link {
    color: #4a5568;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: #D4AF37;
}

.footer-top {
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
    opacity: 0.3;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.social-icon:hover {
    background-color: #D4AF37;
    transform: translateY(-2px);
}

.gold-text {
    color: #D4AF37;
}

.footer h3 {
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2rem;
    height: 2px;
    background: #D4AF37;
}
