/* Contact Section Styles - Minimal Dark Theme */
.contact-section {
    padding: 6rem 2rem;
    background-color: #1e1e1e;
    color: white;
    border-radius: 9px;
    padding-bottom: 5%;
    padding-top: 2%;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #51AF95;
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.contact-title .glow {
    position: relative;
    z-index: 2;
}

.contact-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 60%;
    background: rgba(81, 175, 149, 0.2);
    transform: translateY(-50%) perspective(500px) rotateX(10deg);
    border-radius: 10px;
    filter: blur(20px);
    z-index: 0;
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #51AF95, transparent);
    border-radius: 50%;
    opacity: 0.7;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 0.1;
}

.contact-channels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.contact-channel {
    background: #252525;
    border-radius: 10px;
    padding: 30px;
    width: 220px;
    transition: all 0.3s ease;
    border-left: 4px solid #26A17B;
}

.contact-channel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.channel-icon {
    width: 70px;
    height: 70px;
    background: #1e1e1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #26A17B;
    font-size: 1.8rem;
    border: 2px solid #26A17B;
}

.contact-channel h3 {
    color: #51AF95;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-channel p, 
.contact-channel a {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-channel a:hover {
    color: #51AF95;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
        padding: 0 20px;
    }
    
    .contact-channels {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact-channel {
        width: 100%;
        max-width: 300px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .channel-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}