/* ===== SERVICES PAGE STYLES ===== */
.services-hero {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
    text-align: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 1;
}

.services-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.services-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero .stat-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.services-hero .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow);
}

.services-hero .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.services-hero .stat-label {
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Services Categories */
.services-categories-section {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.02);
}

.services-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--glass-shadow);
}

.service-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon-small {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.service-item:hover .service-icon-small {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.service-item h3 {
    font-size: 1.3rem;
    color: var(--light);
    margin: 0;
}

.service-item p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-item.expanded .service-details {
    max-height: 500px;
    margin-top: 1.5rem;
}

.service-feature-list {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.service-feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-feature-list li:last-child {
    border-bottom: none;
}

.service-feature-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

.service-toggle {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.service-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

/* Service Process */
.service-process {
    padding: var(--section-padding);
    background: var(--gradient-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow);
    border-color: var(--accent);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(138, 43, 226, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--gray);
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.02);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s;
}

.why-choose-card:hover::before {
    left: 100%;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow);
    border-color: var(--accent);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.why-choose-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.4);
}

.why-choose-card h3 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-choose-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE STYLES FOR SERVICES ===== */
@media (max-width: 768px) {
    .services-categories {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 1.5rem;
    }

    .service-item-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}