/* Contact Section */
.contact {
    background-color: #1a1b26;
    padding: 4rem 0;
}

.contact h2 {
    color: #7aa2f7;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

#contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

#contact-form input,
#contact-form textarea {
    background: #24283b;
    border: 1px solid rgba(122, 162, 247, 0.2);
    color: #c0caf5;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    resize: none;
    outline: none;
    transition: border-color 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #7aa2f7;
}

#contact-form button {
    background: #414868;
    color: #c0caf5;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#contact-form button:hover {
    background: #7aa2f7;
    color: #1a1b26;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.social-links a {
    color: #c0caf5;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #7aa2f7;
    transform: scale(1.2);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
