.footer {
    background: linear-gradient(135deg, #ffffff, #f8f8f8, #fafafa);
    position: relative;
    overflow: hidden;
    border-top: 2px solid #977143;
}

/* Glass glowing overlay */
.footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(151, 113, 67, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.footer-link {
    display: block;
    margin-bottom: .75rem;
    color: #555555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #977143;
    transform: translateX(6px);
}

.social-icons .social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(151, 113, 67, 0.1);
    color: #333333;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(151, 113, 67, 0.3);
}

.social-icons .social-icon:hover {
    background: linear-gradient(135deg, #977143, #b8854d);
    color: #ffffff;
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 6px 20px rgba(151, 113, 67, 0.4);
}

.newsletter-form input {
    border: 1px solid #977143;
    outline: none;
    padding: .6rem;
    background: #ffffff;
    color: #333333;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 2px rgba(151, 113, 67, 0.2);
}

.btn-gradient {
    background: linear-gradient(135deg, #977143, #b8854d);
    border: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #b8854d, #977143);
    transform: scale(1.05);
}

footer hr {
    border-color: rgba(151, 113, 67, 0.3);
}