/* Service Page Styles */
.service-hero {
    padding: 160px 0 80px;
    background: radial-gradient(ellipse at 50% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    text-align: center;
}

.service-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.service-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.service-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-hero .hero-stats {
    justify-content: center;
}

.locations-grid {
    display: grid;
    gap: 20px;
}

.nav-menu .active {
    color: var(--accent);
}
/* Tab buttons as links */
.tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.tab-btn:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}
