/* =========================================================
   SAKSHI MADGUNDI — WEB SERVICES
   COMPLETE STYLE.CSS
========================================================= */

:root {
    --yellow: #ffd400;
    --yellow-dark: #f2c400;

    --orange: #f57c00;
    --orange-dark: #df6800;

    --sky: #87ceeb;
    --sky-dark: #5bb7dc;

    --bg: #ffffff;
    --surface: #ffffff;
    --surface-2: #f7f7f7;

    --text: #111111;
    --muted: #666666;
    --border: #e8e8e8;

    --shadow:
        0 8px 30px rgba(0, 0, 0, 0.07);

    --radius: 16px;

    --header-height: 78px;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode {
    --bg: #090909;
    --surface: #111111;
    --surface-2: #171717;

    --text: #ffffff;
    --muted: #aaaaaa;
    --border: #292929;

    --shadow:
        0 8px 30px rgba(0, 0, 0, 0.40);
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        var(--bg);

    color:
        var(--text);

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

a {
    color:
        inherit;

    text-decoration:
        none;
}

button {
    font-family:
        inherit;
}

img {
    display:
        block;

    max-width:
        100%;
}


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

.site-header {
    position:
        sticky;

    top:
        0;

    z-index:
        1000;

    width:
        100%;

    background:
        var(--surface);

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

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.header-inner {
    width:
        min(1280px, calc(100% - 40px));

    min-height:
        var(--header-height);

    margin:
        0 auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;
}


/* =========================================================
   LOGO
========================================================= */

.brand {
    display:
        flex;

    align-items:
        center;

    flex-shrink:
        0;
}

.brand-logo {
    display:
        block;

    width:
        155px;

    height:
        auto;

    object-fit:
        contain;
}


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

.desktop-nav {
    display:
        flex;

    align-items:
        center;

    gap:
        34px;

    margin-left:
        auto;
}

.nav-link {
    position:
        relative;

    padding:
        28px 0;

    color:
        var(--text);

    font-size:
        14px;

    font-weight:
        700;
}

.nav-link::after {
    content:
        "";

    position:
        absolute;

    left:
        0;

    right:
        0;

    bottom:
        19px;

    height:
        3px;

    background:
        var(--yellow);

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform:
        scaleX(1);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display:
        flex;

    align-items:
        center;

    gap:
        10px;
}

.theme-button,
.mobile-menu-button {
    width:
        42px;

    height:
        42px;

    padding:
        0;

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

    border-radius:
        50%;

    background:
        var(--surface);

    color:
        var(--text);

    cursor:
        pointer;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        20px;

    appearance:
        none;

    -webkit-appearance:
        none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.theme-button:hover,
.mobile-menu-button:hover {
    transform:
        translateY(-2px);

    background:
        var(--yellow);
}

.mobile-menu-button {
    display:
        none;
}


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

.mobile-menu {
    display:
        none;

    padding:
        10px 20px 20px;

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

    background:
        var(--surface);
}

.mobile-menu.show {
    display:
        block;
}

.mobile-menu a {
    display:
        block;

    padding:
        14px 0;

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

    color:
        var(--text);

    font-size:
        15px;

    font-weight:
        700;
}


/* =========================================================
   SHOP INTRO
========================================================= */

.shop-top {
    width:
        min(1280px, calc(100% - 40px));

    margin:
        0 auto;

    padding:
        65px 0 35px;
}

.shop-small-title,
.section-label {
    margin-bottom:
        12px;

    color:
        var(--orange);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;
}

.shop-top h1 {
    margin-bottom:
        18px;

    color:
        var(--text);

    font-size:
        clamp(36px, 5vw, 60px);

    line-height:
        1;

    letter-spacing:
        -0.04em;
}

.shop-description {
    max-width:
        620px;

    color:
        var(--muted);

    font-size:
        17px;

    line-height:
        1.7;
}


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

.services-section {
    width:
        min(1280px, calc(100% - 40px));

    margin:
        0 auto;

    padding:
        10px 0 80px;
}

.services-toolbar {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        24px;
}

.services-toolbar h2 {
    color:
        var(--text);

    font-size:
        26px;
}

#serviceCount {
    color:
        var(--muted);

    font-size:
        14px;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.services-grid {
    display:
        grid;

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

    gap:
        22px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    overflow:
        hidden;

    background:
        var(--surface);

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

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);

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

.service-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(255, 212, 0, 0.65);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.11);
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {
    width:
        100%;

    height:
        205px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

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

.service-image-yellow {
    background:
        var(--yellow);
}

.service-image-orange {
    background:
        var(--orange);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
    width:
        90px;

    height:
        90px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(255, 255, 255, 0.92);

    color:
        #111111;

    font-size:
        42px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.service-card-content {
    padding:
        22px;

    display:
        flex;

    flex-direction:
        column;
}

.service-category {
    margin-bottom:
        9px;

    color:
        var(--orange);

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;
}

.service-card h3 {
    margin-bottom:
        11px;

    color:
        var(--text);

    font-size:
        21px;

    line-height:
        1.25;

    font-weight:
        750;
}

.service-short {
    min-height:
        69px;

    color:
        var(--muted);

    font-size:
        14px;

    line-height:
        1.65;
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.service-bottom {
    width:
        100%;

    margin-top:
        22px;

    padding-top:
        17px;

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

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        14px;
}


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

.service-bottom strong {
    flex:
        0 0 auto;

    color:
        var(--text);

    font-size:
        17px;

    font-weight:
        800;

    white-space:
        nowrap;
}


/* =========================================================
   ALL CARD LINKS / BUTTONS
   IMPORTANT FIX
========================================================= */

.service-bottom > a,
.service-bottom > button {
    flex:
        0 0 auto;

    height:
        40px;

    min-height:
        40px;

    padding:
        0 15px;

    border:
        0 !important;

    border-radius:
        8px !important;

    outline:
        none !important;

    font-family:
        Arial,
        Helvetica,
        sans-serif !important;

    font-size:
        12px !important;

    font-weight:
        800 !important;

    line-height:
        40px;

    text-align:
        center;

    white-space:
        nowrap;

    text-decoration:
        none !important;

    cursor:
        pointer;

    appearance:
        none !important;

    -webkit-appearance:
        none !important;

    box-shadow:
        none !important;
}


/* =========================================================
   VIEW SERVICE
========================================================= */

.service-bottom > a.view-service {
    min-width:
        120px;

    background:
        var(--yellow) !important;

    color:
        #111111 !important;
}

.service-bottom > a.view-service:hover {
    background:
        var(--yellow-dark) !important;

    color:
        #111111 !important;

    transform:
        translateY(-1px);
}


/* =========================================================
   BOOK NOW
   TARGETS THE REAL BUTTON EVEN WITHOUT A CLASS
========================================================= */

.service-bottom > button {
    min-width:
        90px;

    background:
        var(--orange) !important;

    color:
        #ffffff !important;
}

.service-bottom > button:hover {
    background:
        var(--orange-dark) !important;

    color:
        #ffffff !important;

    transform:
        translateY(-1px);
}


/* =========================================================
   IF BOOK NOW IS AN <A> INSTEAD OF <BUTTON>
========================================================= */

.service-bottom > a:not(.view-service) {
    min-width:
        90px;

    background:
        var(--orange) !important;

    color:
        #ffffff !important;
}

.service-bottom > a:not(.view-service):hover {
    background:
        var(--orange-dark) !important;

    color:
        #ffffff !important;

    transform:
        translateY(-1px);
}


/* =========================================================
   REMOVE BROWSER BUTTON STYLING
========================================================= */

.service-bottom button,
.service-bottom button:hover,
.service-bottom button:focus,
.service-bottom button:active {
    border:
        0 !important;

    outline:
        none !important;

    box-shadow:
        none !important;

    text-decoration:
        none !important;
}


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

.simple-section {
    padding:
        85px 20px;

    border-top:
        1px solid var(--border);
}

.simple-section-inner {
    width:
        min(900px, 100%);

    margin:
        0 auto;
}

.simple-section h2 {
    margin-bottom:
        18px;

    color:
        var(--text);

    font-size:
        clamp(28px, 4vw, 44px);

    line-height:
        1.1;
}

.simple-section p:not(.section-label) {
    max-width:
        720px;

    color:
        var(--muted);

    font-size:
        16px;

    line-height:
        1.8;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.primary-button {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        46px;

    margin-top:
        24px;

    padding:
        0 22px;

    border:
        0;

    border-radius:
        9px;

    background:
        var(--yellow);

    color:
        #111111;

    font-size:
        14px;

    font-weight:
        800;

    cursor:
        pointer;

    appearance:
        none;

    -webkit-appearance:
        none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.primary-button:hover {
    background:
        var(--orange);

    transform:
        translateY(-1px);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-details {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        14px;

    margin-top:
        24px;
}

.contact-item {
    min-width:
        270px;

    padding:
        18px;

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

    background:
        var(--surface);

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

    border-radius:
        10px;
}

.contact-item span {
    color:
        var(--muted);

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        0.1em;

    text-transform:
        uppercase;
}

.contact-item strong {
    color:
        var(--text);

    font-size:
        14px;

    word-break:
        break-word;
}

.contact-item a:hover {
    color:
        var(--orange);
}


/* =========================================================
   SINGLE SERVICE PAGE
========================================================= */

.single-service {
    width:
        min(1120px, calc(100% - 40px));

    margin:
        0 auto;

    padding:
        70px 0 100px;

    display:
        grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap:
        65px;

    align-items:
        start;
}

.single-service-image {
    min-height:
        500px;

    position:
        sticky;

    top:
        105px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        18px;

    background:
        var(--yellow);
}

.large-service-icon {
    width:
        170px;

    height:
        170px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        #ffffff;

    color:
        #111111;

    font-size:
        65px;

    font-weight:
        800;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.15);
}

.single-service-info h1 {
    margin-bottom:
        20px;

    color:
        var(--text);

    font-size:
        clamp(35px, 5vw, 58px);

    line-height:
        1.02;

    letter-spacing:
        -0.04em;
}

.single-service-description {
    margin-bottom:
        28px;

    color:
        var(--muted);

    font-size:
        17px;

    line-height:
        1.8;
}


/* =========================================================
   PRICE BOX
========================================================= */

.price-box {
    margin-bottom:
        25px;

    padding:
        20px;

    display:
        flex;

    flex-direction:
        column;

    gap:
        7px;

    background:
        var(--surface-2);

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

    border-radius:
        13px;
}

.price-box span {
    color:
        var(--muted);

    font-size:
        13px;
}

.price-box strong {
    color:
        var(--text);

    font-size:
        30px;
}


/* =========================================================
   INCLUDED
========================================================= */

.included-box {
    margin-bottom:
        28px;

    padding-top:
        25px;

    border-top:
        1px solid var(--border);
}

.included-box h2 {
    margin-bottom:
        16px;

    color:
        var(--text);

    font-size:
        20px;
}

.included-box ul {
    list-style:
        none;

    display:
        grid;

    gap:
        12px;
}

.included-box li {
    display:
        flex;

    gap:
        10px;

    color:
        var(--muted);

    line-height:
        1.5;
}

.included-box li::before {
    content:
        "✓";

    color:
        var(--orange);

    font-weight:
        900;
}


/* =========================================================
   DETAIL PAGE BOOK BUTTON
========================================================= */

.book-button {
    width:
        100%;

    min-height:
        52px;

    padding:
        0 24px;

    border:
        0;

    border-radius:
        10px;

    background:
        var(--yellow);

    color:
        #111111;

    font-size:
        16px;

    font-weight:
        900;

    cursor:
        pointer;

    appearance:
        none;

    -webkit-appearance:
        none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.book-button:hover {
    background:
        var(--orange);

    transform:
        translateY(-2px);
}


/* =========================================================
   BACK LINK
========================================================= */

.back-link {
    display:
        inline-block;

    margin-top:
        18px;

    color:
        var(--muted);

    font-size:
        14px;

    font-weight:
        700;
}

.back-link:hover {
    color:
        var(--orange);
}


/* =========================================================
   PAYMENT OVERLAY
========================================================= */

.payment-overlay {
    position:
        fixed;

    inset:
        0;

    z-index:
        3000;

    padding:
        20px;

    display:
        none;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(0, 0, 0, 0.72);
}

.payment-overlay.open {
    display:
        flex;
}

.payment-box {
    position:
        relative;

    width:
        min(500px, 100%);

    max-height:
        92vh;

    overflow:
        auto;

    padding:
        30px;

    background:
        var(--surface);

    color:
        var(--text);

    border-radius:
        20px;

    text-align:
        center;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.35);
}

.close-payment {
    position:
        absolute;

    top:
        12px;

    right:
        15px;

    width:
        40px;

    height:
        40px;

    padding:
        0;

    border:
        0;

    border-radius:
        50%;

    background:
        var(--surface-2);

    color:
        var(--text);

    cursor:
        pointer;

    font-size:
        26px;

    appearance:
        none;

    -webkit-appearance:
        none;
}

.close-payment:hover {
    background:
        var(--yellow);

    color:
        #111111;
}

.payment-box h2 {
    margin-bottom:
        12px;

    font-size:
        28px;
}

.payment-instruction {
    margin-bottom:
        22px;

    color:
        var(--muted);

    font-size:
        14px;

    line-height:
        1.6;
}


/* =========================================================
   QR
========================================================= */

.qr-container {
    width:
        min(330px, 85vw);

    margin:
        0 auto 18px;

    padding:
        8px;

    background:
        #ffffff;

    border:
        1px solid #dddddd;

    border-radius:
        12px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.18);
}

.qr-image {
    display:
        block;

    width:
        100%;

    height:
        auto;
}

.payment-note {
    color:
        var(--muted);

    font-size:
        12px;

    line-height:
        1.5;
}


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

.site-footer {
    width:
        100%;

    padding:
        45px 20px 20px;

    background:
        var(--sky);

    color:
        #08384a;

    border-top:
        1px solid rgba(8, 56, 74, 0.15);
}

.footer-inner {
    width:
        min(1280px, 100%);

    margin:
        0 auto;

    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        30px;
}

.footer-inner strong {
    color:
        #08384a;

    font-size:
        18px;
}

.footer-inner p {
    margin-top:
        7px;

    color:
        #15566d;

    font-size:
        13px;
}

.footer-links {
    display:
        flex;

    gap:
        25px;

    font-size:
        14px;

    font-weight:
        700;
}

.footer-links a {
    color:
        #08384a;
}

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

.footer-bottom {
    width:
        min(1280px, 100%);

    margin:
        35px auto 0;

    padding-top:
        20px;

    border-top:
        1px solid rgba(8, 56, 74, 0.18);

    color:
        #15566d;

    font-size:
        12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .desktop-nav {
        gap:
            22px;
    }

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

    .single-service {
        grid-template-columns:
            1fr;

        gap:
            35px;
    }

    .single-service-image {
        min-height:
            350px;

        position:
            static;
    }
}


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

@media (max-width: 700px) {

    :root {
        --header-height:
            68px;
    }


    /* HEADER */

    .header-inner {
        width:
            calc(100% - 28px);

        min-height:
            68px;

        gap:
            10px;
    }

    .brand-logo {
        width:
            120px;
    }

    .desktop-nav {
        display:
            none;
    }

    .mobile-menu-button {
        display:
            flex;
    }


    /* INTRO */

    .shop-top {
        width:
            calc(100% - 28px);

        padding:
            42px 0 25px;
    }

    .shop-top h1 {
        font-size:
            40px;
    }

    .shop-description {
        font-size:
            15px;
    }


    /* SERVICES */

    .services-section {
        width:
            calc(100% - 28px);

        padding-bottom:
            55px;
    }

    .services-grid {
        grid-template-columns:
            1fr;

        gap:
            16px;
    }


    /* CARD */

    .service-image {
        height:
            180px;
    }

    .service-card-content {
        padding:
            18px;
    }

    .service-card h3 {
        font-size:
            19px;
    }

    .service-short {
        min-height:
            auto;
    }


    /* CARD BOTTOM */

    .service-bottom {
        flex-direction:
            row;

        align-items:
            center;

        justify-content:
            space-between;

        gap:
            8px;
    }

    .service-bottom strong {
        font-size:
            15px;
    }

    .service-bottom > a,
    .service-bottom > button {
        height:
            40px;

        min-height:
            40px;

        padding:
            0 10px;

        font-size:
            11px !important;

        line-height:
            40px;
    }

    .service-bottom > a.view-service {
        min-width:
            100px;
    }

    .service-bottom > button,
    .service-bottom > a:not(.view-service) {
        min-width:
            82px;
    }


    /* SIMPLE SECTIONS */

    .simple-section {
        padding:
            55px 14px;
    }


    /* CONTACT */

    .contact-details {
        flex-direction:
            column;
    }

    .contact-item {
        width:
            100%;

        min-width:
            0;
    }


    /* SINGLE SERVICE */

    .single-service {
        width:
            calc(100% - 28px);

        padding:
            35px 0 60px;
    }

    .single-service-image {
        min-height:
            280px;
    }

    .large-service-icon {
        width:
            120px;

        height:
            120px;

        font-size:
            55px;
    }

    .single-service-info h1 {
        font-size:
            39px;
    }


    /* PAYMENT */

    .payment-box {
        padding:
            25px 18px;
    }

    .qr-container {
        width:
            min(300px, 85vw);
    }


    /* FOOTER */

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

    .footer-links {
        flex-wrap:
            wrap;

        gap:
            18px;
    }
}


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

@media (max-width: 420px) {

    .brand-logo {
        width:
            105px;
    }

    .shop-top h1 {
        font-size:
            35px;
    }

    .service-image {
        height:
            165px;
    }

    .service-bottom {
        display:
            grid;

        grid-template-columns:
            auto 1fr 1fr;

        align-items:
            center;

        gap:
            7px;
    }

    .service-bottom > a,
    .service-bottom > button {
        width:
            100%;

        min-width:
            0 !important;

        padding:
            0 7px;

        font-size:
            10px !important;
    }

    .payment-box h2 {
        font-size:
            23px;
    }

    .qr-container {
        width:
            220px;
    }
}



/* =========================================================
   SPLASH SCREEN
========================================================= */

.site-splash {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.site-splash-logo {
    display: block;
    width: min(520px, 78vw);
    height: auto;
    max-width: 82vw;
    object-fit: contain;
    opacity: 0;
    animation: splashLogoAppear 0.8s ease forwards;
}

.site-splash.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes splashLogoAppear {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .site-splash-logo {
        width: 82vw;
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible {
    outline:
        3px solid var(--yellow);

    outline-offset:
        3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }

    *,
    *::before,
    *::after {
        transition:
            none !important;
    }
}
