/* Commercial Services Page Styles */

/* Hero Section */
.services-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: var(--bg-elevated);
}

.services-hero .page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.services-hero .page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services List */
.services-list {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.services-list h2 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.service-items {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
}

.service-items li {
    padding: 0;
    border-bottom: none;
}

.service-items li:last-child {
    border-bottom: none;
}

.service-items h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-items p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Selected Work */
.selected-work {
    padding: 6rem 0;
    background: var(--bg-elevated);
}

.selected-work h2 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.how-it-works h2 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Section */
.services-cta {
    padding: 6rem 0;
    text-align: center;
    background: var(--bg-elevated);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 4rem 0 3rem;
    }

    .services-hero .page-title {
        font-size: 2rem;
    }

    .services-hero .page-subtitle {
        font-size: 1rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .services-list,
    .selected-work,
    .how-it-works,
    .services-cta {
        padding: 4rem 0;
    }

    .service-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-items li {
        padding: 0;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step {
        padding: 1.5rem 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1025px) {
    .work-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}