/* FAQ Section Styles */
.faq-section {
    background: var(--bg-light);
    padding: var(--section-padding);
    position: relative;
}

/* FAQ Container - Single Card Design */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(135deg, 
        var(--primary-purple-50) 0%, 
        var(--accent-green-50) 100%);
    padding: 40px;
    border-bottom: 1px solid var(--border-light);
}

.faq-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.faq-hero-image {
    flex-shrink: 0;
}

.success-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.success-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.faq-hero-text {
    flex: 1;
}

.faq-hero-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-hero-text p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Grid */
.faq-grid {
    padding: 40px;
    display: grid;
    gap: 24px;
}

.faq-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: var(--transition-normal);
    transform-origin: top;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple-200);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item h3 {
    color: var(--primary-purple);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: var(--line-height-heading);
    position: relative;
    padding-left: 24px;
}

.faq-item h3::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 16px;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 16px;
    position: relative;
    padding-left: 24px;
}

.faq-item p::before {
    content: 'A:';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 16px;
}

/* FAQ Item Colors for Visual Variety */
.faq-item:nth-child(1):hover::before {
    background: var(--gradient-primary);
}

.faq-item:nth-child(2):hover::before {
    background: var(--gradient-success);
}

.faq-item:nth-child(3):hover::before {
    background: var(--gradient-warning);
}

.faq-item:nth-child(4):hover::before {
    background: var(--gradient-primary);
}

.faq-item:nth-child(5):hover::before {
    background: var(--gradient-success);
}

.faq-item:nth-child(6):hover::before {
    background: var(--gradient-warning);
}

/* Add Icons to FAQ Items */
.faq-item:nth-child(1)::after {
    content: '🛡️';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    opacity: 0.3;
}

.faq-item:nth-child(2)::after {
    content: '👥';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    opacity: 0.3;
}

.faq-item:nth-child(3)::after {
    content: '⚡';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    opacity: 0.3;
}

.faq-item:nth-child(4)::after {
    content: '🔒';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    opacity: 0.3;
}

.faq-item:nth-child(5)::after {
    content: '💾';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    opacity: 0.3;
}

.faq-item:nth-child(6)::after {
    content: '📈';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    opacity: 0.3;
}

.faq-item:nth-child(7)::after {
    content: '🌍';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    opacity: 0.3;
}

.faq-item:nth-child(8)::after {
    content: '✅';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    opacity: 0.3;
}

.faq-item:nth-child(9)::after {
    content: '📋';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    opacity: 0.3;
}

/* Hover effects for icons */
.faq-item:hover::after {
    opacity: 0.6;
    transform: scale(1.1);
    transition: var(--transition-normal);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: var(--mobile-padding);
    }
    
    .faq-container {
        border-radius: var(--radius-lg);
        margin: 0 16px;
    }
    
    .faq-hero {
        padding: 24px;
    }
    
    .faq-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .faq-hero-text h3 {
        font-size: 24px;
    }
    
    .faq-hero-text p {
        font-size: 14px;
    }
    
    .success-image {
        width: 120px;
        height: 120px;
    }
    
    .faq-grid {
        padding: 24px;
        gap: 20px;
    }
    
    .faq-item {
        padding: 24px;
    }
    
    .faq-item h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
    
    .faq-item::after {
        font-size: 20px;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 576px) {
    .faq-container {
        margin: 0 8px;
    }
    
    .faq-hero {
        padding: 20px;
    }
    
    .faq-hero-text h3 {
        font-size: 20px;
    }
    
    .faq-hero-text p {
        font-size: 13px;
    }
    
    .success-image {
        width: 100px;
        height: 100px;
    }
    
    .faq-grid {
        padding: 20px;
        gap: 16px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 15px;
        padding-left: 20px;
    }
    
    .faq-item p {
        font-size: 13px;
        padding-left: 20px;
    }
    
    .faq-item h3::before,
    .faq-item p::before {
        font-size: 14px;
    }
    
    .faq-item::after {
        font-size: 18px;
        top: 10px;
        right: 10px;
    }
}

/* Performance optimization for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .success-image {
        transition: none;
    }
    
    .faq-item:hover,
    .success-image:hover {
        transform: none;
    }
    
    .faq-item::before {
        transition: none;
    }
    
    .faq-item:hover::after {
        transform: none;
    }
} 