/* ==========================================================================
   RUNDLE LANDSCAPING — SERVICES HUB + SERVICE PAGE STYLES
   Reusable template for all 10 individual service pages
   ========================================================================== */

/* ═══════════════════════════════════════════
   SERVICES HUB — Grid of Service Cards
   ═══════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(92,122,92,0.2);
}

.service-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-charcoal) 0%, var(--clr-charcoal-light) 50%, var(--clr-sage-dark) 100%);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: rgba(255,255,255,0.3);
    font-size: var(--fs-small);
}

.service-card-image-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.4;
}

.service-card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--clr-sage);
    color: white;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
}

.service-card-body {
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
}

.service-card:hover .service-card-body h3 {
    color: var(--clr-sage);
}

.service-card-body p {
    font-size: var(--fs-small);
    color: var(--clr-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-lg);
    flex: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--clr-sage);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    transition: all var(--transition-base);
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-smooth);
}

.service-card:hover .service-card-link {
    color: var(--clr-sage-dark);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   SERVICES HUB — Process Section
   ═══════════════════════════════════════════ */
.services-process {
    background: var(--clr-charcoal-deep);
    padding: var(--space-5xl) 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--clr-sage), var(--clr-stone-light), var(--clr-sage));
    opacity: 0.4;
}

.process-card {
    text-align: center;
    position: relative;
}

.process-card-number {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-sage), var(--clr-sage-light));
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--clr-charcoal-deep), 0 0 0 8px rgba(92,122,92,0.3);
}

.process-card h4 {
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-body);
    color: white;
    margin-bottom: var(--space-sm);
}

.process-card p {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.5);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   SERVICES HUB — Full List Strip
   ═══════════════════════════════════════════ */
.services-full-list {
    background: var(--clr-cream);
    padding: var(--space-5xl) 0;
}

.full-service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    max-width: 900px;
    margin: 0 auto;
}

.full-service-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--clr-text-soft);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.full-service-tag:hover {
    border-color: var(--clr-sage);
    color: var(--clr-sage);
    background: rgba(92,122,92,0.04);
}

.full-service-tag svg {
    width: 14px;
    height: 14px;
    color: var(--clr-sage-muted);
}


/* ═══════════════════════════════════════════
   INDIVIDUAL SERVICE PAGE — Hero
   ═══════════════════════════════════════════ */
.service-hero {
    position: relative;
    padding: calc(var(--nav-height) + var(--space-5xl)) 0 var(--space-5xl);
    background: linear-gradient(135deg, var(--clr-charcoal-deep) 0%, var(--clr-charcoal) 40%, var(--clr-sage-dark) 100%);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(92,122,92,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(196,168,130,0.08) 0%, transparent 50%);
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,32,32,0.88) 0%, rgba(44,51,51,0.7) 50%, rgba(74,99,74,0.75) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.service-hero .page-hero-breadcrumb {
    margin-bottom: var(--space-lg);
}

.service-hero-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    color: white;
    margin-bottom: var(--space-lg);
    letter-spacing: var(--ls-tight);
}

.service-hero-subtitle {
    font-size: var(--fs-body-lg);
    color: rgba(255,255,255,0.7);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.service-hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   SERVICE PAGE — Overview Section
   ═══════════════════════════════════════════ */
.service-overview {
    padding: var(--space-5xl) 0;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.service-overview-content h2 {
    margin-bottom: var(--space-lg);
}

.service-overview-text {
    font-size: var(--fs-body);
    color: var(--clr-text-soft);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-lg);
}

.service-overview-list {
    margin-bottom: var(--space-xl);
}

.service-overview-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: var(--fs-body);
    color: var(--clr-text-soft);
    line-height: var(--lh-normal);
}

.service-overview-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    background: rgba(92,122,92,0.12);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235C7A5C'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.service-overview-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
}

.service-overview-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--clr-charcoal) 0%, var(--clr-charcoal-light) 50%, var(--clr-sage-dark) 100%);
}

.service-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overview-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: rgba(255,255,255,0.2);
    font-size: var(--fs-small);
}

/* Quick facts sidebar card */
.service-quick-facts {
    background: var(--clr-cream);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.service-quick-facts h4 {
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-body);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.service-quick-facts h4 svg {
    width: 20px;
    height: 20px;
    color: var(--clr-sage);
}

.quick-fact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--clr-border);
}

.quick-fact:last-child {
    border-bottom: none;
}

.quick-fact-label {
    font-size: var(--fs-small);
    color: var(--clr-text-muted);
}

.quick-fact-value {
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--clr-text);
}

@media (max-width: 768px) {
    .service-overview-grid {
        grid-template-columns: 1fr;
    }

    .service-overview-sidebar {
        position: static;
    }
}

/* ═══════════════════════════════════════════
   SERVICE PAGE — Feature Highlights
   ═══════════════════════════════════════════ */
.service-features {
    background: var(--clr-cream);
    padding: var(--space-5xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-sage), var(--clr-sage-light));
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(92,122,92,0.08);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--clr-sage);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--clr-sage);
    transition: color var(--transition-smooth);
}

.feature-card:hover .feature-icon svg {
    color: white;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: var(--fs-small);
    color: var(--clr-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   SERVICE PAGE — Photo Gallery
   ═══════════════════════════════════════════ */
.service-gallery {
    padding: var(--space-5xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: linear-gradient(135deg, var(--clr-charcoal) 0%, var(--clr-charcoal-light) 50%, var(--clr-sage-dark) 100%);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,32,32,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-overlay {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    z-index: 1;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-overlay span {
    font-size: var(--fs-small);
    color: white;
    font-weight: var(--fw-medium);
}

.gallery-item-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: rgba(255,255,255,0.2);
    font-size: var(--fs-xs);
}

/* Make first gallery item span 2 cols */
.gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid .gallery-item:first-child {
        grid-column: span 1;
    }
}

/* ═══════════════════════════════════════════
   SERVICE PAGE — FAQ Accordion
   ═══════════════════════════════════════════ */
.service-faq {
    background: var(--clr-cream);
    padding: var(--space-5xl) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active {
    border-color: rgba(92,122,92,0.2);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    text-align: left;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-medium);
    color: var(--clr-text);
    cursor: pointer;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--clr-sage);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--clr-text-muted);
    transition: transform var(--transition-smooth);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--clr-sage);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer-inner {
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer-inner p {
    font-size: var(--fs-small);
    color: var(--clr-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ═══════════════════════════════════════════
   SERVICE PAGE — Related Reviews
   ═══════════════════════════════════════════ */
.service-reviews {
    padding: var(--space-5xl) 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.review-card {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    right: var(--space-xl);
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(92,122,92,0.08);
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.review-stars svg {
    width: 16px;
    height: 16px;
    color: var(--clr-gold);
    fill: var(--clr-gold);
}

.review-card blockquote {
    font-size: var(--fs-small);
    color: var(--clr-text-soft);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.review-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--clr-sage), var(--clr-sage-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--fw-bold);
    font-size: var(--fs-xs);
    flex-shrink: 0;
}

.review-author-info strong {
    display: block;
    font-size: var(--fs-small);
    color: var(--clr-text);
}

.review-author-info span {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   SERVICE PAGE — CTA Banner
   ═══════════════════════════════════════════ */
.service-cta {
    padding: var(--space-5xl) 0;
    background: var(--clr-charcoal-deep);
}

.service-cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(92,122,92,0.15) 0%, rgba(92,122,92,0.05) 100%);
    border: 1px solid rgba(92,122,92,0.2);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.service-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(92,122,92,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196,168,130,0.05) 0%, transparent 50%);
}

.service-cta-card h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    color: white;
    margin-bottom: var(--space-md);
    position: relative;
}

.service-cta-card p {
    color: rgba(255,255,255,0.65);
    font-size: var(--fs-body-lg);
    margin-bottom: var(--space-xl);
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-card .btn {
    position: relative;
}

.service-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.45);
    position: relative;
}

.service-cta-phone a {
    color: var(--clr-sage-light);
    font-weight: var(--fw-medium);
}

.service-cta-phone a:hover {
    color: white;
}

.service-cta-phone svg {
    width: 16px;
    height: 16px;
}

/* ═══════════════════════════════════════════
   SERVICE PAGE — Related Services
   ═══════════════════════════════════════════ */
.related-services {
    padding: var(--space-5xl) 0;
    background: var(--clr-cream);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.related-service-card {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-smooth);
}

.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(92,122,92,0.2);
}

.related-service-card h4 {
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-body);
    margin-bottom: var(--space-xs);
    transition: color var(--transition-base);
}

.related-service-card:hover h4 {
    color: var(--clr-sage);
}

.related-service-card p {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   DRIVEWAYS — Why Paving Stone Callout
   ═══════════════════════════════════════════ */
.service-callout {
    padding: var(--space-5xl) 0;
    background: var(--clr-cream);
}

.callout-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-2xl);
    align-items: start;
    background: white;
    border: 1px solid var(--clr-border);
    border-left: 4px solid var(--clr-sage);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.callout-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(92,122,92,0.1);
    border-radius: var(--radius-md);
}

.callout-icon svg {
    width: 26px;
    height: 26px;
    color: var(--clr-sage);
}

.callout-content h3 {
    font-family: var(--font-body);
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-md);
    color: var(--clr-text);
}

.callout-content p {
    font-size: var(--fs-small);
    color: var(--clr-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .callout-card {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   COMPLETE DESIGN — Large Process Steps
   ═══════════════════════════════════════════ */
.service-process {
    background: var(--clr-cream);
    padding: var(--space-5xl) 0;
}

.process-steps-large {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-steps-large::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-sage) 0%, rgba(92,122,92,0.1) 100%);
}

.process-step-large {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    position: relative;
}

.process-step-number {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--clr-sage) 0%, var(--clr-sage-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: var(--fw-bold);
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--clr-cream), 0 0 0 6px rgba(92,122,92,0.2);
}

.process-step-content {
    padding-top: var(--space-sm);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--clr-border);
}

.process-step-large:last-child .process-step-content {
    border-bottom: none;
}

.process-step-content h3 {
    font-family: var(--font-body);
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
    color: var(--clr-text);
}

.process-step-content p {
    font-size: var(--fs-small);
    color: var(--clr-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .process-steps-large::before {
        display: none;
    }

    .process-step-large {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* ═══════════════════════════════════════════
   COMPLETE DESIGN — Service Combines Grid
   ═══════════════════════════════════════════ */
.service-combines {
    padding: var(--space-5xl) 0;
}

.combines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.combine-card {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all var(--transition-smooth);
    display: block;
}

.combine-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(92,122,92,0.25);
}

.combine-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.combine-card h4 {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
    color: var(--clr-text);
    transition: color var(--transition-base);
}

.combine-card:hover h4 {
    color: var(--clr-sage);
}

.combine-card p {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    margin-bottom: 0;
    line-height: var(--lh-normal);
}

@media (max-width: 768px) {
    .combines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .combines-grid {
        grid-template-columns: 1fr;
    }
}
