/* ===========================
   CONTACT SECTION
   =========================== */

.contact {
    background: #fff;
    padding: 80px 20px;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #667eea10;
    transform: translateX(5px);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #667eea;
    flex-shrink: 0;
}

.contact-item span {
    color: #555;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.social-links a svg {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    background: #764ba2;
    box-shadow: 0 8px 25px rgba(118, 75, 162, 0.4);
}
