/* ==========================================
   Service & Page Specific Styles
   ========================================== */

/* Service Hero */
.service-hero {
    background: var(--bg-secondary);
    padding: 160px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

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

.service-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.service-hero .hero-badge i {
    color: var(--primary);
    font-size: 0.75rem;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-hero .hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Service Content */
.service-content {
    padding: 5rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.service-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-intro p {
    color: var(--text-muted);
    line-height: 1.8;
}

.service-image-showcase {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.showcase-placeholder {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
}

.showcase-placeholder i {
    font-size: 4rem;
    color: var(--text-faint);
}

/* Service Details */
.service-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--border-light);
    transform: translateX(4px);
}

.service-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item-icon i {
    font-size: 1.125rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.service-item:hover .service-item-icon i {
    color: var(--primary);
}

.service-item-content h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.service-item-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* Process Section */
.process-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sidebar-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cta-card {
    background: var(--bg-tertiary);
    border-color: var(--border-light);
}

.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.divider span {
    font-size: 0.75rem;
    color: var(--text-faint);
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--primary);
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.benefits-list i {
    color: #22c55e;
    font-size: 0.875rem;
}

/* Hours Card */
.hours-card .hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    color: var(--text-muted);
}

.hours-list li span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Service CTA Banner */
.service-cta-banner {
    background: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.service-cta-banner h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--bg-primary);
    margin-bottom: 0.75rem;
}

.service-cta-banner p {
    font-size: 1.125rem;
    color: var(--text-faint);
    margin-bottom: 2rem;
}

.service-cta-banner .cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-cta-banner .btn-primary {
    background: var(--bg-primary);
    color: var(--white);
}

.service-cta-banner .btn-primary:hover {
    background: var(--bg-secondary);
}

.service-cta-banner .btn-outline {
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--bg-primary);
}

.service-cta-banner .btn-outline:hover {
    background: var(--bg-primary);
    color: var(--white);
    border-color: var(--bg-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }
    
    .service-content {
        padding: 3rem 0;
    }
    
    .service-cta-banner .cta-buttons {
        flex-direction: column;
    }
}
