﻿/* ====================================================================
   🚀 LAST MINUTE MAN & VAN — ULTRA-MODERN BRIGHT UI THEME (2025 EDITION)
   Optimised, enhanced, mobile-first, and animation-ready
==================================================================== */

/* ---------------------------------------------------------
   CSS VARIABLES — GLOBAL THEME SYSTEM
---------------------------------------------------------- */
:root {
    /* Bright Accent Palette */
    --bright-blue: #0a84ff;
    --bright-blue-dark: #0066e7;
    --bright-purple: #7b5cff;
    --bright-teal: #00d1b2;
    --bright-pink: #ff3fa4;
    --bright-yellow: #ffd43b;
    /* Neutral Surface System */
    --bg-light: #f5f7fb;
    --bg-white: #ffffff;
    --border-light: #d5d9e2;
    /* Shadows */
    --shadow-light: rgba(0,0,0,0.08);
    --shadow-strong: rgba(0,0,0,0.14);
    /* Radiuses */
    --radius-base: 14px;
    --radius-large: 22px;
    --radius-small: 8px;
    /* Inputs */
    --input-height: 52px;
    /* Navbar animation easing */
    --nav-ease: cubic-bezier(.17, .67, .83, .67);
}

/* ---------------------------------------------------------
   GLOBAL BACKGROUND
---------------------------------------------------------- */
body {
    background: var(--bg-light) !important;
    -webkit-font-smoothing: antialiased;
}

/* ---------------------------------------------------------
   FORM ELEMENTS
---------------------------------------------------------- */
input.form-control,
select.form-select,
textarea.form-control {
    border-radius: var(--radius-base);
    height: var(--input-height);
    border: 1px solid var(--border-light);
    padding: 0.65rem 1rem;
    background: var(--bg-white);
    transition: 0.2s ease, border-color 0.2s;
}

    input.form-control:focus,
    select.form-select:focus,
    textarea.form-control:focus {
        border-color: var(--bright-blue);
        box-shadow: 0 0 0 0.18rem rgba(10,132,255,0.25);
    }

/* ---------------------------------------------------------
   BUTTONS — PREMIUM INTERACTION
---------------------------------------------------------- */
.btn {
    border-radius: var(--radius-base);
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    transition: 0.25s var(--nav-ease);
}

/* Gradient “Primary” */
.btn-primary {
    background: linear-gradient(135deg, var(--bright-blue), var(--bright-purple));
    border: none;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(10,132,255,0.35);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(10,132,255,0.45);
    }

/* Outline Accent */
.btn-outline-primary {
    border: 2px solid var(--bright-blue);
    color: var(--bright-blue);
}

    .btn-outline-primary:hover {
        background: var(--bright-blue);
        color: #fff !important;
    }

/* ---------------------------------------------------------
   CARD “Glass Panel”
---------------------------------------------------------- */
.card {
    border-radius: var(--radius-large);
    background: var(--bg-white);
    border: 1px solid #eef1f8;
    box-shadow: 0 6px 16px var(--shadow-light);
    transition: 0.25s ease;
}

    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 22px var(--shadow-strong);
    }


/* =============================================
   LANDING PAGE — HERO IMAGE BLOCKS
============================================= */

/* Full-width hero (desktop) */
.lm-hero-van {
    background-image: url('/img/landing/Storage Hero Image a.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

/* Second hero (storage unit scene) */
.lm-hero-storage {
    background-image: url('/img/landing/Storage Hero Image b.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
.lm-service-tile img {
    width: 100%;
    height: 180px; /* adjust as needed */
    object-fit: cover; /* keeps images looking neat */
    border-radius: 12px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .lm-hero-van,
    .lm-hero-storage {
        min-height: 260px;
        border-radius: 16px;
    }
}

.lm-landing-hero h1,
.lm-landing-hero p,
.lm-landing-hero .trust span {
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.lm-landing-hero .btn {
    position: relative;
    z-index: 5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.lm-hero-storage {
    position: relative;
}

    .lm-hero-storage::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to left, rgba(0,0,0,0.25), rgba(0,0,0,0.35) );
        z-index: 1;
        border-radius: inherit;
    }

.lm-landing-hero h1 {
    color: var(--bright-blue) !important;
    text-shadow: none !important;
    font-weight: 800;
}

.lm-landing-hero .btn-outline-light {
    border: 2px solid var(--bright-blue) !important;
    color: var(--bright-blue) !important;
    background: #ffffffaa;
    backdrop-filter: blur(6px);
}

    .lm-landing-hero .btn-outline-light:hover {
        background: var(--bright-blue) !important;
        color: white !important;
    }

.lm-hero-storage-a {
    background-image: url('/img/landing/storage_hero_a.png');
}

.lm-hero-storage-b {
    background-image: url('/img/landing/storage_hero_b.png');
}

.lm-hero-storage-c {
    background-image: url('/img/landing/storage_hero_c.png');
}

.lm-hero-storage-d {
    background-image: url('/img/landing/storage_hero_d.png');
}

.lm-hero-storage {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    position: relative;
}
/* Fade transition */
.lm-hero-storage {
    transition: background-image 1s ease-in-out;
    position: relative;
}

    .lm-hero-storage.fade {
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
    }

/* ---------------------------------------------------------
   WIZARD (Steps Navigation)
---------------------------------------------------------- */
#wizardNav .nav-link {
    border-radius: var(--radius-base);
    background-color: #eef2ff;
    border: 1px solid #d8d9ef;
    padding: 0.7rem 1rem;
    font-weight: 600;
    transition: 0.25s ease;
}

    #wizardNav .nav-link.active {
        background: linear-gradient(135deg, var(--bright-blue), var(--bright-purple));
        color: #fff !important;
        border-color: transparent;
        box-shadow: 0 6px 16px var(--shadow-light);
    }

    #wizardNav .nav-link.completed {
        background-color: var(--bright-teal);
        color: #fff !important;
    }

    #wizardNav .nav-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

/* ---------------------------------------------------------
   INPUT GROUP
---------------------------------------------------------- */
.input-group .input-group-text {
    background: var(--bg-light);
    border-radius: var(--radius-small);
    border: 1px solid var(--border-light);
}

/* ---------------------------------------------------------
   MOBILE RESPONSIVENESS
---------------------------------------------------------- */
@media (max-width: 768px) {
    #wizardNav {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

        #wizardNav .nav-link {
            min-width: 120px;
            white-space: nowrap;
        }

    input.form-control,
    select.form-select {
        height: 48px;
        font-size: 0.95rem;
    }
}

/* ===================================================================
   ☑ STICKY GLASS NAVBAR + GRADIENT WAVE + MOBILE ANIMATIONS
=================================================================== */

/* Base glass navbar */
.lm-navbar-glass {
    position: sticky;
    top: 0;
    z-index: 1060;
    backdrop-filter: blur(14px) saturate(180%);
    background: rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.35);
    transition: background 0.35s var(--nav-ease), backdrop-filter 0.35s var(--nav-ease), box-shadow 0.35s ease, opacity 0.35s ease;
}

/* Gradient animated overlay */
.lm-navbar {
    background: linear-gradient( 105deg, var(--bright-blue) 0%, var(--bright-purple) 55%, var(--bright-pink) 100% );
    background-size: 200% 200%;
    animation: lm-gradient-wave 8s ease infinite;
    border-radius: 0 0 18px 18px;
}

@keyframes lm-gradient-wave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Link contrast */
.lm-navbar .nav-link {
    color: rgba(255,255,255,0.95) !important;
    font-weight: 500;
}

    .lm-navbar .nav-link:hover {
        color: #fff !important;
        text-shadow: 0 0 8px rgba(255,255,255,0.6);
    }

/* Avatar */
.lm-avatar {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.85);
    color: var(--bright-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ---------------------------------------------------------
   NAVBAR: Slide-In On First Load
---------------------------------------------------------- */
.lm-navbar-glass {
    transform: translateY(-20px);
    opacity: 0;
    animation: lm-navbar-slide-in 0.6s var(--nav-ease) forwards;
}

@keyframes lm-navbar-slide-in {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slight fade while scrolling */
.lm-navbar-glass.scrolling {
    opacity: 0.88;
}


.lm-service-tile {
    background: #ffffff;
    border-radius: 16px;
    display: block;
    text-decoration: none;
    color: #111;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: 0.2s ease;
}

    .lm-service-tile:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }

.lm-service-img {
    height: 150px;
    background-size: cover;
    background-position: center;
}

.lm-service-label {
    background: #fff;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.arrow {
    font-size: 1.3rem;
    vertical-align: middle;
}


/* ===========================================
   MOBILE HERO FIXES — MAKES IT LOOK PERFECT
=========================================== */
@media (max-width: 768px) {

    /* Reduce hero padding */
    .lm-landing-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
        text-align: center; /* center EVERYTHING on mobile */
    }

        /* Make the headline scale */
        .lm-landing-hero h1 {
            font-size: 1.9rem !important;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        /* Make paragraph readable */
        .lm-landing-hero p {
            font-size: 1rem;
            line-height: 1.45;
            margin-bottom: 1.5rem;
        }

        /* Buttons stack cleanly */
        .lm-landing-hero .d-flex {
            justify-content: center;
            flex-direction: column;
            gap: 0.75rem;
        }

        .lm-landing-hero .btn {
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }

        /* TrustPilot row centered */
        .lm-landing-hero .trust {
            justify-content: center;
            display: flex;
            align-items: center;
        }

    /* Make hero image smaller */
    .lm-hero-storage {
        min-height: 200px !important;
        background-size: contain !important;
        background-position: center bottom !important;
        border-radius: 16px;
        margin-top: 1.5rem;
    }

        /* Remove harsh overlay on mobile */
        .lm-hero-storage::before {
            background: none !important;
        }
}

/* ---------------------------------------------------------
   Mobile Bounce on Menu Open
---------------------------------------------------------- */
.navbar-collapse.show {
    animation: lm-mobile-bounce 0.35s ease-out;
}

@keyframes lm-mobile-bounce {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }

    70% {
        transform: translateY(2px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
    }
}

/* ---------------------------------------------------------
   YOUTUBE-STYLE AUTO-HIDE NAVBAR
---------------------------------------------------------- */
/*.lm-navbar-auto {
    transition: transform 0.35s var(--nav-ease), opacity 0.35s var(--nav-ease);
}

.lm-navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}*/


/* HERO SECTION */
/*.lm-landing-hero {
    background: linear-gradient(135deg, var(--bright-blue), var(--bright-purple));
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    color: white;
    min-height: 65vh;
    padding-top: 80px;
}

.landing-hero-img {
    max-height: 340px;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}*/

/* SERVICE TILES */
/*.lm-tile {
    display: block;
    padding: 20px;
    background: #ffffff;
    border-radius: 18px;
    text-decoration: none;
    color: #000;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

    .lm-tile:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

.bg-teal {
    background: var(--bright-teal);
}

.bg-yellow {
    background: var(--bright-yellow);
}*/

/* SERVICE TILE IMAGES */
/*.lm-tile-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
}*/

    /* image placeholders — replace later */
    /*.lm-tile-img.home {
        background-image: url('/img/home-removal.jpg');
    }

    .lm-tile-img.furniture {
        background-image: url('/img/furniture.jpg');
    }

    .lm-tile-img.appliances {
        background-image: url('/img/appliances.jpg');
    }*/

/*    .lm-tile-img.home { background-image: url('/img/landing/home-removal.jpg'); }
.lm-tile-img.furniture { background-image: url('/img/landing/furniture.jpg'); }
.lm-tile-img.appliances { background-image: url('/img/landing/appliance.jpg'); }
*/

/* BOTTOM CTA */
/*.lm-bottom-cta {
    background: #ffffff;
}*/

