.footer {
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

/* Advanced 3D Background */
.footer-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mesh-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    animation: meshRotate 30s ease-in-out infinite;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    animation: float3D 20s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    bottom: -100px;
    left: -50px;
    transform: rotate(45deg);
    animation-delay: 10s;
}

.shape-3 {
    width: 150px;
    height: 400px;
    border-radius: 75px;
    top: 50%;
    left: 80%;
    transform: translateY(-50%) rotate(-15deg);
    animation-delay: 5s;
}

.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    animation: dotFloat 15s linear infinite;
}

.dot:nth-child(1) { left: 10%; animation-delay: 0s; }
.dot:nth-child(2) { left: 25%; animation-delay: 3s; }
.dot:nth-child(3) { left: 40%; animation-delay: 6s; }
.dot:nth-child(4) { left: 55%; animation-delay: 9s; }
.dot:nth-child(5) { left: 70%; animation-delay: 12s; }
.dot:nth-child(6) { left: 85%; animation-delay: 2s; }

.wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    transform: skewY(-2deg);
    animation: waveMove 25s ease-in-out infinite;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
}

/* Hero Section - Ultra Minimal */
.footer-hero {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    animation: titleGlow 3s ease-in-out infinite;
}

.hero-accent {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-image {
    margin: 2rem auto;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

/* Main Content - Super Minimal */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 0 2rem 3rem;
    align-items: start;
}

/* Company - Minimal */
.company {
    animation: slideUp 1.5s ease-out;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-3d {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
    transform: perspective(1000px) rotateX(10deg) rotateY(-10deg);
    animation: logoFloat 6s ease-in-out infinite;
}

.brand-name {
    font-size: 1.5rem;
    color: white;
    font-weight: 500;
}

.description {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Links - Minimal */
.links {
    animation: slideUp 1.5s ease-out 0.3s both;
}

.links-title {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .links { display: none !important; }
	.brand-name { display: none !important; }
}

.links-list {
    list-style: none;
}

.links-list li {
    margin-bottom: 0.5rem;
}

.links-list a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.links-list a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Social - Grid */
.social {
    animation: slideUp 1.5s ease-out 0.6s both;
}

.social-title {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.social-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.social-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.social-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
}

/* Contact - Cards */
.contact {
    animation: slideUp 1.5s ease-out 0.9s both;
}

.contact-title {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.contact-icon {
    font-size: 0.8rem;
}

.contact-label {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-value {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Bottom - Minimal */
.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* 3D Animations */
@keyframes meshRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(1deg) scale(1.02); }
    66% { transform: rotate(-1deg) scale(0.98); }
}

@keyframes float3D {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-30px) rotateX(10deg) rotateY(10deg) rotateZ(2deg);
        opacity: 0.6;
    }
    66% { 
        transform: translateY(-15px) rotateX(-5deg) rotateY(-5deg) rotateZ(-1deg);
        opacity: 0.4;
    }
}

@keyframes dotFloat {
    0% { 
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    100% { 
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes waveMove {
    0%, 100% { transform: skewY(-2deg) translateX(0); }
    50% { transform: skewY(-1deg) translateX(50px); }
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { text-shadow: 0 0 40px rgba(139, 92, 246, 0.5); }
}

@keyframes logoFloat {
    0%, 100% { 
        transform: perspective(1000px) rotateX(10deg) rotateY(-10deg) translateY(0);
    }
    50% { 
        transform: perspective(1000px) rotateX(15deg) rotateY(-15deg) translateY(-5px);
    }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1.5fr 1fr; gap: 2rem; text-align: left; }
    .social-grid { grid-template-columns: repeat(3, 1fr); justify-items: center; }
    .footer-hero { padding: 2.5rem 1.5rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-image { max-width: 300px; }
}

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .social-grid { grid-template-columns: repeat(4, 1fr); max-width: 250px; margin: 0 auto; }
    .footer-hero { padding: 2rem 1rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-image { max-width: 250px; margin: 1.5rem auto; }
    .contact-items { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
    .footer-hero { padding: 1.5rem 1rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-image { max-width: 200px; }
    .social-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; max-width: 180px; margin: 0 auto; }
    .footer-content { padding: 0 1rem 2rem; gap: 1.5rem; }
    .contact-items { gap: 0.8rem; }
}
