/* Professional Services Page Styles */
.services-list {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-intro h2 {
    font-size: 2.2rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.service-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.service-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #f7fafc;
}

.service-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    font-size: 1.5rem;
}

.accordion-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #2d3748;
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #4a5568;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    border-top: 1px solid #edf2f7;
}

.service-details {
    padding: 2rem;
}

.service-description h3 {
    font-size: 1.5rem;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-description p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.service-features-container {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #4299e1;
}

.service-features-container h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    line-height: 1.6;
    color: #4a5568;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
}

.feature-plus {
    color: #4299e1;
    font-weight: bold;
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

/* Process Section */
.process {
    background: linear-gradient(135deg, #f7fafc 0%, #ebf4ff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern.svg') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #1a365d;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #4299e1;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #4299e1;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #4299e1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(66, 153, 225, 0.3);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    background: #1a365d;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #4299e1;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .service-intro {
        padding: 0 1rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .accordion-header {
        padding: 1.25rem;
    }
    
    .accordion-header h2 {
        font-size: 1.2rem;
    }

    .service-details {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}