/* Service Detail Specific Styles */

.hero-section {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    padding: 1rem 0;
    border-radius: 0 0 3rem 3rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    font-size: 0.8rem;
    color: #94a3b8;
}

.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.process-step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--uc-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.process-step::after {
    content: "";
    position: absolute;
    left: 1rem;
    top: 2rem;
    bottom: -2rem;
    width: 2px;
    background: #e2e8f0;
}

.process-step:last-child::after {
    display: none;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #1e293b;
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.pricing-card.featured {
    border: 2px solid var(--uc-purple);
    transform: scale(1.05);
    z-index: 1;
}

.service-badge {
    background: #f5f3ff;
    color: var(--uc-purple);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
}
@media (max-width: 768px) {

    .btn-indigo{
        font-size: 12px;
        padding: 9px;
    }
    .feature-card  h3 {
        font-size: 12px;
    }
    .feature-card p {
        font-size: 10px;
    }

    .feature-card i{
        font-size: 20px;
    }
    .main-container  h1{
        font-size: 13px !important;
    }

    .main-container  p{
        font-size: 10px !important;
    }
}
