.ataraxis-footer {
    padding: 60px 0 0;
    position: relative;
}

.ataraxis-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 48%, rgba(255,255,255,0.05) 48.5%, rgba(255,255,255,0.05) 51.5%, transparent 52%),
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.05) 48.5%, rgba(255,255,255,0.05) 51.5%, transparent 52%);
    background-size: 300px 300px;
    pointer-events: none;
    opacity: 0.3;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.footer-menu h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 15px;
}

.footer-menu ul li a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-menu ul li a:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    padding: 20px;
    margin-top: 0;
    color: #1a4d4d;
    font-size: 14px;
}

.footer-copyright p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}