/* Services Page – supplemental styles */

/* Hero */
.services-hero {
    background: var(--body-bg-color);
    padding: 10rem 0 5rem;
    text-align: center;
    border-bottom: 1px solid var(--surface-color);
}

.services-hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-color);
    max-width: 650px;
    margin: 0 auto;
}

/* Active nav link */
.nav-active {
    color: var(--secondary-color) !important;
}

/* Service detail sections */
.service-detail {
    padding: 5rem 0;
    background: var(--body-bg-color);
}

.service-detail.alt-bg {
    background: var(--surface-color);
}

.service-detail-inner {
    max-width: 1000px;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-detail-header h2 {
    text-align: left;
    margin-bottom: 0;
    font-size: 2rem;
}

.service-icon {
    font-size: 2.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.service-lead {
    font-size: 1.05rem;
    color: var(--text-color);
    max-width: 880px;
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    line-height: 1.75;
}

/* Two-column layout inside each section */
.service-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-col h3 {
    color: var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.service-col h3:first-child {
    margin-top: 0;
}

/* Bullet lists */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.service-list li {
    padding: 0.35rem 0 0.35rem 1.4rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.55;
}

.service-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
    top: 0.38rem;
}

/* CTA banner */
.services-cta {
    background: var(--body-bg-color);
    text-align: center;
    padding: 5rem 0;
    border-top: 1px solid var(--surface-color);
}

.services-cta h2 {
    margin-bottom: 0.75rem;
}

.services-cta p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .service-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-detail-header h2 {
        font-size: 1.6rem;
    }

    .services-hero {
        padding: 8rem 0 4rem;
    }
}
