/* Contact Section Styles */
.contact {
    padding: 100px 0;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background effect */
.contact::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(46, 204, 113, 0.02) 0%, rgba(46, 204, 113, 0.01) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Contact container */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

/* Contact card */
.contact-card {
    background: rgba(15, 15, 15, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(46, 204, 113, 0.1);
}

/* Contact icon */
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    margin-bottom: 25px;
    color: #2ecc71;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: rgba(46, 204, 113, 0.2);
    transform: scale(1.05);
}

/* Contact text */
.contact-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2ecc71;
    transition: width 0.3s ease;
}

.contact-info:hover {
    color: #2ecc71;
}

.contact-info:hover::after {
    width: 100%;
}

/* CTA section */
.contact-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact {
        padding: 70px 0;
    }
    
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .contact-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    .contact-info {
        font-size: 1.1rem;
    }
}