/* Xizmatlar sahifasi uchun maxsus stillar */
.services-hero {
    background: linear-gradient(135deg, #0a0a0f 0%, #151525 50%, #1a1a2e 100%);
    color: #e0e0e0;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-block-size: 60vh;
    display: flex;
    align-items: center;
}

.services-hero-bg {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    pointer-events: none;
}

.services-hero-bg .bg-grid {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    background-image:
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.services-hero-bg .floating-code {
    position: absolute;
    font-size: 8rem;
    color: rgba(57, 255, 20, 0.05);
    inset-block-start: 20%;
    inset-inline-end: 10%;
    font-family: 'Courier New', monospace;
    animation: float 6s ease-in-out infinite;
}

.services-hero-bg .particle {
    background: #39ff14;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    max-inline-size: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-block-end: 1.5rem;
    color: #e0e0e0;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #39ff14, #00eaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0c0;
    margin-block-end: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-block-start: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: #39ff14;
    margin-block-end: 0.5rem;
}

.stat-label {
    color: #a0a0b0;
    font-size: 0.9rem;
}

/* Services Filter */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-block-end: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    color: #a0a0b0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(57, 255, 20, 0.1);
    color: #39ff14;
    border-color: #39ff14;
    transform: translateY(-2px);
}

/* Detailed Services */
.services-detailed {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #151525 100%);
}

.service-detailed-card {
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-block-end: 3rem;
    transition: all 0.3s ease;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: 0 20px 40px rgba(57, 255, 20, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-block-end: 2rem;
}

.service-icon-large {
    inline-size: 80px;
    block-size: 80px;
    background: linear-gradient(135deg, #39ff14, #00eaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 2rem;
    color: #0a0a0f;
}

.service-title-section h3 {
    font-size: 2.2rem;
    color: #39ff14;
    margin-block-end: 0.5rem;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.service-badge.popular {
    background: linear-gradient(45deg, #ff0080, #ff8c00);
}

.service-badge.new {
    background: linear-gradient(45deg, #2196F3, #1976D2);
}

.service-description {
    color: #b0b0c0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-block-end: 2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-block-end: 3rem;
}

.feature-column h4 {
    color: #00eaff;
    margin-block-end: 1.5rem;
    font-size: 1.2rem;
    border-inline-start: 3px solid #39ff14;
    padding-inline-start: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-block-end: 1rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.feature-list li i {
    color: #39ff14;
    font-size: 0.8rem;
}

/* Tech Stack */
.tech-section {
    margin-block-end: 3rem;
}

.tech-section h4 {
    color: #00eaff;
    margin-block-end: 1rem;
    font-size: 1.2rem;
}

.tech-stack-detailed {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-item-large {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: #39ff14;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-item-large:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
    margin-block-end: 3rem;
}

.pricing-section h4 {
    color: #00eaff;
    margin-block-end: 2rem;
    font-size: 1.2rem;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(57, 255, 20, 0.4);
    transform: translateY(-5px);
}

.pricing-card.popular {
    border-color: #39ff14;
    background: rgba(57, 255, 20, 0.05);
}

.pricing-card.popular::before {
    content: 'Tavsiya etiladi';
    position: absolute;
    inset-block-start: -10px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    background: #39ff14;
    color: #0a0a0f;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card h5 {
    color: #39ff14;
    margin-block-end: 1rem;
    font-size: 1.3rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00eaff;
    margin-block-end: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-block-end: 2rem;
}

.pricing-features li {
    color: #b0b0c0;
    margin-block-end: 0.8rem;
    font-size: 0.9rem;
}

/* Timeline */
.timeline-section {
    margin-block-end: 3rem;
}

.timeline-section h4 {
    color: #00eaff;
    margin-block-end: 2rem;
    font-size: 1.2rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.timeline-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.timeline-number {
    inline-size: 40px;
    block-size: 40px;
    background: linear-gradient(135deg, #39ff14, #00eaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0f;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.timeline-item h5 {
    color: #39ff14;
    margin-block-end: 0.5rem;
    font-size: 1rem;
}

.timeline-item p {
    color: #b0b0c0;
    font-size: 0.9rem;
}

/* Service CTA */
.service-cta {
    text-align: center;
    padding-block-start: 2rem;
    border-block-start: 1px solid rgba(255, 255, 255, 0.1);
}

.service-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Umumiy tugma stillari */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #00eaff, #39ff14);
    color: #0a0a0f;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 234, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(0, 234, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 234, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 234, 255, 0.2);
    border-color: rgba(0, 234, 255, 0.6);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #151525 0%, #1a1a2e 100%);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.additional-card {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1);
}

.additional-icon {
    inline-size: 70px;
    block-size: 70px;
    background: linear-gradient(135deg, #39ff14, #00eaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.additional-icon i {
    font-size: 1.5rem;
    color: #0a0a0f;
}

.additional-card h4 {
    color: #39ff14;
    margin-block-end: 1rem;
    font-size: 1.2rem;
}

.additional-card p {
    color: #b0b0c0;
    margin-block-end: 1.5rem;
    line-height: 1.5;
}

.additional-price {
    color: #00eaff;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Process Section */
.process-section {
    margin-block-end: 6rem;
}

.process-title {
    text-align: center;
    color: #00eaff;
    font-size: 2.5rem;
    margin-block-end: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: rgba(20, 20, 30, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(0, 234, 255, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 234, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 234, 255, 0.2);
}

.step-number {
    inline-size: 60px;
    block-size: 60px;
    background: linear-gradient(45deg, #00eaff, #39ff14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0a0a0f;
    margin: 0 auto 1.5rem;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset-block-start: -3px;
    inset-inline-start: -3px;
    inset-inline-end: -3px;
    inset-block-end: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00eaff, #39ff14);
    filter: blur(5px);
    opacity: 0.5;
    z-index: -1;
}

.step-content h4 {
    color: #00eaff;
    font-size: 1.3rem;
    margin-block-end: 1rem;
}

.step-content p {
    color: #b0b0c0;
    line-height: 1.6;
}

.step-line {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-end: -1rem;
    inline-size: 2rem;
    block-size: 2px;
    background: linear-gradient(90deg, #00eaff, #39ff14);
    transform: translateY(-50%);
}

.process-step:last-child .step-line {
    display: none;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.1), rgba(57, 255, 20, 0.1));
    border: 1px solid rgba(0, 234, 255, 0.2);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-content h3 {
    color: #00eaff;
    font-size: 2.5rem;
    margin-block-end: 1rem;
}

.cta-content p {
    color: #b0b0c0;
    font-size: 1.2rem;
    margin-block-end: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #00eaff, #39ff14);
    color: #0a0a0f;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 234, 255, 0.4);
}

/* Container */
.container {
    max-inline-size: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-filter {
        flex-direction: column;
        align-items: center;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .service-cta-buttons {
        flex-direction: column;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-line {
        display: none;
    }

    .services-cta {
        padding: 2rem;
    }

    .cta-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .service-detailed-card {
        padding: 2rem 1.5rem;
    }

    .tech-stack-detailed {
        justify-content: center;
    }

    .process-title {
        font-size: 2rem;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }
}