.footer {
    background: linear-gradient(145deg, var(--background), rgba(255, 255, 255, 0.02));
    border-top: 4px solid transparent;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
    padding: 5rem 0 2.5rem;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    animation: pulseGlow 15s infinite linear;
}

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

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 5rem;
    padding: 0 3rem;
    position: relative;
}

.footer-section h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    padding-left: 1.2rem;
    transform: perspective(1000px) rotateX(10deg);
    transform-origin: left;
}

.footer-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    transform: skewX(-15deg);
}

.company-info p {
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
    color: var(--text-muted);
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.1);
}

.footer-section ul {
    list-style: none;
    padding: 0 0 0 1rem;
    perspective: 1000px;
}

.footer-section ul li {
    margin-bottom: 1.2rem;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.footer-section ul li::before {
    content: '⟡';
    position: absolute;
    left: -1.2rem;
    color: var(--primary-gold);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateZ(20px);
}

.footer-section ul li:hover::before {
    opacity: 1;
    transform: translateX(5px) translateZ(20px) rotate(180deg);
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.4rem 0;
    display: inline-block;
    position: relative;
    transform-style: preserve-3d;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(10px);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(8px) translateZ(20px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    perspective: 1000px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transform-style: preserve-3d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px) rotateX(10deg) rotateY(10deg);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 8px 20px rgba(212, 175, 55, 0.15),
        0 2px 5px rgba(212, 175, 55, 0.1);
}

.footer-bottom {
    position: relative;
    margin-top: 4rem;
    padding-top: 2.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.8px;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.2),
        rgba(212, 175, 55, 0.2),
        transparent
    );
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .company-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
    box-shadow: 
        0 5px 15px rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.footer-logo:hover {
    transform: scale(1.1) rotate(-3deg) translateZ(20px);
    filter: brightness(1.3) contrast(1.1) saturate(1.3);
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.15);
}

.footer-section.company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
    background: linear-gradient(165deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.03),
        transparent
    );
    border-radius: 24px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

.footer-section.company-info:hover {
    transform: translateY(-5px) rotateX(2deg);
}