/* ============================================
   SERVICE ARCHIVE STYLES
   Page: archive-service.php
   ============================================ */

.services-archive { background: #0a0b0f; min-height: 100vh; }

/* Hero */
.services-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #12141c 0%, #0a0b0f 100%);
    text-align: center;
}

.services-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

/* Department Filter */
.department-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.dept-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.dept-btn:hover,
.dept-btn.active {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: #6366f1;
}

/* Services Grid */
.services-grid-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #12141c;
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color, #6366f1);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: var(--card-color, #6366f1)20;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-icon i {
    width: 28px;
    height: 28px;
    color: var(--card-color, #6366f1);
}

.service-card-dept {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 12px;
}

.service-card h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card h2 a {
    color: inherit;
    text-decoration: none;
}

.service-card p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
}

.price-note {
    font-size: 14px;
    color: #64748b;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6366f1;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.service-card-link:hover {
    gap: 10px;
}

/* CTA Section */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, #12141c 100%);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 32px;
}

.services-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
}

/* No services */
.no-services {
    text-align: center;
    padding: 80px 24px;
}

.no-services-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.no-services h2 {
    font-size: 1.5rem;
    color: #f8fafc;
    margin-bottom: 12px;
}

.no-services p {
    color: #94a3b8;
}

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

@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .department-filter {
        gap: 8px;
    }
    
    .dept-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}
