:root {
    --card-bg-glass: rgba(255, 255, 255, 0.03);
    --card-border-glass: rgba(255, 255, 255, 0.1);
    --hover-bg: rgba(255, 255, 255, 0.08);
}


.contact-section {
    text-align: center;
    padding: 60px 0;
}

.subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 50px;
    margin-top: 10px;
}

.status-box {
    background: rgba(50, 205, 50, 0.08);
    border: 1px solid rgba(50, 205, 50, 0.3);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: var(--card-bg-glass);
    border: 1px solid var(--card-border-glass);
    border-radius: 16px;
    padding: 35px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.info-card:hover {
    border-color: rgba(124, 77, 255, 0.5);
    transform: translateY(-2px);
}

.card-title {
    margin-top: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 20px;
    border-radius: 10px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.social-btn:hover {
    background: rgba(124, 77, 255, 0.15);
    border-color: #7c4dff;
    color: #fff;
    padding-left: 25px;
}

.social-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .status-box, .info-card {
        padding: 25px;
    }

    h1 { font-size: 2rem; }
    
    .social-btn:hover {
        padding-left: 20px;
    }
}

.email-link {
    color: #e0e0e0;
    text-decoration: underline;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #fff;
    text-decoration: underline;
}

.text-success { color: #88ff88 !important; }
.text-info { color: #29b6f6 !important; }
.text-accent { color: #b388ff !important; }
