/* ============================================
   LEASETIME — HOME PAGE SECTIONS CSS
   Brand: #FAB702 | #ffffff | #0a0a0a
   Fonts: Syne (headings) + Inter (body)
   Scope: Body sections only (no header/footer)
   ============================================ */

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

/* ---- CSS VARIABLES ---- */
:root {
    --gold:       #FAB702;
    --gold-dark:  #c99200;
    --gold-pale:  rgba(250, 183, 2, 0.10);
    --black:      #0a0a0a;
    --white:      #ffffff;
    --offwhite:   #f7f6f3;
    --grey-bg:    #f4f4f2;
    --grey-text:  #6b6b6b;
    --border:     #e2e2e2;
    --brand: #f5a800;
    /*--font-head:  'Syne', sans-serif;*/
    --font-body:  'Inter', sans-serif;
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================================================
   KEYFRAMES
================================================ */
@keyframes ltPulse    { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
@keyframes ltFadeUp   { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
@keyframes ltLineGrow { from{transform:scaleX(0)} to{transform:scaleX(1)} }
@keyframes ltScroll   { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes ltShimmer  { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }

/* ================================================
   SCROLL REVEAL
================================================ */
.lt-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.lt-reveal.lt-visible { opacity: 1; transform: none; }

/* ================================================
   SHARED SECTION HELPERS
================================================ */
.lt-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.lt-section-tag::before { content:''; display:block; width:22px; height:1px; background:var(--gold); }
.lt-section-tag.center  { justify-content:center; }
.lt-section-tag.center::before  { display:none; }
.lt-section-tag.center::after   { content:''; display:block; width:22px; height:1px; background:var(--gold); }

.lt-section-h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.02em;
    line-height: 1.1;
    margin: 0 0 14px;
}
.lt-section-h2 em { font-style: normal; color: var(--gold); }
.lt-section-h2.light { color: var(--white); }

.lt-section-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--grey-text);
    line-height: 1.85;
    max-width: 580px;
}
.lt-section-desc.light { color: rgba(255,255,255,.42); }

/* ================================================
   INFO BAR (replaces old yellow header bar)
================================================ */
.lt-infobar {
    background: var(--gold);
    padding: 0;
    border-bottom: 1px solid rgba(10,10,10,.10);
}
.lt-infobar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.lt-infobar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-right: 1px solid rgba(10,10,10,.10);
}
.lt-infobar-item:last-child { border-right: none; }
.lt-infobar-item i {
    font-size: 15px;
    color: #0a0a0a;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}
.lt-infobar-item p {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: #0a0a0a;
    margin: 0;
    line-height: 1.4;
}

/* ================================================
   HERO SECTION
================================================ */
.lt-hero-video {
    position: absolute;
    object-fit: cover;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}
/* ================================================
   HERO VIDEO DARK OVERLAY
================================================ */
.lt-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.77);
    pointer-events: none;
}
.lt-hero {
    position: relative;
     background: url('/images/slider/slider.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
     min-height: 90vh;
    padding-top: 80px;   /* adjust if header overlaps */
    
    
}
/* left gold accent bar */
.lt-hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(to bottom, transparent, var(--gold) 30%, rgba(255,254,250,.8) 70%, transparent);
    z-index: 2;
}
/* bottom gold line */
.lt-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform-origin: left;
    z-index: 2;
    animation: ltLineGrow 1.2s .8s ease both;
}
.lt-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 48px 90px;
}
.lt-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(250,183,2,.10);
    border: 1px solid rgba(250,183,2,.28);
    padding: 6px 16px 6px 12px;
    margin-bottom: 24px;
    animation: ltFadeUp .7s .2s both;
}
.lt-hero-eyebrow .ht-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
    animation: ltPulse 2s 1s ease infinite;
}
.lt-hero-eyebrow span {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 500;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold);
}
.lt-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(32px, 5.5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.06;
    letter-spacing: -.02em;
    margin: 0 0 18px;
    max-width: 720px;
    text-shadow: 0 2px 14px rgba(0,0,0,.45);
    animation: ltFadeUp .9s .3s cubic-bezier(.22,1,.36,1) both;
}
.lt-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #FAB702, #ffd04a, #FAB702);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ltShimmer 3s 1.5s linear infinite;
}
.lt-hero-desc {
    font-family: var(--font-body);
    font-size: 15px; font-weight: 400;
    color: white;
    max-width: 520px; line-height: 1.8;
    margin: 0 0 36px;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
    animation: ltFadeUp .9s .5s cubic-bezier(.22,1,.36,1) both;
}
.lt-hero-cta {
    display: inline-block;
    padding: 14px 38px;
    background: var(--gold);
    color: #0a0a0a;
    font-family: var(--font-body);
    font-size: 13px; font-weight: 600;
    letter-spacing: .10em; text-transform: uppercase;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: background .25s, transform .25s, box-shadow .25s;
    animation: ltFadeUp .9s .65s cubic-bezier(.22,1,.36,1) both;
}
.lt-hero-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250,183,2,.35);
    color: #0a0a0a;
    text-decoration: none;
}
/* Hero stats bar */
.lt-hero-stats {
    display: flex;
    border: 1px solid rgba(255,255,255,.12);
    max-width: 540px;
    margin-top: 44px;
    animation: ltFadeUp .9s .80s cubic-bezier(.22,1,.36,1) both;
}
.lt-hero-stat {
    flex: 1; padding: 20px 16px; text-align: center;
    border-right: 1px solid rgba(255,255,255,.10);
}
.lt-hero-stat:last-child { border-right: none; }
.lt-hero-stat-num {
    font-family: var(--font-head);
    font-size: 28px; font-weight: 800;
    color: var(--gold); display: block; line-height: 1;
}
.lt-hero-stat-label {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 500;
    color: white;
    letter-spacing: .08em; text-transform: uppercase;
    margin-top: 5px; display: block;
}

/* ================================================
   ABOUT SECTION
================================================ */
.lt-about {
    background: var(--white);
    overflow: hidden;
}
.lt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
}
.lt-about-text {
    background: var(--offwhite);
   padding: 50px 40px;
    display: flex; flex-direction: column; justify-content: center;
}
.lt-about-text p {
    font-family: var(--font-body);
    font-size: 15px; font-weight: 300;
    color: #444; line-height: 1.9;
    margin: 0 0 18px;
}
.lt-about-text p:last-of-type { margin-bottom: 0; }
.lt-about-highlight {
    border-left: 3px solid var(--gold);
    padding: 18px 22px;
    background: rgba(250,183,2,.06);
    margin: 16px 0 28px;
}
.lt-about-highlight p {
    font-family: var(--font-head);
    font-size: 14px; font-weight: 600;
    color: var(--black); font-style: italic;
    margin: 0; line-height: 1.7;
}
.lt-about-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1.5px solid var(--black);
    background: transparent;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 12px; font-weight: 500;
    letter-spacing: .10em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    transition: background .25s, color .25s, border-color .25s;
}
.lt-about-btn:hover {
    background: var(--black);
    color: var(--white);
    text-decoration: none;
}
/* Image / visual side */
.lt-about-visual {
    position: relative; overflow: hidden;
    clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: #111;
}
.lt-about-visual-img {
    width: 100%; height: 100%;
     min-height: 420px; object-fit: cover; display: block;
    transition: transform .7s ease, filter .5s ease;
}
.lt-about-visual:hover .lt-about-visual-img {
    transform: scale(1.05);
    filter: brightness(.85);
}
/* fallback if no image */
.lt-about-visual-fallback {
    width: 100%; min-height: 540px;
    background: linear-gradient(135deg, #111 0%, #1e1a0f 100%);
    display: flex; align-items: center; justify-content: center;
}
.lt-about-stats-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; width: 100%; background: rgba(250,183,2,.08);
}
.lt-about-stat-item {
    background: #111; padding: 32px 24px;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
}
.lt-about-stat-num {
    font-family: var(--font-head);
    font-size: 36px; font-weight: 800;
    color: var(--gold); line-height: 1;
}
.lt-about-stat-lbl {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 400;
    color: rgba(255,255,255,.35);
    letter-spacing: .08em; text-transform: uppercase;
    text-align: center;
}
.lt-about-visual-badge {
    position: absolute; bottom: 30px; left: 30px;
    background: var(--black); border-left: 3px solid var(--gold);
    padding: 18px 24px; min-width: 160px; z-index: 2;
}
.lt-about-visual-badge .badge-num {
    font-family: var(--font-head);
    font-size: 36px; font-weight: 800;
    color: var(--gold); display: block; line-height: 1;
}
.lt-about-visual-badge .badge-lbl {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 400;
    color: rgba(255,255,255,.45);
    letter-spacing: .08em; text-transform: uppercase;
    margin-top: 5px; display: block;
}

/* ================================================
   SERVICES SECTION
================================================ */
.lt-services {
    background: #111;
    padding: 92px 0;
    position: relative; overflow: hidden;
}
.lt-services::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.lt-services .lt-container {
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
}
.lt-services-header {
    text-align: center; margin-bottom: 52px;
}
.lt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255,255,255,.08);
}
.lt-services-grid2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,.08);
}
.lt-svc-card {
    padding: 42px 32px;
    border-right: 1px solid rgba(255,255,255,.08);
    position: relative; overflow: hidden;
    transition: background .3s; cursor: pointer;
}
.lt-svc-card:last-child { border-right: none; }
.lt-svc-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; width: 0; height: 3px;
    background: var(--gold);
    transition: width .35s ease;
}
.lt-svc-card:hover { background: rgba(250,183,2,.06); }
.lt-svc-card:hover::after { width: 100%; }
.lt-svc-card-img {
    width: 100%; height: 180px; object-fit: cover;
    display: block; margin-bottom: 24px;
    filter: brightness(.85) saturate(.8);
    transition: filter .4s ease, transform .4s ease;
}
.lt-svc-card:hover .lt-svc-card-img {
    filter: brightness(.7) saturate(1);
    transform: scale(1.02);
}
.lt-svc-icon {
    width: 50px; height: 50px;
    border: 1.5px solid rgba(250,183,2,.30);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; font-size: 1.3rem;
    transition: background .25s, border-color .25s, transform .35s cubic-bezier(.34,1.56,.64,1);
    color: white;
}
.lt-svc-card:hover .lt-svc-icon {
    background: var(--gold); border-color: var(--gold);
    transform: rotate(6deg);
}
.lt-svc-card h3 {
    font-family: var(--font-head);
    font-size: 17px; font-weight: 700;
    color: var(--white); margin: 0 0 10px; line-height: 1.3;
}
.lt-svc-card p {
    font-family: var(--font-body);
    font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,.42); line-height: 1.75; margin: 0 0 20px;
}
.lt-svc-link {
    display: inline-block;
    padding: 9px 20px;
    background: var(--gold); color: #0a0a0a;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
}
.lt-svc-link:hover { background: var(--gold-dark); color: #0a0a0a; text-decoration: none; }


/* ================================================
   QUOTE + CONTACT SECTION
================================================ */
.lt-quote-section {
    background: var(--offwhite);
    padding: 92px 0;
}
.lt-quote-section .lt-container {
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
}
.lt-quote-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    border: 1px solid var(--border);
}
/* Form side */
.lt-quote-form-side {
    background: var(--white);
    padding: 56px 52px;
}
.lt-form-group { margin-bottom: 16px; }
.lt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.lt-form-input {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--offwhite);
    padding: 13px 16px;
    font-size: 13px; font-weight: 300;
    font-family: var(--font-body);
    color: var(--black);
    outline: none;
    transition: border-color .2s, background .2s;
    appearance: none;
}
.lt-form-input:focus {
    border-color: var(--gold);
    background: var(--white);
}
.lt-form-input::placeholder { color: #aaa; }
textarea.lt-form-input { resize: vertical; min-height: 110px; }
.lt-form-submit {
    background: var(--gold); color: #0a0a0a;
    border: none; cursor: pointer;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 13px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    transition: background .2s, transform .2s;
    margin-top: 6px;
}
.lt-form-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}
.lt-contact-side {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
        url('../images/contactus.jfif');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 52px 40px;
    border-left: 1px solid rgba(250,183,2,.15);
    position: relative;
}
.lt-contact-side .lt-section-h2 { color: var(--white); font-size: 24px; margin-bottom: 6px; }
.lt-contact-side > p {
    font-family: var(--font-body);
    font-size: 13px; font-weight: 300;
    color: white; margin: 0 0 30px; line-height: 1.6;
}
.lt-contact-list { display: flex; flex-direction: column; gap: 0; }
.lt-contact-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.lt-contact-item:last-child { border-bottom: none; }
.lt-contact-item-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    border: 1px solid rgba(250,183,2,.28);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 15px;
}
.lt-contact-item-label {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 500;
    color: white;
    letter-spacing: .10em; text-transform: uppercase;
    display: block; margin-bottom: 4px;
}
.lt-contact-item-val {
    font-family: var(--font-body);
    font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,.70); line-height: 1.45;
}
.lt-contact-item-val a {
    color: var(--gold); text-decoration: none;
}
.lt-contact-item-val a:hover { text-decoration: underline; }

/* ================================================
   CTA BANNER STRIP
================================================ */
.lt-cta-strip {
    background: var(--gold);
    padding: 0;
}
.lt-cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 48px;
}
.lt-cta-strip-text h3 {
    font-family: var(--font-head);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.01em;
    line-height: 1.2; margin: 0 0 6px;
}
.lt-cta-strip-text p {
    font-family: var(--font-body);
    font-size: 13px; font-weight: 300;
    color: rgba(10,10,10,.60); margin: 0;
}
.lt-cta-strip-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--black); color: var(--white);
    font-family: var(--font-body);
    font-size: 12px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
}
.lt-cta-strip-btn:hover {
    background: #1f1f1f; color: var(--white);
    transform: translateY(-2px); text-decoration: none;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
    .lt-infobar-inner     { grid-template-columns: repeat(2, 1fr); }
    .lt-infobar-item:nth-child(2) { border-right: none; }
}
@media (max-width: 900px) {
    .lt-about-grid        { grid-template-columns: 1fr; }
    .lt-about-visual      { clip-path: none; min-height: 320px; }
    .lt-services-grid     { grid-template-columns: 1fr; }
    .lt-svc-card          { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .lt-svc-card:last-child { border-bottom: none; }
    .lt-quote-grid        { grid-template-columns: 1fr; }
    .lt-contact-side      { border-left: none; border-top: 1px solid rgba(250,183,2,.15); }
    .lt-cta-strip-inner   { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {

    /* HERO */
    .lt-hero h1 { font-size: 32px; }
    .lt-hero-content { padding: 80px 24px 60px; }

    .lt-hero-stats { flex-direction: column; }
    .lt-hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    /* ABOUT */
    .lt-about-text { padding: 40px 24px; }

    /* CONTAINER PADDING */
    .lt-services .lt-container,
    .lt-quote-section .lt-container {
        padding: 0 18px;
    }

    /* FORM */
    .lt-quote-form-side { padding: 36px 24px; }
    .lt-contact-side { padding: 36px 24px; }
    .lt-form-row { grid-template-columns: 1fr; gap: 0; }

    /* INFO BAR */
    .lt-infobar-inner { grid-template-columns: 1fr; }
    .lt-infobar-item {
        border-right: none;
        border-bottom: 1px solid rgba(10,10,10,.10);
    }
    .lt-infobar-item:last-child { border-bottom: none; }

    /* ===============================
       🔥 SERVICES MOBILE FIX (IMPORTANT)
    =============================== */

    .lt-services { padding: 60px 0; }

    /* STACK CARDS */
    .lt-services-grid,
    .lt-services-grid2 {
        grid-template-columns: 1fr !important;
        border: none;
        gap: 20px;
    }

    /* CARD DESIGN */
    .lt-svc-card {
        padding: 20px;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 8px;
        margin-bottom: 10px;
    }

    /* IMAGE */
    .lt-svc-card-img {
        height: 180px;
        border-radius: 6px;
    }

    /* ICON CENTER */
    .lt-svc-icon {
        margin: 10px auto 15px;
    }

    /* TEXT ALIGN */
    .lt-svc-card h3 {
        font-size: 16px;
        text-align: center;
    }

    .lt-svc-card p {
        font-size: 13px;
        text-align: center;
    }

    /* BUTTON */
    .lt-svc-link {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* OPTIONAL PREMIUM TOUCH */
    .lt-svc-card {
        box-shadow: 0 6px 20px rgba(0,0,0,.15);
    }
}
@media (prefers-reduced-motion: reduce) {
    .lt-reveal            { opacity:1; transform:none; transition:none; }
    .lt-hero h1,
    .lt-hero-desc,
    .lt-hero-eyebrow,
    .lt-hero::after       { animation:none; opacity:1; }
    .lt-hero h1 em        { animation:none; -webkit-text-fill-color:var(--gold); color:var(--gold); }
}

.lt-about {
    margin: 80px 0; /* top & bottom */
}

.successform,
.errorform {
    display: none;
}

/* ================================================
   TRUSTED BY / CLIENTS (for home page)
================================================ */
.cp-clients {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

/* header reuse */
.cp-sec-header.center {
  text-align: center;
}
.cp-tag {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #FAB702;
  margin-bottom: 10px;
}
.cp-sec-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a0a0a;
}
.cp-sec-header h2 em {
  color: #FAB702;
  font-style: normal;
}

/* scrolling track */
.cp-clients-track-wrap {
  position: relative;
  overflow: hidden;
}

/* fade edges */
.cp-clients-track-wrap::before,
.cp-clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.cp-clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.cp-clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* scrolling animation */
@keyframes ltClientScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cp-clients-track {
  display: flex;
  animation: ltClientScroll 25s linear infinite;
  width: max-content;
}

.cp-clients-track:hover {
  animation-play-state: paused;
}

/* logo card */
.cp-client-card {
  width: 200px;
  height: 110px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.cp-client-card:hover {
  transform: translateY(-4px);
}

/* logo */
.client-logo {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

@media (max-width: 768px) {
    .lt-hero-video {
        display: none;
    }
}

/* ============================================================
   LEASETIME — HOME PAGE STYLES
   Requires: global.css loaded first.
   Contains ONLY home-page-specific sections:
     - Info bar
     - Hero
     - About
     - Services
     - Clients ticker
     - Quote / Contact
     - CTA strip
   ============================================================ */


/* ============================================================
   INFO BAR
   ============================================================ */
.lt-infobar {
    background: var(--brand);
    padding: 0;
    border-bottom: 1px solid rgba(10,10,10,.10);
}
.lt-infobar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.lt-infobar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-right: 1px solid rgba(10,10,10,.10);
}
.lt-infobar-item:last-child { border-right: none; }
.lt-infobar-item i {
    font-size: 15px;
    color: var(--white);
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}
.lt-infobar-item p {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
    line-height: 1.4;
}


/* ============================================================
   HERO
   ============================================================ */
.lt-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('/images/slider/slider.webp') center/cover no-repeat;
}

/* left brand accent bar */
.lt-hero::before {
    content: '';
    position: absolute;
    left:0; top:0; bottom:0; width:4px;
    background: linear-gradient(to bottom, transparent, var(--brand) 30%, rgba(255,254,250,.8) 70%, transparent);
    z-index: 2;
}
/* bottom brand line */
.lt-hero::after {
    content: '';
    position: absolute;
    bottom:0; left:0; right:0; height:2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    transform-origin: left;
    z-index: 2;
    animation: ltLineGrow 1.2s .8s ease both;
}
.lt-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 48px 90px;
}
.lt-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--brand);
    padding: 6px 16px 6px 12px;
    margin-bottom: 24px;
    animation: ltFadeUp .7s .2s both;
}
.lt-hero-eyebrow .ht-dot {
    width:6px; height:6px; border-radius:50%;
    background: var(--brand); flex-shrink:0;
    animation: ltPulse 2s 1s ease infinite;
}
.lt-hero-eyebrow span {
    font-family: var(--font-body);
    font-size:11px; font-weight:500;
    letter-spacing:.18em; text-transform:uppercase;
    color: var(--white);
}
.lt-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(32px, 5.5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.06;
    letter-spacing: -.02em;
    margin: 0 0 18px;
    max-width: 720px;
    text-shadow: 0 2px 14px rgba(0,0,0,.45);
    animation: ltFadeUp .9s .3s cubic-bezier(.22,1,.36,1) both;
}
.lt-hero h6 {
    font-family: var(--font-head);
    font-size: clamp(14px, 2vw, 21px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 18px;
    max-width: 720px;
    text-shadow: 0 2px 14px rgba(0,0,0,.45);
    animation: ltFadeUp .9s .3s cubic-bezier(.22,1,.36,1) both;
}
.lt-hero h1 span,
.lt-hero h6 span {
    font-style: normal;
    background: linear-gradient(90deg, var(--brand), var(--brand), var(--brand));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ltShimmer 3s 1.5s linear infinite;
    -webkit-text-stroke: 1px var(--white);
}
.lt-hero-desc {
    font-family: var(--font-body);
    font-size:15px; font-weight:400;
    color: var(--white);
    max-width:520px; line-height:1.8;
    margin:0 0 36px;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
    animation: ltFadeUp .9s .5s cubic-bezier(.22,1,.36,1) both;
}
.lt-hero-cta {
    display: inline-block;
    padding: 14px 38px;
    background: var(--brand);
    color: var(--white);
    font-family: var(--font-body);
    font-size:13px; font-weight:600;
    letter-spacing:.10em; text-transform:uppercase;
    text-decoration:none;
    border:none; cursor:pointer;
    transition: background .25s, transform .25s, box-shadow .25s;
    animation: ltFadeUp .9s .65s cubic-bezier(.22,1,.36,1) both;
}
.lt-hero-cta:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(175,37,27,.35);
    color: var(--black);
    text-decoration: none;
}
/* Hero stats bar */
.lt-hero-stats {
    display: flex;
    border: 1px solid rgba(255,255,255,.12);
    max-width: 540px;
    margin-top: 44px;
    animation: ltFadeUp .9s .80s cubic-bezier(.22,1,.36,1) both;
}
.lt-hero-stat {
    flex:1; padding:20px 16px; text-align:center;
    border-right: 1px solid rgba(255,255,255,.10);
}
.lt-hero-stat:last-child { border-right:none; }
.lt-hero-stat-num {
    font-family: var(--font-head);
    font-size:28px; font-weight:800;
    display:block; line-height:1;
}
.lt-hero-stat-label {
    font-family: var(--font-body);
    font-size:10px; font-weight:500;
    color: var(--white);
    letter-spacing:.08em; text-transform:uppercase;
    margin-top:5px; display:block;
}


/* ============================================================
   ABOUT
   ============================================================ */
.lt-about {
    background: var(--white);
    overflow: hidden;
    margin: 80px 0;
}
.lt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
}
.lt-about-text {
    background: var(--offwhite);
    padding: 50px 40px;
    display:flex; flex-direction:column; justify-content:center;
}
.lt-about-text p {
    font-family: var(--font-body);
    font-size:15px; font-weight:300;
    color:#444; line-height:1.9;
    margin:0 0 18px;
}
.lt-about-text p:last-of-type { margin-bottom:0; }
.lt-about-highlight {
    border-left: 3px solid var(--brand);
    padding: 18px 22px;
    background: var(--brand-pale);
    margin: 16px 0 28px;
}
.lt-about-highlight p {
    font-family: var(--font-head);
    font-size:14px; font-weight:600;
    color:var(--black); font-style:italic;
    margin:0; line-height:1.7;
}
.lt-about-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1.5px solid var(--black);
    background: transparent;
    color: var(--black);
    font-family: var(--font-body);
    font-size:12px; font-weight:500;
    letter-spacing:.10em; text-transform:uppercase;
    text-decoration:none; cursor:pointer;
    transition: background .25s, color .25s, border-color .25s;
}
.lt-about-btn:hover { background:var(--black); color:var(--white); text-decoration:none; }

/* visual / image side */
.lt-about-visual {
    position:relative; overflow:hidden;
    clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
    background:#111;
}
.lt-about-visual-img {
    width:100%; height:100%;
    min-height:420px; object-fit:cover; display:block;
    transition: transform .7s ease, filter .5s ease;
}
.lt-about-visual:hover .lt-about-visual-img { transform:scale(1.05); filter:brightness(.85); }
.lt-about-visual-badge {
    position:absolute; bottom:30px; left:30px;
    background:var(--black); border-left:3px solid var(--brand);
    padding:18px 24px; min-width:160px; z-index:2;
}
.lt-about-visual-badge .badge-num {
    font-family: var(--font-head);
    font-size:36px; font-weight:800;
    color:var(--brand); display:block; line-height:1;
}
.lt-about-visual-badge .badge-lbl {
    font-family: var(--font-body);
    font-size:10px; font-weight:400;
    color:rgba(255,255,255,.45);
    letter-spacing:.08em; text-transform:uppercase;
    margin-top:5px; display:block;
}

/* ============================================================
   CLIENTS TICKER
   ============================================================ */
.cp-clients {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}
.cp-clients-track-wrap {
    position:relative; overflow:hidden;
}
.cp-clients-track-wrap::before,
.cp-clients-track-wrap::after {
    content:'';
    position:absolute; top:0; bottom:0; width:120px;
    z-index:2; pointer-events:none;
}
.cp-clients-track-wrap::before { left:0;  background:linear-gradient(to right, var(--white), transparent); }
.cp-clients-track-wrap::after  { right:0; background:linear-gradient(to left,  var(--white), transparent); }
.cp-clients-track {
    display:flex;
    animation: ltClientScroll 25s linear infinite;
    width:max-content;
}
.cp-clients-track:hover { animation-play-state:paused; }
.cp-client-card {
    width:200px; height:110px;
    background:var(--white);
    border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    margin:0 12px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.3s;
}
.cp-client-card:hover { transform:translateY(-4px); }
.client-logo { max-width:100%; max-height:70px; object-fit:contain; }


/* ============================================================
   QUOTE + CONTACT
   ============================================================ */
.lt-quote-section {
    background: var(--offwhite);
    padding: 92px 0;
}
.lt-quote-section .lt-container { max-width:1200px; margin:0 auto; padding:0 48px; }
.lt-quote-grid {
    display:grid;
    grid-template-columns: 1fr 420px;
    border: 1px solid var(--border);
}
.lt-quote-form-side { background:var(--white); padding:56px 52px; }
.lt-form-group  { margin-bottom:16px; }
.lt-form-row    { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.lt-form-input {
    width:100%;
    border: 1px solid var(--border);
    background: var(--offwhite);
    padding:13px 16px;
    font-size:13px; font-weight:300;
    font-family:var(--font-body);
    color:var(--black);
    outline:none;
    transition: border-color .2s, background .2s;
    appearance:none;
}
.lt-form-input:focus { border-color:var(--brand); background:var(--white); }
.lt-form-input::placeholder { color:#aaa; }
textarea.lt-form-input { resize:vertical; min-height:110px; }
.lt-form-submit {
    background:var(--brand); color:var(--white);
    border:none; cursor:pointer;
    padding:14px 36px;
    font-family:var(--font-body);
    font-size:13px; font-weight:600;
    letter-spacing:.08em; text-transform:uppercase;
    transition: background .2s, transform .2s;
    margin-top:6px;
}
.lt-form-submit:hover { background:var(--brand-dark); transform:translateY(-2px); }

.lt-contact-side {
    background:
        linear-gradient(rgba(0,0,0,.95), rgba(0,0,0,.65)),
        url('../images/contactus.jfif');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:52px 40px;
    border-left: 1px solid var(--border-subtle);
    position:relative;
}
.lt-contact-side .lt-section-h2 { color:var(--white); font-size:24px; margin-bottom:6px; }
.lt-contact-side > p {
    font-family:var(--font-body);
    font-size:13px; font-weight:300;
    color:var(--white); margin:0 0 30px; line-height:1.6;
}
.lt-contact-list { display:flex; flex-direction:column; gap:0; }
.lt-contact-item {
    display:flex; align-items:flex-start; gap:14px;
    padding:16px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.lt-contact-item:last-child { border-bottom:none; }
.lt-contact-item-icon {
    width:38px; height:38px; flex-shrink:0;
    border: 1px solid #F9B701;
    display:flex; align-items:center; justify-content:center;
    color:var(--brand); font-size:15px;
}
.lt-contact-item-label {
    font-family:var(--font-body);
    font-size:10px; font-weight:500;
    color:var(--white);
    letter-spacing:.10em; text-transform:uppercase;
    display:block; margin-bottom:4px;
}
.lt-contact-item-val {
    font-family:var(--font-body);
    font-size:13px; font-weight:300;
    color:rgba(255,255,255,.70); line-height:1.45;
}
.lt-contact-item-val a { color:var(--brand); text-decoration:none; }
.lt-contact-item-val a:hover { text-decoration:underline; }

/* form state messages */
.successform, .errorform { display:none; }


/* ============================================================
   CTA STRIP
   ============================================================ */
.lt-cta-strip { background:var(--brand); padding:0; }
.lt-cta-strip-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    max-width:1200px;
    margin:0 auto;
    padding:40px 48px;
}
.lt-cta-strip-text h3 {
    font-family:var(--font-head);
    font-size:clamp(18px,2.5vw,26px);
    font-weight:800;
    color:var(--black);
    letter-spacing:-.01em;
    line-height:1.2; margin:0 0 6px;
}
.lt-cta-strip-text p {
    font-family:var(--font-body);
    font-size:13px; font-weight:300;
    color:rgba(10,10,10,.60); margin:0;
}
.lt-cta-strip-btn {
    display:inline-block;
    padding:14px 36px;
    background:var(--black); color:var(--white);
    font-family:var(--font-body);
    font-size:12px; font-weight:600;
    letter-spacing:.12em; text-transform:uppercase;
    text-decoration:none; border:none; cursor:pointer;
    flex-shrink:0;
    transition: background .2s, transform .2s;
}
.lt-cta-strip-btn:hover { background:#1f1f1f; color:var(--white); transform:translateY(-2px); text-decoration:none; }


/* ============================================================
   HOME-PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .lt-infobar-inner { grid-template-columns:repeat(2,1fr); }
    .lt-infobar-item:nth-child(2) { border-right:none; }
}
@media (max-width: 900px) {
    .lt-about-grid   { grid-template-columns:1fr; }
    .lt-about-visual { clip-path:none; min-height:320px; }
    .lt-services-grid { grid-template-columns:1fr; }
    .lt-svc-card      { border-right:none; border-bottom:1px solid var(--dark-line); }
    .lt-svc-card:last-child { border-bottom:none; }
    .lt-quote-grid    { grid-template-columns:1fr; }
    .lt-contact-side  { border-left:none; border-top:1px solid var(--border-subtle); }
    .lt-cta-strip-inner { flex-direction:column; text-align:center; }
}
@media (max-width: 600px) {
    .lt-hero h1 { font-size:32px; }
    .lt-hero h6 { font-size:18px; line-height:1.4; margin-bottom:18px; }
    .lt-hero-content { padding:80px 24px 60px; }
    .lt-hero-stats  { flex-direction:column; }
    .lt-hero-stat   { border-right:none; border-bottom:1px solid rgba(255,255,255,.10); }
    .lt-about-text  { padding:40px 24px; }
    .lt-services    { padding:60px 0; }
    .lt-services .lt-container,
    .lt-quote-section .lt-container { padding:0 18px; }
    .lt-services-grid,
    .lt-services-grid2 {
        grid-template-columns:1fr !important;
        border:none; gap:20px;
    }
    .lt-svc-card    { padding:20px; border:1px solid var(--dark-line); border-radius:8px; margin-bottom:10px; box-shadow:0 6px 20px rgba(0,0,0,.15); }
    .lt-svc-card-img { height:180px; border-radius:6px; }
    .lt-svc-icon    { margin:10px auto 15px; }
    .lt-svc-card h3 { font-size:16px; text-align:center; }
    .lt-svc-card p  { font-size:13px; text-align:center; }
    .lt-svc-link    { display:block; width:100%; text-align:center; }
    .lt-quote-form-side { padding:36px 24px; }
    .lt-contact-side    { padding:36px 24px; }
    .lt-form-row    { grid-template-columns:1fr; gap:0; }
    .lt-infobar-inner { grid-template-columns:1fr; }
    .lt-infobar-item  { border-right:none; border-bottom:1px solid rgba(10,10,10,.10); }
    .lt-infobar-item:last-child { border-bottom:none; }
}

.lt-hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.90);
    z-index: 5;
    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 10px 0; /* vertical spacing */
}

.lt-hero-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;

    /* slower animation */
    animation: ltTickerLoop 38s linear infinite;
}

.lt-hero-ticker-track span {
    flex-shrink: 0;
    white-space: nowrap;

    /* more spacing between lines */
    padding-right: 180px;
    padding-left: 20px;

    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand);
}

@keyframes ltTickerLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


.lt-hero-wrapper{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    position:relative;
    z-index:2;
}

.lt-hero-form-box{
    width:420px;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.lt-hero-form-box h3{
    margin-bottom:15px;
}

.lt-hero-form-box input,
.lt-hero-form-box select,
.lt-hero-form-box textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--black);
    background: #fff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    transition: border-color .2s;
    margin-bottom: 0;        /* remove old bottom margin */
}

.lt-hero-form-box input:focus,
.lt-hero-form-box select:focus,
.lt-hero-form-box textarea:focus {
    border-color: #c89d5a;
}

.lt-hero-form-box input::placeholder,
.lt-hero-form-box textarea::placeholder {
    color: #bbb;
    font-size: 13px;
}
/* Label above each field */
.lt-form-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 5px;
}

/* Fix form-group spacing */
.lt-hero-form-box .lt-form-group {
    margin-bottom: 14px;
}

/* Fix select dropdown arrow */
.lt-hero-form-box select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
    height: auto;        /* override old height:52px */
}

/* Fix .lt-form-row gap inside the form box */
.lt-hero-form-box .lt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}

/* Submit button full width */
.lt-hero-form-box .lt-form-submit {
    width: 100%;
    margin-top: 6px;
    background: #F9B701;
    border-radius: 6px;
}

.lt-hero-form-box .lt-form-submit:hover {
    background: #F9B701;
}

.form-row{
    display:flex;
    gap:10px;
}

.form-row input{
    flex:1;
}

.lt-hero-form-box button{
    width:100%;
    padding:14px;
    background:#c89d5a;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

@media(max-width:991px){

    .lt-hero-wrapper{
        flex-direction:column;
    }

    .lt-hero-form-box{
        width:100%;
    }
}

.lt-hero-form-box select.lt-form-input{
    width:100%;
    height:52px;
    border:1px solid #ddd;
    border-radius:4px;
    padding:0 15px;
    background:#fff;
    appearance:none;
}

.lt-hero-form-box{
    background:#fff;
    padding:35px;
    border-radius:8px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    width:1300px;
}

.lt-hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 0px 80px 90px;
}

.lt-hero-content {
    flex: 1;
    min-width: 0;
}

.lt-hero-form-box {
    width: 525px;
    flex-shrink: 0;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

@media (max-width: 991px) {
    .lt-hero-wrapper {
        flex-direction: column;
        padding: 80px 24px 60px;
    }
    .lt-hero-form-box {
        width: 100%;
    }
}
