.svc{
    --navy:#042a4c;
    --green:#22c55e;
    --greenDeep:#16a34a;
    --line: rgba(4,42,76,.14);
    --wash:#f3f7fb;
    --text:#1f2f3f;
    --muted:#5a6b7b;
    --shadow: 0 18px 45px rgba(4,42,76,.12);
    --radius: 18px;

    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    color: var(--text);
    line-height: 1.75;
}
#primary{
    margin: 0 0 4em 0;
}
.svc a{ color: inherit; }
/* Service page top CTA banner */
.svc .svcTopCta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    padding: 14px 14px;
    margin: 8px 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(4,42,76,.14);
    background:
            radial-gradient(circle at 12% 20%, rgba(34,197,94,.16), transparent 46%),
            linear-gradient(180deg, rgba(243,247,251,.9), #fff);
    box-shadow: 0 14px 30px rgba(4,42,76,.08);
}
.svc .svcTopKicker{
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(4,42,76,.75);
    font-weight: 900;
    margin-bottom: 4px;
}
.svc .svcTopPrice{
    font-size: 16px;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.3;
}
.svc .svcTopPrice strong{
    color: var(--navy);
    background: rgba(34,197,94,.14);
    border: 1px solid rgba(34,197,94,.20);
    padding: 2px 8px;
    border-radius: 10px;
}
.svc .svcTopCtaRight{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
    align-items:center;
}
.svc .svcTopDetails{
    margin-top:6px;
    font-size:13px;
    color: rgba(31,47,63,.75);
    display:flex;
    flex-direction:column;
    gap:2px;
}

@media (max-width: 760px){
    .svc .svcTopCta{
        flex-direction:column;
        align-items:flex-start;
    }
    .svc .svcTopCtaRight{
        width: 100%;
    }
    .svc .svcTopNote{ display:block; margin-left:0; margin-top:4px; }
}

.svc .hero{
    background: linear-gradient(180deg, var(--wash) 0%, #fff 72%);
    border:1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 26px;
    margin: 26px 0 22px;
}
.svc h1{
    color: var(--navy);
    font-size: clamp(32px, 4vw, 46px);
    letter-spacing: -.02em;
    line-height: 1.08;
    margin: 0 0 10px;
}
.svc .sub{
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 17px;
}

.svc .svcProof{ margin: 18px 0 6px; }
.svc .svcProof h2{ margin: 0 0 8px; }
.svc .svcPhotos{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}
@media(max-width: 900px){
    .svc .svcPhotos{ grid-template-columns: 1fr 1fr; }
}
@media(max-width: 560px){
    .svc .svcPhotos{ grid-template-columns: 1fr; }
}
.svc .svcPhoto{
    display:block;
    border-radius: 14px;
    overflow:hidden;
    border:1px solid rgba(4,42,76,.14);
    box-shadow: 0 12px 24px rgba(4,42,76,.08);
    background:#e9eff6;
}
.svc .svcPhoto img{
    width:100%;
    height: 220px;
    object-fit:cover;
    display:block;
}
@media(max-width: 560px){
    .svc .svcPhoto img{ height: 240px; }
}


.svc .badgeRow{ display:flex; gap:10px; flex-wrap:wrap; margin: 14px 0 0; }
.svc .badge{
    display:inline-flex; align-items:center; gap:8px;
    border:1px solid rgba(4,42,76,.14);
    background: rgba(255,255,255,.85);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 13px;
    color: var(--navy);
}

.svc .ctaBox{
    background: #fff;
    border:1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 14px 30px rgba(4,42,76,.08);
}
.svc .ctaTitle{ margin:0 0 6px; color: var(--navy); font-weight: 800; font-size: 16px; }
.svc .ctaText{ margin:0 0 12px; color: var(--muted); font-size: 14px; line-height: 1.6; }

.svc .btnRow{ display:flex; flex-wrap:wrap; gap:10px; }
.svc .btn{
    display:inline-flex; align-items:center; justify-content:center;
    gap:9px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    border:1px solid transparent;
    transition: transform .08s ease, background .12s ease, box-shadow .12s ease, color .12s ease;
    text-decoration: none!important;
}
.svc .btn:active{ transform: translateY(1px); }
.svc .btn.primary{
    background: var(--green);
    color: #07101d;
    box-shadow: 0 16px 34px rgba(34,197,94,.28);
}
.svc .btn.primary:hover{
    background: var(--greenDeep);
    color:#fff;
    box-shadow: 0 18px 40px rgba(34,197,94,.34);
}
.svc .btn.ghost{
    background:#fff;
    border-color: rgba(4,42,76,.18);
    color: var(--navy);
}
.svc .btn.ghost:hover{ background: rgba(4,42,76,.06); }

@media (max-width: 1023px) {
    .svc .btn.hideonmobile{
        display: none;
    }
    .svc .btnRow{
        justify-content: flex-end;
    }
    .svc .btn.primaryonmobile{
        background: var(--green)!important;
        border-color: transparent;
        color:#07101d;
        order:3;
        box-shadow: 0 14px 30px var(--greenGlow);
    }
    .svc .btn.primaryonmobile:hover{
        background: var(--greenDeep);
        color:#fff;
        box-shadow: 0 18px 38px rgba(34,197,94,.32);
    }
    .svc .btn.lightonmobile{
        background:#fff; color:var(--navy);
        box-shadow: 0 16px 30px rgba(0,0,0,.18);
        border-color:transparent;
    }
    html[lang="en-US"] .site-content a[data-name="Phone"]{
        display: none;
    }
}
@media (min-width: 1024px) {
    .svc .btn.hideondesktop{
        display: none;
    }
}
.svc .hintBox{
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background:
            radial-gradient(circle at 18% 30%, rgba(34,197,94,.10), transparent 55%),
            linear-gradient(180deg, rgba(243,247,251,.95), #fff);
    border: 1px solid rgba(4,42,76,.14);
    color: rgba(4,42,76,.92);
    font-size: 15px;
    box-shadow: 0 10px 22px rgba(4,42,76,.06);
}

.svc .hintBox strong{
    color: var(--navy);
    font-weight: 900;
}

@media (max-width: 560px){
    .svc .hintBox{ font-size: 14px; }
}

.svc h2{
    color: var(--navy);
    margin: 28px 0 12px;
    font-size: 28px;
    letter-spacing: -.01em;
}
.svc h3{
    color: var(--navy);
    margin: 18px 0 10px;
    font-size: 20px;
}
.svc p{ margin: 0 0 12px; }

.svc .grid2{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 14px;
}
@media(max-width: 920px){
    .svc .grid2{ grid-template-columns: 1fr; }
}
.svc .card{
    background:#fff;
    border:1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 14px 30px rgba(4,42,76,.08);
}
.svc .card p{ margin: 0; color: var(--text); }
.svc .muted{ color: var(--muted); }

.svc ul{
    margin: 10px 0 0 18px;
    padding:0;
}
.svc li{ margin: 6px 0; }

.svc .steps{
    list-style:none;
    margin: 10px 0 0;
    padding:0;
    display:grid;
    gap:10px;
}
.svc .step{
    display:flex;
    gap:10px;
    align-items:flex-start;
    border:1px solid var(--line);
    background:#fff;
    border-radius: 14px;
    padding: 12px 12px;
}
.svc .num{
    width:26px; height:26px;
    border-radius: 999px;
    background: rgba(4,42,76,.10);
    color: var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 900;
    flex: 0 0 auto;
    margin-top: 1px;
}

.svc .notice{
    background: #fff;
    border:1px solid rgba(241,209,138,.75);
    border-radius: 14px;
    padding: 14px;
    margin-top: 14px;
    box-shadow: 0 10px 22px rgba(4,42,76,.08);
}
.svc .notice strong{ color: var(--navy); }

.svc .faq{
    margin-top: 10px;
    display:grid;
    gap:10px;
}
.svc details{
    background:#fff;
    border:1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
}
.svc summary{
    cursor:pointer;
    font-weight: 800;
    color: var(--navy);
}
.svc details p{ margin-top: 8px; color: var(--text); }

.svc .bottomCta{
    margin: 26px 0 10px;
    border-radius: 24px;
    padding: 22px;
    color:#fff;
    background:
            radial-gradient(circle at 18% 20%, rgba(34,197,94,.26), transparent 45%),
            radial-gradient(circle at 80% 70%, rgba(255,255,255,.12), transparent 52%),
            linear-gradient(135deg, var(--navy) 0%, #06365f 55%, rgba(34,197,94,.18) 120%);
    box-shadow: var(--shadow);
}
.svc .bottomCta h2{ color:#fff; margin:0 0 8px; font-size: 26px; }
.svc .bottomCta p{ color: rgba(255,255,255,.88); margin:0 0 14px; }
.svc .bottomCta .btn.primary{ box-shadow: 0 18px 42px rgba(34,197,94,.30); }
.svc .fineprint{ font-size: 13px; color: var(--muted); margin-top: 10px; }

/* === LIGHTBOX (updated: fit-to-screen + 1:1 “actual size” toggle) === */

.lbOverlay{
    position: fixed;
    inset: 0;
    background: rgba(8, 14, 22, .88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 18px;
}

.lbOverlay.isOpen{ display: flex; }

.lbDialog{
    position: relative;
    width: min(1060px, 100%);
    height: min(88vh, 820px);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

/* Stage is the scroll/pan area */
.lbStage{
    position: absolute;
    inset: 0;
    background: white;
    overflow: hidden;      /* fit mode */
    display: flex;         /* center without grid */
    align-items: center;
    justify-content: center;
}


/* Fit mode: image scales down to fit viewport */
.lbImg{
    display:block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    cursor: zoom-in;
}


/* Zoom mode (1:1): show true pixels, allow scroll */
.lbOverlay.isZoomed .lbStage{
    overflow: auto;
    align-items: flex-start;   /* top */
    justify-content: center;   /* centered horizontally */
    padding: 18px;
}

.lbOverlay.isZoomed .lbImg{
    max-width: none;
    max-height: none;
    cursor: zoom-out;
}

.lbTopBar{
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
}

.lbCounter{
    pointer-events: none;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255,255,255,.92);
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.14);
    padding: 6px 10px;
    border-radius: 999px;
}

.lbClose{
    pointer-events: auto;
    cursor: pointer;
    appearance: none;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.35);
    color: rgba(255,255,255,.95);
    padding: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.lbNav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.lbBtn{
    pointer-events: auto;
    cursor: pointer;
    appearance: none;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.28);
    color: rgba(255,255,255,.92);
    padding: 0;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 900;
}

.lbBtn:disabled{
    opacity: .35;
    cursor: default;
}

/* Optional: thumbnail “clickable” cue */
.svc .svcPhoto{ position: relative; }
.svc .svcPhoto::after{
    content: "🔍";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: translateY(4px);
    transition: .18s ease;
}
.svc .svcPhoto:hover::after{ opacity: 1; transform: translateY(0); }
@media (max-width: 820px){
    .svc .svcPhoto::after{ opacity: 1; transform: none; }
}

/* ===============================
   Elevated Service Why Section
================================ */

.svcWhy {
    margin: 70px 0;
    padding: 40px 36px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(4, 42, 76, 0.08);
    position: relative;
    overflow: hidden;
}

/* top accent line */
.svcWhy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #042a4c, #3b7f16);
}

.svcWhy h2 {
    margin: 0 0 8px 0;
    font-size: 26px;
    color: var(--navy);
}

.svcWhyIntro {
    margin: 0 0 28px 0;
    font-size: 15px;
    color: #5a6a75;
}

/* Grid */
.svcWhyGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 32px;
}

/* Individual items */
.svcWhyItem {
    position: relative;
    padding: 18px 18px 18px 28px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(4, 42, 76, 0.06);
    transition: all 0.25s ease;
}

.svcWhyItem strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--navy);
}

.svcWhyItem p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* subtle green accent */
.svcWhyItem::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 22px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b7f16;
}

/* hover effect */
.svcWhyItem:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(4, 42, 76, 0.08);
    border-color: rgba(4, 42, 76, 0.12);
}

/* ===============================
   Responsive
================================ */

@media (max-width: 900px) {
    .svcWhyGrid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .svcWhy {
        padding: 30px 22px;
    }

    .svcWhyItem {
        padding: 16px 16px 16px 26px;
    }
}

/* ===============================
   Mobile Floating CTA
================================ */

.svcMobileBar{
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(4,42,76,.10);
    box-shadow: 0 10px 24px rgba(4,42,76,.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease, box-shadow .22s ease;
}

.svcMobileBar.isVisible{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: 0 16px 40px rgba(4,42,76,.16);
}

.svcMobileBarHint{
    font-size: 12px;
    font-weight: 700;
    color: rgba(4,42,76,.75);
    text-align: center;
    transition: opacity .2s ease;
}

.svcMobileBarRow{
    display: flex;
    gap: 10px;
}

.svcMobileBarBtn{
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 14px;
    border-radius: 12px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    transition: transform .08s ease, background .12s ease, box-shadow .12s ease, color .12s ease, border-color .12s ease;
}

.svcMobileBarBtn:active{
    transform: translateY(1px);
}

.svcMobileBarBtn svg{
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

/* Primary CTA on the right */
.svcMobileBarBtnLine{
    order: 2;
    position: relative;
    background: #06C755;
    color: #fff;
    box-shadow: 0 12px 28px rgba(6,199,85,.25);
}

/* subtle highlight strip */
.svcMobileBarBtnLine::before{
    content: "";
    position: absolute;
    inset: 1px 1px auto 1px;
    height: 38%;
    border-radius: 11px 11px 9px 9px;
    background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0));
    pointer-events: none;
}

.svcMobileBarBtnLine:hover{
    background: #05b64d;
    color: #fff;
}

.svcMobileBarBtnLine svg{
    width: 20px;
    height: 20px;
}

.svcMobileBarBtnCall,.svcMobileBarBtnWhatsApp{
    order: 1;
    background: #fff;
    color: var(--navy);
    border: 1px solid rgba(4,42,76,.14);
}

.svcMobileBarBtnCall:hover,.svcMobileBarBtnWhatsApp:hover{
    background: rgba(4,42,76,.05);
}

/* ===============================
   Premium first reveal
================================ */

.svcMobileBar.firstReveal{
    animation: svcBarReveal .28s ease-out;
}

.svcMobileBar.firstReveal .svcMobileBarBtnLine{
    animation: svcBarPrimarySettle .32s ease-out .05s both;
}

@keyframes svcBarReveal{
    0%{
        opacity: 0;
        transform: translateY(12px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes svcBarPrimarySettle{
    0%{
        transform: scale(.985);
    }
    100%{
        transform: scale(1);
    }
}

/* ===============================
   Calm LINE breathing pulse
================================ */

@keyframes svcLineBreath{
    0%{
        box-shadow: 0 12px 28px rgba(6,199,85,.25);
        transform: scale(1);
    }
    50%{
        box-shadow: 0 16px 36px rgba(6,199,85,.38);
        transform: scale(1.02);
    }
    100%{
        box-shadow: 0 12px 28px rgba(6,199,85,.25);
        transform: scale(1);
    }
}

.svcMobileBarBtnLine.pulse{
    animation: svcLineBreath 3.6s ease-in-out infinite;
}

@media (min-width: 1024px){
    .svcMobileBar{
        display: none !important;
    }
}

@media (max-width: 1023px){
    .svc{
        padding-bottom: 92px;
    }
}