/* =========================================================
   LETHBRIDGE MOVERS - PREMIUM PAGE DESIGN
   ========================================================= */

:root {
    --lh-red: #C71111;
    --lh-red-dark: #a90e0e;
    --lh-navy: #07152f;
    --lh-navy-2: #0c1d3b;
    --lh-text: #172033;
    --lh-muted: #667085;
    --lh-light: #f6f8fb;
    --lh-border: #e6e9ef;
    --lh-white: #ffffff;

    --lh-font:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--lh-font);
    color: var(--lh-text);
    background: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.lh-page {
    width: 100%;
    overflow: hidden;
    font-family: var(--lh-font);
}

/* =========================================================
   HERO
   ========================================================= */

.lh-hero {
    position: relative;
    padding: 100px 20px 90px;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(199, 17, 17, 0.28),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #07152f 0%,
            #0c1d3b 55%,
            #3a1015 100%
        );
    color: #ffffff;
}

.lh-hero-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.lh-hero-content {
    max-width: 900px;
}

.lh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.lh-eyebrow::before {
    content: "";
    width: 36px;
    height: 3px;
    border-radius: 20px;
    background: var(--lh-red);
}

.lh-hero h1 {
    margin: 0;
    max-width: 850px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.lh-hero h1 span {
    color: var(--lh-red);
}

.lh-hero-text {
    max-width: 780px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.8;
}

.lh-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.lh-btn-primary,
.lh-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.lh-btn-primary {
    color: #ffffff;
    background: var(--lh-red);
    box-shadow: 0 12px 30px rgba(199, 17, 17, 0.28);
}

.lh-btn-primary:hover {
    background: var(--lh-red-dark);
    transform: translateY(-2px);
}

.lh-btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.07);
}

.lh-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}


/* =========================================================
   INTRO
   IMAGE REMOVED FROM FIRST SECTION
   ========================================================= */

.lh-intro {
    padding: 105px 20px;
    background: #ffffff;
}

.lh-intro-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.lh-intro-copy {
    max-width: 920px;
}

.lh-section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--lh-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.lh-intro h2 {
    margin: 0 0 24px;
    max-width: 850px;
    color: var(--lh-navy);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    letter-spacing: -1.7px;
}

.lh-intro p {
    max-width: 850px;
    margin: 0 0 20px;
    color: var(--lh-muted);
    font-size: 17px;
    line-height: 1.85;
}

.lh-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--lh-red);
    font-size: 15px;
    font-weight: 800;
    transition: gap 0.25s ease;
}

.lh-text-link:hover {
    gap: 13px;
    color: var(--lh-red-dark);
}

.lh-text-link::after {
    content: "→";
    font-size: 18px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.lh-services {
    padding: 105px 20px;
    background: var(--lh-light);
}

.lh-services-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.lh-services-heading {
    max-width: 780px;
    margin-bottom: 48px;
}

.lh-services-heading h2 {
    margin: 0 0 18px;
    color: var(--lh-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.lh-services-heading p {
    margin: 0;
    color: var(--lh-muted);
    font-size: 17px;
    line-height: 1.8;
}

.lh-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lh-service-item {
    position: relative;
    min-height: 165px;
    padding: 28px;
    border: 1px solid var(--lh-border);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.lh-service-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--lh-red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.lh-service-item:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 17, 17, 0.25);
    box-shadow: 0 18px 40px rgba(7, 21, 47, 0.08);
}

.lh-service-item:hover::before {
    transform: scaleY(1);
}

.lh-service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--lh-red);
    font-size: 12px;
    font-weight: 800;
}

.lh-service-item h3 {
    margin: 0;
    color: var(--lh-navy);
    font-size: 18px;
    line-height: 1.35;
}

.lh-services-bottom {
    max-width: 820px;
    margin-top: 35px;
}

.lh-services-bottom p {
    margin: 0 0 22px;
    color: var(--lh-muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   WHY CHOOSE
   ========================================================= */

.lh-why {
    padding: 110px 20px;
    background: #ffffff;
}

.lh-why-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.lh-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #e9edf3;
    box-shadow: 0 25px 70px rgba(7, 21, 47, 0.13);
}

.lh-image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.lh-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: inherit;
    pointer-events: none;
}

.lh-why-content h2 {
    margin: 0 0 20px;
    color: var(--lh-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.6px;
}

.lh-why-content > p {
    margin: 0 0 28px;
    color: var(--lh-muted);
    font-size: 17px;
    line-height: 1.8;
}

.lh-benefits {
    display: grid;
    gap: 14px;
}

.lh-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--lh-text);
    font-size: 15px;
    font-weight: 700;
}

.lh-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--lh-red);
    font-size: 14px;
    font-weight: 900;
}


/* =========================================================
   SECOND IMAGE / SUPPORT
   ========================================================= */

.lh-support {
    padding: 105px 20px;
    background: var(--lh-light);
}

.lh-support-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.lh-support-content h2 {
    margin: 0 0 22px;
    color: var(--lh-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.6px;
}

.lh-support-content p {
    margin: 0 0 20px;
    color: var(--lh-muted);
    font-size: 17px;
    line-height: 1.85;
}

.lh-support-image {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(7, 21, 47, 0.12);
}

.lh-support-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lh-support-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   CONTACT STRIP
   ========================================================= */

.lh-contact-strip {
    padding: 70px 20px;
    background: var(--lh-red);
    color: #ffffff;
}

.lh-contact-strip-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.lh-contact-strip h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.lh-contact-strip p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.7;
}

.lh-contact-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 27px;
    border-radius: 9px;
    color: var(--lh-navy);
    background: #ffffff;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.lh-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   PROJECTS
   ========================================================= */

.lh-projects {
    padding: 110px 20px;
    background: #ffffff;
}

.lh-projects-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.lh-projects-heading {
    max-width: 800px;
    margin-bottom: 42px;
}

.lh-projects-heading h2 {
    margin: 0;
    color: var(--lh-navy);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.lh-projects-heading h2 span {
    color: var(--lh-red);
}


/* =========================================================
   PROJECT CAROUSEL
   ========================================================= */

.lh-project-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #0b1220;
    box-shadow: 0 30px 80px rgba(7, 21, 47, 0.15);
}

.lh-project-track {
    position: relative;
    width: 100%;
}

.lh-project-slide {
    display: none;
    width: 100%;
}

.lh-project-slide.active {
    display: block;
    animation: lhFade 0.6s ease;
}

@keyframes lhFade {
    from {
        opacity: 0;
        transform: scale(1.015);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lh-project-slide img {
    width: 100%;
    height: 610px;
    object-fit: cover;
}


/* =========================================================
   CAROUSEL ARROWS
   ========================================================= */

.lh-project-prev,
.lh-project-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(7, 21, 47, 0.62);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    font-size: 24px;
    line-height: 1;
}

.lh-project-prev {
    left: 22px;
}

.lh-project-next {
    right: 22px;
}

.lh-project-prev:hover,
.lh-project-next:hover {
    background: var(--lh-red);
    border-color: var(--lh-red);
    transform: translateY(-50%) scale(1.05);
}


/* =========================================================
   CAROUSEL DOTS
   ========================================================= */

.lh-project-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
}

.lh-project-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lh-project-dot.active {
    width: 30px;
    border-radius: 20px;
    background: var(--lh-red);
}


/* =========================================================
   PROJECT CONTACT BUTTON
   ========================================================= */

.lh-project-contact {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.lh-project-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border-radius: 10px;
    color: #ffffff;
    background: var(--lh-red);
    box-shadow: 0 12px 30px rgba(199, 17, 17, 0.23);
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.lh-project-contact a:hover {
    background: var(--lh-red-dark);
    transform: translateY(-3px);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.lh-final-cta {
    position: relative;
    padding: 105px 20px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(199, 17, 17, 0.32),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #07152f,
            #0c1d3b
        );
    text-align: center;
    overflow: hidden;
}

.lh-final-cta::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -180px;
    top: -200px;
    border: 1px solid rgba(199, 17, 17, 0.25);
    border-radius: 50%;
}

.lh-final-cta-inner {
    position: relative;
    z-index: 2;
    width: min(850px, 100%);
    margin: 0 auto;
}

.lh-final-cta h2 {
    margin: 0 0 28px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.lh-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 32px;
    border-radius: 10px;
    color: #ffffff;
    background: var(--lh-red);
    box-shadow: 0 15px 35px rgba(199, 17, 17, 0.28);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}

.lh-final-btn:hover {
    background: var(--lh-red-dark);
    transform: translateY(-3px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .lh-hero {
        padding: 80px 20px 70px;
    }

    .lh-intro,
    .lh-services,
    .lh-why,
    .lh-support,
    .lh-projects {
        padding: 80px 20px;
    }

    .lh-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lh-why-grid,
    .lh-support-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .lh-contact-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .lh-project-slide img {
        height: 500px;
    }
}


@media (max-width: 640px) {

    .lh-hero {
        padding: 65px 18px 60px;
    }

    .lh-hero h1 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .lh-hero-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .lh-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .lh-btn-primary,
    .lh-btn-secondary {
        width: 100%;
    }

    .lh-intro,
    .lh-services,
    .lh-why,
    .lh-support,
    .lh-projects {
        padding: 65px 18px;
    }

    .lh-intro h2,
    .lh-services-heading h2,
    .lh-why-content h2,
    .lh-support-content h2 {
        font-size: 35px;
    }

    .lh-service-grid {
        grid-template-columns: 1fr;
    }

    .lh-service-item {
        min-height: auto;
    }

    .lh-image-card img {
        height: 360px;
    }

    .lh-support-image img {
        height: 350px;
    }

    .lh-contact-strip {
        padding: 60px 18px;
    }

    .lh-contact-strip-inner {
        gap: 25px;
    }

    .lh-contact-btn {
        width: 100%;
    }

    .lh-projects-heading h2 {
        font-size: 38px;
    }

    .lh-project-carousel {
        border-radius: 16px;
    }

    .lh-project-slide img {
        height: 360px;
    }

    .lh-project-prev,
    .lh-project-next {
        width: 43px;
        height: 43px;
        font-size: 20px;
    }

    .lh-project-prev {
        left: 12px;
    }

    .lh-project-next {
        right: 12px;
    }

    .lh-project-dots {
        bottom: 15px;
    }

    .lh-final-cta {
        padding: 75px 18px;
    }

    .lh-final-cta h2 {
        font-size: 38px;
    }

    .lh-final-btn {
        width: 100%;
    }
}
