.services-hero-section {
    background-color: #1a2542;
    padding: 100px 0 80px;
    color: white;
    text-align: center;
    background-image: radial-gradient(circle at top right, rgba(117, 79, 254, 0.15), transparent),
                      radial-gradient(circle at bottom left, rgba(117, 79, 254, 0.1), transparent);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}
.text-highlight {
    color: #a78bfa;
}
.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 40px;
}
.section-padding {
    padding: 80px 0;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    text-align: center;
}
.section-subtitle {
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}
.step-card {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    height: 100%;
    position: relative;
    transition: transform 0.2s;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.step-number {
    width: 32px;
    height: 32px;
    background-color: #7c3aed;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}
.step-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #f5f3ff;
    color: #7c3aed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 20px;
    font-size: 24px;
}
.category-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.category-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}
.category-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
}
.icon-blue { background-color: #eff6ff; color: #3b82f6; }
.icon-orange { background-color: #fff7ed; color: #f97316; }
.icon-purple { background-color: #f5f3ff; color: #8b5cf6; }
.icon-green { background-color: #f0fdf4; color: #22c55e; }
.icon-indigo { background-color: #eef2ff; color: #6366f1; }
.icon-amber { background-color: #fffbeb; color: #f59e0b; }
.icon-red { background-color: #fef2f2; color: #ef4444; }
.icon-pink { background-color: #fdf2f8; color: #ec4899; }
.icon-teal { background-color: #f0fdfa; color: #14b8a6; }
.icon-gray { background-color: #f8fafc; color: #64748b; }

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.category-tag {
    background-color: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}
.category-link {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}
.category-link:hover {
    text-decoration: underline;
}
.cta-box {
    background-color: #f5f3ff;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
}
.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    text-align: center;
}
.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #f5f3ff;
    color: #7c3aed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 20px;
}
.testimonial-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
}
.rating-stars {
    color: #fbbf24;
    margin-bottom: 12px;
}
.testimonial-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-info h6 {
    margin-bottom: 0;
    font-weight: 700;
}
.author-info span {
    font-size: 0.875rem;
    color: #64748b;
}
.faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 20px;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #f8fafc;
    color: #7c3aed;
}
.bottom-cta-section {
    background-color: #1a2542;
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Dark Theme Support */
[data-theme="dark"] .bg-white {
    background-color: #0f172a !important;
}

[data-theme="dark"] .bg-light {
    background-color: #1e293b !important;
}

[data-theme="dark"] .section-title,
[data-theme="dark"] .fw-bold,
[data-theme="dark"] .card-title,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] .accordion-button {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .text-muted,
[data-theme="dark"] .testimonial-text,
[data-theme="dark"] .author-info span,
[data-theme="dark"] p {
    color: #94a3b8 !important;
}

[data-theme="dark"] .step-card,
[data-theme="dark"] .category-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .accordion-item {
    background-color: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .step-icon-wrapper,
[data-theme="dark"] .feature-icon-wrapper {
    background-color: #334155;
    color: #a78bfa;
}

[data-theme="dark"] .cta-box {
    background-color: #0f172a;
    border: 1px solid #334155;
}

[data-theme="dark"] .category-tag {
    background-color: #334155;
    color: #cbd5e1;
}

[data-theme="dark"] .accordion-button {
    background-color: #1e293b;
    color: #f1f5f9;
}

[data-theme="dark"] .accordion-button:not(.collapsed) {
    background-color: #334155;
    color: #a78bfa;
}

[data-theme="dark"] .accordion-body {
    background-color: #1e293b;
    color: #94a3b8;
}

[data-theme="dark"] .icon-blue { background-color: rgba(59, 130, 246, 0.1); color: #60a5fa; }
[data-theme="dark"] .icon-orange { background-color: rgba(249, 115, 22, 0.1); color: #fb923c; }
[data-theme="dark"] .icon-purple { background-color: rgba(139, 92, 246, 0.1); color: #a78bfa; }
[data-theme="dark"] .icon-green { background-color: rgba(34, 197, 94, 0.1); color: #4ade80; }
[data-theme="dark"] .icon-indigo { background-color: rgba(99, 102, 241, 0.1); color: #818cf8; }
[data-theme="dark"] .icon-amber { background-color: rgba(245, 158, 11, 0.1); color: #fbbf24; }
[data-theme="dark"] .icon-red { background-color: rgba(239, 68, 68, 0.1); color: #f87171; }
[data-theme="dark"] .icon-pink { background-color: rgba(236, 72, 153, 0.1); color: #f472b6; }
[data-theme="dark"] .icon-teal { background-color: rgba(20, 184, 166, 0.1); color: #2dd4bf; }
[data-theme="dark"] .icon-gray { background-color: rgba(100, 116, 139, 0.1); color: #94a3b8; }
