﻿/* ===== Service Pages Styles ===== */
/* Service Banner */
.service-banner {
    padding: 120px 24px 60px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    text-align: center;
}

.service-banner h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-banner .subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Section */
.service-section {
    padding: 80px 24px;
}

.service-section.alt-bg {
    background: var(--bg-light);
}

.service-section .section-header {
    margin-bottom: 48px;
}

.service-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-section .section-header p {
    font-size: 16px;
    color: var(--text-light);
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.requirement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.requirement-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 16px;
}

.requirement-icon.red {
    background: #ffebee;
    color: #e53935;
}

.requirement-icon.blue {
    background: #e3f2fd;
    color: #1976D2;
}

.requirement-icon.green {
    background: #e8f5e9;
    color: #43A047;
}

.requirement-icon.orange {
    background: #fff3e0;
    color: #FB8C00;
}

.requirement-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.requirement-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--text-dark);
    color: var(--bg-white);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-content {
    background: var(--bg-white);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    position: absolute;
    top: 30px;
    right: -30px;
    font-size: 24px;
    color: #3B82F6;
}

/* Feature Cards Grid */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid #3B82F6;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-orange);
}

.feature-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Advantages List */
.advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.advantage-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.advantage-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    padding: 60px 24px;
    background: linear-gradient(135deg, #EFF6FF 0%, #3B82F6 100%);
    text-align: center;
}

.service-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-cta p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-cta .btn-cta {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: var(--transition);
}

.service-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.service-tab {
    padding: 14px 32px;
    background: var(--bg-light);
    border: 2px solid #e0e0e0;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.service-tab:first-child {
    border-radius: 50px 0 0 50px;
}

.service-tab:last-child {
    border-radius: 0 50px 50px 0;
}

.service-tab.active {
    background: var(--text-dark);
    color: var(--bg-white);
    border-color: var(--text-dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid #3B82F6;
}

.pricing-header {
    padding: 32px 24px;
    background: var(--bg-light);
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background: #3B82F6;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-header .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-header .price span {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-body {
    padding: 24px;
}

.pricing-body ul {
    margin-bottom: 24px;
}

.pricing-body li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
}

.pricing-body li:last-child {
    border-bottom: none;
}

.pricing-body li::before {
    content: '�?;
    color: #4CAF50;
    font-weight: bold;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.pricing-btn:hover {
    background: #333;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question .icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Responsive */
@media (max-width: 1024px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-banner {
        padding: 100px 20px 40px;
    }

    .service-banner h1 {
        font-size: 32px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .advantages-list {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .process-step {
        width: 100%;
        max-width: 100%;
    }

    .step-arrow {
        display: none;
    }

    .service-tabs {
        flex-direction: column;
    }

    .service-tab:first-child,
    .service-tab:last-child {
        border-radius: var(--radius-md);
    }
}


