/* Contact Page Custom CSS - Premium Grade */
.contact-option-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    height: 100%;
}

.contact-option-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    /* Modern soft shadow */
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-text {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.contact-link {
    font-weight: 700;
    color: #0f172a;
    text-decoration: underline;
    text-decoration-color: #cbd5e1;
    text-underline-offset: 4px;
}

.contact-link:hover {
    color: #696cff;
    text-decoration-color: #696cff;
}