.contact-section {
    background: #0a0a0a;
    padding: 100px 40px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}
.contact-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e5e5e5;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.contact-subheading {
    font-size: 1.2rem;
    color: #b5b5b5;
    margin-bottom: 50px;
    line-height: 1.6;
}
.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 20px 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #e5e5e5;
    font-size: 1.1rem;
}
.contact-email:hover {
    background: #252525;
    border-color: #404040;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.email-icon {
    width: 24px;
    height: 24px;
    color: #e5e5e5;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: #252525;
    border-color: #404040;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.social-icon {
    width: 24px;
    height: 24px;
    color: #e5e5e5;
}
.divider {
    width: 60px;
    height: 2px;
    background: #2a2a2a;
    margin: 40px auto;
}
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    .contact-heading {
        font-size: 2rem;
    }
    .contact-subheading {
        font-size: 1.1rem;
    }
    .contact-email {
        padding: 16px 32px;
        font-size: 1rem;
    }
    .social-links {
        gap: 16px;
    }
    .social-link {
        width: 48px;
        height: 48px;
    }
}