/* Contact Section */
.contact {
    text-align: center;
}
  
.contact-info {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
  
.contact-info.animate {
    opacity: 1;
    transform: translateY(0);
}
  
.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
  
.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
  
.contact-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}
  
.contact-link i {
    font-size: 1.2rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
      
.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    animation: float 15s linear infinite;
    opacity: 0.7;
}

.floating-element:nth-child(2n) {
    background: var(--accent-alt);
    animation-duration: 20s;
}
      
.floating-element:nth-child(3n) {
    width: 6px;
    height: 6px;
    animation-duration: 25s;
}

@keyframes float {
    from {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    to {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}