/* ================================================================
   QUICK QUOTE CHATBOT WIDGET — LimoPress Warm Luxury Theme
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables — Scoped to widget to prevent host-page conflicts ─── */
.qq-widget,
.qq-fab {
    --qq-font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --qq-bg-page: #faf8f4;
    --qq-bg-panel: #ffffff;
    --qq-bg-card: #f9f6f1;
    --qq-bg-card-hover: #f3efe7;
    --qq-border-subtle: rgba(180, 160, 120, 0.12);
    --qq-border-card: rgba(180, 160, 120, 0.15);
    --qq-border-card-hover: rgba(200, 169, 78, 0.4);
    --qq-text-primary: #2c2a25;
    --qq-text-secondary: #7a7568;
    --qq-text-muted: #aba496;
    --qq-accent: #c8a94e;
    --qq-accent-soft: rgba(200, 169, 78, 0.1);
    --qq-accent-glow: rgba(200, 169, 78, 0.18);
    --qq-gold: #c8a94e;
    --qq-gold-soft: rgba(200, 169, 78, 0.1);
    --qq-icon-airport: #7c6b3a;
    --qq-icon-point: #8b7542;
    --qq-icon-hourly: #6b8a5e;
    --qq-icon-event: #a68c3c;
    --qq-icon-call: #9c7a50;
    --qq-bubble-bot-bg: #f5f2ec;
    --qq-bubble-bot-border: rgba(180, 160, 120, 0.1);
    --qq-bubble-user-bg: #2c2a25;
    --qq-bubble-user-text: #faf8f4;
    --qq-shadow-sm: 0 1px 4px rgba(100, 80, 40, 0.06);
    --qq-shadow-md: 0 4px 16px rgba(100, 80, 40, 0.08);
    --qq-shadow-lg: 0 12px 40px rgba(100, 80, 40, 0.12);
    --qq-shadow-widget: 0 20px 60px rgba(60, 50, 30, 0.18), 0 0 0 1px rgba(200, 169, 78, 0.08);
    --qq-radius-sm: 8px;
    --qq-radius-md: 12px;
    --qq-radius-lg: 18px;
    --qq-radius-full: 50%;
    --qq-widget-width: 520px;
    --qq-widget-height: 760px;
    --qq-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --qq-transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --qq-transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset within widget scope ─── */
.qq-widget *,
.qq-widget *::before,
.qq-widget *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Defensive form controls reset for hostile themes/plugins */
.qq-widget input,
.qq-widget button,
.qq-widget textarea,
.qq-widget select,
.qq-widget label {
    font-family: var(--qq-font);
    line-height: 1.2;
    letter-spacing: normal;
    text-transform: none;
    min-height: 0;
    max-height: none;
}

/* ─── Floating Action Button (FAB) — Gold Pill ─── */
.qq-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99998;
    height: 50px;
    padding: 0 20px 0 16px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #2c2a25 0%, #3d3a33 100%);
    color: #f0ece4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 6px 24px rgba(44, 42, 37, 0.35);
    transition: transform var(--qq-transition-smooth), box-shadow var(--qq-transition-smooth);
    animation: qq-fab-pulse 3s ease-in-out infinite;
    font-family: var(--qq-font);
}

.qq-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(44, 42, 37, 0.45), 0 0 0 6px rgba(44, 42, 37, 0.08);
}

.qq-fab:active {
    transform: scale(0.97);
}

.qq-fab svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--qq-transition-smooth);
}

.qq-fab.is-open svg {
    transform: rotate(90deg);
}

.qq-fab-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.qq-fab.is-open .qq-fab-label {
    display: none;
}

.qq-fab.is-open {
    width: 50px;
    padding: 0;
    border-radius: 50%;
}

@keyframes qq-fab-pulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(44, 42, 37, 0.35), 0 0 0 0 rgba(44, 42, 37, 0.2);
    }

    50% {
        box-shadow: 0 6px 24px rgba(44, 42, 37, 0.35), 0 0 0 12px rgba(44, 42, 37, 0);
    }
}

/* ─── Widget Container ─── */
.qq-widget {
    position: fixed;
    bottom: 104px;
    right: 28px;
    z-index: 99999;
    width: var(--qq-widget-width);
    max-height: var(--qq-widget-height);
    font-family: var(--qq-font);
    border-radius: var(--qq-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--qq-bg-panel);
    border: 1px solid var(--qq-border-subtle);
    box-shadow: var(--qq-shadow-widget);
    transform-origin: bottom right;
    transition: transform var(--qq-transition-smooth), opacity var(--qq-transition-smooth);
}

.qq-widget.is-hidden {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
    pointer-events: none;
}

.qq-widget.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ─── Header ─── */
.qq-header {
    position: relative;
    padding: 18px 20px 14px;
    background: linear-gradient(180deg, #f5f2ec 0%, var(--qq-bg-panel) 100%);
    border-bottom: 1px solid var(--qq-border-subtle);
    flex-shrink: 0;
}

.qq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--qq-gold), transparent);
    opacity: 0.4;
}

.qq-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

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

.qq-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2c2a25, #3d3a33);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qq-brand-icon svg {
    width: 17px;
    height: 17px;
    color: #f0ece4;
}

.qq-brand-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--qq-text-primary);
}

.qq-header-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qq-reset-btn,
.qq-close-btn {
    width: 30px;
    height: 30px;
    border-radius: var(--qq-radius-full);
    border: 1px solid var(--qq-border-card);
    background: transparent;
    color: var(--qq-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--qq-transition-fast);
}

.qq-reset-btn:hover,
.qq-close-btn:hover {
    background: var(--qq-accent-soft);
    color: var(--qq-gold);
    border-color: var(--qq-border-card-hover);
}

.qq-reset-btn:active {
    transform: rotate(180deg);
}

.qq-reset-btn svg {
    width: 14px;
    height: 14px;
}

.qq-close-btn svg {
    width: 14px;
    height: 14px;
}

/* Trust bar — hidden by default (removed per client request) */
.qq-trust-bar {
    display: none;
}

/* ─── Chat Body ─── */
.qq-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(180, 160, 120, 0.15) transparent;
    background: var(--qq-bg-panel);
}

.qq-body::-webkit-scrollbar {
    width: 4px;
}

.qq-body::-webkit-scrollbar-thumb {
    background: rgba(180, 160, 120, 0.2);
    border-radius: 4px;
}

/* ─── Chat Bubbles ─── */
.qq-bubble {
    max-width: 88%;
    position: relative;
    animation: qq-bubble-in 0.4s var(--qq-transition-smooth) both;
}

.qq-bubble-bot {
    align-self: flex-start;
    background: var(--qq-bubble-bot-bg);
    border: 1px solid var(--qq-bubble-bot-border);
    border-radius: 4px 18px 18px 18px;
    padding: 13px 17px;
}

.qq-bubble-user {
    align-self: flex-end;
    background: var(--qq-bubble-user-bg);
    border-radius: 18px 4px 18px 18px;
    padding: 11px 18px;
}

.qq-bubble-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--qq-text-primary);
}

.qq-bubble-user .qq-bubble-text {
    color: var(--qq-bubble-user-text);
    font-weight: 500;
    font-size: 12.5px;
}

/* Typing indicator */
.qq-typing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}

.qq-typing-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--qq-radius-full);
    background: var(--qq-text-muted);
    animation: qq-typing-bounce 1.4s infinite ease-in-out both;
}

.qq-typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.qq-typing-dot:nth-child(2) {
    animation-delay: 0.16s;
}

.qq-typing-dot:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes qq-typing-bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    40% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

@keyframes qq-bubble-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ─── Service Option Cards — 2-Column Grid ─── */
.qq-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.qq-option-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 10px;
    padding: 10px 12px;
    min-height: 78px;
    background: var(--qq-bg-card);
    border: 1px solid var(--qq-border-card);
    border-top: 2px solid var(--qq-gold);
    border-radius: var(--qq-radius-md);
    cursor: pointer;
    transition: all var(--qq-transition-fast);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    animation: qq-card-stagger 0.4s var(--qq-transition-smooth) both;
}

.qq-option-card:nth-child(1) {
    animation-delay: 0.05s;
}

.qq-option-card:nth-child(2) {
    animation-delay: 0.10s;
}

.qq-option-card:nth-child(3) {
    animation-delay: 0.15s;
}

.qq-option-card:nth-child(4) {
    animation-delay: 0.20s;
}

.qq-option-card:nth-child(n+5) {
    animation-delay: 0.25s;
}

.qq-option-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 55%;
    justify-self: center;
}

@keyframes qq-card-stagger {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qq-option-card:hover {
    border-color: var(--qq-border-card-hover);
    background: var(--qq-bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 78, 0.1);
}

.qq-option-card:active {
    transform: scale(0.97);
}

/* Option icon */
.qq-option-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--qq-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--qq-transition-fast);
}

.qq-option-card:hover .qq-option-icon {
    transform: scale(1.1);
}

.qq-option-icon svg {
    width: 16px;
    height: 16px;
}

.qq-option-icon.airport {
    background: rgba(200, 169, 78, 0.1);
    color: var(--qq-icon-airport);
}

.qq-option-icon.point-to-point {
    background: rgba(200, 169, 78, 0.1);
    color: var(--qq-icon-point);
}

.qq-option-icon.hourly {
    background: rgba(107, 138, 94, 0.1);
    color: var(--qq-icon-hourly);
}

.qq-option-icon.special-event {
    background: rgba(166, 140, 60, 0.1);
    color: var(--qq-icon-event);
}

.qq-option-icon.call {
    background: rgba(156, 122, 80, 0.1);
    color: var(--qq-icon-call);
}

/* Option text */
.qq-option-text {
    flex: 1;
    min-width: 0;
}

.qq-option-title {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--qq-text-primary);
    margin-bottom: 1px;
    line-height: 1.25;
}

.qq-option-desc {
    font-size: 10.5px;
    font-weight: 400;
    color: var(--qq-text-secondary);
    line-height: 1.3;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Chevron arrow — hidden in grid mode */
.qq-option-arrow {
    display: none;
}

/* ─── Chip / Pill Buttons (airport selection, direction, etc.) ─── */
.qq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    animation: qq-bubble-in 0.35s var(--qq-transition-smooth) both;
}

.qq-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    font-family: var(--qq-font);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--qq-text-primary);
    background: var(--qq-bg-panel);
    border: 1px solid var(--qq-border-card);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--qq-transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.qq-chip:hover {
    background: var(--qq-bg-card-hover);
    border-color: var(--qq-border-card-hover);
    box-shadow: 0 2px 8px rgba(100, 80, 40, 0.06);
}

.qq-chip:active {
    transform: scale(0.96);
}

/* ─── Address Input ─── */
.qq-address-input-wrap {
    position: relative;
    animation: qq-bubble-in 0.35s var(--qq-transition-smooth) both;
}

.qq-address-input {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--qq-font);
    font-size: 14px;
    font-weight: 400;
    color: var(--qq-text-primary);
    background: var(--qq-bg-panel);
    border: 1px solid var(--qq-border-card);
    border-radius: var(--qq-radius-sm);
    outline: none;
    transition: border-color var(--qq-transition-fast), box-shadow var(--qq-transition-fast);
}

.qq-address-input::placeholder {
    color: var(--qq-text-muted);
}

.qq-address-input:focus {
    border-color: var(--qq-text-primary);
    box-shadow: 0 0 0 3px rgba(26, 29, 39, 0.06);
}

/* ─── Autocomplete Dropdown ─── */
.qq-autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--qq-bg-panel);
    border: 1px solid var(--qq-border-card);
    border-top: none;
    border-radius: 0 0 var(--qq-radius-sm) var(--qq-radius-sm);
    max-height: 180px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: var(--qq-shadow-md);
}

.qq-autocomplete-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background var(--qq-transition-fast);
    border-bottom: 1px solid var(--qq-border-subtle);
}

.qq-autocomplete-item:last-child {
    border-bottom: none;
}

.qq-autocomplete-item:hover {
    background: var(--qq-bg-card);
}

.qq-autocomplete-item svg {
    width: 16px;
    height: 16px;
    color: var(--qq-text-muted);
    flex-shrink: 0;
}

.qq-autocomplete-name {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--qq-text-primary);
}

.qq-autocomplete-sub {
    font-size: 11.5px;
    color: var(--qq-text-secondary);
}

/* ─── Calendar — Luxury Compact ─── */
.qq-calendar {
    background: var(--qq-bg-panel);
    border: 1px solid var(--qq-border-card);
    border-radius: var(--qq-radius-md);
    padding: 14px;
    animation: qq-bubble-in 0.35s var(--qq-transition-smooth) both;
    box-shadow: var(--qq-shadow-sm);
}

.qq-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--qq-border-subtle);
}

.qq-cal-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--qq-text-primary);
    letter-spacing: 0.5px;
}

.qq-cal-nav {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid var(--qq-border-card);
    background: transparent;
    color: var(--qq-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--qq-font);
    font-size: 13px;
    transition: all var(--qq-transition-fast);
}

.qq-cal-nav:hover {
    background: var(--qq-gold-soft);
    color: var(--qq-gold);
    border-color: var(--qq-border-card-hover);
}

.qq-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.qq-cal-dow {
    font-size: 10px;
    font-weight: 700;
    color: var(--qq-text-muted);
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qq-cal-day {
    padding: 6px 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--qq-text-primary);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--qq-transition-fast);
    border: none;
    background: transparent;
    font-family: var(--qq-font);
}

.qq-cal-day:hover {
    background: var(--qq-gold-soft);
    color: var(--qq-gold);
}

.qq-cal-day.is-today {
    background: var(--qq-gold);
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
}

.qq-cal-day.is-disabled {
    color: var(--qq-text-muted);
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.qq-cal-day.is-empty {
    cursor: default;
    pointer-events: none;
}

/* ─── Combined Trip Dates Form ─── */
.qq-trip-form {
    background: var(--qq-bg-panel);
    border: 1px solid var(--qq-border-card);
    border-radius: var(--qq-radius-md);
    padding: 0;
    animation: qq-bubble-in 0.35s var(--qq-transition-smooth) both;
    box-shadow: var(--qq-shadow-sm);
}

.qq-tf-tabs {
    display: flex;
    border-bottom: 1px solid var(--qq-border-subtle);
}

.qq-tf-tab {
    flex: 1;
    padding: 8px;
    font-family: var(--qq-font);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-align: center;
    cursor: pointer;
    border: none;
    background: var(--qq-bg-card);
    color: var(--qq-text-muted);
    transition: all .2s;
    border-bottom: 2px solid transparent;
}

.qq-tf-tab.active {
    background: var(--qq-bg-panel);
    color: var(--qq-gold);
    border-bottom-color: var(--qq-gold);
}

.qq-tf-panel {
    display: none;
    padding: 10px;
}

.qq-tf-panel.active {
    display: block;
}

/* Compact calendar inside trip form */
.qq-trip-form .qq-cal-header {
    margin-bottom: 6px;
    padding-bottom: 6px;
}

.qq-trip-form .qq-cal-title {
    font-size: 12px;
}

.qq-trip-form .qq-cal-grid {
    gap: 1px;
}

.qq-trip-form .qq-cal-day {
    padding: 4px 0;
    font-size: 11px;
}

.qq-trip-form .qq-cal-dow {
    font-size: 9px;
    padding: 2px 0;
}

.qq-trip-form .qq-cal-nav {
    width: 22px;
    height: 22px;
    font-size: 11px;
}

.qq-tf-time {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 4px;
    padding: 14px;
    border: 1.5px solid var(--qq-border-card);
    background: var(--qq-bg-card);
    border-radius: var(--qq-radius-sm);
}

.qq-tf-time-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--qq-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: auto;
}

.qq-trip-form .qq-time-select {
    padding: 8px 10px;
    font-size: 16px;
    min-width: 52px;
    border-radius: 8px;
    border: 1.5px solid var(--qq-border-card);
    background: var(--qq-bg-panel);
    font-weight: 600;
}

.qq-trip-form .qq-time-sep {
    font-size: 18px;
    font-weight: 800;
}

.qq-tf-confirm {
    display: flex;
    padding: 12px;
}

.qq-tf-confirm button {
    flex: 1;
    padding: 12px;
    font-family: var(--qq-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #fff;
    background: var(--qq-text-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
}

.qq-tf-confirm button:hover {
    opacity: .85;
    transform: scale(1.02);
}

.qq-tf-confirm button:disabled {
    opacity: .4;
    cursor: not-allowed;
    transform: none;
}

.qq-tf-status {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    background: var(--qq-bg-card);
    border-top: 1px solid var(--qq-border-subtle);
    font-size: 11px;
    font-weight: 500;
    color: var(--qq-text-secondary);
}

.qq-tf-status-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.qq-tf-status-item .check {
    color: var(--qq-gold);
    font-weight: 700;
}

.qq-tf-status-item .pending {
    color: var(--qq-text-muted);
}

/* ─── Time Picker — Dial Card ─── */
.qq-time-picker {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    background: var(--qq-bg-panel);
    border: 1px solid var(--qq-border-card);
    border-radius: var(--qq-radius-md);
    animation: qq-bubble-in 0.35s var(--qq-transition-smooth) both;
    box-shadow: var(--qq-shadow-sm);
}

.qq-time-select {
    padding: 8px 6px;
    font-family: var(--qq-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--qq-text-primary);
    background: var(--qq-bg-card);
    border: 1px solid var(--qq-border-card);
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    text-align: center;
    min-width: 52px;
    transition: border-color var(--qq-transition-fast);
}

.qq-time-select:focus {
    border-color: var(--qq-gold);
}

.qq-time-sep {
    font-size: 20px;
    font-weight: 700;
    color: var(--qq-gold);
}

.qq-set-btn {
    padding: 8px 16px;
    font-family: var(--qq-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    background: var(--qq-text-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--qq-transition-fast);
    margin-left: auto;
}

.qq-set-btn:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

/* ─── Passenger Counter ─── */
.qq-passenger-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: qq-bubble-in 0.35s var(--qq-transition-smooth) both;
}

.qq-pax-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--qq-text-primary);
    flex: 1;
}

.qq-pax-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--qq-radius-full);
    border: 1px solid var(--qq-border-card);
    background: transparent;
    color: var(--qq-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: var(--qq-font);
    transition: all var(--qq-transition-fast);
}

.qq-pax-btn:hover {
    background: var(--qq-bg-card);
}

.qq-pax-count {
    font-size: 18px;
    font-weight: 700;
    color: var(--qq-text-primary);
    min-width: 28px;
    text-align: center;
}

/* ─── Vehicle Cards — Vertical with Large Photos ─── */
.qq-vehicles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    animation: qq-bubble-in 0.4s var(--qq-transition-smooth) both;
}

.qq-vehicle-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--qq-border-card);
    border-radius: var(--qq-radius-md);
    overflow: hidden;
    transition: all var(--qq-transition-fast);
    background: var(--qq-bg-panel);
}

.qq-vehicle-card:hover {
    border-color: var(--qq-border-card-hover);
    box-shadow: 0 6px 20px rgba(200, 169, 78, 0.12);
    transform: translateY(-2px);
}

.qq-vehicle-img-wrap {
    position: relative;
    width: 100%;
    height: 120px;
    background: var(--qq-bg-card);
    overflow: hidden;
}

.qq-vehicle-img-wrap .qq-vehicle-img,
.qq-vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 0;
    cursor: default;
    transition: transform 0.3s ease;
}

.qq-vehicle-card:hover .qq-vehicle-img {
    transform: scale(1.05);
    z-index: 1;
}

.qq-vehicle-body {
    padding: 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.qq-vehicle-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--qq-text-primary);
    margin-bottom: 2px;
}

.qq-vehicle-cat {
    font-size: 9px;
    font-weight: 600;
    color: var(--qq-gold);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 6px;
}

.qq-vehicle-badge {
    display: none;
}

.qq-vehicle-features {
    display: none;
}

.qq-vehicle-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: var(--qq-text-secondary);
    margin-bottom: 8px;
}

.qq-vehicle-meta span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.qq-vehicle-select-btn {
    width: 100%;
    padding: 9px;
    font-family: var(--qq-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #c8a94e, #a8893a);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--qq-transition-fast);
    margin-top: auto;
}

.qq-vehicle-select-btn:hover {
    background: linear-gradient(135deg, #d4b85a, #b89944);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 169, 78, 0.3);
}

/* ─── Trip Summary Card ─── */
.qq-trip-summary {
    background: var(--qq-bg-panel);
    border: 1px solid var(--qq-border-card);
    border-radius: var(--qq-radius-md);
    padding: 18px 20px;
    animation: qq-bubble-in 0.35s var(--qq-transition-smooth) both;
}

.qq-trip-summary-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--qq-text-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qq-trip-row {
    display: flex;
    padding: 7px 0;
    border-bottom: 1px solid var(--qq-border-subtle);
}

.qq-trip-row:last-child {
    border-bottom: none;
}

.qq-trip-label {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--qq-text-muted);
    width: 100px;
    flex-shrink: 0;
}

.qq-trip-value {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--qq-text-primary);
    flex: 1;
}

/* ─── Info / Trust Badge ─── */
.qq-info-badge {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-radius: var(--qq-radius-sm);
    animation: qq-bubble-in 0.35s var(--qq-transition-smooth) both;
}

.qq-info-badge-icon {
    width: 20px;
    height: 20px;
    border-radius: var(--qq-radius-full);
    background: #10b981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 1px;
}

.qq-info-badge-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--qq-text-secondary);
}

.qq-info-badge-text strong {
    color: var(--qq-text-primary);
}

/* ─── Input + Button Row ─── */
.qq-input-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
    animation: qq-bubble-in 0.35s var(--qq-transition-smooth) both;
}

.qq-input-field {
    flex: 1;
    padding: 12px 16px;
    font-family: var(--qq-font);
    font-size: 14px;
    color: var(--qq-text-primary);
    background: var(--qq-bg-panel);
    border: 1px solid var(--qq-border-card);
    border-radius: var(--qq-radius-sm);
    outline: none;
    transition: border-color var(--qq-transition-fast), box-shadow var(--qq-transition-fast);
}

.qq-input-field::placeholder {
    color: var(--qq-text-muted);
}

.qq-input-field:focus {
    border-color: var(--qq-text-primary);
    box-shadow: 0 0 0 3px rgba(26, 29, 39, 0.06);
}

.qq-next-btn {
    padding: 12px 22px;
    font-family: var(--qq-font);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #ef4444;
    border: none;
    border-radius: var(--qq-radius-sm);
    cursor: pointer;
    transition: all var(--qq-transition-fast);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.qq-next-btn:hover {
    opacity: 0.9;
}

/* ─── Contact Card ─── */
.qq-contact-card {
    background: var(--qq-bg-panel);
    border: 1px solid var(--qq-border-card);
    border-radius: var(--qq-radius-md);
    padding: 24px 20px;
    text-align: center;
    animation: qq-bubble-in 0.35s var(--qq-transition-smooth) both;
}

.qq-contact-label {
    font-size: 13px;
    color: var(--qq-text-muted);
    margin-bottom: 10px;
}

.qq-contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--qq-text-primary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color var(--qq-transition-fast);
}

.qq-contact-phone svg {
    width: 20px;
    height: 20px;
    color: #8b5cf6;
}

.qq-contact-phone:hover {
    color: #8b5cf6;
}

.qq-contact-divider {
    font-size: 12px;
    color: var(--qq-text-muted);
    margin-bottom: 8px;
}

.qq-contact-email {
    font-size: 16px;
    font-weight: 600;
    color: var(--qq-text-primary);
    text-decoration: none;
    transition: color var(--qq-transition-fast);
}

.qq-contact-email:hover {
    color: #3b82f6;
}

/* ═══════════════════════════════════════════════════════════
   CONFIRMATION PAGE — Simple Checklist (per boss request)
   ═══════════════════════════════════════════════════════════ */

.qq-confirm {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    background: var(--qq-bg-panel);
    animation: qq-cf-in 0.45s var(--qq-transition-smooth) both;
}

@keyframes qq-cf-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qq-cf-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px 28px;
    width: 100%;
}

/* ── Top: gold bar + check circle + title ── */
.qq-cf-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
    padding-top: 10px;
    width: 100%;
    position: relative;
}

.qq-cf-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 5%, var(--qq-gold) 30%, var(--qq-gold) 70%, transparent 95%);
    border-radius: 0 0 4px 4px;
    opacity: 0.7;
}

.qq-cf-check-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d4b44a 0%, #b89a3e 50%, #a08636 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 22px;
    box-shadow:
        0 8px 24px rgba(200, 169, 78, 0.3),
        0 0 0 8px rgba(200, 169, 78, 0.08);
    animation: qq-cf-pop 0.55s 0.05s var(--qq-transition-bounce) both;
    flex-shrink: 0;
}

.qq-cf-check-circle svg {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

@keyframes qq-cf-pop {
    from {
        opacity: 0;
        transform: scale(0.35);
    }

    65% {
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.qq-cf-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--qq-text-primary);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

/* ── Checklist rows ── */
.qq-cf-checklist {
    width: 100%;
    margin-bottom: 32px;
}

.qq-cf-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--qq-border-subtle);
    animation: qq-cf-row-in 0.35s var(--qq-transition-smooth) both;
}

.qq-cf-row:first-child {
    animation-delay: 0.25s;
}

.qq-cf-row:nth-child(2) {
    animation-delay: 0.4s;
}

.qq-cf-row:last-child {
    border-bottom: none;
}

@keyframes qq-cf-row-in {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.qq-cf-check {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: rgba(200, 169, 78, 0.12);
    color: var(--qq-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 1px;
    flex-shrink: 0;
}

.qq-cf-label {
    font-size: 14px;
    line-height: 1.55;
    color: var(--qq-text-primary);
    font-weight: 500;
}

/* ── Buttons ── */
.qq-cf-btns {
    display: flex;
    gap: 10px;
    width: 100%;
}

.qq-cf-btn-primary {
    flex: 1;
    padding: 14px 16px;
    font-family: var(--qq-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #c8a94e 0%, #b89a3e 100%);
    border: none;
    border-radius: var(--qq-radius-sm);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--qq-transition-fast), transform var(--qq-transition-fast), box-shadow var(--qq-transition-fast);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(200, 169, 78, 0.25);
}

.qq-cf-btn-primary:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(200, 169, 78, 0.35);
}

.qq-cf-btn-outline {
    flex: 1;
    padding: 14px 16px;
    font-family: var(--qq-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--qq-text-primary);
    background: transparent;
    border: 1.5px solid var(--qq-border-card);
    border-radius: var(--qq-radius-sm);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--qq-transition-fast), background var(--qq-transition-fast), transform var(--qq-transition-fast);
    white-space: nowrap;
}

.qq-cf-btn-outline:hover {
    border-color: var(--qq-gold);
    background: var(--qq-bg-card);
    transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .qq-cf-inner {
        padding: 0 18px 22px;
    }

    .qq-cf-check-circle {
        width: 60px;
        height: 60px;
    }

    .qq-cf-check-circle svg {
        width: 26px;
        height: 26px;
    }

    .qq-cf-heading {
        font-size: 19px;
    }
}

/* ─── SMS Opt-in Checkbox ─── */
.qq-phone-optin-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: stretch;
}

.qq-phone-optin-row .qq-input-field,
.qq-phone-optin-row .qq-next-btn {
    height: 48px;
}

.qq-phone-optin-row .qq-input-error,
.qq-phone-optin-row .qq-optin-label {
    grid-column: 1 / -1;
}

.qq-optin-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    padding: 12px 14px;
    background: var(--qq-bg-card);
    border: 1px solid var(--qq-border-card);
    border-radius: var(--qq-radius-sm);
    cursor: pointer;
    transition: all var(--qq-transition-fast);
}

.qq-optin-label:hover {
    border-color: var(--qq-border-card-hover);
    background: var(--qq-bg-card-hover);
}

.qq-optin-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--qq-gold);
    cursor: pointer;
}

.qq-optin-text {
    font-size: 11.5px;
    line-height: 1.5;
    color: var(--qq-text-secondary);
    font-weight: 400;
}

/* ─── Google Review Badge ─── */
.qq-google-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin: 0 16px 8px;
    background: var(--qq-bg-card);
    border-radius: 10px;
    border: 1px solid var(--qq-border-subtle);
    flex-shrink: 0;
}

.qq-gbadge-rating {
    font-size: 26px;
    font-weight: 800;
    color: var(--qq-gold);
    line-height: 1;
}

.qq-gbadge-info {
    flex: 1;
}

.qq-gbadge-stars {
    color: #f5b731;
    font-size: 14px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.qq-gbadge-text {
    font-size: 10px;
    color: var(--qq-text-muted);
    font-weight: 500;
}

.qq-gbadge-logo {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ─── Footer ─── */
.qq-footer {
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid var(--qq-border-subtle);
    flex-shrink: 0;
    background: var(--qq-bg-panel);
}

.qq-footer-text {
    font-size: 10px;
    font-weight: 500;
    color: var(--qq-text-muted);
    letter-spacing: 0.3px;
}

.qq-footer-text a {
    color: var(--qq-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--qq-transition-fast);
}

.qq-footer-text a:hover {
    color: var(--qq-text-primary);
}

/* ─── Call Us: Mobile Only ─── */
.qq-option-card.call-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .qq-option-card.call-mobile-only {
        display: flex;
    }
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
    .qq-widget {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-height: 100dvh;
        border-radius: 18px 18px 0 0;
    }

    .qq-fab {
        bottom: 20px;
        right: 16px;
        height: 44px;
        padding: 0 16px 0 12px;
    }

    .qq-fab-label {
        font-size: 12px;
    }

    .qq-fab svg {
        width: 18px;
        height: 18px;
    }

    .qq-options {
        grid-template-columns: 1fr;
    }

    .qq-option-card:last-child:nth-child(odd) {
        max-width: 100%;
    }

    .qq-vehicle-img {
        height: 130px;
    }

    .qq-google-badge {
        margin: 0 10px 6px;
        padding: 8px 12px;
    }

    .qq-gbadge-rating {
        font-size: 22px;
    }
}