.contact-list {
    display: flex;
    width: 70%;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    background: var(--main-gradient);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-info {
    font-size: 1.1rem;
    flex: 1;
}

.contact-btn {
    text-decoration: none;
    background: linear-gradient(135deg, #00a550, #007f3d);
    /* nice green gradient */
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: bold;
    backdrop-filter: blur(5px);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #00c060, #009f45);
    /* brighter on hover */
}

.coming-soon {
    opacity: 0.7;
    font-style: italic;
}




@media (max-width: 1000px) {
    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }

}