/* =====================================================
   LONDON LOGISTIC SOLUTIONS LIMITED — Premium Design System
   ===================================================== */

/* ============ Design Tokens ============ */
:root {
    --lls-navy: #0F172A;
    --lls-navy-dark: #020617;
    --lls-navy-deeper: #010313;
    --lls-blue: #1E40AF;
    --lls-blue-light: #2563EB;
    --lls-blue-glow: rgba(30, 64, 175, 0.10);
    --lls-accent: #D97706;
    --lls-accent-hover: #B45309;
    --lls-accent-glow: rgba(217, 119, 6, 0.15);
    --lls-gold: #F59E0B;
    --lls-green: #059669;
    --lls-green-dark: #047857;
    --lls-red: #DC2626;
    --lls-dark: #111827;
    --lls-text: #1F2937;
    --lls-gray: #6B7280;
    --lls-gray-light: #9CA3AF;
    --lls-gray-100: #F3F4F6;
    --lls-gray-50: #F9FAFB;
    --lls-border: #E5E7EB;
    --lls-border-light: #F3F4F6;
    --lls-silver: #CBD5E1;
    --lls-white: #FFFFFF;
    --lls-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --lls-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    --lls-shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
    --lls-shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.16);
    --lls-radius: 12px;
    --lls-radius-lg: 16px;
    --lls-radius-xl: 24px;
    --lls-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lls-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 15px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--lls-text);
    background: var(--lls-white);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--lls-navy);
}
a { color: var(--lls-blue); text-decoration: none; transition: color var(--lls-transition); }
a:hover { color: var(--lls-navy); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; }

/* ============ Page Loader ============ */
.lls-loader {
    position: fixed;
    inset: 0;
    background: var(--lls-navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.lls-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-truck {
    font-size: 2.5rem;
    color: var(--lls-accent);
    margin-bottom: 1.5rem;
    animation: loaderBounce 1s ease-in-out infinite;
}
.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    overflow: hidden;
}
.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--lls-accent);
    border-radius: 3px;
    animation: loaderFill 1.5s ease-in-out infinite;
}
@keyframes loaderBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes loaderFill {
    0% { width: 0%; margin-left: 0; }
    50% { width: 70%; margin-left: 15%; }
    100% { width: 0%; margin-left: 100%; }
}

/* ============ Top Bar ============ */
.lls-topbar {
    background: var(--lls-navy-deeper);
    color: var(--lls-silver);
    font-size: 0.78rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: transform var(--lls-transition);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.topbar-left { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.topbar-left i { color: var(--lls-accent); margin-right: 0.3rem; font-size: 0.7rem; }
.topbar-left a { color: var(--lls-silver); }
.topbar-left a:hover { color: #fff; }
.topbar-right { display: flex; gap: 1rem; align-items: center; }
.topbar-right a { color: var(--lls-silver); }
.topbar-right a:hover { color: #fff; }
.topbar-whatsapp { color: var(--lls-green) !important; font-weight: 600; }

/* ============ Navbar ============ */
.lls-nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.65rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid transparent;
    transition: all var(--lls-transition);
}
.lls-nav.scrolled {
    padding: 0.45rem 0;
    box-shadow: 0 4px 30px rgba(13, 35, 85, 0.1);
    border-bottom-color: var(--lls-border-light);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--lls-navy) !important;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-decoration: none !important;
}
.brand-icon {
    background: linear-gradient(135deg, var(--lls-navy), #1e3a8a);
    color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}
.brand-accent { color: var(--lls-accent); }
.nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    color: var(--lls-navy) !important;
    padding: 0.5rem 0.9rem !important;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: color var(--lls-transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.9rem;
    right: 0.9rem;
    height: 2px;
    background: var(--lls-accent);
    transform: scaleX(0);
    transition: transform var(--lls-transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--lls-blue) !important; }

/* Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lls-navy);
    border-radius: 2px;
    transition: var(--lls-transition);
}

/* Nav CTA */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--lls-accent), var(--lls-accent-hover));
    border: none;
    color: #fff !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
    transition: all var(--lls-transition);
}
.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    color: #fff !important;
}

/* ============ Buttons ============ */
.btn-lls-accent {
    background: linear-gradient(135deg, var(--lls-gold), var(--lls-accent));
    border: none;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
    transition: all var(--lls-transition);
    position: relative;
    overflow: hidden;
}
.btn-lls-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--lls-transition);
}
.btn-lls-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.45);
    color: #fff;
}
.btn-lls-accent:hover::before { opacity: 1; }
.btn-outline-light {
    border-color: rgba(255,255,255,0.35);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--lls-transition);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: var(--lls-navy);
    font-weight: 700;
    border: none;
    border-radius: 8px;
    transition: all var(--lls-transition);
}
.btn-white:hover {
    background: var(--lls-gray-50);
    color: var(--lls-navy);
    transform: translateY(-3px);
    box-shadow: var(--lls-shadow-lg);
}

/* ============ Hero ============ */
.lls-hero {
    background: var(--lls-navy);
    color: #fff;
    padding: 6rem 0 7rem;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-youtube-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E40AF 100%);
}
.hero-youtube-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.78%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(15, 23, 42, 0.94) 0%,
        rgba(30, 64, 175, 0.12) 50%,
        rgba(15, 23, 42, 0.92) 100%
    );
    z-index: 1;
}
.lls-hero .container { position: relative; z-index: 2; }
.lls-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.1);
    z-index: 1;
}
.lls-hero::before {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.06);
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 119, 6, 0.15);
    border: 1px solid rgba(217, 119, 6, 0.35);
    color: #FBBF24;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.lls-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.8rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-heading-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--lls-gold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.text-accent { color: var(--lls-gold); }
.hero-sub {
    font-size: 1.1rem;
    color: #E2E8F0;
    max-width: 520px;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.hero-actions {
    margin-top: 2.2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #E2E8F0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.trust-item i { color: var(--lls-accent); font-size: 0.85rem; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-truck-wrap {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.15);
    border: 1px solid rgba(30, 64, 175, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-truck-icon {
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.2);
    animation: truckFloat 5s ease-in-out infinite;
}
@keyframes truckFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    animation: bounceDown 2s infinite;
    z-index: 3;
}

/* ============ Stats ============ */
.lls-stats {
    background: var(--lls-navy-dark);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 3;
}
.stat-box { text-align: center; padding: 0.8rem; }
.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-num.stat-text { font-size: 1.8rem; }
.stat-label {
    font-size: 0.82rem;
    color: var(--lls-silver);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ============ Sections ============ */
.lls-section { padding: 5.5rem 0; }
.lls-svc-section { padding: 5.5rem 0; background: #fff; }
.lls-svc-section:nth-child(even) { background: #F8FAFC; }
.lls-section-alt { background: var(--lls-gray-50); }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 3.5rem; }
.section-kicker {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    color: var(--lls-gold);
    display: block;
    margin-bottom: 0.6rem;
}
.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    line-height: 1.1;
}
.section-sub { color: #CBD5E1; font-size: 1.05rem; line-height: 1.7; font-weight: 400; }

/* ============ Services Section ============ */
.lls-services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

/* ============ Service Block Grid ============ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.svc-block {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--lls-radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.svc-block-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.8rem;
    position: relative;
}
.svc-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--lls-gold);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: bottom;
}
.svc-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255,255,255,0.15);
}
.svc-block:hover::before { transform: scaleY(1); }

.svc-block-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, #1E40AF, #3B82F6);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
    transition: transform 0.4s ease;
}
.svc-block:hover .svc-block-icon { transform: scale(1.08); }
.svc-block-icon.svc-icon-navy { background: linear-gradient(135deg, #0F172A, #1E3A5F); box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25); }
.svc-block-icon.svc-icon-gold { background: linear-gradient(135deg, #D97706, #F59E0B); box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25); }
.svc-block-icon.svc-icon-green { background: linear-gradient(135deg, #059669, #10B981); box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25); }

.svc-block-content { flex: 1; }
.svc-block-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
    display: block;
}
.svc-block-content h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.svc-block-content p { color: #CBD5E1; font-size: 0.88rem; line-height: 1.65; margin-bottom: 0.8rem; }
.svc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.svc-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: #6EE7B7;
    background: rgba(16, 185, 129, 0.12);
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
}
.svc-features span i { font-size: 0.55rem; }
.svc-block-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}
.svc-block:hover .svc-block-link {
    background: var(--lls-gold);
    color: #0F172A;
    transform: translateX(3px);
}

.card-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    color: var(--lls-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.card-link i { font-size: 0.7rem; transition: transform 0.3s ease; }
.card-link:hover i { transform: translateX(5px); }

.btn-lls-blue {
    background: linear-gradient(135deg, var(--lls-blue), var(--lls-blue-light));
    border: none;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}
.btn-lls-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.45);
    color: #fff;
}

/* ============ Services Responsive ============ */
@media (max-width: 991.98px) {
    .svc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
    .svc-block-inner { flex-direction: column; gap: 1rem; padding: 1.5rem; }
    .svc-block-link { margin-top: 0; }
}

/* ============ Why Choose Cards ============ */
.lls-why-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--lls-radius-lg);
    padding: 2.2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lls-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255,255,255,0.15);
}
.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.15);
    color: var(--lls-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transition: all var(--lls-transition);
}
.lls-why-card:hover .why-icon {
    background: var(--lls-navy);
    color: #fff;
    transform: scale(1.1);
}
.lls-why-card h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.lls-why-card p { color: #CBD5E1; font-size: 0.9rem; line-height: 1.7; }

/* ============ Process ============ */
.lls-process-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: var(--lls-radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lls-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255,255,255,0.15);
}
.process-step {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(217, 119, 6, 0.03));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.process-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lls-blue), var(--lls-blue-light));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.3rem;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
}
.lls-process-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.lls-process-card p { color: #CBD5E1; font-size: 0.92rem; line-height: 1.7; }

/* ============ Testimonials ============ */
.lls-testimonial-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--lls-radius-lg);
    padding: 2.2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}
.lls-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(217, 119, 6, 0.15);
    line-height: 1;
}
.lls-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255,255,255,0.15);
}
.test-stars { color: var(--lls-gold); margin-bottom: 0.8rem; font-size: 0.85rem; letter-spacing: 2px; }
.lls-testimonial-card p { color: #CBD5E1; font-style: italic; line-height: 1.8; font-size: 0.95rem; position: relative; z-index: 1; }
.test-author { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; }
.test-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lls-navy), #1e3a8a);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.test-author strong { display: block; font-size: 0.9rem; color: #ffffff; }
.test-author span { font-size: 0.78rem; color: #94A3B8; }

/* ============ CTA ============ */
.lls-cta {
    background: linear-gradient(135deg, var(--lls-navy) 0%, var(--lls-navy-dark) 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}
.lls-cta::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.06);
}
.lls-cta::after {
    content: '';
    position: absolute;
    left: -50px;
    bottom: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.08);
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.cta-content p { color: var(--lls-silver); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============ Page Hero ============ */
.lls-page-hero {
    background: linear-gradient(135deg, var(--lls-navy-deeper) 0%, var(--lls-navy) 50%, #1a3a7a 100%);
    color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.lls-page-hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.1);
}
.lls-page-hero::before {
    content: '';
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.05);
}
.lls-page-hero .container { position: relative; z-index: 1; }
.lls-page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    color: #ffffff;
    line-height: 1.1;
}
.lls-page-hero .breadcrumb-text { color: #CBD5E1; font-size: 0.85rem; }
.lls-page-hero .breadcrumb-text a { color: rgba(255,255,255,0.7); }
.lls-page-hero .breadcrumb-text a:hover { color: #fff; }

/* ============ Feature List ============ */
.lls-feature-list { list-style: none; padding: 0; margin: 0; }
.lls-feature-list li { padding: 0.55rem 0; color: var(--lls-text); font-size: 0.95rem; }
.lls-feature-list i { color: var(--lls-green); margin-right: 0.6rem; width: 16px; }

/* ============ Forms ============ */
.lls-panel {
    background: #fff;
    border: 1px solid var(--lls-border);
    border-radius: var(--lls-radius-lg);
    box-shadow: var(--lls-shadow-lg);
    padding: 2.5rem;
}
.lls-panel .panel-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    color: var(--lls-navy);
    text-transform: uppercase;
}
.form-label { font-weight: 600; color: var(--lls-text); font-size: 0.85rem; }
.form-control, .form-select {
    border-radius: 8px;
    border-color: var(--lls-border);
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
    transition: all var(--lls-transition);
    background-color: var(--lls-gray-50);
}
.form-control:focus, .form-select:focus {
    border-color: var(--lls-blue);
    box-shadow: 0 0 0 3px var(--lls-blue-glow);
    background-color: #fff;
}
.text-danger { font-size: 0.8rem; }

/* ============ Contact Cards ============ */
.lls-contact-card {
    background: #fff;
    border: 1px solid var(--lls-border);
    border-radius: var(--lls-radius-lg);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all var(--lls-transition);
}
.lls-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lls-shadow-lg);
    border-color: transparent;
}
.lls-contact-card i {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--lls-blue-glow);
    color: var(--lls-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: all var(--lls-transition);
}
.lls-contact-card:hover i {
    background: var(--lls-navy);
    color: #fff;
    transform: scale(1.1);
}
.lls-contact-card h6 { font-weight: 700; color: var(--lls-navy); }
.lls-contact-card p { color: var(--lls-gray); font-size: 0.9rem; margin-bottom: 0; }

/* ============ Join Network Cards ============ */
.lls-join-card {
    background: #fff;
    border: 1px solid var(--lls-border);
    border-radius: var(--lls-radius-lg);
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all var(--lls-transition);
}
.lls-join-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lls-shadow-xl);
}
.lls-join-card.featured {
    border-color: var(--lls-accent);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.12);
    position: relative;
}
.lls-join-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lls-accent), var(--lls-accent-hover));
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.join-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--lls-blue-glow);
    color: var(--lls-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.lls-join-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.lls-join-card p { color: var(--lls-gray); font-size: 0.92rem; line-height: 1.7; }
.join-features { list-style: none; padding: 1.5rem 0 0; margin: 0; text-align: left; }
.join-features li { padding: 0.55rem 0; font-size: 0.92rem; color: var(--lls-text); border-bottom: 1px solid var(--lls-border-light); }
.join-features li:last-child { border-bottom: none; }
.join-features i { color: var(--lls-green); margin-right: 0.6rem; width: 16px; }

/* ============ Footer ============ */
.lls-footer {
    background: var(--lls-navy-dark);
    color: #8896AB;
    font-size: 0.88rem;
    position: relative;
}
.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    overflow: hidden;
}
.footer-wave svg { width: 100%; height: 100%; }
.footer-top { padding: 3.5rem 0 2rem; }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff !important;
    text-transform: uppercase;
}
.footer-desc { margin-top: 1rem; line-height: 1.8; font-size: 0.85rem; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.2rem; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: #8896AB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--lls-transition);
}
.footer-social a:hover { background: var(--lls-accent); color: #fff; transform: translateY(-3px); }
.lls-footer h5 {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.1rem;
}
.lls-footer ul { list-style: none; padding: 0; margin: 0; }
.lls-footer ul li { margin-bottom: 0.55rem; }
.lls-footer ul a { color: #8896AB; font-size: 0.85rem; transition: color var(--lls-transition); }
.lls-footer ul a:hover { color: #fff; padding-left: 4px; }
.footer-contact i { color: var(--lls-accent); margin-right: 0.5rem; width: 16px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.2rem 0;
    font-size: 0.8rem;
    color: #6B7A90;
}
.footer-bottom a { color: #6B7A90; margin-left: 1.2rem; transition: color var(--lls-transition); }
.footer-bottom a:hover { color: #fff; }
.cx-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(245, 158, 11, 0.1);
    color: var(--lls-accent);
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 600;
}

/* ============ WhatsApp Float ============ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all var(--lls-transition);
}
.whatsapp-float:hover {
    transform: scale(1.12);
    color: #fff;
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}
.wa-tooltip {
    position: absolute;
    right: 72px;
    background: #fff;
    color: var(--lls-dark);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--lls-shadow);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--lls-transition);
    pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ============ Back to Top ============ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lls-navy);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--lls-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--lls-transition);
    z-index: 998;
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--lls-blue); transform: translateY(-3px); }

/* ============ Scroll Reveal ============ */
.reveal, .reveal-zoom {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-zoom { transform: scale(0.92); }
.reveal.in-view, .reveal-zoom.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Hero Animations */
.anim-hero { opacity: 0; transform: translateY(30px); animation: animFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.anim-hero-right { opacity: 0; transform: translateX(40px); animation: animFadeRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.anim-d1 { animation-delay: 0.15s; }
.anim-d2 { animation-delay: 0.3s; }
.anim-d3 { animation-delay: 0.45s; }
.anim-d4 { animation-delay: 0.6s; }
.anim-d5 { animation-delay: 0.75s; }
@keyframes animFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes animFadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ Hero Quick Form ============ */
.hero-form-wrap {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-form-header {
    background: linear-gradient(135deg, var(--lls-blue), var(--lls-blue-light));
    color: #fff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.hero-form-header i { font-size: 1.3rem; }
.hero-quick-form {
    padding: 1.5rem;
}
.hero-quick-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.8rem;
}
.hero-quick-form .form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lls-navy);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hero-quick-form .form-control {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--lls-border);
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--lls-text);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-quick-form .form-control:focus {
    outline: none;
    border-color: var(--lls-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}
.hero-quick-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding-right: 2rem;
}

/* ============ Stat Icons ============ */
.stat-box { text-align: center; }
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(30, 64, 175, 0.08);
    color: var(--lls-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

/* ============ How It Works ============ */
.lls-how-section { background: #fff; }
.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.how-step {
    text-align: center;
    padding: 1.5rem 1rem;
    flex: 1;
    max-width: 220px;
    position: relative;
}
.how-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lls-navy);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.how-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lls-blue), var(--lls-blue-light));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}
.how-step h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--lls-navy);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.how-step p {
    color: var(--lls-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 180px;
    margin: 0 auto;
}
.how-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 3.5rem;
    color: var(--lls-gray-light);
    font-size: 1.2rem;
}

/* ============ Testimonial Quote ============ */
.test-quote {
    color: var(--lls-blue);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    opacity: 0.3;
}

/* ============ Responsive ============ */
@media (max-width: 991.98px) {
    .lls-hero h1 { font-size: 2.6rem; }
    .hero-heading-sub { font-size: 2rem; }
    .navbar-brand { font-size: 1rem; }
    .brand-icon { width: 34px; height: 34px; font-size: 0.9rem; }
    .footer-wave { display: none; }
    .hero-form-wrap { margin-top: 2rem; }
    .how-step-arrow { display: none; }
    .how-steps { flex-wrap: wrap; gap: 1rem; justify-content: center; }
}
@media (max-width: 767.98px) {
    .lls-hero { padding: 4rem 0 5rem; min-height: auto; }
    .lls-hero h1 { font-size: 2.1rem; }
    .hero-heading-sub { font-size: 1.6rem; }
    .lls-section { padding: 3.5rem 0; }
    .section-title { font-size: 1.8rem; }
    .stat-num { font-size: 2.4rem; }
    .cta-content h2 { font-size: 1.9rem; }
    .lls-panel { padding: 1.8rem; }
    .hero-trust { gap: 1rem; }
    .lls-page-hero { padding: 3rem 0; }
    .hero-quick-form .form-row { grid-template-columns: 1fr; }
    .how-step { max-width: 100%; }
}
@media (max-width: 575.98px) {
    .lls-hero h1 { font-size: 1.8rem; }
    .hero-heading-sub { font-size: 1.4rem; }
    .lls-panel { padding: 1.5rem; }
    .whatsapp-float { width: 54px; height: 54px; font-size: 1.6rem; bottom: 20px; right: 20px; }
    .back-to-top { right: 84px; bottom: 20px; width: 40px; height: 40px; }
}

/* ============ Reduced Motion ============ */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-zoom, .anim-hero, .anim-hero-right {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
    .hero-truck-icon, .whatsapp-float, .scroll-indicator, .loader-truck, .loader-progress { animation: none !important; }
    * { transition-duration: 0.01ms !important; }
}
