/* =========================================================
   CLEANNORA — MASTER SERVICE DETAIL PAGE
   Used for ALL service pages
   Brand: #083D2B / #F4BF19 / #FFFFFF
========================================================= */

:root {
    --service-green: #083D2B;
    --service-green-dark: #052D20;
    --service-gold: #F4BF19;
    --service-gold-dark: #D9A900;
    --service-white: #FFFFFF;
    --service-bg: #F7F9F8;
    --service-text: #183129;
    --service-muted: #65716C;
    --service-border: #E2E9E5;
    --service-soft-gold: #FFF6D8;
    --service-shadow: 0 10px 30px rgba(8, 61, 43, 0.07);
    --service-radius: 14px;
    --service-container: 1160px;
}


/* =========================================================
   GLOBAL
========================================================= */

.service-page {
    width: 100%;
    overflow: hidden;
    background: var(--service-white);
    color: var(--service-text);
}

.service-page *,
.service-page *::before,
.service-page *::after {
    box-sizing: border-box;
}

.service-container {
    width: min(var(--service-container), calc(100% - 48px));
    margin: 0 auto;
}

.service-page a {
    text-decoration: none;
}

.service-page img {
    max-width: 100%;
}

.service-page :focus-visible {
    outline: 2px solid var(--service-gold);
    outline-offset: 3px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.service-breadcrumb {
    padding: 16px 0 12px;
    background: #fff;
}

.service-breadcrumb .service-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.service-breadcrumb a {
    color: #65716C;
    transition: color .2s ease;
}

.service-breadcrumb a:hover {
    color: var(--service-green);
}

.service-breadcrumb span {
    color: #A7B0AC;
}

.service-breadcrumb span:last-child {
    color: var(--service-green);
    font-weight: 600;
}


/* =========================================================
   HERO
========================================================= */

.service-hero {
    background: #fff;
}

.service-hero-grid {
    min-height: 430px;
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: stretch;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 38px 48px 0;
}

.service-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    margin-bottom: 14px;
    border-radius: 30px;
    background: var(--service-soft-gold);
    border: 1px solid rgba(244, 191, 25, .35);
    color: var(--service-green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-hero-content h1 {
    margin: 0;
    color: var(--service-green);
    font-size: clamp(52px, 5vw, 72px);
    line-height: .95;
    letter-spacing: -3px;
    font-weight: 850;
}

.service-hero-description {
    max-width: 470px;
    margin: 18px 0 22px;
    color: #52605A;
    font-size: 14px;
    line-height: 1.7;
}

.service-highlights {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.service-highlight {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-right: 18px;
    margin-right: 18px;
    border-right: 1px solid #DDE5E0;
}

.service-highlight:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}

.highlight-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--service-soft-gold);
    border: 1px solid rgba(244,191,25,.55);
    color: var(--service-green);
    font-size: 16px;
}

.service-highlight div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.service-highlight small {
    color: #7A8580;
    font-size: 9px;
}

.service-highlight strong {
    color: var(--service-green);
    font-size: 10px;
    font-weight: 800;
}

.service-hero-button-wrap {
    margin-top: 24px;
}

.service-book-btn {
    min-width: 145px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 13px 18px;
    border-radius: 8px;
    background: var(--service-green);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(8,61,43,.16);
    transition: .25s ease;
}

.service-book-btn:hover {
    background: var(--service-green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.service-book-btn span {
    color: var(--service-gold);
    font-size: 18px;
}


/* HERO IMAGE */

.service-hero-image {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 0 0 0 70px;
}

.service-hero-image::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 145px;
    background: linear-gradient(
        90deg,
        #fff 0%,
        rgba(255,255,255,.9) 20%,
        rgba(255,255,255,.45) 55%,
        rgba(255,255,255,0) 100%
    );
    pointer-events: none;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
    object-position: 58% center;
}


/* =========================================================
   SECTION COMMON
========================================================= */

.service-section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--service-gold-dark);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.service-overview-content h2,
.service-included-heading h2,
.service-process-heading h2,
.before-after-heading h2,
.service-benefits > .service-container > h2,
.service-faq-intro h2 {
    margin: 0;
    color: var(--service-green);
    font-weight: 850;
    letter-spacing: -.8px;
}


/* =========================================================
   SERVICE OVERVIEW
========================================================= */

.service-overview {
    padding: 58px 0;
    background: #fff;
}

.service-overview-layout {
    display: grid;
    grid-template-columns: 27% 73%;
    gap: 35px;
    align-items: center;
}

.service-overview-content h2 {
    font-size: 28px;
    line-height: 1.12;
}

.service-overview-content p {
    max-width: 330px;
    margin: 13px 0 0;
    color: var(--service-muted);
    font-size: 12px;
    line-height: 1.65;
}

.service-overview-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.service-overview-card {
    min-height: 145px;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid var(--service-border);
    border-radius: 14px;
    box-shadow: var(--service-shadow);
    transition: .25s ease;
}

.service-overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244,191,25,.7);
    box-shadow: 0 15px 34px rgba(8,61,43,.11);
}

.overview-card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--service-soft-gold);
    color: var(--service-green);
    font-size: 21px;
}

.service-overview-card h3 {
    margin: 0;
    color: var(--service-green);
    font-size: 12px;
    font-weight: 850;
}

.service-overview-card p {
    margin: 5px 0 0;
    color: var(--service-muted);
    font-size: 10px;
}


/* =========================================================
   WHAT'S INCLUDED
========================================================= */

.service-included {
    padding: 55px 0;
    background: var(--service-bg);
}

.service-included-layout {
    display: grid;
    grid-template-columns: 23% 77%;
    gap: 30px;
    align-items: center;
}

.service-included-heading h2 {
    font-size: 27px;
    line-height: 1.12;
}

.service-included-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.service-included-card {
    min-height: 125px;
    padding: 15px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid var(--service-border);
    border-radius: 13px;
    box-shadow: 0 5px 18px rgba(8,61,43,.045);
    transition: .25s ease;
}

.service-included-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244,191,25,.7);
}

.included-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--service-green);
    font-size: 23px;
}

.service-included-card h3 {
    margin: 0;
    color: var(--service-green);
    font-size: 9.5px;
    line-height: 1.35;
    font-weight: 850;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.service-process {
    padding: 58px 0;
    background: #fff;
}

.service-process-layout {
    display: grid;
    grid-template-columns: 23% 77%;
    gap: 30px;
    align-items: center;
}

.service-process-heading h2 {
    font-size: 27px;
    line-height: 1.12;
}

.service-process-steps {
    display: grid;
    grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
    align-items: start;
}

.service-process-step {
    text-align: center;
}

.process-icon {
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0 auto 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--service-green);
    color: #fff;
    font-size: 21px;
    box-shadow: 0 8px 20px rgba(8,61,43,.15);
}

.process-icon b {
    position: absolute;
    right: -3px;
    bottom: -2px;
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--service-gold);
    color: var(--service-green);
    font-size: 9px;
    font-weight: 900;
}

.service-process-step h3 {
    margin: 0;
    color: var(--service-green);
    font-size: 11px;
    font-weight: 850;
}

.service-process-step p {
    max-width: 130px;
    margin: 6px auto 0;
    color: var(--service-muted);
    font-size: 9px;
    line-height: 1.5;
}

.process-arrow {
    padding-top: 22px;
    color: #A5B0AA;
    text-align: center;
    font-size: 17px;
}


/* =========================================================
   BEFORE & AFTER
========================================================= */

.service-before-after {
    padding: 55px 0;
    background: var(--service-bg);
}

.before-after-layout {
    display: grid;
    grid-template-columns: 22% 78%;
    gap: 30px;
    align-items: center;
}

.before-after-heading h2 {
    font-size: 28px;
    line-height: 1.1;
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.before-after-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--service-shadow);
}

.before-after-card {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #E9EEEB;
}

.before-after-card + .before-after-card {
    border-left: 2px solid #fff;
}

.before-after-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.before-label,
.after-label {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 3;
    padding: 5px 10px;
    border-radius: 30px;
    background: rgba(18,28,24,.88);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
}

.after-label {
    background: var(--service-green);
}


/* =========================================================
   WHY CHOOSE CLEANNORA
========================================================= */

.service-benefits {
    padding: 58px 0;
    background: #fff;
}

.service-benefits > .service-container > h2 {
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 1.12;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.service-benefit-card {
    min-height: 130px;
    padding: 19px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--service-border);
    border-radius: 14px;
    box-shadow: var(--service-shadow);
    transition: .25s ease;
}

.service-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244,191,25,.75);
    box-shadow: 0 15px 32px rgba(8,61,43,.10);
}

.benefit-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--service-soft-gold);
    border: 1px solid rgba(244,191,25,.45);
    color: var(--service-green);
    font-size: 20px;
}

.service-benefit-card h3 {
    margin: 0 0 5px;
    color: var(--service-green);
    font-size: 11px;
    line-height: 1.25;
    font-weight: 850;
}

.service-benefit-card p {
    margin: 0;
    color: var(--service-muted);
    font-size: 9px;
    line-height: 1.5;
}


/* =========================================================
   FAQ
========================================================= */

.service-faq {
    padding: 58px 0;
    background: var(--service-bg);
}

.service-faq-layout {
    display: grid;
    grid-template-columns: 28% 72%;
    gap: 35px;
    align-items: start;
}

.service-faq-intro h2 {
    font-size: 28px;
    line-height: 1.1;
}

.service-faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-faq-list details {
    background: #fff;
    border: 1px solid var(--service-border);
    border-radius: 10px;
    overflow: hidden;
    transition: .2s ease;
}

.service-faq-list details:hover {
    border-color: rgba(244,191,25,.7);
}

.service-faq-list summary {
    min-height: 54px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    list-style: none;
    color: var(--service-green);
    font-size: 10px;
    line-height: 1.4;
    font-weight: 750;
}

.service-faq-list summary::-webkit-details-marker {
    display: none;
}

.service-faq-list summary span {
    color: var(--service-gold-dark);
    font-size: 17px;
}

.service-faq-list p {
    margin: 0;
    padding: 0 15px 14px;
    color: var(--service-muted);
    font-size: 9px;
    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.service-cta {
    padding: 35px 0 55px;
    background: var(--service-bg);
}

.service-cta-inner {
    position: relative;
    min-height: 145px;
    display: grid;
    grid-template-columns: 65px 1fr auto 250px;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    border-radius: 17px;
    background: var(--service-green);
    box-shadow: 0 16px 38px rgba(8,61,43,.15);
}

.service-cta-icon {
    width: 46px;
    height: 46px;
    margin-left: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--service-gold);
    color: var(--service-green);
    font-size: 21px;
}

.service-cta-content {
    position: relative;
    z-index: 3;
    padding: 22px 0;
}

.service-cta-content h2 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 850;
}

.service-cta-content p {
    max-width: 450px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 10px;
    line-height: 1.55;
}

.service-cta-button {
    position: relative;
    z-index: 3;
    min-width: 125px;
    padding: 13px 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    background: var(--service-gold);
    color: var(--service-green);
    font-size: 11px;
    font-weight: 850;
    transition: .25s ease;
}

.service-cta-button:hover {
    background: #FFD34F;
    color: var(--service-green);
    transform: translateY(-2px);
}

.service-cta-image {
    height: 145px;
    overflow: hidden;
}

.service-cta-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .service-container {
        width: min(100% - 34px, 760px);
    }

    .service-hero-grid {
        grid-template-columns: 45% 55%;
    }

    .service-hero-content {
        padding-right: 18px;
    }

    .service-hero-content h1 {
        font-size: 52px;
    }

    .service-overview-layout,
    .service-included-layout,
    .service-process-layout,
    .before-after-layout,
    .service-faq-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-overview-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-included-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .process-arrow {
        display: none;
    }

    .service-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-faq-list {
        grid-template-columns: 1fr 1fr;
    }

    .service-cta-inner {
        grid-template-columns: 55px 1fr auto;
    }

    .service-cta-image {
        display: none;
    }

    .service-cta-icon {
        margin-left: 16px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .service-container {
        width: calc(100% - 28px);
    }

    .service-breadcrumb {
        padding: 12px 0 8px;
    }

    .service-breadcrumb .service-container {
        font-size: 10px;
    }

    /* HERO */

    .service-hero-grid {
        display: flex;
        flex-direction: column;
    }

    .service-hero-content {
        order: 1;
        padding: 28px 0 22px;
    }

    .service-hero-content h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .service-hero-description {
        font-size: 12px;
        line-height: 1.6;
    }

    .service-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .service-highlight {
        padding: 0;
        margin: 0;
        border: 0;
        gap: 6px;
    }

    .highlight-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 13px;
    }

    .service-highlight small {
        font-size: 7px;
    }

    .service-highlight strong {
        font-size: 8px;
    }

    .service-book-btn {
        width: 100%;
    }

    .service-hero-image {
        order: 2;
        min-height: 280px;
        border-radius: 14px;
    }

    .service-hero-image::before {
        display: none;
    }

    .service-hero-image img {
        min-height: 280px;
        height: 280px;
        object-position: 55% center;
    }

    /* SECTIONS */

    .service-overview,
    .service-included,
    .service-process,
    .service-before-after,
    .service-benefits,
    .service-faq {
        padding: 42px 0;
    }

    .service-overview-content h2,
    .service-included-heading h2,
    .service-process-heading h2,
    .before-after-heading h2,
    .service-benefits > .service-container > h2,
    .service-faq-intro h2 {
        font-size: 25px;
    }

    .service-overview-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 12px;
    }

    .before-after-images {
        grid-template-columns: 1fr;
    }

    .before-after-card {
        height: 180px;
    }

    .service-benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-faq-list {
        grid-template-columns: 1fr;
    }

    .service-cta {
        padding: 20px 0 35px;
    }

    .service-cta-inner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 18px;
    }

    .service-cta-icon {
        margin: 0;
    }

    .service-cta-content {
        padding: 0;
    }

    .service-cta-button {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .service-hero-content h1 {
        font-size: 43px;
    }

    .service-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-highlight {
        justify-content: flex-start;
    }

    .service-overview-cards,
    .service-included-grid {
        grid-template-columns: 1fr 1fr;
    }

    .before-after-card {
        height: 150px;
    }
}

/* =========================================================
   FINAL VISUAL POLISH — SERVICE PAGES
========================================================= */

/* ---------- NAVBAR SE CONTENT KO NICHE KARO ---------- */

.service-breadcrumb {
    padding-top: 105px;
    padding-bottom: 10px;
}


/* ---------- OVERALL TEXT SIZE ---------- */

.service-page {
    font-size: 14px;
}


/* ---------- HERO ---------- */

.service-hero-grid {
    min-height: 390px;
}

.service-hero-content {
    padding-top: 35px;
    padding-bottom: 35px;
}

.service-hero-content h1 {
    font-size: clamp(56px, 5vw, 70px);
    line-height: .94;
}

.service-hero-description {
    max-width: 500px;
    margin: 16px 0 20px;
    font-size: 15px;
    line-height: 1.65;
}

.service-hero-image {
    min-height: 390px;
}

.service-hero-image img {
    min-height: 390px;
    object-position: 53% center;
}


/* ---------- HERO BUTTON ---------- */

.service-hero-button-wrap {
    margin-top: 20px;
}

.service-book-btn {
    padding: 14px 20px;
    font-size: 13px;
}


/* =========================================================
   SECTION SPACING — REDUCED
========================================================= */

.service-overview {
    padding: 38px 0;
}

.service-included {
    padding: 38px 0;
}

.service-process {
    padding: 38px 0;
}

.service-before-after {
    padding: 38px 0;
}

.service-benefits {
    padding: 38px 0;
}

.service-faq {
    padding: 38px 0;
}

.service-cta {
    padding: 25px 0 38px;
}


/* =========================================================
   OVERVIEW
========================================================= */

.service-overview-layout {
    gap: 25px;
}

.service-overview-content h2 {
    font-size: 30px;
    line-height: 1.1;
}

.service-overview-content p {
    max-width: 360px;
    font-size: 13px;
    line-height: 1.65;
    margin-top: 12px;
}

.service-overview-cards {
    gap: 12px;
}

.service-overview-card {
    min-height: 130px;
    padding: 17px 10px;
}

.overview-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 9px;
}

.service-overview-card h3 {
    font-size: 12px;
}

.service-overview-card p {
    font-size: 11px;
}


/* =========================================================
   INCLUDED
========================================================= */

.service-included-layout {
    gap: 25px;
}

.service-included-heading h2 {
    font-size: 29px;
}

.service-included-grid {
    gap: 10px;
}

.service-included-card {
    min-height: 115px;
    padding: 13px 7px;
}

.included-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 7px;
    font-size: 21px;
}

.service-included-card h3 {
    font-size: 10.5px;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.service-process-layout {
    gap: 25px;
}

.service-process-heading h2 {
    font-size: 29px;
}

.service-process-step h3 {
    font-size: 11.5px;
}

.service-process-step p {
    max-width: 145px;
    font-size: 10px;
    line-height: 1.5;
}

.process-icon {
    width: 58px;
    height: 58px;
}


/* =========================================================
   BEFORE / AFTER
========================================================= */

.before-after-layout {
    gap: 25px;
}

.before-after-heading h2 {
    font-size: 30px;
}

.before-after-card {
    height: 175px;
}


/* =========================================================
   WHY CHOOSE
========================================================= */

.service-benefits > .service-container > h2 {
    margin-bottom: 20px;
    font-size: 30px;
}

.service-benefits-grid {
    gap: 13px;
}

.service-benefit-card {
    min-height: 118px;
    padding: 17px;
    gap: 13px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
}

.service-benefit-card h3 {
    font-size: 12px;
    margin-bottom: 4px;
}

.service-benefit-card p {
    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   FAQ
========================================================= */

.service-faq-layout {
    gap: 28px;
}

.service-faq-intro h2 {
    font-size: 30px;
}

.service-faq-list {
    gap: 9px;
}

.service-faq-list summary {
    min-height: 52px;
    padding: 11px 15px;
    font-size: 11px;
}

.service-faq-list p {
    font-size: 10px;
}


/* =========================================================
   CTA
========================================================= */

.service-cta-inner {
    min-height: 125px;
}

.service-cta-content h2 {
    font-size: 25px;
}

.service-cta-content p {
    font-size: 11px;
}

.service-cta-image {
    height: 125px;
}


/* =========================================================
   DESKTOP — KEEP EVERYTHING COMPACT
========================================================= */

@media (min-width: 992px) {

    .service-overview-layout,
    .service-included-layout,
    .service-process-layout,
    .before-after-layout,
    .service-faq-layout {
        align-items: center;
    }

    .service-overview-content,
    .service-included-heading,
    .service-process-heading,
    .before-after-heading {
        align-self: center;
    }

    .service-overview-cards,
    .service-included-grid {
        align-self: center;
    }
}


/* =========================================================
   MOBILE NAVBAR OFFSET
========================================================= */

@media (max-width: 767px) {

    .service-breadcrumb {
        padding-top: 88px;
        padding-bottom: 8px;
    }

    .service-overview,
    .service-included,
    .service-process,
    .service-before-after,
    .service-benefits,
    .service-faq {
        padding: 32px 0;
    }

    .service-hero-grid {
        min-height: auto;
    }

    .service-hero-content {
        padding: 25px 0 20px;
    }

    .service-hero-content h1 {
        font-size: 48px;
    }

    .service-hero-description {
        font-size: 13px;
    }

    .service-hero-image {
        min-height: 280px;
    }

    .service-hero-image img {
        min-height: 280px;
        height: 280px;
    }
}

/* =========================================================
   SERVICE OVERVIEW — FINAL STRUCTURE
========================================================= */

.service-overview {
    padding: 28px 0;
}

.service-overview-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 35px;
    align-items: stretch;
}

.service-overview-content {
    max-width: 290px;
}

.service-overview-content h2 {
    margin-bottom: 14px;
    font-size: 29px;
    line-height: 1.12;
}

.service-overview-content p {
    margin-bottom: 10px;
}


/* 4 SERVICE CARDS */

.service-overview-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.service-overview-card {
    width: 100%;
    min-height: 160px;
    height: 160px;

    padding: 18px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    box-sizing: border-box;
    border-radius: 10px;
}


/* ICON */

.overview-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;

    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}


/* CARD TEXT */

.service-overview-card h3 {
    margin: 0 0 5px;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
}

.service-overview-card p {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) and (min-width: 768px) {

    .service-overview-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 20px;
    }

    .service-overview-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-overview-card {
        height: 180px;
        min-height: 180px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .service-overview {
        padding: 24px 0;
    }

    .service-overview-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-overview-content {
        max-width: 100%;
    }

    .service-overview-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .service-overview-card {
        height: 145px;
        min-height: 145px;
    }

}

/* =========================================================
   SERVICE HERO — MATCH HOME CLEANING STYLE
========================================================= */

.service-hero {
    position: relative;
    overflow: hidden;
}

.service-hero-image,
.service-hero-media {
    position: relative;
    height: 360px;
    overflow: hidden;
}

/* Actual hero image */
.service-hero-image img,
.service-hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    /* Woman ko right edge se andar lao */
    object-position: 68% center;
}

/* Soft fade on image's left side */
.service-hero-image::after,
.service-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: linear-gradient(
        to right,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,.96) 5%,
        rgba(255,255,255,.75) 14%,
        rgba(255,255,255,.30) 28%,
        rgba(255,255,255,0) 45%
    );
}

/* Hero overall spacing */
.service-hero-inner {
    min-height: 360px;
    align-items: center;
}

/* Left content */
.service-hero-content {
    position: relative;
    z-index: 2;
}

/* Heading */
.service-hero-content h1 {
    font-size: clamp(52px, 5vw, 72px);
    line-height: .94;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

/* Description */
.service-hero-content > p {
    max-width: 500px;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* =========================================================
   FIX NAVBAR OVERLAP ON SERVICE PAGES
========================================================= */

.service-detail-page {
    padding-top: 105px;
}

.service-detail-page .service-hero {
    margin-top: 0;
}

.service-detail-page .breadcrumb,
.service-detail-page .service-breadcrumb {
    margin-top: 0;
}

/* =========================================================
   SERVICE PAGE - FIX NAVBAR OVERLAP
========================================================= */

body.public-page {
    overflow-x: hidden;
}

.service-page,
.service-detail,
.service-detail-page {
    padding-top: 35px !important;
}

/* Breadcrumb ko navbar ke neeche lao */
.service-page .breadcrumb,
.service-detail .breadcrumb,
.service-detail-page .breadcrumb,
.service-page .service-breadcrumb,
.service-detail .service-breadcrumb,
.service-detail-page .service-breadcrumb {
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
}

/* Hero ko overlap se bachao */
.service-page .service-hero,
.service-detail .service-hero,
.service-detail-page .service-hero {
    position: relative;
    z-index: 1;
}

/* =========================================================
   FINAL SERVICE HERO — REMOVE HUGE CENTER GAP
========================================================= */

.service-hero-image,
.service-hero-media {
    position: relative;
    overflow: hidden;
    width: calc(100% + 120px);
    margin-left: -120px;
}

/* Image ko thoda left lao */
.service-hero-image img,
.service-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
}

/* Fade ko chhota rakho — huge white gap nahi */
.service-hero-image::after,
.service-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: linear-gradient(
        to right,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,.88) 8%,
        rgba(255,255,255,.45) 18%,
        rgba(255,255,255,.12) 28%,
        rgba(255,255,255,0) 36%
    );
}

/* Hero content ko image ke closer rakho */
.service-hero-inner {
    position: relative;
    z-index: 2;
}