/* ==========================================================================
   pages/instant-quotation.css — public instant quote page
   Extracted from the page's inline <style>; purple gradients flattened to
   the enterprise blue used across the redesigned app.
   ========================================================================== */
        :root {
            --brand-black: #111111;
            --brand-ink: #1b1b1b;
            --brand-muted: #6b6b6b;
            --surface: #f3f3f3;
            --surface-border: #d8d8d8;
            --surface-input: #ffffff;
            --danger: #cc2a2a;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background: #ffffff;
            color: var(--brand-ink);
            font-family: "Times New Roman", Times, serif;
            line-height: 1.3;
        }

        .wrap {
            max-width: 980px;
            margin: 0 auto;
            padding: 18px 14px 28px;
        }

        .logo-band {
            border: 3px solid var(--brand-black);
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 8px 12px;
            margin-bottom: 18px;
            background: #fff;
        }

        .logo-mark {
            background: var(--brand-black);
            color: #fff;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 20px;
            letter-spacing: 5px;
            padding: 10px 10px;
            line-height: 1;
        }

        .logo-text {
            font-family: Arial, Helvetica, sans-serif;
            font-weight: 800;
            font-size: 28px;
            letter-spacing: 1px;
            color: #050505;
            line-height: 1;
        }

        .logo-text small {
            display: block;
            text-align: right;
            font-size: 18px;
            margin-top: 2px;
            font-weight: 500;
        }

        .card {
            background: var(--surface);
            border: 1px solid var(--surface-border);
            border-radius: 22px;
            padding: 24px;
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
        }

        h1 {
            margin: 0;
            text-align: center;
            font-size: 48px;
            font-family: Georgia, "Times New Roman", serif;
            color: var(--brand-black);
        }

        .subtitle {
            text-align: center;
            margin: 8px 0 18px;
            font-size: 34px;
            font-style: italic;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .field {
            margin-top: 12px;
        }

        label {
            display: block;
            font-weight: 700;
            font-size: 26px;
            margin-bottom: 8px;
        }

        .req {
            color: var(--danger);
        }

        input,
        select,
        button,
        textarea {
            width: 100%;
            border: 1px solid #bdbdbd;
            border-radius: 999px;
            background: var(--surface-input);
            font-family: inherit;
            font-size: 24px;
            padding: 14px 18px;
            color: var(--brand-ink);
        }

        .iti {
            width: 100%;
            display: block;
            position: relative;
        }

        .iti__flag-container {
            z-index: 2;
        }

        .iti input[type="tel"] {
            width: 100%;
            padding-left: 92px !important;
            border-radius: 999px;
            font-size: 24px;
        }

        .iti--separate-dial-code .iti__selected-flag {
            border-radius: 999px 0 0 999px;
            background: #fff;
            border-right: 1px solid #d4d4d4;
            padding: 0 10px;
        }

        .iti__country-list {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            list-style: none !important;
            margin: 0 !important;
            padding: 6px 0 !important;
            position: absolute !important;
            left: 0;
            top: calc(100% + 6px);
            min-width: 280px;
            max-height: 260px;
            overflow-y: auto;
            background: #fff;
            border: 1px solid #d4d4d4;
            border-radius: 12px;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
            z-index: 99999;
        }

        .iti__country-list.iti__hide {
            display: none !important;
        }

        .iti__country {
            list-style: none !important;
            padding: 8px 12px;
            line-height: 1.2;
        }

        .iti__country:hover,
        .iti__country.iti__highlight {
            background: #f2f6ff;
        }

        select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23343434' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: calc(100% - 14px) 50%;
            background-size: 14px;
            padding-right: 40px;
        }

        input[type="date"] {
            background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
            border: 1px solid #ababab;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
        }

        input[type="date"]::-webkit-calendar-picker-indicator {
            cursor: pointer;
            border-radius: 50%;
            padding: 4px;
            background-color: #efefef;
        }

        textarea {
            border-radius: 16px;
            min-height: 100px;
            resize: vertical;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: 2px solid #2f2f2f;
            outline-offset: 1px;
        }

        .stops-area {
            margin-top: 10px;
            display: grid;
            gap: 8px;
        }

        .stop-row {
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 8px;
            align-items: center;
        }

        .icon-btn {
            border-radius: 50%;
            width: 36px;
            height: 36px;
            padding: 0;
            background: #fff;
            border: 1px solid #b7b7b7;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
        }

        .row-meta {
            margin-top: 2px;
            color: var(--brand-muted);
            font-size: 20px;
        }

        .vehicle-preview {
            display: none;
            width: 100%;
            margin-top: 14px;
            border: 1px solid #d4d4d4;
            background: #fff;
            border-radius: 16px;
            padding: 18px 20px;
            align-items: stretch;
            gap: 22px 28px;
            flex-wrap: wrap;
        }

        .vehicle-preview-copy {
            flex: 1 1 240px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px 0;
        }

        .vehicle-preview-line {
            font-size: 22px;
            line-height: 1.35;
            color: var(--brand-ink);
        }

        .vehicle-preview-line--name {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.02em;
        }

        .vehicle-preview-media {
            flex: 1 1 260px;
            max-width: 100%;
            min-width: 200px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .vehicle-preview-media img {
            width: 100%;
            max-width: min(100%, 440px);
            height: auto;
            min-height: 180px;
            max-height: 280px;
            object-fit: cover;
            border-radius: 14px;
            border: 1px solid #ddd;
            display: block;
        }

        .helper {
            margin-top: 8px;
            color: #414141;
            font-size: 19px;
        }

        .extra-field {
            display: none;
        }

        .actions {
            margin-top: 20px;
            display: grid;
            grid-template-columns: 1fr;
        }

        .submit-btn {
            background: #0f0f11;
            color: #fff;
            border: none;
            border-radius: 999px;
            padding: 14px 26px;
            font-size: 30px;
            font-weight: 700;
            cursor: pointer;
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .feedback {
            margin-top: 14px;
            font-size: 21px;
            min-height: 30px;
        }

        .feedback.error {
            color: #b02121;
        }

        .feedback.success {
            color: #1e7e35;
        }

        .pac-container {
            z-index: 9999;
            font-family: "Times New Roman", Times, serif;
        }

        @media (max-width: 900px) {
            h1 {
                font-size: 38px;
            }

            .subtitle {
                font-size: 25px;
            }

            label,
            input,
            select,
            .submit-btn,
            .helper,
            .feedback,
            .vehicle-preview-line {
                font-size: 18px;
            }

            .iti input[type="tel"] {
                font-size: 18px;
            }

            .vehicle-preview-line--name {
                font-size: 22px;
            }

            .vehicle-preview-media {
                justify-content: center;
            }

            .vehicle-preview-media img {
                max-width: 100%;
                min-height: 160px;
                max-height: 220px;
            }

            .vehicle-preview {
                flex-direction: column;
            }

            .vehicle-preview-media {
                max-width: 100%;
            }

            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }

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

            .logo-text {
                font-size: 20px;
            }

            .logo-text small {
                font-size: 14px;
            }
        }
    
