:root {
            --merah: #c9141c;
            --merah-gelap: #9e0e14;
            --hitam: #171717;
            --putih: #ffffff;
            --abu-latar: #f1f2f4;
            --abu-border: #cfcfcf;
            --abu-teks: #666666;
            --kuning: #f5c400;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            min-height: 100vh;
            padding: 0;
            font-family: Arial, sans-serif;
            color: var(--hitam);
            background: var(--abu-latar);
        }

        body.modal-open {
            overflow: hidden;
        }

        main.container {
            width: 100%;
            max-width: 920px;
            margin: 0 auto;
            padding-top: 36px;
            padding-bottom: 36px;
        }

        .brand {
            margin: 0 0 7px;
            color: var(--merah);
            text-align: center;
            font-size: 16px;
            font-weight: 800;
            letter-spacing: 1.5px;
        }

        h1 {
            margin: 0 0 8px;
            text-align: center;
            font-size: 30px;
        }

        .description {
            max-width: 620px;
            margin: 0 auto 26px;
            color: var(--abu-teks);
            text-align: center;
            font-size: 14px;
            line-height: 1.6;
        }

        .card {
            padding: 28px;
            background: var(--putih);
            border: 1px solid #dddddd;
            border-top: 6px solid var(--merah);
            border-radius: 9px;
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
        }

        .section-title {
            margin: 0 0 18px;
            font-size: 18px;
        }

        .section-title::after {
            content: "";
            display: block;
            width: 52px;
            height: 4px;
            margin-top: 7px;
            background: var(--kuning);
            border-radius: 10px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        .location-row {
            grid-template-columns:
                minmax(0, 1fr)
                54px
                minmax(0, 1fr);
            align-items: end;
        }

        .swap-location-wrapper {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 1px;
        }

        .swap-location-button {
            width: 48px;
            height: 48px;
            padding: 0;
            color: var(--putih);
            background: var(--merah);
            border: none;
            border-radius: 50%;
            font-size: 23px;
            font-weight: 800;
            cursor: pointer;
            transition:
                transform 0.2s ease,
                background 0.2s ease;
        }

        .swap-location-button:hover {
            background: var(--merah-gelap);
            transform: rotate(180deg);
        }

        .swap-location-button:focus {
            outline: none;
            box-shadow:
                0 0 0 3px rgba(201, 20, 28, 0.18);
        }

        .form-row-three {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .form-group {
            position: relative;
            min-width: 0;
        }

        label {
            display: block;
            margin-bottom: 7px;
            font-size: 14px;
            font-weight: bold;
        }

        .required {
            color: var(--merah);
        }

        input[type="text"],
        select {
            width: 100%;
            height: 48px;
            padding: 10px 13px;
            color: var(--hitam);
            background: var(--putih);
            border: 1px solid var(--abu-border);
            border-radius: 6px;
            outline: none;
            font-size: 14px;
        }

        select {
            cursor: pointer;
        }

        input[type="text"]:focus,
        select:focus {
            border-color: var(--merah);
            box-shadow: 0 0 0 3px rgba(201, 20, 28, 0.12);
        }

        select:disabled {
            color: #999999;
            background: #eeeeee;
            cursor: not-allowed;
        }

        .suggestions {
            position: absolute;
            z-index: 100;
            top: 75px;
            left: 0;
            right: 0;
            display: none;
            max-height: 260px;
            overflow-y: auto;
            background: var(--putih);
            border: 1px solid #cccccc;
            border-radius: 6px;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
        }

        .suggestion-item {
            padding: 11px 12px;
            border-bottom: 1px solid #eeeeee;
            cursor: pointer;
        }

        .suggestion-item:last-child {
            border-bottom: none;
        }

        .suggestion-item:hover,
        .suggestion-item.active {
            background: #fff1f1;
        }

        .suggestion-title {
            display: block;
            color: var(--merah);
            font-size: 13px;
            font-weight: bold;
        }

        .suggestion-subtitle {
            display: block;
            margin-top: 4px;
            color: var(--hitam);
            font-size: 13px;
            line-height: 1.4;
        }

        .suggestion-message {
            padding: 13px;
            color: var(--abu-teks);
            text-align: center;
            font-size: 13px;
        }

        .truck-section {
            margin-top: 26px;
            padding-top: 23px;
            border-top: 1px solid #e5e5e5;
        }

        .alert {
            display: none;
            margin-top: 20px;
            padding: 12px;
            color: #830000;
            background: #ffe4e4;
            border: 1px solid #efa8a8;
            border-radius: 6px;
            font-size: 13px;
            line-height: 1.5;
        }

        .button-wrapper {
            margin-top: 25px;
            text-align: center;
        }

        .submit-button {
            min-width: 210px;
            height: 48px;
            padding: 0 24px;
            color: var(--putih);
            background: var(--merah);
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
        }

        .submit-button:hover {
            background: var(--merah-gelap);
        }

        .submit-button:disabled {
            cursor: not-allowed;
            opacity: 0.65;
        }

        .order-button-wrapper {
            margin-top: 22px;
            text-align: center;
        }

        .order-button {
            width: 100%;
            min-height: 48px;
            padding: 12px 20px;
            color: var(--hitam);
            background: var(--kuning);
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
        }

        .order-form {
            padding: 22px;
        }

        .order-section {
            margin-bottom: 22px;
        }

        .order-section-title {
            margin: 0 0 14px;
            font-size: 16px;
        }

        .order-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 15px;
        }

        .full-width {
            grid-column: 1 / -1;
        }

        .order-form input[type="text"],
        .order-form input[type="tel"],
        .order-form textarea {
            width: 100%;
            padding: 11px 13px;
            border: 1px solid var(--abu-border);
            border-radius: 6px;
            font: inherit;
        }

        .order-form input[type="text"],
        .order-form input[type="tel"] {
            min-height: 46px;
        }

        .order-form textarea {
            min-height: 95px;
            resize: vertical;
        }

        .insurance-options {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .insurance-option {
            display: flex;
            gap: 9px;
            padding: 12px;
            background: #fafafa;
            border: 1px solid var(--abu-border);
            border-radius: 6px;
            cursor: pointer;
        }

        .order-summary {
            padding: 14px;
            background: #f8f8f8;
            border-left: 4px solid var(--merah);
            border-radius: 5px;
            font-size: 13px;
            line-height: 1.6;
        }

        .insurance-detail {
            display: none;
            margin-top: 14px;
            padding: 14px;
            background: #fff8d9;
            border: 1px solid #ead56f;
            border-radius: 6px;
        }

        .insurance-detail.show {
            display: block;
        }

        .insurance-cost {
            margin-top: 10px;
            color: var(--merah);
            font-size: 14px;
            font-weight: 800;
        }

        .modal-overlay {
            position: fixed;
            z-index: 9999;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(0, 0, 0, 0.62);
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-box {
            position: relative;
            width: 100%;
            max-width: 560px;
            max-height: calc(100vh - 40px);
            overflow-y: auto;
            overscroll-behavior: contain;
            background: var(--putih);
            border-radius: 9px;
        }

        .modal-header {
            position: relative;
            padding: 19px 55px 19px 21px;
            color: var(--putih);
            background: var(--merah);
            border-bottom: 5px solid var(--kuning);
        }

        .modal-header h2 {
            margin: 0;
            font-size: 21px;
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 12px;
            width: 36px;
            height: 36px;
            padding: 0;
            color: var(--putih);
            background: transparent;
            border: none;
            font-size: 27px;
            cursor: pointer;
        }

        .truck-result {
            position: sticky;
            top: 0;
            z-index: 20;
            padding: 22px;
            text-align: center;
            background: #181818;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
        }

        .truck-result video {
            display: block;
            width: 100%;
            max-width: 420px;
            height: 240px;
            margin: 0 auto;
            object-fit: contain;
            background: #000000;
            border-radius: 7px;
        }

        .truck-result-name {
            margin-top: 13px;
            color: var(--kuning);
            font-size: 19px;
            font-weight: bold;
        }

        .truck-result-price {
            margin-top: 7px;
            color: var(--putih);
            font-size: 30px;
            font-weight: 800;
        }

        .route-highlight {
            margin-top: 18px;
            padding: 14px;
            color: var(--putih);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 7px;
        }

        .route-highlight-label {
            margin-bottom: 7px;
            color: var(--kuning);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.7px;
        }

        .route-highlight-value {
            font-size: 20px;
            font-weight: 800;
            line-height: 1.45;
        }

        .booking-note {
            margin-top: 20px;
            padding: 16px;
            color: #463b00;
            background: #fff8d8;
            border: 1px solid #ead56f;
            border-left: 5px solid var(--kuning);
            border-radius: 6px;
            font-size: 13px;
            line-height: 1.6;
        }

        .booking-note ul {
            margin: 0;
            padding-left: 19px;
        }

        .booking-note li + li {
            margin-top: 7px;
        }

        .modal-body {
            padding: 22px;
        }

        .result-row {
            display: grid;
            grid-template-columns: 105px minmax(0, 1fr);
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #eeeeee;
        }

        .result-row:last-child {
            border-bottom: none;
        }

        .result-label {
            color: var(--abu-teks);
            font-size: 13px;
            font-weight: bold;
        }

        .result-value {
            color: var(--hitam);
            font-size: 14px;
            line-height: 1.5;
            overflow-wrap: anywhere;
        }

        .result-distance {
            color: var(--merah);
            font-size: 22px;
            font-weight: bold;
        }

        .result-note {
            margin-top: 18px;
            padding: 12px;
            color: #554500;
            background: #fff5c4;
            border-left: 4px solid var(--kuning);
            border-radius: 4px;
            font-size: 12px;
            line-height: 1.5;
        }

        .whatsapp-floating {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 12000;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 54px;
            padding: 9px 16px 9px 10px;
            color: #ffffff;
            background: #25d366;
            border-radius: 999px;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
            text-decoration: none;
            font-size: 14px;
            font-weight: 800;
            transition:
                transform 0.2s ease,
                background 0.2s ease;
        }

        .whatsapp-floating:hover {
            background: #1ebe5d;
            transform: translateY(-2px);
        }

        .whatsapp-floating-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            flex: 0 0 38px;
            background: #ffffff;
            border-radius: 50%;
        }

        .whatsapp-floating-icon svg {
            width: 23px;
            height: 23px;
            fill: #25d366;
        }

        .whatsapp-floating-text {
            white-space: nowrap;
        }

        @media (max-width: 760px) {
            main.container {
                padding-top: 25px;
                padding-bottom: 25px;
            }

            .form-row,
            .form-row-three,
            .location-row {
                grid-template-columns: 1fr;
            }

            .swap-location-wrapper {
                align-items: center;
                padding: 0;
            }

            .swap-location-button {
                transform: rotate(90deg);
            }

            .swap-location-button:hover {
                transform: rotate(270deg);
            }

            .card {
                padding: 21px 15px;
            }

            h1 {
                font-size: 25px;
            }

            .submit-button {
                width: 100%;
            }

            .result-row {
                grid-template-columns: 82px minmax(0, 1fr);
            }

            .truck-result {
                padding: 14px;
            }

            .truck-result video {
                height: 165px;
            }

            .truck-result-name {
                margin-top: 9px;
                font-size: 16px;
            }

            .truck-result-price {
                margin-top: 5px;
                font-size: 24px;
            }

            .order-grid,
            .insurance-options {
                grid-template-columns: 1fr;
            }

            .whatsapp-floating {
                right: 14px;
                bottom: 14px;
                min-height: 50px;
                padding: 7px 12px 7px 8px;
                font-size: 12px;
            }

            .whatsapp-floating-icon {
                width: 36px;
                height: 36px;
                flex-basis: 36px;
            }

            .whatsapp-floating-icon svg {
                width: 21px;
                height: 21px;
            }
        }
        .mosh-call-to-action-area {
            position: relative;
            z-index: 1;
            background-attachment: fixed;
        }

        .cta-content .section-heading {
            margin-bottom: 0;
        }

        .cta-content .section-heading h2 {
            margin-bottom: 40px;
            color: #fff;
            font-size: 44px;
        }

        .elementor-13 .elementor-element.elementor-element-7368efc.elementor-view-framed .elementor-icon,
        .elementor-13 .elementor-element.elementor-element-7368efc.elementor-view-default .elementor-icon {
            fill: #ea4335;
            color: #ea4335;
            border-color: #ea4335;
        }
        .btn-company-profile {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 26px;
            background: #ff3e41;
            color: #ffffff !important;
            font-weight: 700;
            font-size: 16px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(255, 62, 65, 0.35);
            transition: all 0.25s ease-in-out;
        }
    
        .btn-company-profile:hover {
            background: #d92f32;
            color: #ffffff !important;
            transform: translateY(-3px);
            box-shadow: 0 12px 26px rgba(255, 62, 65, 0.45);
            text-decoration: none;
        }
    
        .btn-company-profile i {
            font-size: 18px;
        }
    
        @media (max-width: 576px) {
            .btn-company-profile {
                width: 100%;
                padding: 13px 18px;
                font-size: 15px;
            }
        }
        
        .navbar .dropdown-menu {
            border-radius: 0;
            border: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar .dropdown-item {
            font-weight: 500;
            padding: 10px 18px;
        }

        .navbar .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #ff3e41;
        }

        .lang-flag {
            font-size: 18px;
            margin-right: 7px;
            line-height: 1;
        }
        .lang-flag-img {
            width: 22px;
            height: 15px;
            object-fit: cover;
            margin-right: 8px;
            border-radius: 2px;
        }


        /* ===== FULL RESPONSIVE FIX ===== */
        html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        img, svg {
            max-width: 100%;
        }

        body {
            word-wrap: break-word;
        }

        .navbar {
            min-height: 76px;
        }

        .navbar-brand {
            min-width: 0;
            margin-right: 0;
            white-space: nowrap;
        }

        .navbar-brand img {
            height: 58px;
            width: auto;
            flex: 0 0 auto;
        }

        .navbar-brand h2 {
            font-size: clamp(16px, 2.4vw, 28px);
            line-height: 1.1;
            margin: 0 !important;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .navbar-toggler {
            border: 0;
            box-shadow: none !important;
            flex: 0 0 auto;
        }

        .page-header {
            background-size: cover;
            background-position: center;
        }

        .page-header h1 {
            font-size: clamp(34px, 7vw, 64px);
            line-height: 1.1;
        }

        .about-image-box,
        .feature-image-box {
            min-height: 400px;
            height: 100%;
            overflow: hidden;
        }

        .about-image-box img,
        .feature-image-box img {
            width: 100%;
            height: 100%;
            min-height: 400px;
            object-fit: cover;
            display: block;
        }

        .about-text {
            padding: 48px;
        }

        .about-text h1,
        .feature h1 {
            font-size: clamp(28px, 4vw, 42px);
            line-height: 1.2;
        }

        .about-text p,
        .feature p {
            font-size: 16px;
            line-height: 1.7;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
        }

        .feature-icon {
            width: 60px;
            min-width: 60px;
            flex: 0 0 60px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .feature-icon svg {
            width: 60px;
            height: 60px;
            display: block;
            fill: #ff3e41;
            color: #ff3e41;
        }

        .feature-text-inner {
            min-width: 0;
        }

        @media (max-width: 991.98px) {
            .navbar {
                min-height: auto;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                padding: 0 !important;
            }

            .navbar-brand {
                flex: 1 1 0;
                width: auto;
                min-width: 0;
                max-width: calc(100% - 58px);
                padding: 9px 10px !important;
                gap: 8px;
            }

            .navbar-brand img {
                height: 42px;
            }

            .navbar-brand h2 {
                font-size: 15px;
            }

            .navbar-toggler {
                margin: 0 8px 0 0 !important;
                padding: 6px 8px;
            }

            .navbar-collapse {
                flex-basis: 100%;
                width: 100%;
                border-top: 1px solid #eeeeee;
            }

            .navbar-nav {
                padding: 14px 18px !important;
            }

            .navbar .nav-link {
                padding: 10px 0 !important;
            }

            .page-header {
                margin-bottom: 2.5rem !important;
                padding-top: 3rem !important;
                padding-bottom: 3rem !important;
            }

            .page-header .container {
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }

            .about-image-box,
            .feature-image-box {
                min-height: auto;
                height: auto;
            }

            .about-image-box img,
            .feature-image-box img {
                height: auto;
                min-height: 0;
                object-fit: contain;
            }

            .about-text {
                padding: 32px 24px;
            }

            .feature.py-5 {
                padding-top: 2.5rem !important;
                padding-bottom: 2.5rem !important;
            }
        }

        @media (max-width: 575.98px) {
            .navbar-brand {
                max-width: calc(100% - 52px);
                padding: 8px 8px !important;
                gap: 6px;
            }

            .navbar-brand img {
                height: 34px;
            }

            .navbar-brand h2 {
                font-size: 12px;
                letter-spacing: 0;
            }

            .navbar-toggler {
                margin-right: 6px !important;
                padding: 5px 7px;
            }

            .container-fluid.py-5 {
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }

            .page-header {
                margin-bottom: 1.5rem !important;
            }

            .about-text {
                padding: 26px 18px;
            }

            .about-text h1,
            .feature h1 {
                margin-bottom: 1.5rem !important;
            }

            .btn-company-profile {
                width: 100%;
                text-align: center;
                white-space: normal;
            }

            .feature-item,
            .feature .d-flex {
                align-items: flex-start;
            }

            .feature .fa-3x {
                font-size: 2em;
            }

            .feature-icon {
                width: 42px;
                min-width: 42px;
                flex-basis: 42px;
            }

            .feature-icon svg {
                width: 42px;
                height: 42px;
            }

            .ms-4 {
                margin-left: 1rem !important;
            }
        }
