.services {
    padding: 100px 0;
    background: white;
}

/* Section Title Enhancements */
.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Services Tabs */
.services-tabs {
    margin-bottom: 80px;
}

.tabs-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.tab-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.tab-btn:hover i {
    transform: scale(1.2);
}

.tab-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.tab-btn.active i {
    transform: scale(1.2);
}

/* Tabs Content */
.tabs-content {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tab-pane {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Detail */
.service-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-light);
}

.service-intro h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-intro p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
}

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

.service-stats .stat {
    text-align: center;
}

.service-stats .stat h4 {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    line-height: 1;
}

.service-stats .stat p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Service Features */
.service-features {
    margin-bottom: 50px;
}

.service-features h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--info-light) 0%, var(--info) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.5rem;
}

.feature-card h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-light);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Service Tech */
.service-tech {
    background: var(--gray-light);
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 40px;
}

.service-tech h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-item {
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
    border: 1px solid rgba(121, 105, 210, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.pricing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.pricing-switch span {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
}

.discount-badge {
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 10px;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--gradient);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 10px 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    padding: 40px 30px;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.pricing-header p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.period {
    color: var(--gray);
    font-size: 1rem;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.pricing-features i {
    font-size: 1rem;
    width: 20px;
}

.pricing-features .fa-check {
    color: #28a745;
}

.pricing-features .fa-times {
    color: #dc3545;
}

.pricing-footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid var(--gray-light);
}

.pricing-footer .btn {
    width: 100%;
}

.custom-plan-cta {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.custom-plan-cta p {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0;
}

.custom-plan-cta a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.custom-plan-cta a:hover {
    text-decoration: underline;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient);
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    margin: 0 40px;
    position: relative;
    z-index: 3;
}

.step-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-details {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.step-details li {
    padding: 8px 20px;
    background: rgba(121, 105, 210, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #6876d9 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.service-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    z-index: 1;
}

.service-cta h3 {
    color: white !important;
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    font-weight: 800;
    letter-spacing: -0.5px;

    -webkit-text-fill-color: white !important; /* override transparent fill */
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    background: none !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    visibility: visible !important;
    clip-path: none !important;
    transform: none !important;
    filter: none !important;
  
  
 
    line-height: normal !important;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 220px;
}

.service-cta .btn-primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-cta .btn i {
    color: inherit;
}

/* Responsive */
@media (max-width: 1200px) {
    .process-timeline:before {
        left: 80px;
    }
    
    .process-step {
        flex-direction: row !important;
    }
    
    .step-number {
        margin: 0 30px 0 0;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .tabs-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: flex-start;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .service-intro h3 {
        font-size: 1.8rem;
    }
    
    .service-stats {
        gap: 30px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline:before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .step-number {
        margin: 0 0 20px 0;
    }
    
    .step-details {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta {
        padding: 40px 20px;
    }
    
    .tech-stack {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .tab-pane {
        padding: 20px;
    }
    
    .service-tech {
        padding: 20px;
    }
    
    .pricing-switch {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-header {
        padding: 30px 20px;
    }
    
    .pricing-features {
        padding: 20px;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .service-cta {
        padding: 35px 20px;
    }
    
    .service-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .service-cta p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
    }
}