.footer {
    background: linear-gradient(135deg, #e8e9ec 0%, #d8d9dc 100%);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-accent {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(216, 217, 220, 0.3) 100%);
    transform: rotate(-15deg);
    border-radius: 100px;
    filter: blur(50px);
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.brand-section {
    padding-right: 2rem;
}

.footer-nav {
    padding-right: 2rem;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #000;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-link {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    width: fit-content;
}

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

.link-arrow {
    font-size: 0.8em;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.footer-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

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

.social-icon[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #000;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon:hover[data-tooltip]:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-divider {
    color: #ccc;
}

@media (max-width: 768px) {
    .footer {
        padding: 6rem 1.5rem 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-nav, 
    .brand-section {
        padding-right: 0;
    }

    .footer-accent {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}