/* ==========================================================
   Services Page — Modern Styles
   ========================================================== */

/* Service Badge */
.service-badge {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: var(--space-lg);
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--clr-text-secondary);
}

.service-features li i {
    color: var(--clr-accent-secondary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Tech Badges */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tech-badges .badge {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--clr-accent-primary);
    font-weight: 500;
    font-size: 0.8rem;
    font-family: var(--ff-mono);
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    border: 1px solid rgba(174, 112, 241, 0.2);
    transition: all var(--transition-fast);
}

.tech-badges .badge:hover {
    border-color: var(--clr-accent-primary);
    background: rgba(174, 112, 241, 0.12);
}

/* Service Visual (Decorative) */
.service-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    box-shadow: 0 0 60px rgba(174, 112, 241, 0.3);
    position: relative;
    z-index: 2;
}

.visual-detail {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--clr-accent-primary);
    animation: float 6s ease-in-out infinite;
}

.visual-detail.detail-1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.visual-detail.detail-2 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.visual-detail.detail-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

/* Decorative ring around main icon */
.service-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px dashed var(--glass-border);
    animation: spin 30s linear infinite;
}

.service-visual::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.03);
    animation: spin 45s linear infinite reverse;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-brand);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.process-step:hover::before { opacity: 1; }

.process-step:hover {
    transform: translateY(-3px);
}

.step-number {
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.process-step h4 { margin-bottom: var(--space-sm); }
.process-step p { font-size: 0.9rem; margin-bottom: 0; }

/* Responsive */
@media (max-width: 991.98px) {
    .service-visual {
        max-width: 300px;
        margin-top: 2rem;
    }

    .service-visual-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }

    .service-visual::before {
        width: 150px;
        height: 150px;
    }

    .service-visual::after {
        width: 220px;
        height: 220px;
    }
}
