
.glass-footer {
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px 0 20px 0; 
    background: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    color: #000;
    z-index: 999;
    transform: translateY(30px);
    font-family: copperplate;
}



.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%; 
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-link {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    display: inline-block;
    font-family: copperplate;
}

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

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #888;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%; 
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 60px;
    padding-bottom: 10px;
}

.footer-logo {
    height: 100px;
    opacity: 0.7;
    filter: grayscale(1);
}

.footer-section h4 {
    font-size: 14px;
    margin-bottom: 20px;
        font-family: copperplate;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}