/* SECTION */
.contact-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND GLOW */
.bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

/* GLASS CARD */
.contact-card {
    position: relative;
    z-index: 1;

    width: 480px;
    padding: 40px;
    border-radius: 20px;

    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);

    text-align: center;
    transition: 0.3s ease;
}

/* HOVER */
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(34,197,94,0.25);
    border: 1px solid rgba(34,197,94,0.4);
}

/* NAME */
.name {
    font-size: 24px;
    margin-bottom: 6px;
}

/* ROLE */
.role {
    font-size: 14px;
    color: #94a3b8;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 25px 0;
}

/* LIST */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ITEM */
.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* ICON */
.contact-item i {
    color: #22c55e;
    font-size: 16px;
}

/* TEXT */
.contact-item a,
.contact-item p {
    font-size: 14px;
    color: #e2e8f0;
    text-decoration: none;
}

/* HOVER LINKS */
.contact-item a:hover {
    color: #22c55e;
}

/* RESPONSIVE */
@media (max-width: 500px) {
    .contact-card {
        width: 90%;
        padding: 30px;
    }
}


/* ENTRY ANIMATION */
.contact-card {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.contact-card:hover {
    transform: translateY(-10px) scale(1.01);
}










