
.contact-cards-section {
    padding: 60px 0;
}

/* Card Base */
.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    text-align: left;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Icon Wrapper */
.contact-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fe7c00, #ff9a3c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* Icon */
.contact-card .card-icon i {
    color: #ffffff;
    font-size: 22px;
}

/* Title */
.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0E1F2A;
    margin-bottom: 10px;
}

/* Text */
.contact-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5f6c76;
    margin-bottom: 0;
}

/* Center Email Card */
.center-card {
    text-align: center;
}

.center-card .card-icon {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 767px) {
    .contact-card {
        text-align: center;
    }

    .contact-card .card-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

