/* Contact Info Section Simple Version */
.wp-block-acf-contactinfosection.cng-contactinfosection-simple {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.cng-contactinfosection-simple .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.cng-contactinfosection-simple .contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.cng-contactinfosection-simple .contact-title {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.1;
}

.cng-contactinfosection-simple .contact-description {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Grid */
.cng-contactinfosection-simple .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

/* Contact Cards */
.cng-contactinfosection-simple .contact-card {
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cng-contactinfosection-simple .contact-card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.cng-contactinfosection-simple .contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.cng-contactinfosection-simple .contact-icon svg {
    width: 28px;
    height: 28px;
    color: #3b82f6;
}

.cng-contactinfosection-simple .contact-method-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.cng-contactinfosection-simple .contact-value {
    margin-bottom: 12px;
}

.cng-contactinfosection-simple .contact-value a,
.cng-contactinfosection-simple .contact-value span {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cng-contactinfosection-simple .contact-value a:hover {
    color: #1d4ed8;
}

.cng-contactinfosection-simple .contact-details {
    color: #64748b;
    line-height: 1.5;
}

/* Footer */
.cng-contactinfosection-simple .contact-footer {
    text-align: center;
    padding: 40px;
    background: #f8fafc;
    border-radius: 20px;
}

.cng-contactinfosection-simple .response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #64748b;
}

.cng-contactinfosection-simple .response-time svg {
    color: #3b82f6;
    flex-shrink: 0;
}

.cng-contactinfosection-simple .response-time strong {
    color: #0f172a;
    font-weight: 600;
}

.cng-contactinfosection-simple .availability p {
    color: #475569;
    margin: 8px 0;
}

.cng-contactinfosection-simple .availability strong {
    color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
    .cng-contactinfosection-simple {
        padding: 60px 0;
    }
    
    .cng-contactinfosection-simple .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cng-contactinfosection-simple .contact-card {
        padding: 32px 24px;
    }
    
    .cng-contactinfosection-simple .response-time {
        flex-direction: column;
        text-align: center;
    }
}