.contact-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 100px;
}

.contact-modern-card {
    position: relative;
    background-color: #111;
    border-radius: 20px;
    padding: 40px 20px 20px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.4s, box-shadow 0.4s;
}

.contact-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.6);
}

.contact-modern-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d1a94f, #f5d173);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-modern-info h3 {
    margin-top: 50px;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.contact-modern-info p {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}

.contact-modern-info a {
    color: #d1a94f;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-modern-info a:hover {
    color: #f5d173;
}