.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #666666 0%, #999999 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover::after {
    width: 400px;
    height: 400px;
}

.contact-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4a4a4a 0%, #666666 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
    transition: all 0.5s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
}

.contact-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.contact-card-info {
    font-size: 15px;
    color: #b0b0b0;
    margin: 0 0 30px 0;
    line-height: 1.7;
    min-height: 50px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.contact-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 38px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-card-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #555555 0%, #444444 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.contact-card-button:hover::before {
    width: 300px;
    height: 300px;
}

.contact-card-button:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-card-button i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .contact-cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px 15px;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .contact-card-icon {
        width: 75px;
        height: 75px;
        font-size: 35px;
    }

    .contact-card-title {
        font-size: 24px;
    }

    .contact-card-info {
        font-size: 14px;
        min-height: auto;
    }

    .contact-card-button {
        padding: 14px 32px;
        font-size: 13px;
    }
}

/* Hide the contact form section */
.elementor-element-bcafbb9 {
    display: none !important;
}