/* ===== Service page ===== */

.svc-section {
    background: #141414;
}
.svc-section--alt {
    background: #0c0d0f;
}

/* split panel content area */
.svc-content {
    padding: 90px 80px;
}
@media (max-width: 1399px) { .svc-content { padding: 80px 60px; } }
@media (max-width: 1199px) { .svc-content { padding: 70px 40px; } }
@media (max-width: 991px)  { .svc-content { padding: 60px 50px; } }
@media (max-width: 767px)  { .svc-content { padding: 50px 30px; } }
@media (max-width: 575px)  { .svc-content { padding: 40px 24px; } }

/* image panel */
.svc-img-panel {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}
@media (max-width: 991px) { .svc-img-panel { min-height: 420px; } }
@media (max-width: 575px) { .svc-img-panel { min-height: 280px; } }

/* gradient bleed from content side */
.svc-img-panel__bleed--left {
    background: linear-gradient(to right, #141414 0%, rgba(20,20,20,0.45) 35%, transparent 65%);
}
.svc-img-panel__bleed--right {
    background: linear-gradient(to left, #0c0d0f 0%, rgba(12,13,15,0.45) 35%, transparent 65%);
}

/* large ghost number */
.svc-ghost-num {
    font-size: clamp(100px, 14vw, 200px);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(203,163,115,0.12);
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 0;
    pointer-events: none;
    font-weight: 800;
    letter-spacing: -0.05em;
}

/* decorative number on image */
.svc-deco-num {
    font-size: clamp(80px, 10vw, 150px);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.07);
    font-weight: 800;
    letter-spacing: -0.05em;
    position: absolute;
    z-index: 2;
}

/* gold short line */
.gold-line {
    width: 32px;
    height: 1px;
    background: var(--base-color);
    display: block;
    margin-bottom: 28px;
}

/* feature columns */
.svc-feature {
    border-top: 1px solid rgba(203,163,115,0.28);
    padding-top: 18px;
}
.svc-feature__icon {
    display: block;
    font-size: 22px;
    color: var(--base-color);
    opacity: 0.8;
    margin-bottom: 14px;
}
.svc-feature__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--base-color);
    display: block;
    margin-bottom: 10px;
}
.svc-feature__text {
    font-size: 13px;
    line-height: 1.85;
    color: #888;
    margin-bottom: 0;
    padding-right: 10px;
}

/* lead section */
.svc-lead {
    padding: 110px 0;
    background: #141414;
    position: relative;
    overflow: hidden;
}
@media (max-width: 991px) { .svc-lead { padding: 80px 0; } }
@media (max-width: 767px) { .svc-lead { padding: 60px 0; } }
.svc-lead > .container { position: relative; z-index: 1; }

/* bg scroll text — bottom */
.svc-lead-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 50%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 50%, #000 100%);
}
.svc-lead-bg__track {
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: clamp(80px, 13vw, 148px);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: rgba(255,255,255,0.045);
    font-family: var(--alt-font);
    animation: svcLeadScroll 200s linear infinite;
    line-height: 1.1;
    padding-bottom: 4px;
}
@keyframes svcLeadScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* gold gradient divider */
.svc-lead__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--base-color) 0%, rgba(203,163,115,0.15) 55%, transparent 100%);
    margin: 52px 0 0;
    transform-origin: left;
}

/* service band row */
.svc-lead__band {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.35s;
}
.svc-lead__band::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--base-color);
    transform: scaleY(0);
    transform-origin: var(--band-origin, bottom);
    transition: transform 0.45s cubic-bezier(0.76,0,0.24,1);
}
.svc-lead__band:hover { background: rgba(255,255,255,0.02); }
.svc-lead__band:hover::before { transform: scaleY(1); }

.svc-lead__band-inner {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 34px 24px 34px 24px;
}
@media (max-width: 575px) {
    .svc-lead__band-inner { gap: 24px; padding: 28px 16px; }
}

/* outline number */
.svc-lead__num {
    font-family: var(--alt-font);
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(203,163,115,0.3);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    letter-spacing: -0.03em;
    transition: -webkit-text-stroke-color 0.35s;
}
.svc-lead__band:hover .svc-lead__num {
    -webkit-text-stroke-color: rgba(203,163,115,0.75);
}

.svc-lead__info { flex: 1; }

/* band arrow icon */
.svc-lead__arrow {
    font-size: 14px;
    color: rgba(255,255,255,0.18);
    flex-shrink: 0;
    transition: color 0.3s, transform 0.3s;
}
.svc-lead__band:hover .svc-lead__arrow {
    color: var(--base-color);
    transform: translateX(6px);
}

/* ── CTA section ── */
.svc-cta {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
@media (max-width: 767px) {
    .svc-cta { min-height: 380px; }
}
.svc-cta__bg {
    position: absolute;
    inset: 0;
    background-image: url(../img/common/cta_bg.jpg);
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.svc-cta.is-bg-zoom .svc-cta__bg { transform: scale(1.06); }

/* dark overlay */
.svc-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.78);
    z-index: 0;
}

/* corner brackets */
.svc-cta__corner {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 2;
    border-color: rgba(203,163,115,0.18);
    opacity: 0.5;
}
.svc-cta__corner--tl { top: 32px; left: 32px; border-top: 1px solid; border-left: 1px solid; }
.svc-cta__corner--tr { top: 32px; right: 32px; border-top: 1px solid; border-right: 1px solid; }
.svc-cta__corner--bl { bottom: 32px; left: 32px; border-bottom: 1px solid; border-left: 1px solid; }
.svc-cta__corner--br { bottom: 32px; right: 32px; border-bottom: 1px solid; border-right: 1px solid; }
@media (max-width: 575px) {
    .svc-cta__corner     { width: 30px; height: 30px; }
    .svc-cta__corner--tl { top: 20px; left: 20px; right: auto; bottom: auto; }
    .svc-cta__corner--tr { top: 20px; right: 20px; left: auto; bottom: auto; }
    .svc-cta__corner--bl { bottom: 20px; left: 20px; top: auto; right: auto; }
    .svc-cta__corner--br { bottom: 20px; right: 20px; top: auto; left: auto; }
}

/* vertical gold rule above label */
.svc-cta__vline {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(203,163,115,0.7));
    margin: 0 auto 20px;
}

/* CTA button — white outline, fills gold on hover */
.svc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 18px 50px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease;
    margin-top: 48px;
}
.svc-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--base-color);
    transform: scaleY(0);
    transform-origin: var(--cta-btn-origin, bottom center);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.svc-cta-btn:hover::before  { transform: scaleY(1); }
.svc-cta-btn:hover          { color: #141414; border-color: var(--base-color); }
.svc-cta-btn span           { position: relative; z-index: 1; }
.svc-cta-btn i              { position: relative; z-index: 1; font-size: 13px; transition: transform 0.3s ease; }
.svc-cta-btn:hover i        { transform: translateX(4px); }

/* hero parallax */
#svcHero { min-height: 50vh; overflow: hidden; }
#svcHero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
#svcHero .left-panel,
#svcHero .container { position: relative; z-index: 2; }
.svc-hero-bg {
    position: absolute;
    top: -200px;
    bottom: -200px;
    left: 0;
    right: 0;
    background-image: url(../img/service/service_header.jpg);
    background-size: cover;
    background-position: center center;
    z-index: 0;
    will-change: transform;
}
@media (max-width: 767px) {
    .svc-hero-bg { top: -60px; bottom: -60px; }
}
