بنگەهێ مە
/* Base Container */
.contact-cards-container {
max-width: 600px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 18px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
box-sizing: border-box;
}
.contact-cards-container * {
box-sizing: border-box;
}
/* Refined Card Design */
.info-card {
background: #f8fafc;
border-radius: 16px;
padding: 24px;
display: flex;
align-items: flex-start;
gap: 20px;
position: relative;
border: 1px solid #e2e8f0;
box-shadow: 0 4px 12px -2px rgba(0, 76, 120, 0.04);
transition: all 0.25s ease;
overflow: hidden;
}
/* Left Accent Bar */
.info-card::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
background-color: #004c78;
border-top-left-radius: 16px;
border-bottom-left-radius: 16px;
}
.info-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px -4px rgba(0, 76, 120, 0.08);
background: #ffffff;
}
/* Perfectly Aligned Icon Wrap */
.card-icon-wrap {
width: 48px;
height: 48px;
border-radius: 50%;
background-color: #e6f0f7;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: -2px; /* Fine-tuned vertical alignment with title */
}
.card-icon-wrap svg {
width: 22px;
height: 22px;
fill: none;
stroke: #004c78;
stroke-width: 2.2;
stroke-linecap: round;
stroke-linejoin: round;
}
/* Content Layout */
.card-content {
flex: 1;
display: flex;
flex-direction: column;
}
.card-title {
font-size: 1.2rem;
font-weight: 700;
color: #0f172a;
margin: 0 0 6px 0;
line-height: 1.25;
letter-spacing: -0.2px;
}
.card-text {
font-size: 0.95rem;
color: #475569;
margin: 0;
line-height: 1.5;
}
/* Phone Formatting */
.phone-highlight {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
font-size: 1.05rem;
font-weight: 700;
color: #004c78;
letter-spacing: 0.5px;
margin-bottom: 6px;
display: block;
}
/* Email Section Formatting */
.email-grid {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 4px;
}
.email-item {
display: flex;
flex-direction: column;
gap: 2px;
}
.email-label {
font-size: 0.7rem;
font-weight: 800;
color: #64748b;
letter-spacing: 1.2px;
text-transform: uppercase;
}
.email-link {
font-size: 0.95rem;
color: #004c78;
text-decoration: none;
font-weight: 600;
transition: color 0.2s ease;
}
.email-link:hover {
color: #003656;
text-decoration: underline;
}