/* Service hero */
.svc-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: var(--color-dark);
    color: var(--color-white);
    overflow: hidden;
}
.svc-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.svc-hero__bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    z-index: 0;
}
.svc-hero .container { position: relative; z-index: 2; }
.svc-hero .section__title { color: var(--color-white); max-width: 700px; }
.svc-hero__desc {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-top: 1rem;
}

/* Features */
.svc-features { padding: 5rem 0; }
.svc-features__header { text-align: center; margin-bottom: 3rem; }
.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}
.feature-card:nth-child(even) { direction: rtl; }
.feature-card:nth-child(even) > * { direction: ltr; }
.feature-card__text h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}
.feature-card__text p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-600);
}
.feature-card__image {
    border-radius: 16px;
    overflow: hidden;
}
.feature-card__image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

/* Problem/Solution or equivalent two-column dark section */
.svc-columns {
    padding: 5rem 0;
    background: var(--color-dark);
    color: var(--color-white);
}
.svc-columns__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.svc-column {
    padding: 2.5rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
.svc-column h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.svc-column p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

/* Photo slider section */
.svc-gallery { padding: 5rem 0; }
.svc-gallery__header { text-align: center; margin-bottom: 2rem; }
.svc-slider-wrap {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.svc-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-slide {
    min-width: 100%;
}
.svc-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.svc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}
.svc-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--color-gray-200);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.svc-dot.svc-dot--active {
    background: var(--color-primary);
}
.svc-nav {
    position: absolute; top: 50%; width: 100%;
    display: flex; justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 0.75rem;
    pointer-events: none;
}
.svc-nav button {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: none;
    cursor: pointer;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background 0.2s ease;
}
.svc-nav button:hover { background: rgba(0,0,0,0.7); }

/* CTA */
.svc-cta {
    background: var(--color-primary);
    padding: 4rem 0;
    text-align: center;
}
.svc-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 960px) {
    .feature-card { grid-template-columns: 1fr; gap: 1.5rem; }
    .feature-card:nth-child(even) { direction: ltr; }
    .svc-columns__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .svc-hero { padding: 5rem 0 3rem; }
    .svc-column { padding: 1.5rem; }
}
