/* SERVICES PAGES STYLES */

/* Hero Section */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #5B59CA 0%, #806BC2 35%, #A67DB8 55%, #C78DB0 75%, #E99DA8 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-cta .btn-outline-dark {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta .btn-outline-dark:hover {
    background: #fff;
    color: #5B59CA;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-light {
    padding: 80px 0;
    background: #fff;
}

.section-dark {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.section-gradient {
    padding: 80px 0;
    background: linear-gradient(180deg, #5B59CA 0%, #806BC2 100%);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #5B59CA;
    margin-bottom: 20px;
}

.section-title-light {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.section-subtitle-light {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: #374151;
}

.feature-list li i {
    color: #22C55E;
    font-size: 18px;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Benefit Cards */
.benefit-card {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.benefit-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(90deg, #4d9cdc, #e85bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    min-width: 80px;
}

.benefit-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 15px;
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

/* Industry Use Cards */
.industry-use-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.industry-use-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.industry-use-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.industry-use-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.industry-use-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.industry-use-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-use-card ul li:last-child {
    border-bottom: none;
}

/* Check Features */
.check-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.check-feature:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.check-feature i {
    font-size: 24px;
    color: #22C55E;
}

.check-feature span {
    font-size: 15px;
    color: #374151;
    font-weight: 500;
}

/* Pricing Cards */
.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #5B59CA;
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #4d9cdc, #e85bd5);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 700;
    color: #5B59CA;
    margin: 20px 0;
}

.pricing-amount span {
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 12px 0;
    font-size: 14px;
    color: #4B5563;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li i {
    color: #22C55E;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #4d9cdc, #e85bd5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F3F4FF 0%, #F8FAFF 100%);
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #5B59CA;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #4B5563;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Use Case Cards */
.use-case-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.use-case-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 15px;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 10px;
}

.use-case-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #5B59CA;
    border-radius: 50%;
}

/* Integration Logos */
.integration-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.integration-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.integration-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.integration-item i {
    font-size: 28px;
}

.integration-item span {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

/* Best Practices */
.best-practice-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
}

.best-practice-item i {
    color: #22C55E;
    font-size: 20px;
    margin-top: 3px;
}

.best-practice-item strong {
    color: #fff;
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}

.best-practice-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .service-hero {
        padding: 120px 0 60px;
    }

    .service-hero h1 {
        font-size: 36px;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .service-hero {
        text-align: center;
    }

    .service-hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-number {
        font-size: 28px;
    }

    .section-title,
    .section-title-light {
        font-size: 28px;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .benefit-number {
        min-width: auto;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}
