/* =====================================================
   LEH / LADAKH PAGE
   RIC PACKERS & MOVERS
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #071b3a;
    background: #f5f8fc;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =====================================================
   COMMON CONTAINER
===================================================== */

.leh-container {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.leh-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    background: rgba(5, 22, 45, 0.92);

    border-bottom: 1px solid rgba(255,255,255,0.10);

    backdrop-filter: blur(10px);
}

.leh-header-inner {
    width: min(1180px, calc(100% - 80px));

    height: 78px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.leh-logo {
    display: block;

    line-height: 0;
}

.leh-logo img {
    width: 145px;

    display: block;
}


/* NAV */

.leh-nav {
    display: flex;

    align-items: center;

    gap: 28px;
}

.leh-nav a {
    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    transition: 0.25s ease;
}

.leh-nav a:hover {
    color: #5fa1f4;
}


/* NAV BUTTON */

.leh-nav-button {
    padding: 12px 18px;

    background: #1769d1;

    border-radius: 7px;
}

.leh-nav-button:hover {
    color: #ffffff !important;

    background: #0d5bbd;
}


/* MOBILE MENU */

.leh-menu {
    display: none;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 7px;

    background: transparent;

    color: #ffffff;

    font-size: 16px;

    cursor: pointer;
}


/* =====================================================
   LEH HERO - FIXED VERTICAL SPACING
===================================================== */

.leh-hero {
    position: relative;

    min-height: 690px;

    display: flex;

    align-items: center;

    padding-top: 78px;
    padding-bottom: 75px;

    overflow: hidden;

    background: #061a34;
}


/* BACKGROUND */

.leh-hero-bg {
    position: absolute;

    inset: 0;

    background-image:
        url("images/leh-hero.jpg");

    background-size: cover;

    background-position: center;

    transform: scale(1.02);

    animation: lehHeroZoom 12s ease-out forwards;
}

@keyframes lehHeroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.02);
    }

}


/* OVERLAY */

.leh-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 20, 42, 0.94) 0%,
            rgba(3, 20, 42, 0.78) 42%,
            rgba(3, 20, 42, 0.30) 75%,
            rgba(3, 20, 42, 0.20) 100%
        );
}

.leh-hero-container {
    position: relative;

    z-index: 3;

    width: min(1180px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.1fr 0.75fr;

    gap: 70px;

    align-items: center;

    transform: translateY(-20px);
}

/* HERO CONTENT */

.leh-hero-content {
    max-width: 680px;

    animation: lehHeroContent 0.9s ease forwards;
}

@keyframes lehHeroContent {

    from {
        opacity: 0;

        transform: translateX(-40px);
    }

    to {
        opacity: 1;

        transform: translateX(0);
    }

}


/* EYEBROW */

.leh-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: #62a4f4;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.3px;
}

.leh-eyebrow span {
    width: 28px;
    height: 2px;

    background: #3185e8;
}


/* HERO HEADING */

.leh-hero h1 {
    max-width: 700px;

    margin-bottom: 22px;

    color: #ffffff;

    font-size: clamp(48px, 5.5vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 800;
}

.leh-hero h1 strong {
    display: block;

    color: #3180df;
}


/* HERO DESCRIPTION */

.leh-hero-content > p {
    max-width: 590px;

    margin-bottom: 30px;

    color: #d0dceb;

    font-size: 14px;

    line-height: 1.8;
}


/* BUTTONS */

.leh-hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 28px;
}


/* PRIMARY */

.leh-primary-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 21px;

    color: #ffffff;

    background: #1769d1;

    border-radius: 7px;

    font-size: 11px;

    font-weight: 700;

    transition: 0.25s ease;
}

.leh-primary-btn:hover {
    background: #0d5bbd;

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(23,105,209,0.25);
}


/* SECONDARY */

.leh-secondary-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 19px;

    color: #ffffff;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.22);

    border-radius: 7px;

    font-size: 11px;

    font-weight: 600;

    transition: 0.25s ease;
}

.leh-secondary-btn:hover {
    background: rgba(255,255,255,0.13);

    transform: translateY(-3px);
}


/* TRUST */

.leh-trust {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;
}

.leh-trust span {
    display: flex;

    align-items: center;

    gap: 6px;

    color: #d2deec;

    font-size: 10px;
}

.leh-trust i {
    color: #3185e8;

    font-size: 10px;
}


/* =====================================================
   HERO CARD
===================================================== */

.leh-hero-card {
    position: relative;

    padding: 34px;

    background: rgba(255,255,255,0.96);

    border-radius: 22px;

    box-shadow:
        0 25px 70px rgba(0,0,0,0.25);

    animation: lehHeroCard 1s ease 0.2s forwards;

    opacity: 0;
}

@keyframes lehHeroCard {

    from {
        opacity: 0;

        transform: translateY(35px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* CARD LABEL */

.leh-card-label {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 17px;

    color: #1769d1;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.leh-card-label i {
    font-size: 13px;
}


/* CARD HEADING */

.leh-hero-card h2 {
    margin-bottom: 14px;

    color: #071b3a;

    font-size: 32px;

    line-height: 1.1;

    letter-spacing: -1px;
}

.leh-hero-card h2 strong {
    display: block;

    color: #1769d1;
}


/* CARD TEXT */

.leh-hero-card > p {
    color: #61758d;

    font-size: 11px;

    line-height: 1.7;

    margin-bottom: 25px;
}


/* ROUTE */

.leh-card-route {
    padding: 17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    background: #f3f7fc;

    border: 1px solid #dce7f2;

    border-radius: 12px;
}

.leh-route-point {
    color: #071b3a;

    font-size: 11px;

    font-weight: 700;
}

.leh-route-point span {
    display: block;

    margin-bottom: 4px;

    color: #8498ad;

    font-size: 7px;

    letter-spacing: 1px;
}

.leh-card-route > i {
    color: #1769d1;

    font-size: 14px;
}


/* CARD BOTTOM */

.leh-card-bottom {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 20px;

    color: #1769d1;

    font-size: 10px;

    font-weight: 700;
}


/* =====================================================
   HERO STATS
===================================================== */

.leh-hero-stats {
    position: absolute;

    z-index: 5;

    bottom: 0;
    left: 0;

    width: 100%;

    min-height: 75px;

    padding: 0 max(40px, calc((100% - 1180px) / 2));

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: rgba(3,20,42,0.86);

    border-top: 1px solid rgba(255,255,255,0.10);
}

.leh-hero-stats > div {
    display: flex;

    align-items: center;

    gap: 13px;

    border-right: 1px solid rgba(255,255,255,0.08);

    padding-left: 25px;
}

.leh-hero-stats > div:first-child {
    padding-left: 0;
}

.leh-hero-stats > div:last-child {
    border-right: 0;
}

.leh-hero-stats strong {
    color: #3185e8;

    font-size: 18px;
}

.leh-hero-stats span {
    color: #c1d0df;

    font-size: 10px;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.leh-section-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.leh-section-label {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-bottom: 16px;

    color: #1769d1;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.leh-section-label span {
    width: 28px;
    height: 2px;

    background: #1769d1;
}

.leh-section-heading h2 {
    margin-bottom: 17px;

    color: #071b3a;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.leh-section-heading h2 strong {
    color: #1769d1;
}

.leh-section-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #71859a;

    font-size: 13px;

    line-height: 1.8;
}


/* ==========================================
   BUILT FOR LADAKH
========================================== */

.leh-built-visual {
    width: 100%;
    background: #f7f9fc;
    overflow: hidden;
}


/* MAIN TWO COLUMN LAYOUT */

.leh-built-layout {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 55px;

    align-items: center;

    padding-top: 80px;
    padding-bottom: 80px;
}


/* ==========================================
   LEFT SIDE
========================================== */

.leh-built-left {
    min-width: 0;
}


.leh-built-heading {
    max-width: 680px;

    margin-bottom: 38px;
}


.leh-built-heading .leh-section-label {
    justify-content: flex-start;

    margin-bottom: 15px;

    color: #1769d1;
}


.leh-built-heading .leh-section-label span {
    background: #1769d1;
}


.leh-built-heading h2 {
    margin-bottom: 17px;

    color: #071b3a;

    font-size: clamp(42px, 4.5vw, 62px);

    line-height: 1;

    letter-spacing: -2.5px;
}


.leh-built-heading h2 strong {
    display: block;

    color: #1769d1;
}


.leh-built-heading p {
    max-width: 610px;

    color: #62778e;

    font-size: 13px;

    line-height: 1.8;
}


/* ==========================================
   CARDS
========================================== */

.leh-built-cards {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}


.leh-built-card {
    position: relative;

    min-height: 135px;

    padding: 21px;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    background: #ffffff;

    border: 1px solid #dce5ef;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(7, 27, 58, 0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.leh-built-card:hover {
    transform: translateY(-5px);

    border-color: #bfd5ed;

    box-shadow:
        0 15px 35px rgba(7, 27, 58, 0.09);
}


/* GOLD ACCENT */

.leh-built-card:nth-child(1)::after,
.leh-built-card:nth-child(3)::after {

    content: "";

    position: absolute;

    left: 0;
    top: 20px;

    width: 3px;
    height: 40px;

    background: #d3b477;

    border-radius: 0 3px 3px 0;
}


/* ICON */

.leh-built-card-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #1769d1;

    background: #edf5ff;

    border-radius: 11px;

    font-size: 14px;
}


/* NUMBER */

.leh-built-number {
    display: block;

    margin-bottom: 4px;

    color: #a9b8c8;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* CARD TITLE */

.leh-built-card h3 {
    margin-bottom: 6px;

    color: #071b3a;

    font-size: 14px;
}


/* CARD DESCRIPTION */

.leh-built-card p {
    max-width: 290px;

    color: #71859a;

    font-size: 9.5px;

    line-height: 1.7;
}


/* ==========================================
   BOTTOM MESSAGE
========================================== */

.leh-built-bottom {

    margin-top: 27px;

    display: flex;

    align-items: center;

    gap: 12px;
}


.leh-built-bottom span {

    width: 32px;

    height: 1px;

    flex-shrink: 0;

    background: #1769d1;
}


.leh-built-bottom p {

    color: #71859a;

    font-size: 9px;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

.leh-built-image {

    position: relative;

    width: 100%;

    height: 560px;

    overflow: hidden;

    border-radius: 20px;

    background: #dce8f4;

    box-shadow:
        0 20px 50px rgba(7, 27, 58, 0.12);
}


.leh-built-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.08),
            transparent 30%
        );

    pointer-events: none;
}


.leh-built-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.7s ease;
}


.leh-built-image:hover img {
    transform: scale(1.035);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    .leh-built-layout {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-top: 65px;
        padding-bottom: 65px;
    }


    .leh-built-image {

        height: 420px;

        order: 2;
    }


    .leh-built-left {
        order: 1;
    }

}


@media (max-width: 650px) {

    .leh-built-layout {

        width: calc(100% - 32px);

        gap: 28px;

        padding-top: 55px;
        padding-bottom: 55px;
    }


    .leh-built-heading {

        margin-bottom: 27px;
    }


    .leh-built-heading h2 {

        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .leh-built-heading p {

        font-size: 11px;

        line-height: 1.7;
    }


    .leh-built-cards {

        grid-template-columns: 1fr;

        gap: 10px;
    }


    .leh-built-card {

        min-height: auto;

        padding: 18px;
    }


    .leh-built-card-icon {

        width: 42px;
        height: 42px;
    }


    .leh-built-card h3 {

        font-size: 13px;
    }


    .leh-built-card p {

        font-size: 9px;
    }


    .leh-built-bottom {

        justify-content: center;

        gap: 8px;
    }


    .leh-built-bottom p {

        text-align: center;

        font-size: 8px;
    }


    .leh-built-image {

        height: 300px;

        border-radius: 15px;
    }

}

/* =========================================================
   LEH - JOURNEY SECTION
   CLEAN VERSION
========================================================= */

.leh-journey {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f7f9fc;
    padding: 90px 0 0;
}

.leh-journey .leh-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}


/* =========================================================
   HEADING
========================================================= */

.leh-journey-heading {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.leh-journey-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 18px;

    color: #1769d1;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.leh-journey-label span {
    width: 34px;
    height: 2px;
    background: #1769d1;
}

.leh-journey-heading h2 {
    margin: 0;

    color: #071b3a;

    font-size: clamp(48px, 5.5vw, 72px);
    line-height: .95;
    letter-spacing: -3px;
}

.leh-journey-heading h2 strong {
    display: block;
    color: #1769d1;
}

.leh-journey-heading p {
    max-width: 650px;
    margin: 22px auto 0;

    color: #617890;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   JOURNEY MAP AREA
========================================================= */

.leh-journey-map {
    position: relative;

    width: 100%;
    height: 540px;

    overflow: hidden;
}


/* =========================================================
   MOUNTAIN IMAGE
========================================================= */

.leh-journey-mountains {
    position: absolute;

    left: 0;
    right: 0;

    top: 145px;
    bottom: 0;

    height: auto;

    z-index: 1;

    overflow: hidden;
}

.leh-journey-mountains img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center bottom;
}


/* WHITE FADE AT TOP OF IMAGE */

.leh-journey-mountains::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 150px;

    z-index: 2;

    background: linear-gradient(
        to bottom,
        #f7f9fc 0%,
        rgba(247,249,252,.94) 25%,
        rgba(247,249,252,.45) 65%,
        rgba(247,249,252,0) 100%
    );

    pointer-events: none;
}


/* =========================================================
   ROUTE LINE
========================================================= */

.leh-journey-route-line {
    position: absolute;

    left: 12%;
    right: 12%;
    top: 190px;

    height: 3px;

    z-index: 8;

    pointer-events: none;
}

.leh-journey-route-line .route-line {
    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 2px;

    transform: translateY(-50%);

    background: repeating-linear-gradient(
        to right,
        #3180d8 0,
        #3180d8 9px,
        transparent 9px,
        transparent 18px
    );
}


/* ROUTE DOTS */

.leh-journey-route-line .route-dot {
    position: absolute;

    top: 50%;

    width: 17px;
    height: 17px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #ffffff;

    border: 3px solid #1769d1;

    box-shadow:
        0 0 0 4px rgba(23,105,209,.10);

    z-index: 10;
}

.leh-journey-route-line .route-dot-1 {
    left: 0;
}

.leh-journey-route-line .route-dot-2 {
    left: 50%;
    transform: translate(-50%, -50%);
}

.leh-journey-route-line .route-dot-3 {
    right: 0;
}


/* =========================================================
   CARDS
========================================================= */

.leh-journey .leh-journey-card {
    position: absolute;

    z-index: 15;

    display: block;

    width: 300px;
    min-height: 185px;

    padding: 25px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #d9e3ee;

    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(7,27,58,.08);

    opacity: 1;

    visibility: visible;

    color: #071b3a;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.leh-journey .leh-journey-card:hover {
    box-shadow:
        0 22px 45px rgba(7,27,58,.12);

    border-color: #b9d3ed;
}


/* LEFT CARD */

.leh-journey .journey-card-left {
    left: 2%;
    top: 45px;
}


/* CENTER CARD */

.leh-journey .journey-card-center {
    left: 50%;
    top: 15px;

    transform: translateX(-50%);

    min-height: 205px;

    border-color: #9fc7f2;

    box-shadow:
        0 20px 45px rgba(23,105,209,.12);
}

.leh-journey .journey-card-center:hover {
    transform:
        translateX(-50%)
        translateY(-6px);
}


/* RIGHT CARD */

.leh-journey .journey-card-right {
    right: 2%;
    top: 45px;
}


/* =========================================================
   CARD ICONS
========================================================= */

.leh-journey .journey-card-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 15px;

    background: #eaf3ff;

    color: #1769d1;

    border-radius: 12px;

    font-size: 16px;
}

.leh-journey .journey-truck-icon {
    position: absolute;

    top: -28px;
    left: 50%;

    width: 64px;
    height: 64px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    background: #1769d1;

    color: #ffffff;

    border: 5px solid #ffffff;

    border-radius: 50%;

    box-shadow:
        0 10px 25px rgba(23,105,209,.25);

    font-size: 18px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.leh-journey .journey-card-content {
    display: block;
}

.leh-journey .journey-number {
    display: block;

    margin-bottom: 5px;

    color: #a4b5c6;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.leh-journey .journey-card-content h3 {
    display: block;

    margin: 0 0 6px;

    color: #071b3a;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.2;
}

.leh-journey .journey-stage {
    display: block;

    color: #1769d1;

    font-size: 10px;
    font-weight: 600;
}

.leh-journey .journey-accent {
    width: 30px;
    height: 2px;

    margin: 14px 0;

    background: #d3ad68;
}

.leh-journey .journey-card-content p {
    display: block;

    margin: 0;

    color: #71859a;

    font-size: 9px;

    line-height: 1.6;
}


/* CENTER CARD */

.leh-journey .journey-card-center {
    text-align: center;

    padding-top: 48px;
}

.leh-journey .journey-card-center .journey-accent {
    margin-left: auto;
    margin-right: auto;
}

.leh-journey .journey-card-center .journey-card-content p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .leh-journey {
        padding-top: 65px;
    }

    .leh-journey .leh-container {
        padding: 0 18px;
    }

    .leh-journey-heading {
        margin-bottom: 40px;
    }

    .leh-journey-heading h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .leh-journey-heading p {
        font-size: 11px;
    }

    .leh-journey-map {
        height: auto;
        min-height: 900px;
    }


    /* VERTICAL IMAGE */

    .leh-journey-mountains {
        top: 120px;
        bottom: 0;

        height: 760px;
    }


    /* VERTICAL ROUTE */

    .leh-journey-route-line {
        left: 30px;
        right: auto;

        top: 30px;
        bottom: 300px;

        width: 2px;
        height: auto;
    }

    .leh-journey-route-line .route-line {
        width: 2px;
        height: 100%;

        top: 0;
        left: 0;

        transform: none;

        background: repeating-linear-gradient(
            to bottom,
            #3180d8 0,
            #3180d8 8px,
            transparent 8px,
            transparent 16px
        );
    }

    .leh-journey-route-line .route-dot {
        left: 50% !important;
        right: auto !important;
    }

    .leh-journey-route-line .route-dot-1 {
        top: 0;
    }

    .leh-journey-route-line .route-dot-2 {
        top: 50%;
    }

    .leh-journey-route-line .route-dot-3 {
        top: 100%;
    }


    /* CARDS */

    .leh-journey .leh-journey-card,
    .leh-journey .journey-card-left,
    .leh-journey .journey-card-center,
    .leh-journey .journey-card-right {

        position: relative;

        left: auto;
        right: auto;
        top: auto;

        width: calc(100% - 48px);

        min-height: 150px;

        margin-left: 48px;
        margin-bottom: 25px;

        transform: none;

        text-align: left;
    }


    .leh-journey .journey-card-center {
        padding-top: 25px;
    }

    .leh-journey .journey-card-center:hover {
        transform: translateY(-5px);
    }


    .leh-journey .journey-truck-icon {

        position: static;

        transform: none;

        width: 48px;
        height: 48px;

        margin-bottom: 15px;

        border-width: 4px;
    }

    .leh-journey .journey-card-center .journey-accent {
        margin-left: 0;
        margin-right: 0;
    }


    .leh-journey .journey-card-center .journey-card-content p {
        margin-left: 0;
        margin-right: 0;
    }

}


/* =========================================================
   OUR SERVICES
========================================================= */

.leh-services {

    position: relative;

    width: 100%;

    padding: 100px 0 110px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.leh-services-heading {

    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}


.leh-services-label {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    margin-bottom: 17px;

    color: #1769d1;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.leh-services-label span {

    width: 35px;

    height: 2px;

    background: #1769d1;
}


.leh-services-heading h2 {

    margin: 0;

    color: #071b3a;

    font-size: clamp(43px, 5vw, 65px);

    line-height: .98;

    letter-spacing: -2.8px;
}


.leh-services-heading h2 strong {

    color: #1769d1;
}


.leh-services-heading p {

    max-width: 620px;

    margin: 20px auto 0;

    color: #637890;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.leh-services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;

    max-width: 1120px;

    margin: auto;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.leh-service-card {

    position: relative;

    min-height: 270px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #dce5ef;

    border-radius: 17px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(7,27,58,.045);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.leh-service-card:hover {

    transform: translateY(-7px);

    border-color: #bcd5ef;

    box-shadow:
        0 20px 40px rgba(7,27,58,.09);
}


/* =========================================================
   NUMBER
========================================================= */

.leh-service-number {

    position: absolute;

    top: 22px;

    right: 25px;

    color: #b4c2d1;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   ICON
========================================================= */

.leh-service-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 24px;

    color: #1769d1;

    background: #edf5ff;

    border-radius: 13px;

    font-size: 18px;

    transition:
        background .3s ease,
        color .3s ease;
}


.leh-service-card:hover .leh-service-icon {

    color: #ffffff;

    background: #1769d1;
}


/* =========================================================
   CONTENT
========================================================= */

.leh-service-content h3 {

    margin: 0 0 10px;

    color: #071b3a;

    font-size: 16px;

    line-height: 1.3;
}


.leh-service-content p {

    max-width: 285px;

    min-height: 55px;

    margin: 0 0 22px;

    color: #71859a;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   LINK
========================================================= */

.leh-service-content a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #1769d1;

    font-size: 9px;

    font-weight: 700;

    text-decoration: none;

    transition: gap .25s ease;
}


.leh-service-content a i {

    font-size: 8px;
}


.leh-service-content a:hover {

    gap: 11px;
}


/* =========================================================
   FEATURED CARD
========================================================= */

.leh-service-featured {

    border-color: #b9d4f0;

    box-shadow:
        0 14px 35px rgba(23,105,209,.09);
}


.leh-service-featured::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 65px;

    background: #1769d1;

    border-radius: 0 0 4px 0;
}


/* =========================================================
   GOLD DETAIL
========================================================= */

.leh-service-card:nth-child(1)::after,
.leh-service-card:nth-child(4)::after {

    content: "";

    position: absolute;

    left: 28px;

    bottom: 25px;

    width: 28px;

    height: 2px;

    background: #d3ad68;
}


/* =========================================================
   CARD ANIMATION
========================================================= */

.leh-service-card {

    opacity: 0;

    transform: translateY(20px);

    animation:
        lehServiceReveal .65s
        cubic-bezier(.22,1,.36,1)
        forwards;
}


.leh-service-card:nth-child(1) {
    animation-delay: .05s;
}

.leh-service-card:nth-child(2) {
    animation-delay: .12s;
}

.leh-service-card:nth-child(3) {
    animation-delay: .19s;
}

.leh-service-card:nth-child(4) {
    animation-delay: .26s;
}

.leh-service-card:nth-child(5) {
    animation-delay: .33s;
}

.leh-service-card:nth-child(6) {
    animation-delay: .40s;
}

@keyframes lehServiceReveal {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .leh-services {

        padding: 80px 0 90px;
    }


    .leh-services-grid {

        grid-template-columns:
            repeat(2, 1fr);

        padding: 0 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .leh-services {

        padding: 65px 0 70px;
    }


    .leh-services-heading {

        padding: 0 20px;

        margin-bottom: 38px;
    }


    .leh-services-heading h2 {

        font-size: 39px;

        letter-spacing: -1.5px;
    }


    .leh-services-heading p {

        font-size: 11px;

        line-height: 1.7;
    }


    .leh-services-grid {

        grid-template-columns: 1fr;

        gap: 12px;

        padding: 0 16px;
    }


    .leh-service-card {

        min-height: 220px;

        padding: 23px;
    }


    .leh-service-icon {

        width: 48px;

        height: 48px;

        margin-bottom: 20px;
    }


    .leh-service-content h3 {

        font-size: 15px;
    }


    .leh-service-content p {

        font-size: 9.5px;

        min-height: auto;
    }

}

/* =========================================================
   WHY RIC - ROUTE STANDARD
========================================================= */

.leh-why-ric {

    position: relative;

    width: 100%;

    padding: 105px 0;

    background: #f7f9fc;

    overflow: hidden;
}


/* =========================================================
   MAIN GRID
========================================================= */

.leh-why-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

    max-width: 1160px;

    margin: 0 auto;
}


/* =========================================================
   LEFT
========================================================= */

.leh-why-content {

    max-width: 540px;
}


.leh-why-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #1769d1;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.leh-why-label span {

    width: 38px;

    height: 2px;

    background: #1769d1;
}


.leh-why-content h2 {

    margin: 0;

    color: #071b3a;

    font-size: clamp(45px, 5vw, 65px);

    line-height: .98;

    letter-spacing: -3px;
}


.leh-why-content h2 strong {

    display: block;

    color: #1769d1;
}


.leh-why-intro {

    max-width: 500px;

    margin: 24px 0 38px;

    color: #637890;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   LEFT REASONS
========================================================= */

.leh-why-list {

    display: flex;

    flex-direction: column;

    gap: 17px;
}


.leh-why-item {

    display: flex;

    align-items: flex-start;

    gap: 14px;
}


.leh-why-check {

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 2px;

    color: #1769d1;

    background: #eaf3ff;

    border: 1px solid #d5e7fa;

    border-radius: 11px;

    font-size: 12px;

    transition: .3s ease;
}


.leh-why-item:hover .leh-why-check {

    color: #ffffff;

    background: #1769d1;

    transform: translateY(-2px);
}


.leh-why-number {

    display: block;

    margin-bottom: 3px;

    color: #a4b5c6;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.leh-why-item h3 {

    margin: 0 0 4px;

    color: #071b3a;

    font-size: 14px;
}


.leh-why-item p {

    margin: 0;

    color: #71859a;

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================================
   RIGHT PANEL
========================================================= */

.leh-route-standard {

    position: relative;

    padding: 32px;

    background: #ffffff;

    border: 1px solid #dbe5ef;

    border-radius: 24px;

    box-shadow:
        0 18px 50px rgba(7,27,58,.07);

    overflow: hidden;
}


/* BLUE TOP DETAIL */

.leh-route-standard::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: #1769d1;
}


/* =========================================================
   PANEL HEADER
========================================================= */

.leh-standard-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid #e8eef4;
}


.leh-standard-label {

    display: block;

    margin-bottom: 9px;

    color: #1769d1;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.leh-standard-top h3 {

    margin: 0;

    color: #071b3a;

    font-size: 28px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.leh-standard-top h3 strong {

    color: #1769d1;
}


.leh-standard-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    color: #1769d1;

    background: #eaf3ff;

    border-radius: 13px;

    font-size: 18px;
}


/* =========================================================
   STANDARD LIST
========================================================= */

.leh-standard-list {

    padding: 23px 0 8px;
}


.leh-standard-item {

    position: relative;

    display: flex;

    align-items: flex-start;

    min-height: 75px;
}


/* NUMBER */

.leh-standard-number {

    width: 31px;

    height: 31px;

    flex: 0 0 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #1769d1;

    background: #edf5ff;

    border-radius: 50%;

    font-size: 8px;

    font-weight: 800;

    z-index: 2;
}


/* CONNECTING LINE */

.leh-standard-line {

    position: absolute;

    left: 15px;

    top: 31px;

    width: 1px;

    height: 45px;

    background: #d9e7f5;
}


.leh-standard-item:last-child .leh-standard-line {

    display: none;
}


/* INFO */

.leh-standard-info {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-left: 15px;
}


.leh-standard-icon-small {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    color: #1769d1;

    background: #f1f6fb;

    border-radius: 9px;

    font-size: 12px;
}


.leh-standard-info h4 {

    margin: 2px 0 4px;

    color: #071b3a;

    font-size: 13px;
}


.leh-standard-info p {

    max-width: 250px;

    margin: 0;

    color: #71859a;

    font-size: 9px;

    line-height: 1.6;
}


/* =========================================================
   BOTTOM ROUTE
========================================================= */

.leh-standard-bottom {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 15px;

    padding: 15px 17px;

    color: #637890;

    background: #f5f8fb;

    border-radius: 11px;

    font-size: 9px;

    font-weight: 700;
}


.leh-standard-bottom span {

    display: flex;

    align-items: center;

    gap: 6px;
}


.leh-standard-bottom span i {

    color: #1769d1;

    font-size: 11px;
}


.leh-standard-bottom > i {

    color: #9aaec2;

    font-size: 10px;
}


/* =========================================================
   ANIMATION
========================================================= */

.leh-why-content {

    animation:
        lehWhyLeft .7s
        cubic-bezier(.22,1,.36,1)
        both;
}


.leh-route-standard {

    animation:
        lehWhyRight .75s .12s
        cubic-bezier(.22,1,.36,1)
        both;
}


@keyframes lehWhyLeft {

    from {
        opacity: 0;
        transform: translateX(-25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes lehWhyRight {

    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .leh-why-ric {

        padding: 80px 25px;
    }


    .leh-why-grid {

        gap: 40px;
    }


    .leh-why-content h2 {

        font-size: 48px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .leh-why-ric {

        padding: 65px 18px;
    }


    .leh-why-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .leh-why-content {

        max-width: none;
    }


    .leh-why-content h2 {

        font-size: 42px;

        letter-spacing: -1.8px;
    }


    .leh-why-intro {

        font-size: 11px;

        margin-bottom: 30px;
    }


    .leh-route-standard {

        padding: 23px;

        border-radius: 19px;
    }


    .leh-standard-top h3 {

        font-size: 23px;
    }


    .leh-standard-icon {

        width: 43px;

        height: 43px;

        font-size: 15px;
    }


    .leh-standard-info p {

        font-size: 9px;
    }


    .leh-standard-bottom {

        gap: 10px;

        justify-content: space-between;

        font-size: 8px;
    }

}

/* =========================================================
   RIC LEH - OUR ROUTES
========================================================= */

.leh-routes-premium {
    position: relative;
    width: 100%;
    padding: 100px 0 105px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.leh-routes-premium-head {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.leh-routes-premium-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 16px;

    color: #1769d1;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.leh-routes-premium-label span {
    width: 34px;
    height: 2px;

    background: #1769d1;
}

.leh-routes-premium-head h2 {
    margin: 0;

    color: #071b3a;

    font-size: clamp(42px, 5vw, 66px);
    line-height: 1;
    letter-spacing: -2.8px;
}

.leh-routes-premium-head h2 strong {
    display: block;

    color: #1769d1;
}

.leh-routes-premium-head p {
    max-width: 640px;

    margin: 20px auto 0;

    color: #667b91;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   MAIN GRID
========================================================= */

.leh-route-showcase {
    width: 100%;

    display: grid;

    grid-template-columns: minmax(0, 1.65fr) minmax(330px, .85fr);

    gap: 20px;

    align-items: stretch;
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.leh-route-visual {
    position: relative;

    min-height: 530px;

    overflow: hidden;

    border-radius: 22px;

    background: #071b3a;

    box-shadow:
        0 22px 60px rgba(7, 27, 58, .13);
}

.leh-route-visual > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform .7s ease;
}

.leh-route-visual:hover > img {
    transform: scale(1.035);
}


/* DARK IMAGE OVERLAY */

.leh-route-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(4, 20, 41, .12) 0%,
            rgba(4, 20, 41, .15) 40%,
            rgba(4, 20, 41, .90) 100%
        );
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.leh-route-image-badge {
    position: absolute;

    top: 24px;
    left: 24px;

    z-index: 3;

    padding: 12px 16px;

    display: flex;

    align-items: center;

    gap: 11px;

    color: #ffffff;

    background: rgba(4, 21, 44, .76);

    border: 1px solid rgba(255, 255, 255, .16);

    border-radius: 11px;

    backdrop-filter: blur(10px);
}

.leh-route-image-badge > i {
    color: #66aaff;

    font-size: 17px;
}

.leh-route-image-badge div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.leh-route-image-badge span {
    color: #8fc2ff;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.leh-route-image-badge strong {
    color: #ffffff;

    font-size: 11px;
}


/* =========================================================
   ROUTE OVER IMAGE
========================================================= */

.leh-route-image-path {
    position: absolute;

    z-index: 4;

    left: 28px;
    right: 28px;
    bottom: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* POINT */

.leh-image-route-point {
    min-width: 130px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;
}

.leh-route-marker {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #1769d1;

    border: 4px solid rgba(255, 255, 255, .22);

    border-radius: 50%;

    box-shadow:
        0 7px 22px rgba(0, 0, 0, .25);
}

.leh-route-marker i {
    font-size: 13px;
}

.leh-image-route-point > div:last-child {
    display: flex;

    flex-direction: column;
}

.leh-image-route-point span {
    margin-bottom: 3px;

    color: #a9c8eb;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.leh-image-route-point strong {
    color: #ffffff;

    font-size: 13px;
}


/* FINAL */

.leh-final-route-point .leh-route-marker {
    background: #ffffff;

    color: #1769d1;

    border-color: #1769d1;
}


/* CONNECTING LINE */

.leh-image-route-line {
    position: relative;

    flex: 1;

    height: 2px;

    margin: 0 15px;

    overflow: hidden;
}

.leh-image-route-line::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    transform: translateY(-50%);

    background:
        repeating-linear-gradient(
            to right,
            rgba(255, 255, 255, .75) 0,
            rgba(255, 255, 255, .75) 8px,
            transparent 8px,
            transparent 15px
        );
}

.leh-image-route-line span {
    position: absolute;

    left: -20px;
    top: 0;

    width: 18px;
    height: 2px;

    background: #65a9ff;

    animation: lehRouteTravel 4s linear infinite;
}

@keyframes lehRouteTravel {

    from {
        left: -20px;
    }

    to {
        left: 100%;
    }

}


/* =========================================================
   RIGHT INFORMATION PANEL
========================================================= */

.leh-route-panel {
    padding: 31px 30px 28px;

    display: flex;

    flex-direction: column;

    background: #071b3a;

    border-radius: 22px;

    box-shadow:
        0 22px 60px rgba(7, 27, 58, .13);
}


/* TOP */

.leh-route-panel-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 25px;

    border-bottom:
        1px solid rgba(255, 255, 255, .10);
}

.leh-route-panel-label {
    display: block;

    margin-bottom: 9px;

    color: #67a9fa;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

.leh-route-panel h3 {
    color: #ffffff;

    font-size: 30px;

    line-height: 1.05;

    letter-spacing: -1px;
}

.leh-route-panel h3 strong {
    display: block;

    color: #5fa5f6;
}


/* ICON */

.leh-route-panel-icon {
    width: 47px;
    height: 47px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #67a9fa;

    background:
        rgba(49, 133, 232, .12);

    border:
        1px solid rgba(98, 164, 244, .20);

    border-radius: 12px;

    font-size: 17px;
}


/* =========================================================
   TIMELINE
========================================================= */

.leh-route-timeline {
    padding: 27px 0 18px;
}

.leh-route-timeline-item {
    display: grid;

    grid-template-columns: 25px 1fr;

    gap: 13px;

    min-height: 96px;
}


/* TRACK */

.leh-timeline-track {
    position: relative;

    display: flex;

    justify-content: center;
}

.leh-timeline-dot {
    position: relative;

    z-index: 2;

    width: 12px;
    height: 12px;

    margin-top: 3px;

    background: #071b3a;

    border: 3px solid #5fa5f6;

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(95, 165, 246, .12);
}

.leh-timeline-dot-final {
    background: #5fa5f6;
}


/* VERTICAL LINE */

.leh-timeline-line {
    position: absolute;

    top: 18px;
    bottom: -3px;

    width: 1px;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(95,165,246,.65) 0,
            rgba(95,165,246,.65) 5px,
            transparent 5px,
            transparent 10px
        );
}


/* CONTENT */

.leh-timeline-content > span {
    display: block;

    margin-bottom: 5px;

    color: #659ee1;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.1px;
}

.leh-timeline-content h4 {
    margin-bottom: 5px;

    color: #ffffff;

    font-size: 14px;
}

.leh-timeline-content p {
    max-width: 230px;

    color: #aabbd0;

    font-size: 9.5px;

    line-height: 1.6;
}


/* =========================================================
   ROUTE META
========================================================= */

.leh-route-meta {
    padding: 16px 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

    border-top:
        1px solid rgba(255, 255, 255, .09);

    border-bottom:
        1px solid rgba(255, 255, 255, .09);
}

.leh-route-meta > div {
    display: flex;

    align-items: center;

    gap: 9px;
}

.leh-route-meta > div + div {
    padding-left: 13px;

    border-left:
        1px solid rgba(255, 255, 255, .09);
}

.leh-route-meta i {
    color: #5fa5f6;

    font-size: 13px;
}

.leh-route-meta span {
    color: #ffffff;

    font-size: 9px;

    font-weight: 600;
}

.leh-route-meta small {
    display: block;

    margin-bottom: 3px;

    color: #7990a9;

    font-size: 6.5px;

    font-weight: 700;

    letter-spacing: .8px;
}


/* =========================================================
   QUOTE BUTTON
========================================================= */

.leh-route-quote-btn {
    width: 100%;

    margin-top: auto;

    padding: 14px 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: #ffffff;

    background: #1769d1;

    border-radius: 9px;

    font-size: 10px;

    font-weight: 700;

    transition: .3s ease;
}

.leh-route-quote-btn:hover {
    background: #3185e8;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(23, 105, 209, .25);
}


/* =========================================================
   ROUTE OPTIONS
========================================================= */

.leh-route-options {
    margin-top: 18px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.leh-route-option {
    position: relative;

    min-height: 105px;

    padding: 21px 22px;

    display: grid;

    grid-template-columns: auto 1fr auto;

    gap: 16px;

    align-items: center;

    background: #f6f9fd;

    border: 1px solid #dce7f2;

    border-radius: 15px;

    transition: .3s ease;
}

.leh-route-option:hover {
    transform: translateY(-4px);

    border-color: #b9d2ed;

    background: #ffffff;

    box-shadow:
        0 14px 35px rgba(7, 27, 58, .08);
}


/* NUMBER */

.leh-route-option-number {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #1769d1;

    background: #eaf3ff;

    border-radius: 10px;

    font-size: 11px;

    font-weight: 800;
}


/* TEXT */

.leh-route-option-content span {
    display: block;

    margin-bottom: 7px;

    color: #8294a8;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.1px;
}

.leh-route-option-content h4 {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    color: #071b3a;

    font-size: 12px;

    line-height: 1.6;
}

.leh-route-option-content h4 i {
    color: #1769d1;

    font-size: 8px;
}


/* RIGHT ICON */

.leh-route-option-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #1769d1;

    background: #ffffff;

    border: 1px solid #dbe7f3;

    border-radius: 10px;
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.leh-route-note {
    margin-top: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;
}

.leh-route-note i {
    color: #1769d1;

    font-size: 10px;
}

.leh-route-note p {
    color: #8394a7;

    font-size: 9px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .leh-route-showcase {
        grid-template-columns: 1fr;
    }

    .leh-route-visual {
        min-height: 500px;
    }

    .leh-route-panel {
        min-height: 500px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .leh-routes-premium {
        padding: 65px 0 70px;
    }


    .leh-routes-premium .leh-container {
        width: calc(100% - 32px);
    }


    /* HEADING */

    .leh-routes-premium-head {
        margin-bottom: 32px;
    }

    .leh-routes-premium-head h2 {
        font-size: 39px;

        letter-spacing: -1.8px;
    }

    .leh-routes-premium-head p {
        font-size: 11px;
    }


    /* IMAGE */

    .leh-route-visual {
        min-height: 440px;

        border-radius: 17px;
    }

    .leh-route-image-badge {
        top: 17px;
        left: 17px;

        padding: 10px 12px;
    }


    /* IMAGE ROUTE */

    .leh-route-image-path {
        left: 18px;
        right: 18px;
        bottom: 22px;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;
    }

    .leh-image-route-point {
        min-width: 0;
    }

    .leh-route-marker {
        width: 37px;
        height: 37px;
    }

    .leh-image-route-line {
        width: 2px;
        height: 35px;

        flex: none;

        margin: 3px 0 3px 18px;
    }

    .leh-image-route-line::before {
        left: 50%;
        right: auto;
        top: 0;
        bottom: 0;

        width: 1px;
        height: 100%;

        transform: translateX(-50%);

        background:
            repeating-linear-gradient(
                to bottom,
                rgba(255,255,255,.7) 0,
                rgba(255,255,255,.7) 6px,
                transparent 6px,
                transparent 12px
            );
    }

    .leh-image-route-line span {
        display: none;
    }


    /* PANEL */

    .leh-route-panel {
        min-height: auto;

        padding: 25px 21px;

        border-radius: 17px;
    }

    .leh-route-panel h3 {
        font-size: 27px;
    }


    /* OPTIONS */

    .leh-route-options {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .leh-route-option {
        grid-template-columns: auto 1fr;

        padding: 18px;
    }

    .leh-route-option-icon {
        display: none;
    }

    .leh-route-option-content h4 {
        font-size: 11px;
    }


    .leh-route-note {
        align-items: flex-start;

        padding: 0 10px;
    }

    .leh-route-note p {
        line-height: 1.5;

        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .leh-routes-premium-head h2 {
        font-size: 35px;
    }

    .leh-route-meta {
        grid-template-columns: 1fr;
    }

    .leh-route-meta > div + div {
        padding-left: 0;
        padding-top: 10px;

        border-left: 0;

        border-top:
            1px solid rgba(255, 255, 255, .08);
    }

}

/* =========================================================
   LEH & LADAKH SERVICE AREA MAP
========================================================= */

.leh-service-map {
    position: relative;

    width: 100%;

    padding: 100px 0 105px;

    background: #f6f9fd;

    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.leh-map-heading {
    max-width: 800px;

    margin: 0 auto 48px;

    text-align: center;
}


.leh-map-label {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 16px;

    color: #1769d1;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.leh-map-label span {
    width: 34px;
    height: 2px;

    background: #1769d1;
}


.leh-map-heading h2 {
    margin: 0;

    color: #071b3a;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1;

    letter-spacing: -2.8px;
}


.leh-map-heading h2 strong {
    display: block;

    color: #1769d1;
}


.leh-map-heading p {
    max-width: 650px;

    margin: 20px auto 0;

    color: #687d93;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   MAP
========================================================= */

.leh-map-wrapper {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    background: #dce8f4;

    border: 1px solid #d8e4f0;

    border-radius: 22px;

    box-shadow:
        0 20px 55px rgba(7, 27, 58, .10);
}


.leh-map-wrapper iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;
}


/* =========================================================
   LEFT INFO CARD
========================================================= */

.leh-map-info-card {
    position: absolute;

    z-index: 5;

    left: 25px;
    bottom: 25px;

    width: 285px;

    padding: 22px;

    background: rgba(255,255,255,.96);

    border: 1px solid rgba(220,231,242,.95);

    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(7, 27, 58, .16);

    backdrop-filter: blur(10px);
}


.leh-map-info-top {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 16px;

    border-bottom: 1px solid #e4ebf3;
}


.leh-map-info-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #1769d1;

    border-radius: 11px;

    font-size: 15px;
}


.leh-map-info-top span {
    display: block;

    margin-bottom: 3px;

    color: #1769d1;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.1px;
}


.leh-map-info-top h3 {
    margin: 0 0 2px;

    color: #071b3a;

    font-size: 17px;
}


.leh-map-info-top small {
    color: #8193a7;

    font-size: 9px;
}


/* SERVICES */

.leh-map-services {
    padding-top: 15px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.leh-map-services div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #526c85;

    font-size: 9px;

    font-weight: 600;
}


.leh-map-services i {
    color: #1769d1;

    font-size: 10px;
}


/* =========================================================
   RIGHT QUOTE CARD
========================================================= */

.leh-map-quote-card {
    position: absolute;

    z-index: 5;

    top: 25px;
    right: 25px;

    width: 285px;

    padding: 25px;

    background: rgba(7,27,58,.96);

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 16px;

    box-shadow:
        0 18px 45px rgba(7,27,58,.20);

    backdrop-filter: blur(10px);
}


.leh-map-quote-card > span {
    display: block;

    margin-bottom: 9px;

    color: #66a9f7;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.leh-map-quote-card h3 {
    margin-bottom: 11px;

    color: #ffffff;

    font-size: 27px;

    line-height: 1.05;

    letter-spacing: -1px;
}


.leh-map-quote-card h3 strong {
    color: #5fa5f6;
}


.leh-map-quote-card p {
    margin-bottom: 18px;

    color: #b7c6d7;

    font-size: 9.5px;

    line-height: 1.7;
}


.leh-map-quote-card a {
    width: 100%;

    padding: 13px 16px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #ffffff;

    background: #1769d1;

    border-radius: 8px;

    font-size: 9px;

    font-weight: 700;

    transition: .3s ease;
}


.leh-map-quote-card a:hover {
    background: #3185e8;

    transform: translateY(-2px);
}


/* =========================================================
   MAP BOTTOM INFO
========================================================= */

.leh-map-bottom {
    margin-top: 18px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}


.leh-map-bottom > div {
    min-height: 78px;

    padding: 16px 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #ffffff;

    border: 1px solid #dce7f2;

    border-radius: 12px;
}


.leh-map-bottom-icon {
    width: 39px;
    height: 39px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #1769d1;

    background: #edf5ff;

    border-radius: 9px;

    font-size: 13px;
}


.leh-map-bottom span {
    display: block;

    margin-bottom: 4px;

    color: #8a9caf;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}


.leh-map-bottom strong {
    color: #071b3a;

    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .leh-map-wrapper {
        height: 560px;
    }

    .leh-map-info-card {
        width: 260px;
    }

    .leh-map-quote-card {
        width: 260px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .leh-service-map {
        padding: 65px 0 70px;
    }


    .leh-service-map .leh-container {
        width: calc(100% - 32px);
    }


    .leh-map-heading {
        margin-bottom: 30px;
    }


    .leh-map-heading h2 {
        font-size: 38px;

        letter-spacing: -1.7px;
    }


    .leh-map-heading p {
        font-size: 11px;
    }


    /* MAP */

    .leh-map-wrapper {
        height: 650px;

        border-radius: 17px;
    }


    /* LEFT CARD */

    .leh-map-info-card {
        left: 14px;
        right: 14px;
        bottom: 14px;

        width: auto;

        padding: 18px;
    }


    /* RIGHT CARD */

    .leh-map-quote-card {
        top: 14px;
        left: 14px;
        right: 14px;

        width: auto;

        padding: 20px;
    }


    .leh-map-quote-card h3 {
        font-size: 24px;
    }


    /* BOTTOM */

    .leh-map-bottom {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .leh-map-bottom > div {
        min-height: 68px;

        padding: 13px 15px;
    }

}
/* =====================================================
   CTA
===================================================== */

.leh-cta {
    padding: 65px 0;

    background: #1769d1;
}

.leh-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.leh-cta-inner > div > span {
    display: block;

    margin-bottom: 10px;

    color: #a9d0ff;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}

.leh-cta h2 {
    color: #ffffff;

    font-size: 36px;

    line-height: 1.1;
}

.leh-cta h2 strong {
    color: #dbeeff;
}

.leh-cta p {
    margin-top: 10px;

    color: #d3e5fa;

    font-size: 11px;
}

.leh-cta-button {
    flex-shrink: 0;

    padding: 15px 22px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #071b3a;

    background: #ffffff;

    border-radius: 7px;

    font-size: 11px;

    font-weight: 700;

    transition: 0.25s ease;
}

.leh-cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.15);
}


/* =====================================================
   FOOTER
===================================================== */

.leh-footer {
    background: #061a34;

    color: #ffffff;
}

.leh-footer-container {
    width: min(1180px, calc(100% - 80px));

    margin: 0 auto;

    padding: 65px 0 50px;

    display: grid;

    grid-template-columns:
        1.4fr
        0.9fr
        1fr
        1fr;

    gap: 60px;

    align-items: start;
}

.leh-footer-brand img {
    width: 165px;
    display: block;

    margin-top: -55px;
    margin-bottom: -5px;
}



.leh-footer-brand p {
    max-width: 300px;

    color: #9bb1c7;

    font-size: 11px;

    line-height: 1.8;
}

.leh-footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.leh-footer-column h3 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 14px;
}

.leh-footer-column a {
    margin-bottom: 12px;

    color: #8fa8c1;

    font-size: 11px;

    transition: 0.25s ease;
}

.leh-footer-column a:hover {
    color: #ffffff;

    transform: translateX(3px);
}

.leh-footer-contact {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;
}

.leh-footer-contact i {
    width: 14px;

    color: #3185e8;

    text-align: center;

    font-size: 11px;
}

.leh-footer-contact a,
.leh-footer-contact span {
    margin: 0;

    color: #9bb1c7;

    font-size: 10px;
}

.leh-footer-bottom {
    padding: 18px 0;

    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;
}

.leh-footer-bottom p {
    color: #6684a6;

    font-size: 9px;
}


/* =====================================================
   ANIMATIONS
===================================================== */

.leh-feature-card,
.leh-service-row,
.leh-route-card,
.leh-why-content,
.leh-why-image {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

.leh-feature-card.show,
.leh-service-row.show,
.leh-route-card.show,
.leh-why-content.show,
.leh-why-image.show {
    opacity: 1;

    transform: translateY(0);
}


/* STAGGER */

.leh-feature-card:nth-child(1) {
    transition-delay: 0.05s;
}

.leh-feature-card:nth-child(2) {
    transition-delay: 0.12s;
}

.leh-feature-card:nth-child(3) {
    transition-delay: 0.19s;
}

.leh-feature-card:nth-child(4) {
    transition-delay: 0.26s;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .leh-container,
    .leh-header-inner,
    .leh-hero-container,
    .leh-footer-container {
        width: calc(100% - 60px);
    }


    .leh-nav {
        gap: 17px;
    }


    .leh-nav a {
        font-size: 10px;
    }


    .leh-hero-container {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 70px 0 120px;
    }


    .leh-hero {
        min-height: auto;
    }


    .leh-hero-card {
        max-width: 500px;
    }


    .leh-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .leh-why-grid {
        gap: 45px;
    }


    .leh-footer-container {
        grid-template-columns:
            1fr 1fr;

        row-gap: 45px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .leh-container,
    .leh-header-inner,
    .leh-hero-container,
    .leh-footer-container {
        width: calc(100% - 36px);
    }


    /* HEADER */

    .leh-header-inner {
        height: 68px;
    }


    .leh-logo img {
        width: 125px;
    }


    .leh-nav {
        display: none;
    }


    .leh-menu {
        display: flex;

        align-items: center;

        justify-content: center;
    }


    /* HERO */

    .leh-hero {
        min-height: 850px;

        padding-top: 68px;

        align-items: flex-start;
    }


    .leh-hero-bg {
        background-position: 62% center;
    }


    .leh-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3,20,42,0.92),
                rgba(3,20,42,0.76) 45%,
                rgba(3,20,42,0.80)
            );
    }


    .leh-hero-container {
        width: calc(100% - 36px);

        padding: 65px 0 125px;

        gap: 35px;
    }


    .leh-eyebrow {
        font-size: 7px;

        letter-spacing: 1.5px;
    }


    .leh-hero h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }


    .leh-hero-content > p {
        font-size: 12px;

        line-height: 1.7;
    }


    .leh-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .leh-primary-btn,
    .leh-secondary-btn {
        justify-content: center;

        width: 100%;
    }


    .leh-trust {
        gap: 10px;

        flex-direction: column;

        align-items: flex-start;
    }


    /* CARD */

    .leh-hero-card {
        padding: 25px;

        border-radius: 18px;
    }


    .leh-hero-card h2 {
        font-size: 27px;
    }


    .leh-card-route {
        padding: 14px;
    }


    /* STATS */

    .leh-hero-stats {
        min-height: 105px;

        padding: 10px 18px;

        grid-template-columns: repeat(2, 1fr);

        gap: 0;
    }


    .leh-hero-stats > div {
        padding: 8px 12px;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }


    .leh-hero-stats > div:nth-child(2) {
        border-right: 0;
    }


    /* HEADINGS */

    .leh-section-heading {
        margin-bottom: 35px;
    }


    .leh-section-heading h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .leh-section-heading p {
        font-size: 11px;
    }


    /* BUILT */

    .leh-built,
    .leh-services,
    .leh-why,
    .leh-routes {
        padding: 75px 0;
    }


    .leh-feature-grid {
        grid-template-columns: 1fr;
    }


    .leh-feature-card {
        min-height: 230px;
    }


    /* JOURNEY */

    .leh-journey {
        min-height: 600px;
    }


    .leh-journey-content {
        margin-bottom: 45px;
    }


    .leh-journey-content h2 {
        font-size: 48px;

        letter-spacing: -2px;
    }


    .leh-journey-path {
        flex-direction: column;

        align-items: flex-start;
    }


    .leh-path-line {
        width: 1px;

        height: 45px;

        flex: none;

        margin: 8px 0 8px 23px;

        background:
            repeating-linear-gradient(
                180deg,
                #4b7eaf 0,
                #4b7eaf 7px,
                transparent 7px,
                transparent 13px
            );
    }


    /* SERVICES */

    .leh-service-row {
        min-height: auto;

        padding: 22px 0;

        grid-template-columns:
            35px 45px 1fr;

        gap: 12px;
    }


    .leh-service-arrow {
        display: none;
    }


    .leh-service-content h3 {
        font-size: 13px;
    }


    .leh-service-content p {
        font-size: 10px;
    }


    /* WHY */

    .leh-why-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .leh-why-image {
        min-height: 380px;
    }


    .leh-why-content h2 {
        font-size: 36px;
    }


    /* ROUTES */

    .leh-route-grid {
        grid-template-columns: 1fr 1fr;
    }


    .leh-route-card {
        min-height: 130px;

        padding: 18px;
    }


    /* CTA */

    .leh-cta {
        padding: 55px 0;
    }


    .leh-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }


    .leh-cta h2 {
        font-size: 30px;
    }


    /* FOOTER */

    .leh-footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 0 40px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .leh-hero h1 {
        font-size: 42px;
    }


    .leh-route-grid {
        grid-template-columns: 1fr;
    }


    .leh-hero-stats {
        font-size: 9px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}

/* =========================================================
   WHY RIC - STRONGER ROUTE STANDARD
========================================================= */

.leh-route-standard {
    background: #eef5fc !important;

    border: 1px solid #c6daf0 !important;

    box-shadow:
        0 20px 45px rgba(7, 27, 58, 0.12) !important;

    border-radius: 24px;

    padding: 32px !important;
}


/* TOP BLUE LINE */

.leh-route-standard::before {
    height: 5px !important;

    background: #1769d1 !important;
}


/* HEADER */

.leh-standard-label {
    color: #1769d1 !important;

    font-weight: 900 !important;
}


.leh-standard-top h3 {
    color: #061a38 !important;

    font-weight: 800 !important;
}


.leh-standard-top h3 strong {
    color: #1769d1 !important;
}


/* HEADER ICON */

.leh-standard-icon {
    width: 54px !important;
    height: 54px !important;

    color: #ffffff !important;

    background: #1769d1 !important;

    box-shadow:
        0 8px 18px rgba(23, 105, 209, 0.20);
}


/* DIVIDER */

.leh-standard-top {
    border-bottom-color: #cdddeb !important;
}


/* =========================================================
   NUMBER CIRCLES
========================================================= */

.leh-standard-number {
    color: #ffffff !important;

    background: #1769d1 !important;

    box-shadow:
        0 4px 10px rgba(23, 105, 209, 0.18);
}


/* CONNECTING LINE */

.leh-standard-line {
    background: #a9c7e5 !important;
}


/* =========================================================
   SMALL ICON BOX
========================================================= */

.leh-standard-icon-small {
    color: #1769d1 !important;

    background: #ffffff !important;

    border: 1px solid #c9dff4 !important;

    box-shadow:
        0 5px 12px rgba(7, 27, 58, 0.05);
}


/* =========================================================
   TEXT
========================================================= */

.leh-standard-info h4 {
    color: #071b3a !important;

    font-size: 14px !important;

    font-weight: 800 !important;
}


.leh-standard-info p {
    color: #58708b !important;

    font-size: 10px !important;
}


/* =========================================================
   BOTTOM ROUTE
========================================================= */

.leh-standard-bottom {
    background: #ffffff !important;

    border: 1px solid #d3e1ef !important;

    color: #24415f !important;

    box-shadow:
        0 5px 15px rgba(7, 27, 58, 0.04);
}


.leh-standard-bottom span i {
    color: #1769d1 !important;
}


.leh-standard-bottom > i {
    color: #1769d1 !important;
}

/* =========================================================
   PREMIUM BLUE ROUTE BACKGROUND
========================================================= */

.leh-route-experience {
    background: #061b38 !important;
    border: 1px solid #163a63 !important;
    box-shadow: 0 25px 60px rgba(5, 25, 55, 0.20) !important;
}


/* TOP BAR */

.leh-route-topbar {
    background: #081f40 !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
}

.leh-route-network span {
    color: #79a9db !important;
}

.leh-route-network strong {
    color: #ffffff !important;
}

.leh-network-icon {
    background: #1769d1 !important;
    box-shadow: 0 8px 20px rgba(23,105,209,.25);
}


/* ROUTE STATUS */

.leh-route-status {
    color: #8ec3ff !important;
    background: rgba(23,105,209,.16) !important;
    border: 1px solid rgba(86,159,231,.20);
}

.route-status-dot {
    background: #5da9ff !important;
}


/* =========================================================
   BLUE MAP AREA
========================================================= */

.leh-route-stage {

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(45,130,225,.20),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 15%,
            rgba(45,130,225,.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061a35 0%,
            #08254a 52%,
            #0a315d 100%
        ) !important;
}


/* DOT PATTERN */

.leh-route-stage::before {

    opacity: .20 !important;

    background-image:
        radial-gradient(
            rgba(122,181,235,.75) 1px,
            transparent 1px
        ) !important;

    background-size: 24px 24px !important;
}


/* =========================================================
   MOUNTAINS
========================================================= */

.leh-mountain {
    background: #1c66a9 !important;
    opacity: .22 !important;
}

.mountain-one {
    opacity: .20 !important;
}

.mountain-two {
    opacity: .13 !important;
}

.mountain-three {
    opacity: .17 !important;
}


/* =========================================================
   ROUTE LINES
========================================================= */

.premium-route.main {

    stroke: #4da0ff !important;

    stroke-width: 4px !important;

    filter:
        drop-shadow(0 0 5px rgba(77,160,255,.35));
}

.premium-route.secondary {

    stroke: #6e9fc9 !important;

    opacity: .65 !important;
}

.premium-route.alternate {

    stroke: #477ba8 !important;

    opacity: .45 !important;
}


/* =========================================================
   LOCATION CARDS
========================================================= */

.premium-location-card {

    background: rgba(255,255,255,.97) !important;

    border: 1px solid rgba(255,255,255,.45) !important;

    box-shadow:
        0 12px 28px rgba(0,0,0,.20) !important;
}

.premium-location-card span {
    color: #1769d1 !important;
}

.premium-location-card strong {
    color: #071b3a !important;
}

.premium-location-card small {
    color: #637890 !important;
}


/* =========================================================
   LOCATION PINS
========================================================= */

.premium-pin {

    color: #1769d1 !important;

    background: #ffffff !important;

    border-color: #ffffff !important;

    box-shadow:
        0 0 0 5px rgba(255,255,255,.10),
        0 12px 28px rgba(0,0,0,.20) !important;
}


/* LEH PIN */

.premium-leh-pin {

    color: #ffffff !important;

    background: #1769d1 !important;

    border-color: #ffffff !important;

    box-shadow:
        0 0 0 8px rgba(63,151,239,.20),
        0 0 30px rgba(63,151,239,.30) !important;
}


/* LEH GLOW */

.premium-leh-glow {
    background: rgba(63,151,239,.22) !important;
}


/* =========================================================
   DISTANCE LABELS
========================================================= */

.premium-distance {

    background: rgba(8,34,66,.90) !important;

    border: 1px solid rgba(95,161,219,.30) !important;

    box-shadow:
        0 8px 20px rgba(0,0,0,.18) !important;
}

.premium-distance strong {
    color: #69b0ff !important;
}

.premium-distance span {
    color: #8da9c3 !important;
}


/* =========================================================
   BOTTOM INFO CARD
========================================================= */

.premium-route-info {

    background: rgba(255,255,255,.97) !important;

    border: none !important;

    box-shadow:
        0 15px 35px rgba(0,0,0,.22) !important;
}

.premium-route-info span {
    color: #7890a7 !important;
}

.premium-route-info strong {
    color: #071b3a !important;
}


/* =========================================================
   MOUNTAIN ICON
========================================================= */

.premium-stage-mountain {

    color: #6bb4f5 !important;

    opacity: .16 !important;
}


/* =========================================================
   BOTTOM SUMMARY
========================================================= */

.leh-premium-summary {

    background: #071f3d !important;

    border-top: 1px solid rgba(255,255,255,.10) !important;
}


.premium-summary-item span {
    color: #7195b8 !important;
}

.premium-summary-item strong {
    color: #ffffff !important;
}


.premium-summary-icon {

    color: #58a9ff !important;

    background: rgba(23,105,209,.18) !important;

    border: 1px solid rgba(80,156,226,.15);
}


.premium-summary-final .premium-summary-icon {

    color: #ffffff !important;

    background: #1769d1 !important;
}


.premium-summary-arrow span {

    background:
        repeating-linear-gradient(
            to right,
            #3c6c98 0,
            #3c6c98 5px,
            transparent 5px,
            transparent 10px
        ) !important;
}

.premium-summary-arrow i {
    color: #58a9ff !important;
}

/* =========================================================
   LEH JOURNEY - CLEAN MOBILE VERSION
========================================================= */

@media (max-width: 800px) {

    /* =====================================================
       SECTION
    ===================================================== */

    .leh-journey {
        padding: 55px 0 60px !important;

        background: #f7f9fc !important;

        overflow: hidden !important;
    }


    .leh-journey .leh-container {
        width: 100% !important;

        padding: 0 20px !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       HEADING
    ===================================================== */

    .leh-journey-heading {
        max-width: 350px !important;

        margin: 0 auto 38px !important;

        text-align: center !important;
    }


    .leh-journey-label {
        margin-bottom: 14px !important;

        gap: 10px !important;

        font-size: 8px !important;

        letter-spacing: 2px !important;
    }


    .leh-journey-label span {
        width: 28px !important;
    }


    .leh-journey-heading h2 {
        margin: 0 !important;

        font-size: 36px !important;

        line-height: 1 !important;

        letter-spacing: -1.7px !important;
    }


    .leh-journey-heading h2 strong {
        display: block !important;

        margin-top: 2px !important;
    }


    .leh-journey-heading p {
        max-width: 310px !important;

        margin: 18px auto 0 !important;

        font-size: 11px !important;

        line-height: 1.7 !important;
    }


    /* =====================================================
       JOURNEY MAP
    ===================================================== */

    .leh-journey-map {
        position: relative !important;

        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        padding: 0 0 0 37px !important;

        display: flex !important;

        flex-direction: column !important;

        gap: 18px !important;

        overflow: visible !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       REMOVE LARGE BACKGROUND IMAGE ON MOBILE
    ===================================================== */

    .leh-journey-mountains {
        display: none !important;
    }


    /* =====================================================
       VERTICAL TIMELINE
    ===================================================== */

    .leh-journey-route-line {
        position: absolute !important;

        left: 11px !important;
        right: auto !important;

        top: 28px !important;
        bottom: 28px !important;

        width: 2px !important;
        height: auto !important;

        z-index: 2 !important;
    }


    .leh-journey-route-line .route-line {
        position: absolute !important;

        left: 0 !important;
        top: 0 !important;

        width: 2px !important;
        height: 100% !important;

        transform: none !important;

        background:
            repeating-linear-gradient(
                to bottom,
                #2d83ee 0,
                #2d83ee 7px,
                transparent 7px,
                transparent 14px
            ) !important;
    }


    /* TIMELINE DOTS */

    .leh-journey-route-line .route-dot {
        position: absolute !important;

        left: 50% !important;
        right: auto !important;

        width: 14px !important;
        height: 14px !important;

        margin: 0 !important;

        background: #ffffff !important;

        border: 3px solid #1769d1 !important;

        box-shadow:
            0 0 0 4px rgba(23,105,209,.10) !important;

        transform: translate(-50%, -50%) !important;
    }


    .leh-journey-route-line .route-dot-1 {
        top: 7% !important;
    }


    .leh-journey-route-line .route-dot-2 {
        top: 50% !important;
    }


    .leh-journey-route-line .route-dot-3 {
        top: 93% !important;
    }


    /* =====================================================
       CARDS
    ===================================================== */

    .leh-journey .leh-journey-card,
    .leh-journey .journey-card-left,
    .leh-journey .journey-card-center,
    .leh-journey .journey-card-right {

        position: relative !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        width: 100% !important;

        min-height: 0 !important;

        margin: 0 !important;

        padding: 20px !important;

        display: grid !important;

        grid-template-columns:
            48px
            minmax(0, 1fr) !important;

        column-gap: 15px !important;

        align-items: start !important;

        text-align: left !important;

        background: #ffffff !important;

        border:
            1px solid #dce6f0 !important;

        border-radius: 16px !important;

        box-shadow:
            0 10px 28px rgba(7,27,58,.07) !important;

        transform: none !important;

        box-sizing: border-box !important;
    }


    /* Center card should no longer be oversized */

    .leh-journey .journey-card-center {
        min-height: 0 !important;

        padding-top: 20px !important;

        border-color: #c8dcef !important;

        box-shadow:
            0 10px 28px rgba(7,27,58,.07) !important;
    }


    .leh-journey .journey-card-center:hover,
    .leh-journey .leh-journey-card:hover {
        transform: none !important;
    }


    /* =====================================================
       ICONS
    ===================================================== */

    .leh-journey .journey-card-icon,
    .leh-journey .journey-truck-icon {

        position: static !important;

        grid-column: 1 !important;
        grid-row: 1 !important;

        width: 48px !important;
        height: 48px !important;

        margin: 0 !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        color: #1769d1 !important;

        background: #edf5ff !important;

        border: 0 !important;

        border-radius: 12px !important;

        box-shadow: none !important;

        font-size: 16px !important;

        transform: none !important;
    }


    /* Keep middle truck slightly highlighted */

    .leh-journey .journey-truck-icon {
        color: #ffffff !important;

        background: #1769d1 !important;
    }


    /* =====================================================
       CARD CONTENT
    ===================================================== */

    .leh-journey .journey-card-content {
        grid-column: 2 !important;
        grid-row: 1 !important;

        min-width: 0 !important;
    }


    .leh-journey .journey-number {
        margin-bottom: 4px !important;

        font-size: 8px !important;

        letter-spacing: 1.4px !important;
    }


    .leh-journey .journey-card-content h3 {
        margin: 0 0 5px !important;

        font-size: 18px !important;

        line-height: 1.2 !important;
    }


    .leh-journey .journey-stage {
        font-size: 10px !important;

        line-height: 1.4 !important;
    }


    .leh-journey .journey-accent {
        width: 28px !important;
        height: 2px !important;

        margin: 11px 0 !important;
    }


    .leh-journey .journey-card-content p,
    .leh-journey .journey-card-center .journey-card-content p {

        max-width: none !important;

        margin: 0 !important;

        color: #71859a !important;

        font-size: 10px !important;

        line-height: 1.55 !important;
    }


    .leh-journey .journey-card-center .journey-accent {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

}

/* ==========================================================
   LEH PAGE - FORCE BIGGER TEXT
   KEEP THIS AT ABSOLUTE BOTTOM OF leh.css
========================================================== */

@media (min-width: 1000px) {

    /* NAVIGATION */
    .leh-nav a {
        font-size: 17px !important;
    }


    /* HERO */

    .leh-hero h1,
    .leh-hero-content h1 {
        font-size: 72px !important;
        line-height: 1.05 !important;
    }

    .leh-hero-content p {
        font-size: 19px !important;
        line-height: 1.7 !important;
    }

    .leh-eyebrow {
        font-size: 14px !important;
    }

    .leh-primary-btn,
    .leh-secondary-btn,
    .leh-nav-button {
        font-size: 16px !important;
    }

    .leh-trust span {
        font-size: 15px !important;
    }


    /* HERO RIGHT CARD */

    .leh-hero-card h2 {
        font-size: 38px !important;
    }

    .leh-hero-card p {
        font-size: 18px !important;
    }

    .leh-card-label {
        font-size: 14px !important;
    }

    .leh-card-bottom {
        font-size: 15px !important;
    }


    /* ================= ALL MAIN SECTION HEADINGS ================= */

    .leh-built-heading h2,
    .leh-journey-heading h2,
    .leh-services-heading h2,
    .leh-why-content h2,
    .leh-routes-premium-head h2,
    .leh-map-heading h2 {
        font-size: 54px !important;
        line-height: 1.1 !important;
    }


    /* ALL SECTION DESCRIPTIONS */

    .leh-built-heading p,
    .leh-journey-heading p,
    .leh-services-heading p,
    .leh-why-intro,
    .leh-routes-premium-head p,
    .leh-map-heading p {
        font-size: 18px !important;
        line-height: 1.7 !important;
    }


    /* SMALL SECTION LABELS */

    .leh-section-label,
    .leh-journey-label,
    .leh-services-label,
    .leh-why-label,
    .leh-routes-premium-label,
    .leh-map-label {
        font-size: 14px !important;
    }


    /* ================= BUILT FOR LADAKH CARDS ================= */

    .leh-built-card h3 {
        font-size: 23px !important;
    }

    .leh-built-card p {
        font-size: 17px !important;
        line-height: 1.65 !important;
    }

    .leh-built-number {
        font-size: 14px !important;
    }

    .leh-built-bottom p {
        font-size: 17px !important;
    }


    /* ================= JOURNEY ================= */

    .journey-card-content h3 {
        font-size: 23px !important;
    }

    .journey-card-content p {
        font-size: 17px !important;
    }

    .journey-stage {
        font-size: 14px !important;
    }

    .journey-number {
        font-size: 14px !important;
    }


    /* ================= SERVICES ================= */

    .leh-service-content h3 {
        font-size: 24px !important;
    }

    .leh-service-content p {
        font-size: 17px !important;
        line-height: 1.65 !important;
    }

    .leh-service-content a {
        font-size: 16px !important;
    }

    .leh-service-number {
        font-size: 15px !important;
    }


    /* ================= WHY RIC ================= */

    .leh-why-item h3 {
        font-size: 22px !important;
    }

    .leh-why-item p {
        font-size: 17px !important;
    }

    .leh-standard-top h3 {
        font-size: 34px !important;
    }

    .leh-standard-info h4 {
        font-size: 20px !important;
    }

    .leh-standard-info p {
        font-size: 16px !important;
    }


    /* ================= ROUTE SECTION ================= */

    .leh-route-panel-top h3 {
        font-size: 36px !important;
    }

    .leh-timeline-content h4 {
        font-size: 21px !important;
    }

    .leh-timeline-content p {
        font-size: 17px !important;
    }

    .leh-route-option-content h4 {
        font-size: 20px !important;
    }

    .leh-route-note p {
        font-size: 16px !important;
    }

    .leh-route-quote-btn {
        font-size: 16px !important;
    }


    /* ================= MAP ================= */

    .leh-map-info-top h3 {
        font-size: 25px !important;
    }

    .leh-map-services > div {
        font-size: 16px !important;
    }

    .leh-map-quote-card h3 {
        font-size: 34px !important;
    }

    .leh-map-quote-card p {
        font-size: 17px !important;
    }

    .leh-map-quote-card a {
        font-size: 16px !important;
    }

    .leh-map-bottom strong {
        font-size: 17px !important;
    }


    /* ================= BOTTOM CTA ================= */

    .leh-cta h2 {
        font-size: 50px !important;
    }

    .leh-cta p {
        font-size: 18px !important;
    }

    .leh-cta-button {
        font-size: 16px !important;
    }


    /* ================= FOOTER ================= */

    .leh-footer-brand p {
        font-size: 16px !important;
    }

    .leh-footer-column h3 {
        font-size: 20px !important;
    }

    .leh-footer-column a,
    .leh-footer-contact span {
        font-size: 16px !important;
    }

    .leh-footer-bottom p,
    .leh-footer-legal a {
        font-size: 14px !important;
    }
}