﻿/* ===========================
   Base Typography & Layout
   =========================== */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

:root {
    --bg: #f6f7f9;
    --surface: #ffffff;
    --ink: #1d232a;
    --muted: #6b7280;
    --line: #e6e8ee;
    --accent: #3b82f6;
    --accent-ink: #0f172a;
    --chip: #eef2f7;
    --chip-ink: #2c3440;
    --ring: rgba(59,130,246,.35);
    --shadow-sm: 0 6px 18px rgba(17, 24, 39, .06);
    --shadow-md: 0 12px 32px rgba(17, 24, 39, .08);
    --radius-xl: 16px;
    --radius-2xl: 22px;
    --pad: 1.25rem;
    --lm-nav-height: 56px;
    --carry-dark: #07111f;
    --carry-blue: #1769ff;
    --carry-yellow: #ffcc00;
    --carry-bg: #f4f6f9;
    --carry-text: #111827;
    --carry-muted: #6b7280;
    --carry-card: #ffffff;
    --carry-border: #e5e7eb;
    --carry-blue: #1769ff;
    --carry-blue-dark: #0b3f9c;
    --carry-gold: #ffcc00;
    --carry-dark: #07111f;
    --carry-gradient: linear-gradient(135deg, #1769ff 0%, #0b3f9c 55%, #07111f 100%);
}


body {
    background: var(--carry-bg);
    color: var(--carry-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3 {
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===========================
   Buttons & Focus
   =========================== */
.btn {
    border-radius: 12px;
    transition: transform .08s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

    .btn:focus,
    .btn:active:focus,
    .btn-link.nav-link:focus,
    .form-control:focus,
    .form-check-input:focus {
        box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
        outline: none;
    }

    .btn:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px var(--ring);
    }

.btn-primary {
    background: linear-gradient(180deg, #3c86f7, #2f79ee);
    border: 0;
    color: #fff;
}

    .btn-primary:hover {
        filter: brightness(.98);
        box-shadow: var(--shadow-sm);
    }

.btn-outline-dark {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
}

    .btn-outline-dark:hover {
        border-color: #cfd3dc;
        box-shadow: var(--shadow-sm);
    }

/* ===========================
   Card Elements
   =========================== */
.card, .custom-card, .van-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.7s ease-out;
}

.custom-card-header {
    padding: 30px;
    text-align: center;
    color: #fff;
    background-color: #333;
}

    .custom-card-header h2 {
        margin-top: 15px;
        font-size: 28px;
    }

.card-body {
    padding: 30px 25px;
    text-align: center;
    font-size: 16px;
    color: #212529;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* ===========================
   Responsive Tweaks
   =========================== */
@media (max-width: 768px) {
    .driver-card .card-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .driver-details {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .progress-bar {
        font-size: 0.65rem;
        padding: 0.2rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    td .text-truncate {
        max-width: 160px !important;
    }
}

/* ===========================
   WAZE & PROOF BUTTON GROUP
   =========================== */
/* ============= Waze & Proof Button Row ============= */
.route-proof-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
    flex-wrap: nowrap;
}

    .route-proof-wrapper .btn {
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        height: 34px;
        line-height: 1;
        padding: 0 0.75rem;
        font-weight: 500;
        font-size: 0.9rem;
    }

/* Primary Waze look */
.btn-waze {
    color: #0564ff;
    border: 1px solid #0564ff;
    background: #fff;
    transition: all 0.2s ease-in-out;
}

    .btn-waze:hover {
        background-color: #0564ff;
        color: #fff;
        transform: translateY(-1px);
    }

/* Proof matches Waze style for consistency */
.btn-proof {
    color: #258cfb;
    border: 1px solid #258cfb;
    background: #fff;
    transition: all 0.2s ease-in-out;
}

    .btn-proof:hover {
        background: #258cfb;
        color: #fff;
        transform: translateY(-1px);
    }

@media (max-width: 768px) {
    .route-proof-wrapper {
        flex-wrap: wrap;
    }
}


/* ===========================
   Autofill Animation Fix
   =========================== */
@keyframes onAutoFillStart {
    from {
        opacity: .99;
    }

    to {
        opacity: 1;
    }
}

input:-webkit-autofill {
    animation-name: onAutoFillStart;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    header .navbar .navbar-brand img {
        height: 32px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    #map, #w3wMap {
        height: 250px;
    }
}

/* Keep the nav buttons always visible */
.wizard-buttons {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    z-index: 10;
}

/* Improve mobile layout */
@media (max-width: 768px) {
    .wizard-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Step completion styles */
#wizardNav .nav-link.completed {
    background-color: #d1e7dd !important;
    color: #0f5132 !important;
    border-color: #badbcc;
}

#wizardNav .nav-link.active {
    background-color: #0d6efd !important;
    color: #fff !important;
}
/* Keep the nav buttons always visible */
.wizard-buttons {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    z-index: 10;
}

/* Improve mobile layout */
@media (max-width: 768px) {
    .wizard-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Highlight invalid fields */
.input-validation-error,
.form-control.input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, .25);
}

/* Highlight nav pills with errors */
.nav-link.has-error {
    border: 1px solid #dc3545 !important;
    color: #dc3545 !important;
    font-weight: 600;
}

/* Smooth step fade */
.tab-pane {
    opacity: 0;
    transition: opacity .25s ease;
}

    .tab-pane.show.active {
        opacity: 1;
    }


/* ============================================
   UNIFIED HERO SECTION (Shared by all landings)
============================================ */

.lm-hero-section {
    padding: 60px 0;
}

    .lm-hero-section h1 {
        color: var(--bright-blue) !important;
        font-weight: 800;
    }

    .lm-hero-section p {
        font-size: 1.15rem;
        color: #555;
    }

    .lm-hero-section .feature-icon {
        font-size: 1.4rem;
    }

    .lm-hero-section .hero-image {
        animation: fadeIn 1s ease-in-out;
        max-height: 450px;
        object-fit: contain;
    }

/* Trust Badges */
.trust-badges img {
    height: 40px;
    width: auto;
    margin: 0 20px;
    opacity: 0.9;
    filter: grayscale(20%);
    transition: 0.2s ease;
}

    .trust-badges img:hover {
        opacity: 1;
        filter: grayscale(0%);
    }


/* ================================================
   GLOBAL PREMIUM GRADIENT BUTTONS (Unified Theme)
   Matches 2025 UI: bright-blue → bright-purple
================================================= */

.lm-btn-gradient {
    background: linear-gradient(135deg, var(--bright-blue), var(--bright-purple));
    border: none;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(10,132,255,0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

    .lm-btn-gradient:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(10,132,255,0.40);
        opacity: 0.96;
        color: #fff !important;
    }

/* Outline version matching new palette */
.lm-btn-outline {
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--bright-blue);
    color: var(--bright-blue) !important;
    background: #ffffffaa;
    backdrop-filter: blur(6px);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

    .lm-btn-outline:hover {
        background: var(--bright-blue);
        color: #fff !important;
        transform: translateY(-3px);
    }


.hero-wrapper {
    position: relative;
}

.hero-img {
    height: 55vh;
    object-fit: cover;
}

.hero-caption {
    position: absolute;
    bottom: 20%;
    left: 5%;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}
.hero-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 380px;
}
@media (max-width: 768px) {
    .hero-image {
        max-height: 240px;
        width: 90%; /* small horizontal margin */
        margin: 0 auto;
    }

    .lm-hero-section .col-lg-6.text-center {
        margin-top: 20px;
    }
}
@media (max-width: 480px) {
    .hero-image {
        max-height: 180px !important;
        width: 100% !important;
        object-fit: contain !important;
    }
}

@media (max-width: 768px) {
    .lm-hero-section .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .lm-hero-section .col-lg-6 {
        margin-bottom: 20px;
    }
}
 
.carousel-caption {
    text-shadow: 0 3px 20px rgba(0,0,0,0.6);
}

.text-shadow {
    text-shadow: 0 3px 20px rgba(0,0,0,0.7);
}

/* Allow hero to span full screen width even inside .container layout */
.hero-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-wrapper img.hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
}
.hero-fullwidth + .movetypes-section {
    margin-top: 40px;
}

.movetypes-section h2 {
    font-weight: 700;
    font-size: 2.2rem;
}

.movetype-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
}

    .movetype-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,0.12);
    }

.movetype-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.movetype-card h5 {
    margin-top: 14px;
    font-weight: 700;
    font-size: 1.1rem;
}

.movetype-card p {
    font-size: 0.9rem;
    color: #555;
}

.movetypes-section {
    border-top: 1px solid #eee;
}

.movetypes-section .container {
    padding-left: 20px;
    padding-right: 20px;
}

.action-buttons .btn {
    text-align: left;
}

.pay-now-btn {
    font-size: 1rem;
    padding: 0.65rem 1rem;
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .action-buttons {
        width: 100%;
        align-items: stretch !important;
    }

        .action-buttons .btn {
            font-size: 0.95rem;
            padding: 0.75rem;
        }

    .pay-now-btn {
        font-size: 1.1rem;
        padding: 0.9rem;
    }
}

/* ===============================================
   GLASS / PREMIUM NAVBAR
================================================ */
.glass-nav {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: all .25s ease;
    z-index: 1030;
}

    /* Make navbar solid when scrolling */
    .glass-nav.scrolled {
        background: rgba(10, 36, 80, 0.95);
        backdrop-filter: none;
        border-bottom-color: rgba(0,0,0,0.15);
    }

/* ===============================================
   NAV LINKS
================================================ */
.lm-nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    position: relative;
    padding-bottom: 6px;
    transition: opacity .2s;
}

    .lm-nav-link:hover {
        opacity: 1;
    }

    .lm-nav-link.active {
        color: #fff !important;
    }

        .lm-nav-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 3px;
            background: #FFD43B; /* yellow stripe */
            border-radius: 2px;
        }

/* ===============================================
   AVATAR
================================================ */
.lm-avatar-container {
    position: relative;
}
/*
.lm-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
}
*/
.lm-role-pill {
    border: 1px solid #0d6efd;
    color: #0d6efd;
    background: #e7f0ff;
}

.lm-avatar {
    width: 36px;
    height: 36px;
    background: #0d6efd;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #4cd964;
    border: 2px solid white;
    border-radius: 50%;
}

/* ===============================================
   Mobile adjustments
================================================ */
@media (max-width: 992px) {
    .glass-nav {
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
    }
}
.lm-service-tile img {
    width: 100%;
    height: 160px; /* pick a consistent height */
    object-fit: cover; /* or "contain" */
    border-radius: 12px;
}

/* v3 Unified Info Cards (Trust + Features) */
.lm-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .lm-info-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0,0,0,0.1);
    }

    /* Icon / logo area */
    .lm-info-card .icon {
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }

    .lm-info-card img {
        max-height: 40px;
        width: auto;
    }

    /* Optional title */
    .lm-info-card h6 {
        font-weight: 700;
        margin-bottom: 6px;
    }

    /* Small helper text */
    .lm-info-card p {
        font-size: 0.9rem;
        color: #6b7280;
        margin-bottom: 0;
    }

/* Trustpilot Banner (v3) */
.lm-trustpilot-banner {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/* Left: logo */
.trustpilot-logo {
    height: 28px;
    width: auto;
}

/* Center text */
.lm-trustpilot-center {
    text-align: center;
    flex: 1;
}

    .lm-trustpilot-center .stars {
        color: #00b67a; /* Trustpilot green */
        font-size: 1.1rem;
        letter-spacing: 2px;
        line-height: 1;
    }

    .lm-trustpilot-center .text {
        font-weight: 700;
        margin-top: 2px;
    }

    .lm-trustpilot-center .subtext {
        font-size: 0.85rem;
        color: #6b7280;
    }

/* Right CTA */
.lm-trustpilot-right {
    white-space: nowrap;
}

/* Mobile optimisation */
@media (max-width: 768px) {
    .lm-trustpilot-banner {
        flex-direction: column;
        text-align: center;
    }

    .lm-trustpilot-right {
        width: 100%;
    }

        .lm-trustpilot-right .btn {
            width: 100%;
        }
}
.job-row {
    cursor: pointer;
}

    .job-row:hover {
        background-color: #f8f9fa;
    }

    .job-row a,
    .job-row button {
        position: relative;
        z-index: 2;
    }
.sticky-action-bar {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.5rem 0;
}
.card form .btn-warning {
    opacity: 0.85;
}
.job-timeline {
    position: relative;
    margin-left: 1rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-bottom: 1.25rem;
}

    .timeline-item:last-child {
        padding-bottom: 0;
    }

.timeline-marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
    background-color: #ced4da;
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 18px;
    bottom: 0;
    width: 2px;
    background-color: #dee2e6;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item.done .timeline-marker {
    background-color: #198754;
}

.timeline-item.current .timeline-marker {
    background-color: #ffc107;
}

.timeline-item.upcoming .timeline-marker {
    background-color: #adb5bd;
}

.timeline-content {
    padding-top: 1px;
}
.driver-v5-wrapper {
    max-width: 1000px;
    margin: auto;
}

.glass-card {
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.lm-driver-avatar {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
@media (max-width: 576px) {
    .driver-header {
        gap: 0.75rem;
        align-items: flex-start;
    }

        .driver-header h6 {
            font-size: 0.95rem;
        }

        .driver-header .small {
            font-size: 0.8rem;
            line-height: 1.3;
        }
}
@media (max-width: 768px) {
    .submit-quote-wrapper {
        position: sticky;
        bottom: 0;
        background: #fff;
        padding: 0.75rem;
        border-top: 1px solid #e5e7eb;
        z-index: 10;
    }
}


.section-title {
    font-weight: 700;
    color: #003d7a;
    margin-bottom: 1rem;
}

.info-list {
    display: grid;
    grid-template-columns: 140px 1fr;
    row-gap: .6rem;
}

    .info-list.cols-3 {
        grid-template-columns: 140px 1fr 140px 1fr 140px 1fr;
    }

    .info-list dt {
        font-weight: 600;
        color: #666;
    }

    .info-list dd {
        margin: 0;
        font-weight: 600;
    }
 
.hero-london {
    background: linear-gradient(135deg, #f7f9ff, #eef3ff);
}

.hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

.hero-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to left, rgba(0,0,0,0.35), rgba(0,0,0,0.05) );
    pointer-events: none;
}


.borough-link {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .borough-link:hover {
        background: linear-gradient(135deg, #2563eb, #6366f1);
        color: #fff;
        border-color: transparent;
        transform: translateY(-2px);
    }
.borough-card {
    display: block;
    padding: 14px;
    border-radius: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    text-align: center;
    text-decoration: none;
    color: #111827;
    transition: all 0.2s ease;
}

    .borough-card:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg, #2563eb, #6366f1);
        color: #fff;
        border-color: transparent;
    }

.borough-name {
    font-weight: 700;
    margin-bottom: 6px;
}

.borough-availability {
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

    .status-dot.online {
        background: #22c55e;
        box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
    }


.alert-success {
    background: linear-gradient(135deg, #e6f9f0, #f3fffa);
}

.badge {
    font-weight: 500;
}


/* ────────────────────────────────────────────────
   GLOBAL WIZARD STYLES (Shared across site)
────────────────────────────────────────────────── */

/* Typography */
body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* ────────────────────────────────────────────────
   FORM CONTROLS (Autotrader-style)
────────────────────────────────────────────────── */

.modern-input,
.modern-select {
    border-radius: 10px;
    height: 48px;
    font-size: 1rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid #d0d4d9;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .modern-input:focus,
    .modern-select:focus {
        border-color: #0d6efd !important;
        box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
    }

/* Labels */
.autotrader-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 0.25rem;
}

/* Disabled buttons */
button[disabled],
#lookupVrmBtn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Stepper buttons */
.input-group button {
    width: 48px;
    font-size: 1.2rem;
    font-weight: bold;
}

#Mileage {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Image preview */
#profilePreview {
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Datepickers */
.flatpickr-input {
    background-color: #fff !important;
    cursor: pointer;
}

/* ────────────────────────────────────────────────
   WIZARD NAVIGATION (PILLS)
────────────────────────────────────────────────── */

#wizardNav {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 1.2rem;
}

    #wizardNav::-webkit-scrollbar {
        display: none;
    }

    #wizardNav .nav-link {
        border-radius: 12px;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
        border: 1px solid #dee2e6;
        background-color: #f8f9fa;
        color: #212529;
        transition: all 0.2s ease-in-out;
    }

        #wizardNav .nav-link:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        /* ACTIVE STEP */
        #wizardNav .nav-link.active {
            background-color: #0d6efd !important;
            color: #fff !important;
            border-color: #0d6efd;
        }

        /* COMPLETED STEP */
        #wizardNav .nav-link.completed {
            background-color: #d1e7dd !important;
            color: #0f5132 !important;
            border-color: #badbcc;
        }

        /* Icons */
        #wizardNav .nav-link i {
            font-size: 1.1rem;
            margin-right: 0.25rem;
        }

        /* ────────────────────────────────────────────────
   PRICING-SENSITIVE STEP (Date & Price)
────────────────────────────────────────────────── */

        /* Default pricing step */
        #wizardNav .nav-link.pricing-step {
            background: linear-gradient(135deg, #fff3cd, #ffe69c);
            border-color: #ffecb5;
            color: #664d03;
        }

            /* Active pricing step */
            #wizardNav .nav-link.pricing-step.active {
                background: linear-gradient(135deg, #fd7e14, #ffb020) !important;
                border-color: #fd7e14;
                color: #fff !important;
            }

        /* Completed pricing step */
        #wizardNav .nav-link.pricing-complete {
            background-color: #e7f1ff !important;
            border-color: #b6d4fe;
            color: #084298;
        }

/* ────────────────────────────────────────────────
   MOBILE BEHAVIOUR
────────────────────────────────────────────────── */

@media (max-width: 768px) {
    #wizardNav {
        justify-content: flex-start;
    }

        #wizardNav .nav-link {
            flex: 0 0 auto;
            min-width: 110px;
            padding: 0.5rem 0.8rem;
            font-size: 0.82rem;
        }

            #wizardNav .nav-link span {
                display: none;
            }

            #wizardNav .nav-link i {
                font-size: 1.25rem;
                margin: 0;
            }
}

/* ────────────────────────────────────────────────
   TAB ANIMATIONS
────────────────────────────────────────────────── */

.tab-content {
    transition: opacity 0.3s ease-in-out;
}

.tab-pane {
    transition: opacity 0.4s ease;
}
.weather-impact-card {
    border-radius: 8px;
    overflow: hidden;
}

.weather-card {
    transition: all 0.2s ease-in-out;
    border-left: 4px solid var(--bs-light);
}

    .weather-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .weather-card .badge {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

.alert small {
    line-height: 1.3;
}

@media (max-width: 768px) {
    .weather-card {
        text-align: center;
    }

        .weather-card img {
            margin-bottom: 0.5rem;
        }
}

#priceLock[data-active] {
    animation: pulse 1s infinite alternate;
}


@media (max-width: 767.98px) {
    .extra-stop .col-md-10, .extra-stop .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .extra-stop .col-md-2 {
        text-align: right;
        margin-top: 4px;
    }

    #addPickupBtn, #addDropoffBtn {
        width: 100%;
    }
}

/* ===============================
   LIVE SERVICE STATUS BAR
================================ */
.live-status-bar {
    background: linear-gradient(90deg, #0d6efd, #2563eb);
    color: #fff;
    font-size: 0.9rem;
    padding: 8px 0;
    position: sticky;
    top: var(--lm-nav-height, 56px);
    z-index: 1025;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

    .live-status-bar .divider {
        opacity: 0.6;
        margin: 0 6px;
    }

/* Pulsing “live” dot */
.live-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34,197,94,0.8);
    animation: pulseLive 1.4s infinite;
}

@keyframes pulseLive {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.availability-ticker {
    background: #0f172a; /* darker, more system-like */
    color: #e5e7eb;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-fullwidth {
    margin-top: 6px;
}


.ticker-track {
    display: inline-block;
    padding-left: 100%;
    animation: tickerScroll 22s linear infinite;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ===============================================
   FIX: Availability ticker must not intercept UI
================================================ */
.availability-ticker,
.availability-ticker * {
    pointer-events: none;
}
.btn-processing {
    position: relative;
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }

    100% {
        opacity: 1;
    }
}
.lm-glass-card {
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(14px) saturate(180%);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .4);
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
}

a.text-decoration-none:hover {
    text-decoration: underline;
}

.btn-primary,
.carry-btn-primary {
    background: var(--carry-blue) !important;
    border-color: var(--carry-blue) !important;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 700;
    padding: 0.8rem 1.4rem;
    box-shadow: none !important;
}

.btn-outline-primary,
.carry-btn-outline {
    border: 2px solid var(--carry-blue) !important;
    color: var(--carry-blue) !important;
    background: #fff !important;
    border-radius: 10px;
    font-weight: 700;
    padding: 0.8rem 1.4rem;
}

.availability-ticker {
    background: var(--carry-dark);
    color: #fff;
}

.hero-wrapper {
    border-radius: 0;
    overflow: hidden;
}

    .hero-wrapper img.hero-img {
        width: 100%;
        height: 560px;
        object-fit: cover;
        object-position: center top;
    }

.movetypes-section {
    background: #fff !important;
    border-top: 0;
    padding-top: 4rem !important;
}

.movetype-card {
    border-radius: 14px;
    border: 1px solid var(--carry-border);
    box-shadow: none;
}

    .movetype-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
    }

.movetype-thumb {
    height: 190px;
    object-fit: cover;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff7d6;
    color: #8a5a00;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.boroughs-section {
    background: #f8fafc !important;
}

.borough-card {
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--carry-border);
    box-shadow: none;
}

    .borough-card:hover {
        background: var(--carry-dark);
        color: #fff;
        transform: translateY(-3px);
    }



/* ==============================
   Header / Navbar polish
============================== */
.carry-navbar {
    background: #ffffff;
    border-bottom: 4px solid transparent;
    border-image: var(--carry-gradient) 1;
    min-height: 72px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 18px rgba(7, 17, 31, 0.08);
}

/* Dark ticker separator */
.availability-ticker {
    background: var(--carry-dark) !important;
    color: #ffffff !important;
    border-bottom: 3px solid var(--carry-gold);
}

/* ==============================
   Buttons
============================== */
.btn-primary,
.carry-btn-primary {
    background: var(--carry-gradient) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 12px;
    font-weight: 800;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 8px 22px rgba(23, 105, 255, 0.25) !important;
}

    .btn-primary:hover,
    .carry-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(23, 105, 255, 0.35) !important;
    }

.btn-outline-primary,
.carry-btn-outline {
    border: 2px solid var(--carry-blue) !important;
    color: var(--carry-blue) !important;
    background: #fff !important;
    border-radius: 12px;
    font-weight: 800;
    padding: 0.8rem 1.5rem;
}

    .btn-outline-primary:hover,
    .carry-btn-outline:hover {
        background: var(--carry-blue) !important;
        color: #fff !important;
    }

/* ==============================
   Hero frame
============================== */
.hero-wrapper {
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    border-bottom: 5px solid transparent;
    border-image: var(--carry-gradient) 1;
    box-shadow: 0 16px 40px rgba(7, 17, 31, 0.16);
}

/* ==============================
   Section cards polish
============================== */
.movetype-card {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(7, 17, 31, 0.08);
}

    .movetype-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 42px rgba(7, 17, 31, 0.14);
    }

.borough-card {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(7, 17, 31, 0.06);
}

    .borough-card:hover {
        background: var(--carry-gradient) !important;
        color: #fff !important;
    }

.carry-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.carry-logo {
    height: 46px;
    width: auto;
    display: block;
}

.carry-brand-text {
    margin-left: 10px;
}

@media (max-width:768px) {

    .carry-logo {
        height: 40px;
    }
}

.carry-hero-section {
    padding: 5rem 0 3rem;
}

.carry-eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #ffb000;
    font-weight: 900;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

.carry-hero-copy {
    color: #4b5563;
    max-width: 620px;
}

.carry-hero-list li {
    margin-bottom: 0.55rem;
}

.carry-hero-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.carry-trust-strip {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.carry-trust-item {
    color: #07111f;
    font-weight: 700;
}

    .carry-trust-item i {
        color: #1769ff;
    }

.carry-how-section {
    background: #ffffff;
}

.carry-feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(7, 17, 31, 0.07);
}

.carry-feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #07111f;
    color: #ffcc00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}