/* Service Pages */

/* Full page overlay */
.service-page {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.service-page.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Back button */
.sp-back {
    position: fixed;
    top: 24px; left: 24px;
    z-index: 10000;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(26,26,26,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.sp-back:hover { background: #556B2F; border-color: #556B2F; }

/* Hero */
.sp-hero {
    height: 50vh;
    min-height: 340px;
    background: #1C2E1C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px 40px;
    flex-direction: column;
    gap: 16px;
}
.sp-hero-icon {
    width: 64px; height: 64px;
    margin-bottom: 8px;
}
.sp-hero-icon svg {
    width: 100%; height: 100%;
    stroke: #6B8E23; fill: none; stroke-width: 1.2;
}
.sp-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff; font-weight: 700; margin: 0;
}
.sp-tagline {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 500px; margin: 0;
}

/* Content */
.sp-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}
.sp-section-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem; color: #1A1A1A;
    margin: 0 0 24px; font-weight: 600;
}
.sp-description {
    font-size: 1.05rem; line-height: 1.8;
    color: #444; margin-bottom: 56px;
}

/* Process */
.sp-process { margin-bottom: 56px; }
.sp-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 24px; }
.sp-step { display: flex; align-items: flex-start; gap: 20px; }
.sp-step-num {
    flex-shrink: 0; width: 44px; height: 44px;
    border-radius: 50%; background: #556B2F; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
}
.sp-step-content h4 { margin: 0 0 4px; font-size: 1.05rem; color: #1A1A1A; font-weight: 600; }
.sp-step-content p { margin: 0; color: #555; line-height: 1.6; }

/* Inclusions */
.sp-inclusions { margin-bottom: 56px; }
.sp-check-list {
    list-style: none; padding: 0; margin: 24px 0 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px;
}
.sp-check-list li {
    position: relative; padding-left: 28px;
    color: #444; line-height: 1.6;
}
.sp-check-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: #6B8E23; font-weight: 700;
}

/* Why Choose */
.sp-why { margin-bottom: 56px; }
.sp-differentiators {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 24px;
}
.sp-diff-card {
    background: #f8f8f6; border-radius: 12px;
    padding: 28px 20px; text-align: center;
}
.sp-diff-icon { font-size: 2rem; margin-bottom: 12px; }
.sp-diff-card h4 { font-size: 1rem; color: #1A1A1A; margin: 0 0 8px; font-weight: 600; }
.sp-diff-card p { margin: 0; color: #666; font-size: 0.9rem; line-height: 1.5; }

/* CTA */
.sp-cta {
    background: #1C2E1C; border-radius: 16px;
    padding: 48px 32px; text-align: center; margin-bottom: 56px;
}
.sp-cta h3 {
    font-family: 'Sora', sans-serif;
    color: #fff; font-size: 1.6rem; margin: 0 0 12px;
}
.sp-cta p { color: rgba(255,255,255,0.6); margin: 0 0 24px; }
.sp-cta-btn {
    display: inline-block; padding: 14px 36px;
    background: #556B2F; color: #fff; border: none;
    border-radius: 8px; font-size: 1rem; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.sp-cta-btn:hover { background: #6B8E23; }

/* More Services */
.sp-more { margin-bottom: 40px; }
.sp-more-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 24px;
}
.sp-more-card {
    background: #f8f8f6; border-radius: 12px;
    padding: 28px 20px; text-align: center;
    cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.sp-more-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.sp-more-card-icon { margin-bottom: 12px; }
.sp-more-card-icon svg {
    width: 32px; height: 32px;
    stroke: #556B2F; fill: none; stroke-width: 1.5;
}
.sp-more-card h4 { margin: 0; font-size: 1rem; color: #1A1A1A; }

/* Mobile */
@media (max-width: 640px) {
    .sp-check-list { grid-template-columns: 1fr; }
    .sp-differentiators { grid-template-columns: 1fr; }
    .sp-more-grid { grid-template-columns: 1fr; }
    .sp-hero { height: auto; min-height: 280px; padding: 80px 20px 40px; }
    .sp-content { padding: 40px 20px 60px; }
    .sp-back { top: 16px; left: 16px; width: 40px; height: 40px; }
}
