/* ===================================
   Service Cards Component - The Chatbot Genius
   =================================== */

/* Features/Services Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Individual Feature/Service Card */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--text-white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Feature Icon */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Feature Card Heading */
.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Feature Card Text */
.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Trust Badges Section */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
}

.trust-badge-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.trust-badge-label {
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq {
    background: var(--text-white);
    margin-top: 3rem;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-light);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    font-weight: bold;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Timeline */
.timeline {
    margin: 3rem 0;
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    background: var(--primary-blue);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content {
    margin-left: 2rem;
    flex: 1;
}

.timeline-content h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        gap: 2rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
    }
}