/*
 * =========================================================
 * WINWALK ENTERPRISES — MAIN STYLESHEET
 * =========================================================
 */


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}


:root {

    --teal: #54bcc8;

    --pink: #d7197d;

    --ink: #1d1b1a;

    --dark: #1c1a19;

    --cream: #f7f4ee;

    --muted: #817a73;

    --line: #ddd7cf;

    --white: #fff;

    --shadow:
        0 10px 30px
        rgba(
            29,
            27,
            26,
            .06
        );

}


html {

    scroll-behavior: smooth;

    scroll-padding-top: 90px;

}


body {

    margin: 0;

    background:
        var(--cream);

    color:
        var(--ink);

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    line-height: 1.6;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
select,
textarea {

    font: inherit;

}


.container {

    width:
        min(
            100% - 72px,
            1820px
        );

    margin-inline: auto;

}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    width: 100%;

    z-index: 10000;

    background:
        rgba(
            247,
            244,
            238,
            .98
        );

    border-bottom:
        1px solid
        var(--ink);

}


.navbar {

    min-height: 112px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 28px;

}


.brand {

    display: flex;

    align-items: center;

    flex: 0 1 auto;

    min-width: 0;

    overflow: visible;

}


.brand img {

    display: block;

    width:
        clamp(
            360px,
            40vw,
            765px
        );

    height: auto;

    max-width: 100%;

    flex: 0 0 auto;

}


.nav-links {

    display: flex;

    align-items: center;

    gap:
        clamp(
            14px,
            1.5vw,
            28px
        );

    font-weight: 600;

    color: #7f7972;

    white-space: nowrap;

    flex: 0 0 auto;

}


.nav-links a {

    transition:
        color .2s ease,
        transform .2s ease;

}


.nav-links a:hover {

    color:
        var(--ink);

}


.menu-toggle {

    display: none;

    border: 0;

    background:
        transparent;

    padding: 8px;

}


.menu-toggle span {

    display: block;

    width: 26px;

    height: 2px;

    background:
        var(--ink);

    margin: 5px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 54px;

    padding:
        0 30px;

    border-radius: 999px;

    border:
        1px solid
        transparent;

    font-weight: 700;

    cursor: pointer;

    transition:
        .2s ease;

}


.btn-primary {

    background:
        var(--teal);

    color:
        white;

}


.btn-primary:hover {

    transform:
        translateY(-2px);

    filter:
        brightness(.96);

}


.btn-outline {

    border-color:
        #4b4540;

    color:
        var(--teal);

    background:
        transparent;

}


.btn-outline:hover {

    background:
        #252220;

}


.nav-cta {

    min-height: 48px;

    padding:
        0 22px;

    color:
        white;

}

/* Compact service-call link in the top navigation.
   The phone value is populated from Firestore business settings. */
.header-service-call {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    min-height: 42px;

    padding: 0 2px;

    color: #5f5953;

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;

    text-decoration: none;

}

.header-service-call > span:first-child {

    color: var(--teal);

    font-size: 18px;

}

.header-service-call strong {

    color: var(--teal);

    font-weight: 800;

}

.header-service-call:hover {

    color: var(--ink);

}




/* =========================================================
   HERO
   ========================================================= */

.hero {

    padding: 0;

}


.hero-copy {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    min-height: 640px;

}


.hero-copy > div:first-child {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        80px
        80px
        80px
        76px;

}


.hero-image {

    min-height: 640px;

}


.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.eyebrow {

    margin:
        0 0 24px;

    color:
        var(--teal);

    font-weight: 700;

    letter-spacing:
        .22em;

    font-size:
        17px;

}


h1,
h2 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    line-height:
        1.05;

    margin: 0;

}


h1 {

    font-size:
        clamp(
            56px,
            5.2vw,
            96px
        );

}


h1 span {

    color:
        var(--pink);

}


h2 {

    font-size:
        clamp(
            48px,
            4.5vw,
            76px
        );

}


.hero-text {

    max-width: 720px;

    color:
        #6dd2dc;

    font-size: 22px;

    margin:
        36px 0 42px;

}


.hero-actions {

    display: flex;

    gap: 22px;

    flex-wrap: wrap;

}


/* =========================================================
   HERO IMAGE FALLBACK
   ========================================================= */

.hero-image.image-missing {

    display: grid;

    place-items: center;

    min-height: 640px;

    background:
        #e9e4dc;

}


.hero-image.image-missing::after {

    content:
        "Add hero-technician.jpg to public/assets/";

    color:
        var(--muted);

    font-weight: 600;

    text-align: center;

    padding: 24px;

}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {

    padding:
        100px 0;

}


.section-light {

    background:
        var(--cream);

}


.section-dark {

    background:
        var(--dark);

    color:
        white;

}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-heading {

    margin-bottom:
        70px;

}


.section-heading.split {

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 70px;

    align-items: start;

}


.section-heading.split > p {

    font-size: 20px;

    color:
        var(--muted);

    max-width:
        650px;

    margin: 0;

}


/* =========================================================
   SERVICES
   ========================================================= */

.service-tabs {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-bottom:
        58px;

}


.service-tab {

    padding:
        13px 28px;

    border-radius:
        999px;

    background:
        #fff;

    border:
        1px solid
        var(--line);

    color:
        var(--muted);

    font-weight: 600;

    cursor: pointer;

    transition:
        .2s ease;

}


.service-tab.active,
.service-tab:hover {

    background:
        var(--ink);

    color:
        white;

    border-color:
        var(--ink);

}


.service-card {

    display: grid;

    grid-template-columns:
        1.45fr 1fr;

    background:
        #fff;

    border:
        1px solid
        var(--line);

    border-radius:
        34px;

    overflow:
        hidden;

    box-shadow:
        var(--shadow);

    min-height:
        390px;

}


.service-info {

    padding:
        78px;

}


.service-title-row {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom:
        30px;

}


.service-title-row img {

    width: 82px;

    height: 82px;

    object-fit: cover;

    border-radius:
        18px;

}


.service-title-row h3 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 34px;

    margin: 0;

}


.service-title-row p {

    color:
        var(--teal);

    font-weight: 700;

    margin:
        2px 0 0;

}


.service-info > p {

    font-size: 20px;

    color:
        var(--muted);

    max-width:
        800px;

}


.service-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.center-heading {

    text-align: center;

    margin-bottom:
        58px;

}


.center-heading .eyebrow {

    margin-bottom:
        16px;

}


.steps {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 22px;

}


.step {

    background:
        #fff;

    border:
        1px solid
        var(--line);

    padding:
        38px;

    border-radius:
        24px;

}


.step span {

    color:
        var(--teal);

    font-weight: 800;

    letter-spacing:
        .12em;

}


.step h3 {

    font-size: 23px;

    margin:
        20px 0 8px;

}


.step p {

    color:
        var(--muted);

    margin: 0;

}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

}


.why-copy > p:not(.eyebrow) {

    font-size: 20px;

    color:
        var(--muted);

    max-width:
        820px;

    margin:
        40px 0 45px;

}


.why-image {

    width: 100%;

    aspect-ratio:
        1.5;

    object-fit: cover;

    border-radius:
        26px;

}


.benefits {

    display: flex;

    flex-direction: column;

    gap: 24px;

}


.benefit {

    display: flex;

    gap: 24px;

    align-items:
        flex-start;

    background:
        #fff;

    border:
        1px solid
        var(--line);

    border-radius:
        26px;

    padding:
        34px;

}


.benefit-dot {

    display: grid;

    place-items:
        center;

    width: 48px;

    height: 48px;

    flex:
        0 0 48px;

    border-radius:
        50%;

    background:
        #e9f8fa;

    color:
        var(--teal);

    font-size:
        30px;

    line-height: 1;

}


.benefit h3 {

    margin: 0;

    font-size: 21px;

}


.benefit p {

    margin:
        6px 0 0;

    color:
        var(--muted);

    font-size:
        18px;

}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials {

    padding-bottom:
        100px;

}


.testimonials .center-heading h2 {

    color:
        #fff;

}


.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 36px;

}


.testimonial {

    position: relative;

    border:
        1px solid
        #403b37;

    border-radius:
        34px;

    background:
        #1a1918;

    padding:
        50px;

    min-height:
        385px;

}


.stars {

    color:
        #f22591;

    letter-spacing:
        5px;

    font-size:
        18px;

    margin-bottom:
        30px;

}


.testimonial p {

    font-size:
        19px;

    font-style:
        italic;

    margin:
        0 0 34px;

    color:
        #f0ece7;

}


.testimonial strong {

    display:
        block;

    font-size:
        18px;

}


.testimonial small {

    display:
        block;

    color:
        #8d8780;

}


.testimonial > span {

    position:
        absolute;

    right:
        48px;

    bottom:
        48px;

    border:
        1px solid
        #403b37;

    border-radius:
        999px;

    padding:
        7px 18px;

    color:
        var(--teal);

}


/* =========================================================
   SERVICE AREAS
   ========================================================= */

.service-areas-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;

}


.service-areas-grid .table-wrap {

    width: 100%;

}


.table-wrap {

    max-width:
        650px;

    margin:
        0 auto;
		
    overflow:
        auto;

    border:
        1px solid
        var(--line);

    border-radius:
        24px;

    background:
        #fff;

    box-shadow:
        var(--shadow);

}


table {

    width: 100%;

    border-collapse:
        collapse;

    min-width:
        500px;

}


th,
td {

    text-align:
        left;

    padding:
        20px 26px;

    border-bottom:
        1px solid
        var(--line);

}


th {

    background:
        #f0ece5;

    font-size:
        15px;

    text-transform:
        uppercase;

    letter-spacing:
        .08em;

}


tr:last-child td {

    border-bottom:
        0;

}


/* =========================================================
   PREMIUM PAYMENT SECTION
   ========================================================= */

.payment-section {

    position:
        relative;

    overflow:
        hidden;

    padding:
        120px 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(
                84,
                188,
                200,
                .16
            ),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(
                215,
                25,
                125,
                .14
            ),
            transparent 30%
        ),
        #171615;

    color:
        #fff;

}


.payment-glow {

    position:
        absolute;

    width:
        420px;

    height:
        420px;

    border-radius:
        50%;

    filter:
        blur(80px);

    pointer-events:
        none;

    opacity:
        .25;

    animation:
        paymentFloat
        8s ease-in-out
        infinite alternate;

}


.payment-glow-one {

    top:
        -180px;

    left:
        -120px;

    background:
        #54bcc8;

}


.payment-glow-two {

    right:
        -150px;

    bottom:
        -200px;

    background:
        #d7197d;

    animation-delay:
        2s;

}


@keyframes paymentFloat {

    from {

        transform:
            translate3d(
                0,
                0,
                0
            );

    }

    to {

        transform:
            translate3d(
                30px,
                -25px,
                0
            );

    }

}


/* =========================================================
   PAYMENT MAIN LAYOUT
   ========================================================= */

.payment-container {

    position:
        relative;

    z-index:
        2;

    display:
        grid;

    grid-template-columns:
        minmax(
            0,
            .9fr
        )
        minmax(
            440px,
            .75fr
        );

    gap:
        90px;

    align-items:
        center;

}


/* =========================================================
   PAYMENT INTRO
   ========================================================= */

.payment-intro {

    max-width:
        720px;

}


.payment-badge {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        10px 16px;

    border:
        1px solid
        rgba(
            84,
            188,
            200,
            .35
        );

    border-radius:
        999px;

    background:
        rgba(
            84,
            188,
            200,
            .08
        );

    color:
        #78dce6;

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        .14em;

}


.payment-pulse {

    width:
        8px;

    height:
        8px;

    border-radius:
        50%;

    background:
        #54bcc8;

    box-shadow:
        0 0 0 5px
        rgba(
            84,
            188,
            200,
            .12
        );

    animation:
        paymentPulse
        1.8s
        infinite;

}


@keyframes paymentPulse {

    0% {

        box-shadow:
            0 0 0 0
            rgba(
                84,
                188,
                200,
                .45
            );

    }

    70% {

        box-shadow:
            0 0 0 10px
            rgba(
                84,
                188,
                200,
                0
            );

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(
                84,
                188,
                200,
                0
            );

    }

}


.payment-intro h2 {

    margin-top:
        28px;

    color:
        #fff;

    font-size:
        clamp(
            48px,
            5vw,
            82px
        );

    line-height:
        1.02;

}


.payment-intro h2 span {

    display:
        block;

    color:
        #54bcc8;

}


.payment-lead {

    max-width:
        620px;

    margin:
        30px 0 48px;

    color:
        #aaa49d;

    font-size:
        20px;

    line-height:
        1.7;

}


/* =========================================================
   PAYMENT STEPS
   ========================================================= */

.payment-steps {

    display:
        grid;

    gap:
        16px;

}


.payment-step {

    display:
        flex;

    gap:
        18px;

    align-items:
        flex-start;

    padding:
        18px 20px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    border-radius:
        18px;

    background:
        rgba(
            255,
            255,
            255,
            .035
        );

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;

}


.payment-step:hover {

    transform:
        translateX(8px);

    background:
        rgba(
            255,
            255,
            255,
            .065
        );

    border-color:
        rgba(
            84,
            188,
            200,
            .35
        );

}


.payment-step-number {

    display:
        grid;

    place-items:
        center;

    width:
        42px;

    height:
        42px;

    flex:
        0 0 42px;

    border-radius:
        13px;

    background:
        linear-gradient(
            135deg,
            #54bcc8,
            #338f99
        );

    color:
        #fff;

    font-size:
        12px;

    font-weight:
        900;

}


.payment-step strong {

    display:
        block;

    margin-bottom:
        3px;

    font-size:
        16px;

}


.payment-step p {

    margin:
        0;

    color:
        #89837c;

    font-size:
        14px;

}


/* =========================================================
   PAYMENT TRUST
   ========================================================= */

.payment-trust {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px;

    margin-top:
        34px;

}


.payment-trust span {

    padding:
        8px 12px;

    border-radius:
        999px;

    background:
        rgba(
            255,
            255,
            255,
            .05
        );

    color:
        #8d8984;

    font-size:
        12px;

    font-weight:
        600;

}


/* =========================================================
   PAYMENT CARD
   ========================================================= */

.payment-card {

    position:
        relative;

    padding:
        32px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .13
        );

    border-radius:
        32px;

    background:
        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                .12
            ),
            rgba(
                255,
                255,
                255,
                .045
            )
        );

    box-shadow:
        0 40px 100px
        rgba(
            0,
            0,
            0,
            .38
        ),
        inset 0 1px 0
        rgba(
            255,
            255,
            255,
            .08
        );

    backdrop-filter:
        blur(22px);

    overflow:
        hidden;

    transform:
        perspective(
            1200px
        )
        rotateY(-2deg);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


.payment-card:hover {

    transform:
        perspective(
            1200px
        )
        rotateY(0deg)
        translateY(-6px);

    box-shadow:
        0 50px 120px
        rgba(
            0,
            0,
            0,
            .48
        );

}


/* =========================================================
   PAYMENT CARD TOP
   ========================================================= */

.payment-card-top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding-bottom:
        25px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

}


.payment-card-label {

    display:
        block;

    margin-bottom:
        7px;

    color:
        #54bcc8;

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        .18em;

}


.payment-card-top h3 {

    margin:
        0;

    color:
        #fff;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        26px;

}


.payment-card-icon {

    display:
        grid;

    place-items:
        center;

    width:
        54px;

    height:
        54px;

    border-radius:
        17px;

    background:
        linear-gradient(
            135deg,
            #d7197d,
            #9f125d
        );

    color:
        #fff;

    font-size:
        24px;

    font-weight:
        900;

    box-shadow:
        0 12px 30px
        rgba(
            215,
            25,
            125,
            .25
        );

}


/* =========================================================
   PAYMENT AMOUNT
   ========================================================= */

.payment-amount {

    padding:
        26px 0 22px;

}


.payment-amount label {

    display:
        block;

    margin-bottom:
        9px;

    color:
        #77716c;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        .14em;

}


.amount-input {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    padding-bottom:
        10px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .15
        );

}


.amount-input span {

    color:
        #54bcc8;

    font-size:
        28px;

    font-weight:
        800;

}


.amount-input input {

    width:
        100%;

    border:
        0;

    outline:
        0;

    background:
        transparent;

    color:
        #fff;

    font-size:
        32px;

    font-weight:
        800;

}


.amount-input input::placeholder {

    color:
        #55514e;

}


.amount-input input::-webkit-inner-spin-button,
.amount-input input::-webkit-outer-spin-button {

    -webkit-appearance:
        none;

    margin:
        0;

}


/* =========================================================
   PAYMENT QR AREA
   ========================================================= */

.payment-qr-area {

    display:
        flex;

    align-items:
        center;

    gap:
        22px;

    padding:
        22px;

    border:
        1px solid
        rgba(
            84,
            188,
            200,
            .16
        );

    border-radius:
        22px;

    background:
        linear-gradient(
            135deg,
            rgba(
                84,
                188,
                200,
                .08
            ),
            rgba(
                255,
                255,
                255,
                .025
            )
        );

}


.qr-frame {

    display:
        grid;

    place-items:
        center;

    width:
        145px;

    height:
        145px;

    flex:
        0 0 145px;

    padding:
        10px;

    border-radius:
        17px;

    background:
        #fff;

    box-shadow:
        0 15px 35px
        rgba(
            0,
            0,
            0,
            .2
        );

}


.payment-qr {

    width:
        100%;

    height:
        100%;

    display:
        grid;

    place-items:
        center;

}


.payment-qr canvas,
.payment-qr img {

    width:
        100% !important;

    height:
        100% !important;

    display:
        block;

}


.qr-placeholder {

    display:
        grid;

    place-items:
        center;

    width:
        100%;

    height:
        100%;

    border:
        3px dashed
        var(--teal);

    border-radius:
        8px;

    color:
        var(--teal);

    text-align:
        center;

}


.qr-placeholder span {

    font-size:
        24px;

    font-weight:
        900;

}


.qr-placeholder small {

    margin-top:
        -15px;

    color:
        #777;

    font-weight:
        700;

}


.qr-copy {

    min-width:
        0;

}


.scan-label {

    display:
        block;

    margin-bottom:
        8px;

    color:
        #d7197d;

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        .18em;

}


.qr-copy strong {

    display:
        block;

    color:
        #fff;

    font-size:
        17px;

}


.qr-copy p {

    margin:
        7px 0 0;

    color:
        #817c76;

    font-size:
        13px;

    line-height:
        1.5;

}


/* =========================================================
   UPI BOX
   ========================================================= */

.upi-box {

    margin-top:
        20px;

    padding:
        18px 20px;

    border-radius:
        18px;

    background:
        rgba(
            0,
            0,
            0,
            .18
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .07
        );

}


.upi-heading {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    margin-bottom:
        8px;

    color:
        #77716c;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        .14em;

}


.upi-live {

    color:
        #55cf8c;

    letter-spacing:
        .06em;

}


.upi-value-row {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        15px;

}


.upi-value-row strong {

    color:
        #fff;

    font-size:
        17px;

    word-break:
        break-all;

}


.copy-upi-button {

    flex:
        0 0 auto;

    display:
        flex;

    align-items:
        center;

    gap:
        7px;

    padding:
        9px 13px;

    border:
        1px solid
        rgba(
            84,
            188,
            200,
            .45
        );

    border-radius:
        9px;

    background:
        rgba(
            84,
            188,
            200,
            .08
        );

    color:
        #54bcc8;

    font-size:
        12px;

    font-weight:
        800;

    cursor:
        pointer;

    transition:
        .2s ease;

}


.copy-upi-button:hover {

    background:
        #54bcc8;

    color:
        #111;

    transform:
        translateY(-1px);

}


.payment-copy-message {

    min-height:
        18px;

    margin-top:
        6px;

    color:
        #55cf8c;

    font-size:
        11px;

}


/* =========================================================
   PAYMENT ACCOUNT
   ========================================================= */

.payment-account {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        16px 2px;

    color:
        #77716c;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        .12em;

}


.payment-account strong {

    color:
        #d9d5d0;

    font-size:
        14px;

    letter-spacing:
        0;

}


/* =========================================================
   PREMIUM PAY BUTTON
   ========================================================= */

.premium-pay-button {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        13px;

    min-height:
        62px;

    margin-top:
        6px;

    border-radius:
        18px;

    background:
        linear-gradient(
            100deg,
            #54bcc8,
            #3aa3af
        );

    color:
        #071314;

    font-size:
        16px;

    font-weight:
        900;

    box-shadow:
        0 18px 40px
        rgba(
            84,
            188,
            200,
            .22
        );

    overflow:
        hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;

}


.premium-pay-button::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        -100%;

    width:
        70%;

    height:
        100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(
                255,
                255,
                255,
                .38
            ),
            transparent
        );

    transform:
        skewX(-20deg);

    animation:
        paymentShine
        3.5s
        infinite;

}


@keyframes paymentShine {

    0% {

        left:
            -100%;

    }

    45%,
    100% {

        left:
            140%;

    }

}


.premium-pay-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 24px 50px
        rgba(
            84,
            188,
            200,
            .32
        );

    filter:
        brightness(1.05);

}


.premium-pay-button.disabled {

    opacity:
        .45;

    pointer-events:
        none;

    box-shadow:
        none;

}


.pay-icon {

    display:
        grid;

    place-items:
        center;

    width:
        28px;

    height:
        28px;

    border-radius:
        9px;

    background:
        rgba(
            0,
            0,
            0,
            .12
        );

    font-size:
        18px;

}


.pay-arrow {

    margin-left:
        3px;

    font-size:
        20px;

}


/* =========================================================
   PAYMENT NOTE
   ========================================================= */

.payment-note {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        10px;

    margin-top:
        18px;

}


.note-icon {

    display:
        grid;

    place-items:
        center;

    width:
        18px;

    height:
        18px;

    flex:
        0 0 18px;

    border:
        1px solid
        #777;

    border-radius:
        50%;

    color:
        #aaa;

    font-size:
        10px;

    font-weight:
        900;

}


.payment-note p {

    margin:
        0;

    color:
        #77716c;

    font-size:
        12px;

    line-height:
        1.6;

}


/* =========================================================
   PAYMENT SECURITY
   ========================================================= */

.payment-security {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        7px;

    margin-top:
        18px;

    color:
        #5f5b57;

    font-size:
        10px;

    text-align:
        center;

}


/* =========================================================
   CONTACT & FORM
   ========================================================= */

.contact-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        80px;

    align-items:
        start;

}


.contact-copy > p:not(.eyebrow) {

    font-size:
        20px;

    color:
        var(--muted);

    max-width:
        780px;

    margin:
        42px 0 52px;

}


.contact-items {

    display:
        grid;

    gap:
        22px;

}


.contact-item {

    display:
        flex;

    align-items:
        center;

    gap:
        20px;

}


.contact-item > span {

    display:
        grid;

    place-items:
        center;

    width:
        60px;

    height:
        60px;

    border-radius:
        18px;

    background:
        #e8f8fa;

    font-size:
        25px;

}


.contact-item small {

    display:
        block;

    color:
        var(--muted);

    font-weight:
        600;

    letter-spacing:
        .08em;

}


.contact-item strong {

    display:
        block;

    font-size:
        18px;

}


.form-card {

    background:
        #fff;

    border:
        1px solid
        var(--line);

    border-radius:
        34px;

    padding:
        58px;

    box-shadow:
        var(--shadow);

}


.form-card h3 {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        30px;

    margin:
        0 0 35px;

}


.form-card label {

    display:
        block;

    margin:
        22px 0 8px;

    color:
        #736c64;

    font-size:
        15px;

    font-weight:
        700;

    text-transform:
        uppercase;

    letter-spacing:
        .05em;

}


.form-card input,
.form-card select,
.form-card textarea {

    width:
        100%;

    border:
        1px solid
        var(--line);

    border-radius:
        18px;

    background:
        #fff;

    padding:
        16px 20px;

    outline:
        none;

    color:
        var(--ink);

}


.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {

    border-color:
        var(--teal);

    box-shadow:
        0 0 0 3px
        rgba(
            84,
            188,
            200,
            .15
        );

}


.form-card textarea {

    resize:
        vertical;

}


.submit-btn {

    width:
        100%;

    margin-top:
        24px;

}


.form-message {

    min-height:
        28px;

    margin:
        14px 0 0;

    font-weight:
        600;

}


.form-message.success {

    color:
        #18834a;

}


.form-message.error {

    color:
        #b12b2b;

}


.hp {

    position:
        absolute !important;

    left:
        -10000px !important;

    width:
        1px !important;

    height:
        1px !important;

    overflow:
        hidden !important;

}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #141312;
    color: #ffffff;
    padding: 72px 0 0;
}

.footer-main {
    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(180px, 0.8fr)
        minmax(240px, 1fr);

    gap: 70px;
    align-items: start;
}

.footer-company {
    max-width: 470px;
}

.footer-company h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;
    line-height: 1.2;
}

.footer-company p {
    margin: 0;

    max-width: 440px;

    color: #9f9891;

    font-size: 17px;
    line-height: 1.8;
}

.footer-column h4 {
    margin: 0 0 24px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;

    gap: 16px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin: 0;
    padding: 0;
}

.footer-column a,
.footer-column span {
    display: block;

    color: #9f9891;

    font-size: 16px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.2s ease;
}

.footer-column a:hover {
    color: #54bcc8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 14px;
}

.footer-contact h4 {
    margin-bottom: 8px;
}

.footer-contact a,
.footer-contact span {
    margin: 0;
}

.footer-contact .footer-warranty {
    margin-top: 10px;

    color: #54bcc8;

    font-weight: 700;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 24px;

    margin-top: 58px;
    padding: 30px 0 34px;

    border-top:
        1px solid rgba(
            255,
            255,
            255,
            0.08
        );
}

.footer-bottom p {
    margin: 0;

    color: #9f9891;

    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 36px;
}

.footer-bottom-links a {
    color: #9f9891;

    font-size: 14px;

    text-decoration: none;

    transition:
        color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}


/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .footer-main {
        grid-template-columns:
            1fr
            1fr;

        gap: 45px 35px;
    }

    .footer-company {
        grid-column: 1 / -1;

        max-width: 650px;
    }

}


@media (max-width: 600px) {

    .footer {
        padding-top: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .footer-company {
        grid-column: auto;
    }

    .footer-company h3 {
        font-size: 28px;
    }

    .footer-company p {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 18px;

        margin-top: 45px;

        padding-top: 24px;
        padding-bottom: 28px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;

        gap: 18px 28px;
    }

}

.sr-only {

    position:
        absolute;

    width:
        1px;

    height:
        1px;

    padding:
        0;

    margin:
        -1px;

    overflow:
        hidden;

    clip:
        rect(
            0,
            0,
            0,
            0
        );

    white-space:
        nowrap;

    border:
        0;

}


/* =========================================================
        BRANDS WE SERVICE
        ========================================================= */

    .brands-section {
        padding: 90px 0;
        background: #f7f4ee;
    }


    .brands-section .section-container {
        width: min(1120px, calc(100% - 40px));
        margin: 0 auto;
    }


    .brands-section .section-heading {
        max-width: 720px;
        margin: 0 auto 45px;
        text-align: center;
    }


    .brands-section .section-eyebrow {
        display: inline-block;
        margin-bottom: 12px;

        color: #d7197d;

        font-size: 13px;
        font-weight: 800;

        letter-spacing: 2px;
    }


    .brands-section h2 {
        margin: 0 0 15px;

        color: #1d1b1a;

        font-family:
            Georgia,
            "Times New Roman",
            serif;

        font-size: clamp(34px, 5vw, 52px);
        line-height: 1.1;
    }


    .brands-section .section-heading p {
        margin: 0;

        color: #706a64;

        font-size: 17px;
        line-height: 1.7;
    }


    /* =========================================================
       BRANDS GRID
       ========================================================= */

    .brands-grid {
        display: grid;

        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        gap: 16px;
    }


    .brand-card {
        min-height: 90px;

        display: flex;

        align-items: center;
        justify-content: center;

        padding: 20px;

        background: #ffffff;

        border: 1px solid #ded8d0;

        border-radius: 16px;

        color: #1d1b1a;

        font-size: 18px;
        font-weight: 800;

        text-align: center;

        box-shadow:
            0 8px 22px rgba(
                29,
                27,
                26,
                0.06
            );

        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            border-color 0.2s ease;
    }


    .brand-card:hover {
        transform: translateY(-4px);

        border-color: #54bcc8;

        box-shadow:
            0 12px 28px rgba(
                29,
                27,
                26,
                0.10
            );
    }


    /* =========================================================
       BRAND DISCLAIMER
       ========================================================= */

    .brands-disclaimer {
        max-width: 900px;

        margin: 35px auto 0;

        padding: 18px 22px;

        background: #fff9ed;

        border: 1px solid #ead9b5;

        border-radius: 14px;

        color: #66583e;

        font-size: 13px;

        line-height: 1.7;

        text-align: center;
    }


    .brands-disclaimer strong {
        color: #1d1b1a;
    }


/* =========================================================
   RESPONSIVE — 1450
   ========================================================= */

@media (max-width: 1450px) {

    .navbar {

        min-height:
            100px;

    }


    .brand img {

        width:
            clamp(
                320px,
                38vw,
                560px
            );

    }


    .nav-links {

        gap:
            14px;

        font-size:
            14px;

    }


    .nav-cta {

        padding:
            0 18px;

    }


    .container {

        width:
            min(
                100% - 48px,
                1820px
            );

    }


    .hero-copy > div:first-child {

        padding:
            60px;

    }


    .section {

        padding:
            75px 0;

    }


    .service-info {

        padding:
            55px;

    }


    .testimonial {

        padding:
            36px;

    }

}


/* =========================================================
   RESPONSIVE — 1100
   ========================================================= */

@media (max-width: 1100px) {

    .navbar {

        min-height:
            92px;

        gap:
            16px;

    }


    .brand img {

        width:
            clamp(
                260px,
                34vw,
                430px
            );

    }


    .nav-links {

        gap:
            10px;

        font-size:
            13px;

    }


    .nav-cta {

        padding:
            0 15px;

    }


    .payment-container {

        grid-template-columns:
            1fr;

        gap:
            55px;

        max-width:
            780px;

    }


    .payment-intro {

        max-width:
            none;

    }


    .payment-card {

        transform:
            none;

    }


    .payment-card:hover {

        transform:
            translateY(-5px);

    }

}


/* =========================================================
   RESPONSIVE — 900
   ========================================================= */

@media (max-width: 900px) {

    .navbar {

        min-height:
            82px;

    }


    .brand img {

        width:
            300px;

        max-width:
            58vw;

    }


    .menu-toggle {

        display:
            block;

    }


    .nav-links {

        display:
            none;

        position:
            absolute;

        left:
            0;

        right:
            0;

        top:
            82px;

        background:
            var(--cream);

        border-bottom:
            1px solid
            var(--line);

        padding:
            22px 24px;

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            0;

        white-space:
            normal;

    }


    .nav-links.open {

        display:
            flex;

    }


    .nav-links a {

        padding:
            14px 0;

    }


    .nav-cta {

        text-align:
            center;

    }


    .hero-copy,
    .why-grid,
    .contact-grid {

        grid-template-columns:
            1fr;

    }


    .hero-image {

        min-height:
            440px;

        order:
            -1;

    }


    .hero-copy > div:first-child {

        padding:
            60px 0;

    }


    .section-heading.split {

        grid-template-columns:
            1fr;

        gap:
            24px;

    }


    .steps,
    .testimonial-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        grid-template-columns:
            1fr;

    }


    .service-photo {

        min-height:
            360px;

    }


    .why-image {

        margin-top:
            20px;

    }


    .benefits {

        margin-top:
            20px;

    }


    .contact-copy {

        padding-bottom:
            10px;

    }

    /* Brands */

    .brands-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


}


/* =========================================================
   RESPONSIVE — 650
   ========================================================= */

@media (max-width: 650px) {

    .container {

        width:
            min(
                100% - 32px,
                1820px
            );

    }


    .navbar {

        min-height:
            74px;

    }


    .brand img {

        width:
            235px;

        max-width:
            62vw;

    }


    .nav-links {

        top:
            74px;

    }


    .section {

        padding:
            60px 0;

    }


    .hero-image {

        min-height:
            300px;

    }


    .hero-copy > div:first-child {

        padding:
            52px 0;

    }


    .eyebrow {

        font-size:
            13px;

    }


    h1 {

        font-size:
            52px;

    }


    h2 {

        font-size:
            44px;

    }


    .hero-text {

        font-size:
            18px;

    }


    .btn {

        width:
            100%;

    }


    .service-tabs {

        gap:
            8px;

    }


    .service-tab {

        padding:
            11px 18px;

    }


    .service-info {

        padding:
            30px;

    }


    .service-title-row h3 {

        font-size:
            28px;

    }


    .service-info > p {

        font-size:
            17px;

    }


    .service-photo {

        min-height:
            270px;

    }


    .benefit {

        padding:
            24px;

    }


    .testimonial {

        min-height:
            0;

        padding:
            30px;

    }


    .testimonial > span {

        position:
            static;

        display:
            inline-block;

        margin-top:
            20px;

    }


    .form-card {

        padding:
            28px;

    }


    .footer-inner {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .footer-links {

        flex-wrap:
            wrap;

    }


    /* -----------------------------------------
       PREMIUM PAYMENT MOBILE
       ----------------------------------------- */

    .payment-section {

        padding:
            75px 0;

    }


    .payment-container {

        width:
            min(
                100% - 28px,
                600px
            );

    }


    .payment-intro h2 {

        font-size:
            48px;

    }


    .payment-lead {

        font-size:
            17px;

        margin-bottom:
            32px;

    }


    .payment-step {

        padding:
            15px;

    }


    .payment-card {

        padding:
            20px;

        border-radius:
            25px;

    }


    .payment-card-top h3 {

        font-size:
            21px;

    }


    .payment-qr-area {

        flex-direction:
            column;

        text-align:
            center;

    }


    .qr-copy {

        width:
            100%;

    }


    .upi-value-row {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .copy-upi-button {

        width:
            100%;

        justify-content:
            center;

    }


    .payment-account {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            5px;

    }


    .payment-security {

        align-items:
            flex-start;

        text-align:
            left;

    }
	
/* =========================================================
   MOBILE RESPONSIVE DESIGN
   Desktop layout remains unchanged.
   ========================================================= */

}


@media (max-width: 768px) {

    /* -----------------------------------------------------
       GLOBAL MOBILE FIXES
       ----------------------------------------------------- */

    html {
        width: 100%;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 20px;
        padding-right: 20px;
    }

    img {
        max-width: 100%;
        height: auto;
    }


    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    .site-header {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
    }

    .navbar {
        min-height: 76px;
        padding-top: 10px;
        padding-bottom: 10px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        position: relative;
    }

    .brand {
        display: flex;
        align-items: center;

        min-width: 0;
        max-width: calc(100% - 65px);
    }

    .brand img {
        display: block;

        width: auto;
        max-width: 100%;
        height: auto;

        max-height: 58px;
        object-fit: contain;
        object-position: left center;
    }


    /* -----------------------------------------------------
       HAMBURGER BUTTON
       ----------------------------------------------------- */

    .menu-toggle {
        display: flex;

        width: 46px;
        height: 46px;

        padding: 0;

        flex-shrink: 0;

        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;

        border: 1px solid rgba(0, 0, 0, 0.18);
        border-radius: 10px;

        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;

        width: 21px;
        height: 2px;

        border-radius: 10px;
        background: currentColor;

        transition:
            transform 0.2s ease,
            opacity 0.2s ease;
    }


    /* -----------------------------------------------------
       MOBILE NAVIGATION
       ----------------------------------------------------- */

    .nav-links {
        display: none;

        position: absolute;

        top: calc(100% + 1px);
        left: 0;
        right: 0;

        width: 100%;

        box-sizing: border-box;

        padding: 14px 20px 20px;

        flex-direction: column;
        align-items: stretch;
        gap: 4px;

        background: #f7f4ee;

        border-top: 1px solid rgba(0, 0, 0, 0.12);
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);

        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links > a {
        width: 100%;
        box-sizing: border-box;

        padding: 13px 14px;

        border-radius: 8px;

        text-align: left;
    }

    .nav-links .nav-cta {
        margin-top: 8px;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero {
        min-height: auto;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;

        padding-top: 55px;
        padding-bottom: 55px;

        gap: 35px;
    }

    .hero-copy > div:first-child {
        width: 100%;
    }

    .hero .eyebrow {
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 0.18em;

        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 72px);
        line-height: 0.96;

        margin-top: 0;
        margin-bottom: 24px;

        word-break: normal;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;

        font-size: 17px;
        line-height: 1.65;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;

        width: 100%;
        gap: 12px;

        margin-top: 25px;
    }

    .hero-actions .btn {
        width: 100%;
        box-sizing: border-box;

        justify-content: center;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        min-height: 300px;
    }

    .hero-image img {
        display: block;

        width: 100%;
        height: 300px;

        object-fit: cover;
        object-position: center;
    }


    /* -----------------------------------------------------
       GENERAL SECTION SPACING
       ----------------------------------------------------- */

    .section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .section-heading.split {
        display: flex;
        flex-direction: column;

        gap: 20px;
    }

    .section-heading.split > * {
        width: 100%;
        max-width: 100%;
    }

    .section-heading h2,
    .center-heading h2 {
        font-size: clamp(38px, 11vw, 58px);
        line-height: 1;
    }


    /* -----------------------------------------------------
       SERVICES
       ----------------------------------------------------- */

    .service-tabs {
        display: flex;

        width: 100%;

        overflow-x: auto;
        overflow-y: hidden;

        gap: 8px;

        padding-bottom: 8px;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .service-tabs::-webkit-scrollbar {
        display: none;
    }

    .service-tab {
        flex: 0 0 auto;

        white-space: nowrap;

        min-height: 44px;
    }

    .service-card {
        display: flex;
        flex-direction: column;

        width: 100%;
    }

    .service-info,
    .service-photo {
        width: 100%;
        max-width: 100%;
    }

    .service-photo {
        order: 2;
    }

    .service-info {
        order: 1;
    }

    .service-photo img {
        display: block;

        width: 100%;
        height: 300px;

        object-fit: cover;
    }

    .service-title-row {
        display: flex;
        align-items: center;

        gap: 14px;
    }

    .service-title-row img {
        width: 58px;
        height: 58px;

        flex: 0 0 58px;

        object-fit: cover;
        border-radius: 50%;
    }


    /* -----------------------------------------------------
       HOW IT WORKS
       ----------------------------------------------------- */

    .steps {
        display: flex;
        flex-direction: column;

        width: 100%;
        gap: 18px;
    }

    .step {
        width: 100%;
        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       WHY US
       ----------------------------------------------------- */

    .why-grid {
        display: flex;
        flex-direction: column;

        gap: 35px;
    }

    .why-copy,
    .benefits {
        width: 100%;
        max-width: 100%;
    }

    .why-copy h2 {
        font-size: clamp(40px, 11vw, 58px);
        line-height: 1;
    }

    .why-image {
        width: 100%;
        height: auto;

        display: block;
    }


    /* -----------------------------------------------------
       TESTIMONIALS
       ----------------------------------------------------- */

    .testimonial-grid {
        display: flex;
        flex-direction: column;

        width: 100%;
        gap: 18px;
    }

    .testimonial {
        width: 100%;
        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       SERVICE AREAS
       ----------------------------------------------------- */

    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .table-wrap {
        width: 100%;

        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-wrap table {
        width: 100%;
        min-width: 430px;
    }

    .table-wrap th,
    .table-wrap td {
        white-space: nowrap;
    }


    /* -----------------------------------------------------
       PAYMENT SECTION
       ----------------------------------------------------- */

    .payment-section {
        width: 100%;

        overflow: hidden;
    }

    .payment-container {
        display: flex;
        flex-direction: column;

        width: 100%;
        gap: 35px;
    }

    .payment-intro,
    .payment-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .payment-intro {
        padding: 0;
    }

    .payment-intro h2 {
        font-size: clamp(44px, 13vw, 70px);
        line-height: 0.95;

        word-break: normal;
    }

    .payment-lead {
        font-size: 17px;
        line-height: 1.6;
    }

    .payment-steps {
        width: 100%;
    }

    .payment-step {
        width: 100%;
        box-sizing: border-box;

        display: flex;
        align-items: flex-start;

        gap: 14px;
    }

    .payment-step-number {
        flex: 0 0 46px;

        width: 46px;
        height: 46px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .payment-step p {
        margin-bottom: 0;
    }

    .payment-trust {
        display: flex;
        flex-wrap: wrap;

        gap: 8px;
    }


    /* -----------------------------------------------------
       PAYMENT CARD
       ----------------------------------------------------- */

    .payment-card {
        padding: 20px;

        border-radius: 20px;
    }

    .payment-card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 15px;
    }

    .payment-card-top h3 {
        font-size: 21px;
    }

    .payment-card-icon {
        flex: 0 0 auto;
    }


    /* -----------------------------------------------------
       PAYMENT AMOUNT
       ----------------------------------------------------- */

    .payment-amount {
        width: 100%;
    }

    .amount-input {
        width: 100%;
        box-sizing: border-box;
    }

    .amount-input input {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;

        font-size: 28px;
    }


    /* -----------------------------------------------------
       QR PAYMENT AREA
       ----------------------------------------------------- */

    .payment-qr-area {
        display: flex;
        flex-direction: column;

        width: 100%;

        gap: 20px;

        box-sizing: border-box;
    }

    .qr-frame {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        box-sizing: border-box;
    }

    .payment-qr {
        width: 180px;
        height: 180px;

        max-width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        box-sizing: border-box;
    }

    .payment-qr canvas,
    .payment-qr img {
        display: block;

        max-width: 100%;
        height: auto;
    }

    .qr-copy {
        width: 100%;
        text-align: center;
    }

    .qr-copy strong {
        display: block;

        font-size: 19px;

        margin-top: 8px;
    }

    .qr-copy p {
        font-size: 14px;
        line-height: 1.5;
    }


    /* -----------------------------------------------------
       UPI DETAILS
       ----------------------------------------------------- */

    .upi-box {
        width: 100%;
        box-sizing: border-box;
    }

    .upi-value-row {
        display: flex;
        align-items: center;

        gap: 10px;

        width: 100%;
    }

    .upi-value-row strong {
        min-width: 0;

        flex: 1;

        overflow-wrap: anywhere;
        word-break: break-word;

        font-size: 16px;
    }

    .copy-upi-button {
        flex: 0 0 auto;
    }


    /* -----------------------------------------------------
       PAY BUTTON
       ----------------------------------------------------- */

    .premium-pay-button {
        width: 100%;
        box-sizing: border-box;

        min-height: 56px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;

        gap: 10px;
    }


    /* -----------------------------------------------------
       CONTACT SECTION
       ----------------------------------------------------- */

    .contact-grid {
        display: flex;
        flex-direction: column;

        gap: 35px;
    }

    .contact-copy,
    .form-card {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;
    }

    .contact-copy h2 {
        font-size: clamp(40px, 11vw, 58px);
        line-height: 1;
    }

    .contact-items {
        width: 100%;
    }

    .contact-item {
        width: 100%;
        box-sizing: border-box;
    }

    .form-card {
        padding: 22px;
    }

    .form-card input,
    .form-card select,
    .form-card textarea {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;

        font-size: 16px;
    }

    .submit-btn {
        width: 100%;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer-inner {
        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;

        gap: 12px 20px;
    }
}


/* =========================================================
   RESPONSIVE — 600 (BRANDS)
   ========================================================= */

@media (max-width: 600px) {

    .brands-section {
        padding: 65px 0;
    }

    .brands-section .section-container {
        width:
            min(
                100% - 28px,
                560px
            );
    }

    .brands-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .brand-card {
        min-height: 75px;
        padding: 15px;
        font-size: 16px;
    }

    .brands-disclaimer {
        padding: 16px;
        font-size: 12px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar {
        min-height: 68px;
    }

    .brand {
        max-width: calc(100% - 58px);
    }

    .brand img {
        max-height: 48px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }


    /* Hero */

    .hero-copy {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .hero h1 {
        font-size: clamp(42px, 14vw, 58px);
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-image {
        min-height: 240px;
    }

    .hero-image img {
        height: 240px;
    }


    /* Sections */

    .section {
        padding-top: 52px;
        padding-bottom: 52px;
    }


    /* Services */

    .service-photo img {
        height: 240px;
    }


    /* Payment */

    .payment-card {
        padding: 16px;
        border-radius: 16px;
    }

    .payment-intro h2 {
        font-size: clamp(40px, 13vw, 56px);
    }

    .payment-step {
        padding: 15px;
    }

    .payment-step-number {
        flex-basis: 42px;

        width: 42px;
        height: 42px;
    }

    .payment-qr {
        width: 170px;
        height: 170px;
    }

    .upi-value-row {
        align-items: flex-start;
    }

    .copy-upi-button {
        padding: 9px 12px;
    }


    /* Contact */

    .form-card {
        padding: 18px;
    }

}


/* =========================================================
   SERVICE HIGHLIGHTS STRIP
   Appears directly below the hero, matching the Figma-style
   teal service band with pink diamond separators.
   ========================================================= */

.service-strip {
    width: 100%;
    overflow: hidden;
    background: var(--teal);
    color: var(--white);
    border: 0;
    margin: 0;
}

.service-strip-track {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 30px;
    white-space: nowrap;
}

.service-strip-track span {
    flex: 0 0 auto;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
}

.service-strip-track i {
    flex: 0 0 auto;
    color: var(--pink);
    font-size: 18px;
    font-style: normal;
    line-height: 1;
}

@media (max-width: 1100px) {
    .service-strip-track {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 0 24px;
    }

    .service-strip-track::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 600px) {
    .service-strip-track {
        min-height: 56px;
        gap: 20px;
        padding: 0 18px;
    }

    .service-strip-track span {
        font-size: 14px;
        letter-spacing: .06em;
    }

    .service-strip-track i {
        font-size: 15px;
    }
}


/* =========================================================
   FINAL RESPONSIVE FIXES
   ---------------------------------------------------------
   These rules override the older responsive rules above.
   They prevent horizontal overflow and keep the hero,
   navigation and service strip fully visible at 100% zoom.
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    min-width: 0;
}

main,
section,
header,
footer {
    max-width: 100%;
}

/* The header is fixed so navigation remains visible throughout scrolling.
   Only the actual header height is reserved; no extra visual gap is added. */
main {
    padding-top: var(--site-header-height, 112px);
}


/* Keep every grid/flex child shrinkable. */
.hero-copy,
.hero-copy > div,
.service-card,
.service-info,
.service-photo,
.why-grid,
.why-copy,
.benefits,
.contact-grid,
.contact-copy,
.form-card,
.payment-container,
.payment-intro,
.payment-card,
.footer-main,
.footer-company,
.footer-column {
    min-width: 0;
}

/* =========================================================
   HEADER — PREVENT DESKTOP OVERFLOW
   ========================================================= */

.navbar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.brand {
    min-width: 0;
    max-width: 100%;
}

.brand img {
    min-width: 0;
    max-width: 100%;
    height: auto;
}

.nav-links {
    min-width: 0;
    max-width: 100%;
}

/* =========================================================
   HERO — DESKTOP
   ========================================================= */

.hero,
.hero-copy {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-copy {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.hero-copy > div:first-child {
    min-width: 0;
    max-width: 100%;
}

.hero-text {
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-image {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   SERVICE STRIP — NO CROPPED WORDS
   ---------------------------------------------------------
   The previous rule used nowrap + horizontal overflow. That
   allowed the last service name to be visibly cut off.
   At narrower desktop/tablet widths we now wrap the complete
   service items instead of allowing partial text.
   ========================================================= */

.service-strip {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.service-strip-track {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding: 14px 24px;
    white-space: normal;
    overflow: visible;
}

.service-strip-track span,
.service-strip-track i {
    flex: 0 0 auto;
    white-space: nowrap;
}

.service-strip-track span {
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 1.25;
    letter-spacing: .07em;
}

.service-strip-track i {
    font-size: 16px;
    line-height: 1;
}

/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1200px) {

    .container {
        width: min(100% - 40px, 1820px);
    }

    /* Switch to hamburger before the navigation can overflow. */
    .navbar {
        min-height: 82px;
    }

    .menu-toggle {
        display: flex;
        width: 46px;
        height: 46px;
        padding: 0;
        flex: 0 0 46px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid rgba(0, 0, 0, .18);
        border-radius: 10px;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 21px;
        height: 2px;
        margin: 0;
        border-radius: 10px;
        background: currentColor;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        padding: 14px 20px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: var(--cream);
        border-top: 1px solid rgba(0, 0, 0, .12);
        border-bottom: 1px solid rgba(0, 0, 0, .12);
        box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
        white-space: normal;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links > a {
        width: 100%;
        padding: 13px 14px;
        border-radius: 8px;
        text-align: left;
    }

    .nav-links .nav-cta {
        width: 100%;
        margin-top: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand img {
        width: auto;
        max-width: calc(100vw - 110px);
        max-height: 64px;
    }

    /* Service strip: wrap instead of horizontal clipping. */
    .service-strip-track {
        justify-content: center;
        gap: 12px 18px;
        padding: 14px 20px;
    }

    .service-strip-track span {
        font-size: 15px;
    }

    .service-strip-track i {
        font-size: 15px;
    }
}

/* Keep the service call available in the mobile navigation menu. */
@media (max-width: 1200px) {

    .header-service-call {

        width: 100%;

        min-height: 46px;

        padding: 13px 14px;

        border-radius: 8px;

        gap: 6px;

    }

    .header-service-call:hover {

        background: rgba(0, 0, 0, .04);

    }

}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* ---------- HEADER ---------- */

    .site-header {
        width: 100%;
        max-width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
    }

    main {
        padding-top: var(--site-header-height, 72px);
    }

    .navbar {
        width: 100%;
        max-width: 100%;
        min-height: 72px;
        padding-top: 8px;
        padding-bottom: 8px;
        gap: 10px;
    }

    .brand {
        width: auto;
        max-width: calc(100% - 56px);
        min-width: 0;
        overflow: hidden;
    }

    .brand img {
        width: auto;
        max-width: 100%;
        max-height: 54px;
        object-fit: contain;
        object-position: left center;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .nav-links {
        top: calc(100% + 1px);
    }

    /* ---------- HERO ---------- */

    .hero {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        padding-top: 42px;
        padding-bottom: 42px;
        gap: 0;
        overflow: hidden;
    }

    .hero-copy > div:first-child {
        width: 100%;
        max-width: 100%;
        padding: 42px 0;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(42px, 13vw, 64px);
        line-height: .98;
        overflow-wrap: break-word;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
        font-size: 17px;
        line-height: 1.6;
        overflow-wrap: break-word;
    }

    .hero-actions {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        min-height: 280px;
        order: 1;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        height: 280px;
        object-fit: cover;
        object-position: center;
    }

    /* ---------- SERVICE STRIP ---------- */

    .service-strip {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .service-strip-track {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        padding: 14px 12px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px 14px;
        white-space: normal;
    }

    .service-strip-track span {
        font-size: 13px;
        line-height: 1.25;
        letter-spacing: .055em;
        white-space: nowrap;
    }

    .service-strip-track i {
        font-size: 13px;
        line-height: 1;
    }

    /* ---------- GENERAL CONTENT ---------- */

    .section-heading,
    .section-heading.split,
    .why-grid,
    .contact-grid,
    .payment-container {
        min-width: 0;
        max-width: 100%;
    }

    .section-heading.split {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .service-tabs {
        max-width: 100%;
        overflow-x: auto;
    }

    .service-card,
    .service-info,
    .service-photo {
        max-width: 100%;
        min-width: 0;
    }

    .service-info {
        padding: 24px;
    }

    .service-photo img {
        width: 100%;
        max-width: 100%;
        height: 280px;
        object-fit: cover;
    }

    /* ---------- BRANDS ---------- */

    .brands-section,
    .brands-section .section-container {
        width: 100%;
        max-width: 100%;
    }

    .brands-section .section-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: 100%;
    }

    .brand-card {
        min-width: 0;
        width: 100%;
        padding: 14px 8px;
        font-size: 15px;
        overflow-wrap: anywhere;
    }

    .brands-disclaimer {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    /* ---------- PAYMENT ---------- */

    .payment-container,
    .payment-card,
    .payment-intro,
    .payment-qr-area,
    .upi-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .payment-card {
        transform: none;
    }

    .payment-card:hover {
        transform: none;
    }

    .payment-qr-area {
        overflow: hidden;
    }

    .qr-frame {
        max-width: 100%;
    }

    .payment-qr {
        max-width: 100%;
    }

    .upi-value-row {
        min-width: 0;
        max-width: 100%;
    }

    .upi-value-row strong {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    /* ---------- CONTACT ---------- */

    .form-card,
    .form-card input,
    .form-card select,
    .form-card textarea {
        max-width: 100%;
        min-width: 0;
    }

    /* ---------- FOOTER ---------- */

    .footer {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .footer-main,
    .footer-bottom {
        width: 100%;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 14px 24px;
    }
}

/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .navbar {
        min-height: 66px;
    }

    .brand {
        max-width: calc(100% - 54px);
    }

    .brand img {
        max-height: 48px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .hero-copy > div:first-child {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .hero h1 {
        font-size: clamp(38px, 12.5vw, 52px);
    }

    .hero-image,
    .hero-image img {
        min-height: 235px;
        height: 235px;
    }

    .service-strip-track {
        padding: 12px 8px;
        gap: 8px 10px;
    }

    .service-strip-track span {
        font-size: 12px;
    }

    .service-strip-track i {
        font-size: 12px;
    }
}

/* =========================================================
   GOOGLE REVIEWS
   ========================================================= */

.google-review-cta {
    margin-top: 32px;
    text-align: center;
}

.google-review-cta__text,
.google-review-contact__text {
    margin: 0 0 12px;
}

.google-review-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.google-review-contact {
    margin: 0 0 24px;
}

.google-review-contact__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}



/* =========================================================
   SERVICE PRICE
   ========================================================= */

.service-price {
    margin: 8px 0 0;

    color: #c2185b;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.01em;
}

.service-empty-state {
    margin: 0;
    padding: 12px 0;

    color: #817a73;
    font-size: 14px;
}


/* =========================================================
   TWO-ROW HEADER ACTIONS
   ========================================================= */

@media (min-width: 901px) {

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 5px;
    }

    .nav-menu-row {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(12px, 1.25vw, 24px);
        width: 100%;
    }

    .nav-action-row {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 16px;
        width: 100%;
        min-height: 30px;
    }

    .header-whatsapp-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: #25D366;
        font-size: 15px;
        font-weight: 700;
        white-space: nowrap;
        text-decoration: none;
    }

    .header-whatsapp-link:hover {
        color: #128C7E;
    }

    .nav-action-row .nav-cta {
        flex: 0 0 auto;
    }

}

@media (max-width: 900px) {

    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu-row,
    .nav-action-row {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }

    .nav-action-row {
        padding-top: 4px;
    }

    .header-whatsapp-link,
    .header-service-call,
    .nav-action-row .nav-cta {
        width: 100%;
        justify-content: flex-start;
    }

}


/* =========================================================
   FINAL DESKTOP HEADER BALANCE
   Logo + navigation are proportioned to the viewport.
   Row 2 is treated as a compact action strip, not a second
   full navigation bar.
   ========================================================= */

@media (min-width: 901px) {

    /* Give the logo its proper visual column and remove the
       excessive empty area before the navigation. */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .navbar-brand {
        flex: 0 0 auto;
        width: clamp(310px, 28vw, 460px);
    }

    .navbar-brand img,
    .nav-logo,
    .logo {
        max-width: 100%;
        height: auto;
    }

    .nav-links {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
        align-items: stretch;
        justify-content: center;
        gap: 4px;
    }

    /* Navigation row: evenly distributed, compact and readable. */
    .nav-menu-row {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: clamp(8px, 1vw, 18px);
    }

    .nav-menu-row a {
        white-space: nowrap;
    }

    /* Action row: visually grouped and centered beneath navigation.
       Book Now stays the strongest CTA. */
    .nav-action-row {
        width: 100%;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
        padding-top: 4px;
        padding-right: 2px;
    }

    .header-whatsapp-link {
        font-size: 14px;
        font-weight: 700;
    }

    .header-whatsapp-link strong {
        font-weight: 800;
    }

    .header-service-call {
        font-size: 14px;
    }

    .header-service-call strong {
        font-weight: 800;
    }

    .nav-action-row .nav-cta {
        margin-left: 4px;
    }
}

/* Slightly tighter desktop treatment where the viewport is narrower. */
@media (min-width: 901px) and (max-width: 1250px) {

    .navbar {
        gap: 10px;
    }

    .navbar-brand {
        width: clamp(270px, 25vw, 340px);
    }

    .nav-menu-row {
        gap: 9px;
    }

    .nav-menu-row a {
        font-size: 14px;
    }

    .nav-action-row {
        gap: 12px;
    }
}

/* =========================================================
   FINAL DESKTOP 2-ROW NAVBAR — BALANCED / NO CLIPPING
   ========================================================= */
@media (min-width: 901px) {
    .site-header {
        width: 100%;
        left: 0;
        right: 0;
        overflow: visible;
    }

    .site-header .navbar.container {
        width: min(100% - 48px, 1820px);
        max-width: 1820px;
        min-height: 118px;
        margin-inline: auto;
        padding: 10px 0;
        display: grid;
        grid-template-columns: minmax(390px, 460px) minmax(0, 1fr);
        column-gap: 24px;
        align-items: center;
    }

    /* Keep the logo in a dedicated column instead of letting it
       consume the navigation width. */
    .site-header .brand {
        width: 100%;
        max-width: 460px;
        min-width: 0;
        overflow: visible;
        align-self: center;
    }

    .site-header .brand img {
        width: min(100%, 460px);
        max-width: 100%;
        height: auto;
        max-height: 82px;
        object-fit: contain;
        object-position: left center;
    }

    .site-header .nav-links {
        width: 100%;
        min-width: 0;
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 8px;
        overflow: visible;
    }

    .site-header .nav-menu-row {
        width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(10px, 1.1vw, 22px);
        overflow: visible;
    }

    .site-header .nav-menu-row a {
        flex: 0 1 auto;
        min-width: 0;
        white-space: nowrap;
        font-size: clamp(16px, 1vw, 19px);
    }

    /* Row 2 is intentionally right-aligned: WhatsApp + Call + Book Now. */
    .site-header .nav-action-row {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(12px, 1.2vw, 22px);
        padding: 0;
        margin: 0;
        min-width: 0;
    }

    .site-header .header-whatsapp-link,
    .site-header .header-service-call {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .site-header .header-whatsapp-link {
        font-size: 14px;
    }

    .site-header .header-service-call {
        font-size: 14px;
    }

    .site-header .nav-action-row .nav-cta {
        flex: 0 0 auto;
        margin: 0;
        min-height: 46px;
        padding-inline: 22px;
        white-space: nowrap;
    }
}

/* At medium desktop widths, give the navigation a little more room
   by reducing the logo column rather than allowing Contact to clip. */
@media (min-width: 901px) and (max-width: 1400px) {
    .site-header .navbar.container {
        grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
        column-gap: 18px;
    }

    .site-header .brand img {
        width: min(100%, 360px);
        max-height: 70px;
    }

    .site-header .nav-menu-row {
        gap: 8px;
    }

    .site-header .nav-menu-row a {
        font-size: 15px;
    }

    .site-header .nav-action-row {
        gap: 12px;
    }
}

/* =========================================================
   MOBILE NAVBAR — FINAL CLEAN LAYOUT
   Keeps the desktop two-row header untouched.
   ========================================================= */
@media (max-width: 900px) {
    .site-header {
        width: 100%;
        overflow: visible;
    }

    .site-header .navbar.container {
        width: 100%;
        max-width: 100%;
        min-height: 76px;
        margin: 0;
        padding: 10px 18px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .site-header .brand {
        flex: 1 1 auto;
        width: auto;
        max-width: calc(100% - 58px);
        min-width: 0;
    }

    .site-header .brand img {
        display: block;
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 56px;
        object-fit: contain;
        object-position: left center;
    }

    .site-header .menu-toggle {
        display: flex;
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        padding: 0;
        margin: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid rgba(0,0,0,.18);
        border-radius: 12px;
        background: transparent;
        color: var(--ink);
    }

    .site-header .menu-toggle span {
        width: 23px;
        height: 2px;
        margin: 0;
        border-radius: 2px;
        background: currentColor;
    }

    /* Closed by default; JS adds .open when hamburger is tapped. */
    .site-header .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        padding: 14px 18px 18px;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        background: rgba(247,244,238,.99);
        border-top: 1px solid rgba(0,0,0,.10);
        border-bottom: 1px solid rgba(0,0,0,.18);
        box-shadow: 0 12px 28px rgba(0,0,0,.12);
        white-space: normal;
    }

    .site-header .nav-links.open {
        display: flex !important;
    }

    /* Main navigation: restore the clean vertical mobile menu. */
    .site-header .nav-menu-row {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin: 0;
        padding: 0 0 10px;
        border-bottom: 1px solid rgba(0,0,0,.10);
    }

    .site-header .nav-menu-row a {
        display: flex;
        align-items: center;
        min-height: 42px;
        width: 100%;
        box-sizing: border-box;
        padding: 8px 8px;
        font-size: 15px;
        line-height: 1.25;
        font-weight: 600;
        color: #6f6a65;
        white-space: normal;
        text-decoration: none;
        border-radius: 8px;
    }

    .site-header .nav-menu-row a:active,
    .site-header .nav-menu-row a:hover {
        color: var(--ink);
        background: rgba(84,188,200,.08);
    }

    /* Actions stay vertical as well, matching the mobile menu pattern. */
    .site-header .nav-action-row {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 8px;
        padding: 10px 0 0;
        margin: 0;
        min-height: 0;
        align-items: stretch;
    }

    .site-header .header-whatsapp-link,
    .site-header .header-service-call {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
        width: 100%;
        min-height: 44px;
        padding: 7px 6px;
        box-sizing: border-box;
        gap: 5px;
        font-size: 13px;
        line-height: 1.2;
        white-space: normal;
        text-align: left;
        border: 1px solid rgba(0,0,0,.10);
        border-radius: 10px;
        background: rgba(255,255,255,.55);
    }

    .site-header .header-whatsapp-link strong,
    .site-header .header-service-call strong {
        font-weight: 800;
    }

    /* Book Now gets the full row and remains the strongest action. */
    .site-header .nav-action-row .nav-cta {
        width: 100%;
        min-height: 48px;
        margin: 2px 0 0;
        padding: 0 20px;
        font-size: 16px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-header .navbar.container {
        min-height: 70px;
        padding: 8px 14px;
    }

    .site-header .brand img {
        max-height: 50px;
    }

    .site-header .menu-toggle {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .site-header .nav-links {
        padding: 12px 14px 16px;
    }

    .site-header .nav-menu-row {
        gap: 2px 8px;
    }

    .site-header .nav-menu-row a {
        min-height: 40px;
        padding: 7px 6px;
        font-size: 14px;
    }

    .site-header .header-whatsapp-link,
    .site-header .header-service-call {
        font-size: 12.5px;
    }
}


/* =========================================================
   CUSTOMER PAYMENT DETAILS – RAZORPAY UI
   ========================================================= */
.payment-card-header {
    align-items: flex-start;
}

.razorpay-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    color: #aaa6a3;
    font-size: 10px;
    font-weight: 700;
}

.razorpay-branding strong {
    color: #e8e8e8;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.customer-payment-block,
.payment-amount-block {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
}

.customer-payment-title,
.payment-block-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(255,255,255,.12);
}

.customer-payment-title strong,
.payment-block-title strong {
    display: block;
    color: #78cddd;
    font-size: 18px;
    font-weight: 800;
}

.customer-payment-title > div > span {
    display: block;
    margin-top: 4px;
    color: #8f9296;
    font-size: 11px;
    line-height: 1.4;
}

.customer-title-icon,
.payment-title-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    color: #e6fbff;
    background: linear-gradient(135deg, #226f80, #1b9eb2);
    box-shadow: 0 8px 20px rgba(35,165,185,.18);
    font-size: 20px;
    font-weight: 800;
}

.payment-title-icon {
    color: #fff;
    background: linear-gradient(135deg, #6f2d7f, #b83bbd);
}

.customer-field-row {
    display: grid;
    grid-template-columns: minmax(170px, .9fr) minmax(0, 1.25fr);
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.customer-field-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.customer-field-row label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0dedb;
    font-size: 14px;
    font-weight: 700;
}

.customer-field-row label b {
    color: #ff5b68;
}

.customer-field-row label small {
    color: #99969a;
    font-size: 11px;
    font-weight: 600;
}

.field-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #8ee7f6;
    background: rgba(75,185,205,.14);
    font-size: 17px;
}

.customer-field-row input {
    width: 100%;
    min-width: 0;
    height: 48px;
    padding: 0 15px;
    border: 1px solid rgba(84,188,200,.45);
    border-radius: 11px;
    outline: none;
    background: rgba(9,17,23,.45);
    color: #fff;
    font: inherit;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    box-sizing: border-box;
}

.customer-field-row input::placeholder {
    color: #777c82;
}

.customer-field-row input:focus {
    border-color: #67d5e7;
    background: rgba(10,25,32,.7);
    box-shadow: 0 0 0 3px rgba(84,188,200,.12);
}

.amount-input-modern {
    min-height: 56px;
    padding: 0;
    gap: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(8,14,20,.38);
    overflow: hidden;
}

.amount-input-modern .amount-currency {
    width: 54px;
    height: 56px;
    display: grid;
    place-items: center;
    color: #dfe4e7;
    font-size: 23px;
    border-right: 1px solid rgba(255,255,255,.1);
}

.amount-input-modern input {
    min-height: 56px;
    padding: 0 14px;
    font-size: 22px;
}

.amount-inr {
    display: grid;
    place-items: center;
    align-self: stretch;
    min-width: 62px;
    padding: 0 12px;
    color: #c9c9cb;
    border-left: 1px solid rgba(255,255,255,.1);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.payment-amount-help {
    margin: 9px 0 0;
    color: #a4a1a0;
    font-size: 12px;
}

@media (max-width: 640px) {
    .customer-payment-block,
    .payment-amount-block {
        padding: 16px;
        border-radius: 15px;
    }

    .customer-payment-title strong,
    .payment-block-title strong {
        font-size: 16px;
    }

    .customer-payment-title > div > span {
        font-size: 10px;
    }

    .customer-field-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 0;
    }

    .customer-field-row input {
        height: 46px;
    }

    .razorpay-branding {
        display: none;
    }
}