/* ===== Service Pages Styles ===== */

/* Service Hero */
.service-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 32px;
    transition: color 0.3s;
}
.breadcrumb:hover { color: var(--primary); }

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid rgba(139,92,246,0.4);
    background: rgba(139,92,246,0.08);
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 28px;
}

.service-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 24px;
}

.service-hero-desc {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.service-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Detail Grid */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-detail-card {
    padding: 32px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: rgba(139,92,246,0.4);
    transform: translateY(-4px);
    box-shadow: 0 0 10px rgba(139,92,246,0.2), 0 0 30px rgba(139,92,246,0.1);
}

.sdc-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(139,92,246,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    transition: background 0.3s;
}

.service-detail-card:hover .sdc-icon {
    background: rgba(139,92,246,0.2);
}

.service-detail-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-detail-card > p {
    color: var(--muted-foreground);
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sdc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sdc-list li {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    padding-left: 20px;
    position: relative;
}

.sdc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--primary), #c084fc);
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: rgba(139,92,246,0.4);
    transform: translateY(-4px);
}

.process-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .service-hero { padding: 90px 0 48px; min-height: unset; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .cta-block { padding: 40px 24px; }
}
