/* ── Services page ─────────────────────────────────────────────── */

/* Breadcrumb */
.services-breadcrumb {
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    font-size: 13px;
}
.services-breadcrumb ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.services-breadcrumb li a { color: #252525; text-decoration: none; }
.services-breadcrumb li a:hover { color: #fac652; }
.services-breadcrumb li span { color: #fac652; }
.services-breadcrumb .sep { color: #aaa; font-size: 11px; }

/* Page intro */
.services-intro {
    padding: 70px 0 20px;
    text-align: center;
}
.services-intro h1 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fac652;
    margin-bottom: 16px;
}
.services-intro h2 {
    font-size: 38px;
    font-weight: 900;
    color: #252525;
    line-height: 1.15;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.services-intro p {
    font-size: 15px;
    color: #777;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.9;
}
.services-intro-rule {
    width: 48px;
    height: 3px;
    background: #fac652;
    margin: 28px auto 0;
}

/* Alternating service rows */
.services-list {
    padding: 60px 0 20px;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.service-row {
    display: flex;
    align-items: stretch;
    min-height: 420px;
    margin-bottom: 6px;
}
.service-row:last-child { margin-bottom: 0; }

/* image side */
.service-row-img {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .75;
    transition: opacity .4s, transform .4s;
}
.service-row:hover .service-row-img img {
    opacity: .9;
    transform: scale(1.03);
}
/* placeholder when no real image */
.service-row-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: rgba(255,255,255,.12);
    font-size: 72px;
}
.service-row-img-placeholder span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.18);
}
/* gold accent bar on image edge */
.service-row-img::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 4px;
    background: #fac652;
}
.service-row:not(.service-row--reverse) .service-row-img::after { right: 0; }
.service-row--reverse .service-row-img::after { left: 0; }

/* text side */
.service-row-body {
    flex: 0 0 55%;
    display: flex;
    align-items: center;
    padding: 54px 60px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-left: none;
}
.service-row--reverse .service-row-body {
    border-left: 1px solid #f0f0f0;
    border-right: none;
}
.service-row-inner { width: 100%; }

.service-number {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: #f0f0f0;
    margin-bottom: -10px;
    display: block;
    font-family: serif;
    letter-spacing: -2px;
}
.service-row-inner h3 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #252525;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 16px;
}
.service-row-inner h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 3px;
    background: #fac652;
}
.service-row-inner p {
    font-size: 14px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}
.service-row-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-row-inner ul li {
    font-size: 13px;
    color: #444;
    padding: 5px 0 5px 20px;
    position: relative;
    line-height: 1.6;
}
.service-row-inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 2px;
    background: #fac652;
}

/* reverse layout */
.service-row--reverse {
    flex-direction: row-reverse;
}

/* alternating bg */
.service-row:nth-child(even) .service-row-body { background: #fafafa; }

/* CTA strip */
.services-cta {
    background: #252525;
    padding: 70px 0;
    text-align: center;
    margin-top: 6px;
}
.services-cta h2 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fac652;
    margin-bottom: 16px;
}
.services-cta h3 {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.services-cta p {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.services-cta .btn-cta {
    display: inline-block;
    background: #fac652;
    color: #252525;
    padding: 14px 44px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.services-cta .btn-cta:hover {
    background: #fff;
    color: #252525;
}

/* responsive */
@media (max-width: 991px) {
    .service-row, .service-row--reverse {
        flex-direction: column;
        min-height: auto;
    }
    .service-row-img, .service-row--reverse .service-row-img { flex: none; width: 100%; }
    .service-row-img-placeholder { min-height: 220px; font-size: 48px; }
    .service-row-body, .service-row--reverse .service-row-body {
        flex: none; width: 100%;
        padding: 40px 28px;
        border: 1px solid #f0f0f0 !important;
        border-top: none !important;
    }
    .service-row-img::after { display: none; }
    .service-number { font-size: 56px; }
    .services-intro h2 { font-size: 26px; }
    .services-cta h3 { font-size: 22px; }
}

@media (max-width: 575px) {
    .services-intro { padding: 40px 0 16px; }
    .services-intro h1 { font-size: 11px; letter-spacing: 2.5px; }
    .services-intro h2 { font-size: 21px; letter-spacing: .5px; }
    .services-intro p { font-size: 13px; line-height: 1.7; }
    .services-intro-rule { margin: 20px auto 0; }

    .services-list { padding: 30px 0 10px; }
    .service-row { margin-bottom: 0; }
    .service-row-img-placeholder { min-height: 170px; font-size: 36px; }
    .service-row-body, .service-row--reverse .service-row-body { padding: 28px 20px; }
    .service-number { font-size: 40px; margin-bottom: -4px; }
    .service-row-inner h3 { font-size: 16px; letter-spacing: 1px; padding-bottom: 12px; margin-bottom: 12px; }
    .service-row-inner p { font-size: 13px; margin-bottom: 14px; }
    .service-row-inner ul li { font-size: 12px; }

    .services-cta { padding: 40px 0; }
    .services-cta h3 { font-size: 18px; }
    .services-cta p { font-size: 13px; margin-bottom: 22px; }
    .services-cta .btn-cta { padding: 12px 28px; font-size: 11px; }
}
