.desktop-version {
    display: block;
}

.mobile-version {
    display: none;
}

@media (max-width: 767px) {

    .desktop-version {
        display: none;
    }

    .mobile-version {
        display: block;
    }

}

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

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: #101828;
            background: #fff;
            line-height: 1.5;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button,
        input,
        textarea,
        select {
            font-family: 'Roboto', sans-serif;
        }

        .container {
            width: min(1240px, 96%);
            margin: auto;
        }

        /* =====================================================
           TOP NOTICE
        ===================================================== */

        .notice-bar {
            background: #111827;
            color: #fff;
            text-align: center;
            font-size: 10px;
            padding: 5px 15px;
        }

        .notice-bar span {
            color: #facc15;
        }


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

        .header {
            background: #fff;
            border-bottom: 1px solid #e5e7eb;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-inner {
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 34px;
            height: 34px;
            background: #172e9b;
            color: white;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 17px;
        }

        .logo-text strong {
            display: block;
            font-size: 18px;
            line-height: 1.1;
        }

        .logo-text small {
            display: block;
            font-size: 12px;
            color: #667085;
            letter-spacing: .5px;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 27px;
            font-size: 14px;
        }

        .desktop-nav a:hover {
            color: #1748e8;
        }

        .header-btn {
            background: #1f43bd;
            color: #fff;
            padding: 10px 22px;
            border-radius: 20px;
            font-weight: 600;
            box-shadow: 0 3px 8px rgba(31,67,189,.25);
        }

        .mobile-menu {
            display: none;
            font-size: 25px;
            color: #172e9b;
            cursor: pointer;
        }


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

        .hero {
            min-height: 520px;
            background-color: #f9fbff;

            background-image:
                radial-gradient(#dce6f5 1px, transparent 1px);

            background-size: 18px 18px;

            display: flex;
            align-items: center;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 55px;
            align-items: center;
        }

        .hero-content {
            padding: 45px 0;
        }

        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #eef4ff;
            color: #173eb0;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .hero h1 {
            font-size: 42px;
            line-height: 1.05;
            color: #111827;
            margin-bottom: 15px;
        }

        .hero h1 span {
            display: block;
            color: #173eaf;
        }

        .hero-description {
            font-size: 15px;
            color: #667085;
            max-width: 530px;
            margin-bottom: 20px;
        }

        .hero-btn {
            display: inline-block;
            background: #2457d6;
            color: #fff;
            padding: 12px 21px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(36,87,214,.25);
        }

        .hero-points {
            display: flex;
            gap: 14px;
            margin-top: 17px;
            flex-wrap: wrap;
            font-size: 14px;
            color: #344054;
        }

        .hero-points span::before {
            content: "●";
            color: #20b15a;
            margin-right: 5px;
        }


        /* =====================================================
           BOOKING FORM
        ===================================================== */

        .booking-box {
            background: #fff;
            border-radius: 8px;
            padding: 28px;
            box-shadow: 0 12px 35px rgba(16,24,40,.12);
        }

        .booking-box h2 {
            text-align: center;
            font-size: 24px;
            margin-bottom: 9px;
        }

        .booking-subtitle {
            text-align: center;
            font-size: 14px;
            color: #667085;
            margin-bottom: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .form-group {
            margin-bottom: 10px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            border: 1px solid #edf0f4;
            background: #fff;
            padding: 11px;
            border-radius: 3px;
            font-size: 14px;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #3867e8;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 58px;
        }

        .submit-btn {
            width: 100%;
            border: none;
            background: #2860df;
            color: #fff;
            padding: 14px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(40,96,223,.2);
        }

        .submit-btn:hover {
            background: #1748c5;
        }


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

        .service-section {
            padding: 75px 0;
        }

        .service-section.gray {
            background: #f8f9fb;
        }

        .service-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .service-grid.reverse .service-image {
            order: -1;
        }

        .service-icon {
            width: 34px;
            height: 34px;
            background: #eef4ff;
            color: #1641ba;
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 12px;
        }

        .service-content h2 {
            font-size: 24px;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .service-content p {
            color: #667085;
            font-size: 16px;
            margin-bottom: 12px;
        }

        .service-list {
            list-style: none;
            margin: 15px 0;
        }

        .service-list li {
            position: relative;
            padding-left: 17px;
            margin-bottom: 8px;
            font-size: 16px;
            color: #475467;
        }

        .service-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #16a34a;
            font-weight: bold;
        }

        .service-link {
            color: #123cba;
            font-size: 16px;
            font-weight: 700;
        }


        /* =====================================================
           SERVICE VISUAL
        ===================================================== */

        .service-image {
            height: 220px;
            background: #f8fafc;
            border: 1px solid #e9edf3;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

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

        .service-placeholder {
            font-size: 75px;
            opacity: .12;
            color: #2463dd;
        }


        /* =====================================================
           SPECIALIST SECTION
        ===================================================== */

        .specialist {
            background: #f8f9fb;
            padding: 65px 0;
        }

        .specialist-heading {
            text-align: center;
            margin-bottom: 30px;
        }

        .specialist-heading small {
            color: #2455cc;
            font-size: 12px;
            font-weight: 700;
        }

        .specialist-heading h2 {
            font-size: 25px;
            margin-top: 4px;
        }

        .specialist-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .specialist-card {
            background: #fff;
            border: 1px solid #e8ebf0;
            border-radius: 7px;
            padding: 22px;
        }

        .specialist-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .specialist-title span {
            width: 27px;
            height: 27px;
            background: #edf4ff;
            color: #1949c1;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
        }

        .specialist-title h3 {
            font-size: 16px;
        }

        .specialist-card p {
            color: #667085;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .specialist-card ul {
            padding-left: 16px;
            font-size: 16px;
            color: #475467;
            margin-bottom: 15px;
        }

        .small-btn {
            background: #173eb5;
            color: #fff;
            border: 0;
            border-radius: 4px;
            padding: 7px 12px;
            font-size: 14px;
            font-weight: 700;
        }


        /* =====================================================
           FAQ
        ===================================================== */

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

        .section-heading {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-heading h2 {
            font-size: 24px;
        }

        .faq {
            max-width: 850px;
            margin: auto;
        }

        .faq details {
            background: #f8f9fb;
            border-radius: 5px;
            margin-bottom: 8px;
            padding: 0 15px;
        }

        .faq summary {
            cursor: pointer;
            list-style: none;
            padding: 12px 5px;
            font-size: 16px;
            font-weight: 600;
        }

        .faq summary::-webkit-details-marker {
            display: none;
        }

        .faq details p {
            font-size: 16px;
            color: #667085;
            padding: 0 5px 13px;
        }


        /* =====================================================
           LOCATIONS
        ===================================================== */

        .locations {
            background: #111827;
            color: #fff;
            padding: 30px 20px;
        }

        .locations-title {
            text-align: center;
            font-size: 16px;
            margin-bottom: 13px;
        }

        .location-list {
            text-align: center;
            color: #d0d5dd;
            font-size: 14px;
            line-height: 2.1;
        }


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

        .footer {
            background: #080d19;
            color: #fff;
            padding: 35px 0 15px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
        }

        .footer h3 {
            font-size: 12px;
            margin-bottom: 10px;
        }

        .footer p,
        .footer a {
            color: #98a2b3;
            font-size: 14px;
        }

        .footer-links a {
            display: block;
            margin-bottom: 5px;
        }

        .disclaimer {
            border-top: 1px solid #1d2534;
            margin-top: 30px;
            padding-top: 15px;
            color: #667085;
            font-size: 12px;
            line-height: 1.7;
        }

        .copyright {
            text-align: center;
            color: #667085;
            font-size: 12px;
            margin-top: 12px;
        }


        /* =====================================================
           MOBILE STICKY BAR
        ===================================================== */

        .mobile-bottom-bar {
            display: none;
        }


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

        @media (max-width: 900px) {

            .desktop-nav {
                gap: 14px;
            }

            .hero-inner {
                gap: 30px;
            }

            .hero h1 {
                font-size: 34px;
            }

            .service-grid {
                gap: 35px;
            }

        }


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

        @media (max-width: 767px) {

            body {
                padding-bottom: 58px;
            }

            .container {
                width: 92%;
            }


            /* HEADER */

            .header-inner {
                height: 58px;
            }

            .desktop-nav {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .logo-icon {
                width: 30px;
                height: 30px;
            }

            .logo-text strong {
                font-size: 13px;
            }


            /* HERO */

            .hero {
                min-height: auto;
                background-size: 17px 17px;
            }

            .hero-inner {
                display: flex;
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            .hero-content {
                padding: 40px 20px 25px;
                text-align: left;
                width: 100%;
            }

            .trust-badge {
                font-size: 14px;
                margin-bottom: 12px;
            }

            .hero h1 {
                font-size: 32px;
                line-height: 1.05;
                margin-bottom: 13px;
            }

            .hero-description {
                font-size: 11px;
                line-height: 1.6;
            }

            .hero-btn {
                width: auto;
                font-size: 10px;
                padding: 11px 18px;
            }

            .hero-points {
                font-size: 14px;
                gap: 8px;
            }


            /* FORM */

            .booking-box {
                width: 100%;
                padding: 22px 17px;
                margin-bottom: 35px;
                box-shadow: 0 8px 25px rgba(16,24,40,.12);
            }

            .booking-box h2 {
                font-size: 20px;
            }

            .booking-subtitle {
                font-size: 9px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 10px;
                padding: 11px;
            }


            /* SERVICES */

            .service-section {
                padding: 48px 0;
            }

            .service-grid {
                display: flex;
                flex-direction: column;
                gap: 25px;
            }

            .service-grid.reverse .service-image {
                order: 0;
            }

            .service-content {
                order: 1;
            }

            .service-image {
                order: 0;
                width: 100%;
                height: 180px;
            }

            .service-icon {
                width: 32px;
                height: 32px;
            }

            .service-content h2 {
                font-size: 21px;
            }

            .service-content p {
                font-size: 10px;
            }

            .service-list li {
                font-size: 9px;
            }


            /* SPECIALIST */

            .specialist {
                padding: 45px 0;
            }

            .specialist-heading h2 {
                font-size: 21px;
            }

            .specialist-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .specialist-card {
                padding: 18px;
            }


            /* FAQ */

            .faq-section {
                padding: 45px 0;
            }

            .section-heading h2 {
                font-size: 21px;
            }

            .faq summary {
                font-size: 16px;
            }

            .faq details p {
                font-size: 9px;
            }


            /* LOCATIONS */

            .locations {
                padding: 25px 10px;
            }

            .location-list {
                font-size: 7px;
                line-height: 2;
            }


            /* FOOTER */

            .footer {
                padding: 30px 0 80px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }


            /* MOBILE FIXED BUTTONS */

            .mobile-bottom-bar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                height: 58px;
                z-index: 9999;
                box-shadow: 0 -3px 15px rgba(0,0,0,.15);
            }

            .mobile-bottom-bar a {
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 12px;
                font-weight: 700;
            }

            .call-button {
                background: #173eb5;
            }

            .book-button {
                background: #e30613;
            }

        }
        
        /* =========================================
   DESKTOP VERSION ONLY
========================================= */

.desktop-version {
    display: block;
}

/* Hide mobile-only elements on desktop */
.mobile-menu,
.mobile-bottom-bar {
    display: none !important;
}

/* Desktop navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}


/* =========================================
   MOBILE: HIDE DESKTOP VERSION
========================================= */

@media (max-width: 767px) {

    .desktop-version {
        display: none !important;
    }

}


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

.mobile-version {
    display: none;
}


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

@media (max-width: 767px) {

    /* Hide desktop */
    .desktop-version {
        display: none !important;
    }

    /* Show mobile */
    .mobile-version {
        display: block;
        width: 100%;
        overflow: hidden;
        background: #fff;
        color: #222;
        
    }


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

    .m-header {
        height: 92px;
        background: #fff;
        padding: 0 22px;

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

        border-bottom: 1px solid #e5e5e5;

        position: sticky;
        top: 0;
        z-index: 999;
    }


    .m-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: #222;
    }


    .m-logo-icon {
        width: 46px;
        height: 46px;

        background: #07598d;
        color: #fff;

        border-radius: 50%;

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

        font-weight: 800;
        font-size: 16px;
    }


    .m-logo-text {
        display: flex;
        flex-direction: column;
    }


    .m-logo-text strong {
        font-size: 16px;
        line-height: 1.2;
    }


    .m-logo-text small {
        font-size: 9px;
        letter-spacing: .5px;
        margin-top: 4px;
        color: #666;
    }


    /* Hamburger */

    .m-menu {
        width: 40px;
        height: 40px;

        border: 0;
        background: transparent;

        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;

        padding: 5px;
        cursor: pointer;
    }


    .m-menu span {
        display: block;
        width: 30px;
        height: 3px;

        background: #263238;
        border-radius: 5px;
    }


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

    .m-menu-panel {
        display: none;

        background: #fff;
        padding: 15px 22px;

        border-bottom: 1px solid #ddd;

        position: sticky;
        top: 92px;

        z-index: 998;
    }


    .m-menu-panel.active {
        display: block;
    }


    .m-menu-panel a {
        display: block;

        padding: 14px 5px;

        text-decoration: none;
        color: #222;

        font-size: 16px;
        font-weight: 600;

        border-bottom: 1px solid #eee;
    }


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

    .m-hero {
        background: #fbbb08;

        padding: 32px 18px 65px;

        text-align: center;
    }


    .m-trust {
        display: inline-block;

        background: #fff;
        color: #07598d;

        padding: 9px 16px;

        border-radius: 30px;

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

        margin-bottom: 22px;
    }


    .m-hero h1 {
        font-size: 36px;
        line-height: 1.12;

        font-weight: 800;

        color: #252525;

        margin: 0 auto 28px;
    }


    .m-hero h1 span {
        display: inline;
    }


    .m-hero p {
        font-size: 18px;
        line-height: 1.55;

        color: #292929;

        margin: 0 auto 30px;

        max-width: 600px;
    }


    /* ===============================
       OFFER
    =============================== */

    .m-offer-card {
        background: #fffdf8;

        border-radius: 30px;

        padding: 25px 15px 30px;

        box-shadow:
            0 8px 25px rgba(0,0,0,.15);

        text-align: center;
    }


    .m-offer-top {
        display: flex;

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

        gap: 7px;

        margin-bottom: 20px;
    }


    .m-limited {
        background: #07598d;
        color: #fff;

        padding: 11px 14px;

        border-radius: 30px;

        font-size: 13px;
        font-weight: 700;
    }


    .m-save {
        background: #dcf8e8;
        color: #187644;

        padding: 11px 14px;

        border-radius: 30px;

        font-size: 13px;
        font-weight: 700;
    }


    .m-price {
        display: flex;

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

        flex-wrap: wrap;

        gap: 7px;

        margin-bottom: 22px;
    }


    .m-book-at {
        font-size: 17px;
        font-weight: 700;
    }


    .m-price strong {
        color: #07598d;

        font-size: 48px;

        line-height: 1;

        font-weight: 800;
    }


    .m-price del {
        font-size: 21px;
        color: #68717a;
    }


    /* BENEFITS */

    .m-benefit {
        display: flex;

        align-items: center;

        background: #fff9dc;

        border: 1px solid #f0df9c;

        border-radius: 35px;

        padding: 12px 13px;

        margin: 10px 0;

        text-align: left;

        font-size: 15px;

        font-weight: 700;
    }


    .m-benefit span {
        flex-shrink: 0;

        width: 27px;
        height: 27px;

        background: #19bd5c;

        color: #fff;

        border-radius: 50%;

        display: flex;

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

        margin-right: 9px;
    }


    .m-offer-text {
        font-size: 16px !important;

        line-height: 1.5 !important;

        margin-top: 22px !important;

        margin-bottom: 0 !important;
    }


    /* ===============================
       BOOKING
    =============================== */

    .m-booking {
        padding: 55px 18px;
        background: #fff;
    }


    .m-section-title {
        text-align: center;
        margin-bottom: 28px;
    }


    .m-section-title small {
        display: block;

        color: #07598d;

        font-size: 12px;

        font-weight: 800;

        letter-spacing: 1px;

        margin-bottom: 8px;
    }


    .m-section-title h2 {
        font-size: 30px;

        line-height: 1.2;

        margin-bottom: 12px;

        color: #202020;
    }


    .m-section-title p {
        font-size: 16px;

        line-height: 1.55;

        color: #666;
    }


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

        border: 1px solid #ddd;

        border-radius: 12px;

        padding: 15px;

        font-size: 16px;

        margin-bottom: 13px;

        background: #fff;

        outline: none;
    }


    .m-form textarea {
        height: 120px;
        resize: vertical;
    }


    .m-form input:focus,
    .m-form select:focus,
    .m-form textarea:focus {
        border-color: #07598d;
    }


    .m-form button {
        width: 100%;

        border: 0;

        background: #07598d;

        color: #fff;

        padding: 16px;

        border-radius: 35px;

        font-size: 17px;

        font-weight: 700;

        cursor: pointer;
    }


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

    .m-service {
        padding: 55px 18px;

        background: #fff;
    }


    .m-gray {
        background: #f7f7f7;
    }


    .m-icon {
        width: 65px;
        height: 65px;

        background: #fff5cf;

        border-radius: 20px;

        display: flex;

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

        font-size: 31px;

        margin: 0 auto 18px;
    }


    .m-service h2 {
        text-align: center;

        font-size: 29px;

        line-height: 1.2;

        margin-bottom: 17px;
    }


    .m-service > p {
        text-align: center;

        font-size: 17px;

        line-height: 1.6;

        color: #555;

        margin-bottom: 25px;
    }


    .m-service-card {
        background: #fff;

        border-radius: 18px;

        padding: 20px;

        margin-bottom: 13px;

        box-shadow:
            0 4px 18px rgba(0,0,0,.08);
    }


    .m-gray .m-service-card {
        background: #fff;
    }


    .m-service-card h3 {
        color: #07598d;

        font-size: 19px;

        margin-bottom: 8px;
    }


    .m-service-card p {
        color: #555;

        font-size: 15px;

        line-height: 1.55;

        margin: 0;
    }


    .m-service-btn {
        display: block;

        text-align: center;

        text-decoration: none;

        background: #07598d;

        color: #fff;

        padding: 15px;

        border-radius: 35px;

        margin-top: 20px;

        font-size: 16px;

        font-weight: 700;
    }


    /* ===============================
       SPECIALISTS
    =============================== */

    .m-specialist {
        background: #f8f8f8;

        padding: 55px 18px;
    }


    .m-special-card {
        background: #fff;

        padding: 24px 20px;

        border-radius: 20px;

        margin-bottom: 18px;

        box-shadow:
            0 5px 18px rgba(0,0,0,.08);
    }


    .m-special-icon {
        width: 50px;
        height: 50px;

        background: #fff3c4;

        border-radius: 14px;

        display: flex;

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

        font-size: 24px;

        margin-bottom: 15px;
    }


    .m-special-card h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }


    .m-special-card p {
        color: #555;

        font-size: 15px;

        line-height: 1.6;
    }


    .m-special-card a {
        display: inline-block;

        margin-top: 12px;

        color: #07598d;

        text-decoration: none;

        font-weight: 700;
    }


    /* ===============================
       FAQ
    =============================== */

    .m-faq {
        padding: 55px 18px;
        background: #fff;
    }


    .m-faq details {
        border: 1px solid #ddd;

        border-radius: 14px;

        padding: 0;

        margin-bottom: 12px;

        overflow: hidden;

        background: #fff;
    }


    .m-faq summary {
        list-style: none;

        cursor: pointer;

        padding: 18px;

        font-size: 16px;

        font-weight: 700;

        position: relative;

        padding-right: 45px;
    }


    .m-faq summary::-webkit-details-marker {
        display: none;
    }


    .m-faq summary::after {
        content: "+";

        position: absolute;

        right: 18px;

        top: 14px;

        font-size: 25px;

        color: #07598d;
    }


    .m-faq details[open] summary::after {
        content: "−";
    }


    .m-faq details p {
        padding: 0 18px 18px;

        color: #555;

        font-size: 15px;

        line-height: 1.6;
    }


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

    .m-footer {
        background: #15212b;

        color: #fff;

        padding: 45px 20px 100px;

        text-align: center;
    }


    .m-footer h3 {
        font-size: 22px;

        margin-bottom: 14px;
    }


    .m-footer > p {
        color: #d5d5d5;

        font-size: 14px;

        line-height: 1.6;
    }


    .m-disclaimer {
        margin-top: 25px;

        padding: 18px;

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

        border-radius: 14px;

        text-align: left;
    }


    .m-disclaimer strong {
        font-size: 12px;
        color: #fbbb08;
    }


    .m-disclaimer p {
        color: #ccc;

        font-size: 13px;

        line-height: 1.55;

        margin-top: 8px;
    }


    .m-copy {
        margin-top: 25px;
        font-size: 12px !important;
    }


    /* ===============================
       FIXED BOTTOM BAR
    =============================== */

    .m-bottom-bar {
        position: fixed;

        bottom: 0;
        left: 0;

        width: 100%;

        height: 68px;

        background: #fff;

        display: flex;

        padding: 8px;

        gap: 8px;

        box-shadow:
            0 -4px 20px rgba(0,0,0,.15);

        z-index: 99999;
    }


    .m-bottom-bar a {
        flex: 1;

        display: flex;

        align-items: center;

        justify-content: center;

        text-decoration: none;

        border-radius: 30px;

        font-size: 15px;

        font-weight: 700;
    }


    .m-bottom-bar a:first-child {
        background: #f3f3f3;
        color: #07598d;
    }


    .m-bottom-bar a:last-child {
        background: #07598d;
        color: #fff;
    }

}


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

@media (max-width: 380px) {

    .m-hero h1 {
        font-size: 34px;
    }

    .m-hero p {
        font-size: 19px;
    }

    .m-limited,
    .m-save {
        font-size: 11px;
        padding: 10px 11px;
    }

    .m-price strong {
        font-size: 43px;
    }

    .m-benefit {
        font-size: 14px;
    }

}

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

.mobile-services {
    display: none;
}


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

@media (max-width: 767px) {

    .mobile-services {
        display: block;
        width: 100%;
        background: #f7f8fa;
        min-height: 100vh;
        padding-bottom: 100px;
        overflow: hidden;
    }


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

    .mobile-service-header {
        height: 105px;
        background: #ffffff;

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

        padding: 0 28px;

        box-shadow: 0 3px 10px rgba(0,0,0,0.08);

        position: sticky;
        top: 0;
        z-index: 1000;
    }


    .mobile-whirlpool-logo img {
        width: 158px;
        height: auto;
        display: block;
    }


    /* Hamburger */

    .mobile-menu-btn {
        width: 38px;
        height: 38px;

        border: 0;
        background: transparent;

        padding: 4px;

        display: flex;
        flex-direction: column;
        justify-content: center;

        gap: 6px;

        cursor: pointer;
    }


    .mobile-menu-btn span {
        width: 32px;
        height: 3px;

        display: block;

        background: #263238;

        border-radius: 5px;
    }


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

    .mobile-services-content {
        padding: 40px 28px 50px;
    }


    .mobile-services-title {
        text-align: center;

        color: #172337;

        font-size: 43px;

        line-height: 1.12;

        font-weight: 800;

        margin: 0 0 85px;
    }


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

    .mobile-service-card {
        background: #ffffff;

        border-radius: 24px;

        padding: 68px 32px 58px;

        margin-bottom: 58px;

        text-align: center;

        box-shadow:
            0 10px 24px rgba(0,0,0,0.10);

        min-height: 535px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }


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

    .mobile-service-icon {
        width: 78px;
        height: 78px;

        color: #07598d;

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

        margin-bottom: 40px;
    }


    .mobile-service-icon svg {
        width: 70px;
        height: 70px;

        color: #07598d;

        fill: none;
    }


    /* ===============================
       TITLE
    =============================== */

    .mobile-service-card h3 {
        color: #111827;

        font-size: 29px;

        line-height: 1.25;

        font-weight: 600;

        margin: 0 0 28px;
    }


    /* ===============================
       DESCRIPTION
    =============================== */

    .mobile-service-card p {
        color: #5c6570;

        font-size: 23px;

        line-height: 1.52;

        font-weight: 400;

        margin: 0;
    }


    /* ===============================
       FIXED BOOKING BUTTON
    =============================== */

    .mobile-fixed-book {
        position: fixed;

        left: 50%;
        bottom: 25px;

        transform: translateX(-50%);

        width: 350px;

        max-width: calc(100% - 80px);

        min-height: 100px;

        background: #07598d;

        border-radius: 60px;

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

        padding: 18px 36px;

        text-decoration: none;

        color: #ffffff;

        box-shadow:
            0 8px 25px rgba(0,0,0,0.28);

        z-index: 99999;
    }


    .mobile-book-text {
        font-size: 24px;

        line-height: 1.25;

        font-weight: 800;
    }


    .mobile-save-text {
        color: #ffe66b;

        font-size: 20px;

        line-height: 1.3;

        font-weight: 800;

        text-align: left;
    }

}


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

@media (max-width: 480px) {

    .mobile-service-header {
        height: 95px;
        padding: 0 25px;
    }


    .mobile-whirlpool-logo img {
        width: 150px;
    }


    .mobile-services-content {
        padding: 40px 28px;
    }


    .mobile-services-title {
        font-size: 32px;
        margin-bottom: 80px;
    }


    .mobile-service-card {
        min-height: 430px;

        padding: 65px 27px 50px;

        border-radius: 23px;

        margin-bottom: 58px;
    }


    .mobile-service-icon {
        margin-bottom: 38px;
    }


    .mobile-service-card h3 {
        font-size: 22px;
        margin-bottom: 27px;
    }


    .mobile-service-card p {
        font-size: 18px;
        line-height: 1.55;
    }


    .mobile-fixed-book {
        width: 350px;
        max-width: calc(100% - 55px);

        min-height: 98px;

        padding: 17px 34px;
        display:none;
    }


    .mobile-book-text {
        font-size: 23px;
    }


    .mobile-save-text {
        font-size: 19px;
    }

}


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

@media (max-width: 380px) {

    .mobile-services-title {
        font-size: 35px;
    }


    .mobile-service-card {
        padding-left: 22px;
        padding-right: 22px;
    }


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


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


    .mobile-fixed-book {
        max-width: calc(100% - 35px);
    }


    .mobile-book-text {
        font-size: 20px;
    }


    .mobile-save-text {
        font-size: 17px;
    }

}

/* =========================================
   MOBILE PRODUCTS SECTION
========================================= */

.m-products-section {
    display: none;
}

@media (max-width: 767px) {

    .m-products-section {
        display: block;
        background: #ffffff;
        width: 100%;
        overflow: hidden;
    }

    .m-products-container {
        padding: 45px 28px 60px;
    }

    .m-products-container h2 {
        color: #172337;
        text-align: center;

        font-size: 32px;
        line-height: 1.15;
        font-weight: 800;

        margin: 0 0 75px;
    }

    .m-products-intro {
        color: #59616b;

        text-align: center;

        font-size: 18px;
        line-height: 1.55;

        margin: 0 auto 65px;

        max-width: 650px;
    }

    .m-products-grid {
        display: grid;

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

        gap: 40px 38px;
    }

    .m-product-card {
        background: #f5f6f8;

        border-radius: 22px;

        min-height: 225px;

        padding: 45px 12px 25px;

        display: flex;
        flex-direction: column;

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

        text-align: center;

        box-shadow:
            0 4px 8px rgba(0,0,0,.08);
    }

    .m-product-icon {
        width: 100px;
        height: 100px;

        color: #07598d;

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

        margin-bottom: 30px;
    }

    .m-product-icon svg {
        width: 90px;
        height: 90px;
    }

    .m-product-card h3 {
        color: #101827;

        font-size: 21px;
        line-height: 1.3;

        font-weight: 700;

        margin: 0;
    }

}

/* =========================================
   MOBILE WHIRLPOOL ABOUT SECTION
========================================= */

.mobile-about-whirlpool {
    display: none;
}


@media (max-width: 767px) {

    .mobile-about-whirlpool {
        display: block;

        width: 100%;

        background: #202b3b;

        color: #fff;

        overflow: hidden;
    }


    .mobile-about-wrap {
        width: 100%;
    }


    /* =====================================
       TOP WHIRLPOOL SERVICE
    ===================================== */

    .mobile-service-heading {
        
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);

        margin: 40px;

        padding: 58px 20px 35px;

        text-align: center;

        color: #fff;

        font-size: 32px;

        line-height: 1.2;

        font-weight: 700;

        background: #202b3b;
    }


    /* =====================================
       ABOUT CONTENT
    ===================================== */

    .mobile-about-content {

        padding: 60px 28px 130px;

        text-align: center;
    }


    .mobile-about-content h2 {

        margin: 0 0 48px;

        color: #fff;

        font-size: 28px;

        line-height: 1.27;

        font-weight: 800;
    }


    .mobile-about-content p {

        margin: 0;

        color: #e1e5eb;

        font-size: 18px;

        line-height: 1.58;

        font-weight: 400;

        text-align: center;
    }


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

    .mobile-disclaimer {

        margin-top: 50px;

        padding: 24px 18px;

        color: #dce2e8;

        font-size: 17px;

        line-height: 1.6;

        text-align: center;

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


    .mobile-disclaimer strong {

        color: #fff;

        font-weight: 700;
    }

}

/* =========================================
   HIDE MOBILE VERSION ON DESKTOP
========================================= */

.mobile-contact-section,
.mobile-footer {
    display: none;
}


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

@media (max-width: 767px) {

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

    .mobile-contact-section {
        display: block;

        width: 100%;

        background: #fbb914;

        overflow: hidden;
    }


    .mobile-contact-inner {
        padding: 68px 28px 85px;

        text-align: center;
    }


    /* Heading */

    .mobile-contact-inner h2 {
        margin: 0 0 58px;

        color: #07598d;

        font-size: 32px;

        line-height: 1.2;

        font-weight: 800;
    }


    /* Description */

    .mobile-contact-inner p {
        margin: 0 auto 48px;

        color: #07598d;

        font-size: 20px;

        line-height: 1.55;

        font-weight: 400;

        max-width: 650px;
    }


    /* =====================================
       BOOK SERVICE BUTTON
    ===================================== */

    .mobile-contact-btn {

        width: 250px;

        max-width: 100%;

        min-height: 60px;

        margin: 0 auto;

        background: #07598d;

        color: #ffffff;

        border-radius: 60px;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 20px;

        text-decoration: none;

        font-size: 22px;

        font-weight: 800;

        box-shadow:
            0 8px 18px rgba(0,0,0,.18);

        transition: .2s ease;
    }


    .mobile-contact-btn:active {
        transform: scale(.97);
    }


    /* Phone icon */

    .mobile-phone-icon {
        width: 35px;

        height: 35px;

        display: flex;

        align-items: center;

        justify-content: center;
    }


    .mobile-phone-icon svg {
        width: 32px;

        height: 32px;
    }


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

    .mobile-footer {
        display: block;

        width: 100%;

        background: #101a2a;

        color: #dce1e7;

        overflow: hidden;
    }


    .mobile-footer-content {

        padding: 60px 28px 150px;

        text-align: center;
    }


    .mobile-footer-content p {

        margin: 0 0 35px;

        color: #dce1e7;

        font-size: 16px;

        line-height: 1.65;

        font-weight: 400;
    }


    .mobile-footer-content p:last-child {
        margin-bottom: 0;
    }


    .mobile-footer-content strong {
        color: #ffffff;

        font-weight: 700;
    }

}