/* ============================================================
   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.JPG') center/cover no-repeat;
}
.lt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.65), rgba(0,0,0,.75));
    z-index: 1;
}
/* 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;
    color: var(--brand); 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;
}


/* ============================================================
   SERVICES
   ============================================================ */
.lt-services {
    background: var(--dark-bg);
    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(--brand), 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 var(--dark-line);
}
.lt-services-grid2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--dark-line);
}
.lt-svc-card {
    padding: 42px 32px;
    border-right: 1px solid var(--dark-line);
    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(--brand);
    transition: width .35s ease;
}
.lt-svc-card:hover { background: var(--brand-pale); }
.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 var(--brand-pale);
    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:var(--white);
}
.lt-svc-card:hover .lt-svc-icon { background:var(--brand); border-color:var(--brand); 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(--brand); color:var(--white);
    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(--brand-dark); color:var(--black); text-decoration:none; }


/* ============================================================
   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%);
    }
}