/* Service Detail Page Styles */

.service-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 70px;
}

.service-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
}

.service-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 80px 20px;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.service-header-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-intro {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Service Content Sections */
.service-content {
    background: #f8fafc;
}

.service-section {
    padding: 80px 0;
}

.service-section:nth-child(even) {
    background: white;
}

/* Section: Text Block */
.section-text-block {
    max-width: 900px;
    margin: 0 auto;
}

.section-text-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0f172a;
}

.section-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.section-text-block ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.section-text-block ul li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    color: #64748b;
}

.section-text-block ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #6366f1;
    font-size: 18px;
}

/* Section: Two Columns */
.section-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.column-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f172a;
}

.column-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 15px;
}

.column-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section: Features Grid */
.features-grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
}

.feature-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0f172a;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* Section: Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: #e5e7eb;
}

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

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
}

.process-step p {
    font-size: 14px;
    color: #64748b;
}

/* Section: Statistics */
.stats-section {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 80px 0;
}

.stats-grid-service {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-box h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 18px;
    opacity: 0.9;
}

/* Section: Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card.featured {
    border: 3px solid #6366f1;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0f172a;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: #6366f1;
    margin: 20px 0;
}

.pricing-price span {
    font-size: 18px;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    color: #64748b;
    border-bottom: 1px solid #e5e7eb;
}

/* CTA Section */
.service-cta {
    padding: 80px 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .service-header-content h1 {
        font-size: 32px;
    }

    .service-intro {
        font-size: 16px;
    }

    .section-two-columns,
    .features-grid-section,
    .process-steps,
    .stats-grid-service,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }
}
