/* Contact Info Cards Section */
.contact-cards-section {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.contact-cards-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Individual Card */
.contact-card {
    background: rgba(1, 6, 28, 0.6);
    border: 2px solid rgba(0, 246, 254, 0.3);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00f6fe, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #00f6fe;
    box-shadow: 0 0 30px rgba(0, 246, 254, 0.3),
        inset 0 0 20px rgba(0, 246, 254, 0.05);
}

.contact-card:hover::before {
    opacity: 1;
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    background: rgba(0, 246, 254, 0.1);
    border: 2px solid #00f6fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #00f6fe;
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    background: rgba(0, 246, 254, 0.2);
    box-shadow: 0 0 20px rgba(0, 246, 254, 0.4);
    transform: scale(1.1);
}

.contact-card:hover .card-icon::after {
    opacity: 0.3;
    transform: scale(1.4);
}

.card-icon i {
    font-size: 1.8rem;
    color: #00f6fe;
    transition: transform 0.3s ease;
}

.contact-card:hover .card-icon i {
    transform: scale(1.1);
}

/* Card Typography */
.contact-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Source Sans Pro", Arial, sans-serif;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.contact-card p {
    color: #a1a8c0;
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
    font-family: "Source Sans Pro", Arial, sans-serif;
}

.contact-card p+p {
    margin-top: 0.3rem;
}