/* ========================================
   CONTACT CARDS - B2B Professional Layout
   Minimal, data-focused, corporate aesthetic
   ======================================== */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    transition: border-color 0.2s ease;
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Contact Card Icon - Simple minimal */
.contact-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0.7;
}

.icon-technical::before {
    content: '📞';
}

.icon-admin::before {
    content: '📋';
}

.contact-card-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-email {
    display: block;
    font-size: 1.125rem;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: var(--color-primary);
}

/* Contact Phone - Prominent display */
.contact-phone {
    display: block;
    font-size: 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.contact-phone:hover {
    color: var(--color-primary);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.contact-list li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.8;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.contact-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.contact-response {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.response-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.response-time {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

/* Contact Hours - Operating Hours Display */
.contact-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.hours-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hours-time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet - Stack cards vertically */
@media (max-width: 968px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile - Compact layout */
@media (max-width: 640px) {
    .contact-cards {
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-phone {
        font-size: 1.25rem;
    }
    
    .contact-list li {
        font-size: 0.8125rem;
        line-height: 1.7;
    }
}
    .response-time {
        font-size: var(--font-size-base);
    }
}
