:root {
    --hla-bg: #070809;
    --hla-panel: rgba(14, 15, 17, 0.9);
    --hla-panel-2: rgba(20, 22, 25, 0.92);
    --hla-line: rgba(255, 255, 255, 0.22);
    --hla-blue: #0577ff;
    --hla-blue-2: #1aa0ff;
    --hla-text: #f4f7fb;
    --hla-muted: #c6ccd3;
    --hla-gold: #ffb534;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 72% 24%, rgba(5, 119, 255, 0.16), transparent 36%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 7px),
        var(--hla-bg);
    color: var(--hla-text);
    font-family: "Roboto Condensed", Arial, sans-serif;
    line-height: 1.35;
}

.text-right {
    text-align: right;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.hla-shell {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #050607;
}

.hla-header {
    position: fixed;
    z-index: 30;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(3, 4, 5, 0.9);
    backdrop-filter: blur(12px);
    background-image: url("/images/theme/honest-lee-auto/top_nav_bg.png");
}

.hla-navbar {
    min-height: 84px;
}

.hla-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
    background-color: #000;
}

.hla-navbar .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.hla-brand img {
    width: min(310px, 50vw);
}

.hla-auth-logo {
    /*width: min(450px, 100%);*/
    margin: 0 auto;
}

.hla-mobile-call {
    display: none;
    color: #fff;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hla-mobile-call:hover,
.hla-mobile-call:focus {
    color: #fff;
}

.hla-nav .nav-link {
    --bs-nav-link-padding-y: 4px;
    color: #d7dce4;
    font-family: "Rajdhani", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hla-nav .nav-link:hover,
.hla-nav .nav-link:focus {
    color: var(--hla-blue-2);
}

.hla-nav .nav-link.active,
.hla-nav .nav-link[aria-current="page"] {
    color: var(--hla-blue-2);
}

.hla-nav-link-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hla-nav-dropdown-toggle {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.32);
    color: #d7dce4;
    font-size: 0.85rem;
    line-height: 1;
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.hla-nav-dropdown-toggle:hover,
.hla-nav-dropdown-toggle:focus {
    border-color: rgba(26, 160, 255, 0.75);
    color: var(--hla-blue-2);
    outline: none;
}

.hla-nav-dropdown:focus-within .hla-nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.hla-nav-dropdown-menu {
    --bs-dropdown-min-width: 14rem;
    --bs-dropdown-padding-x: 0.4rem;
    --bs-dropdown-padding-y: 0.4rem;
    --bs-dropdown-border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--hla-line);
    background: rgba(0, 0, 0, 0.94);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.hla-nav-dropdown-item {
    border-radius: 6px;
    color: #d7dce4;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.55rem 0.75rem;
    text-transform: uppercase;
}

.hla-nav-dropdown-item:hover,
.hla-nav-dropdown-item:focus {
    background: rgba(5, 119, 255, 0.18);
    color: var(--hla-blue-2);
}

.hla-nav-dropdown {
    position: relative;
}

.hla-nav-dropdown:focus-within > .hla-nav-dropdown-menu {
    display: block;
}

@media (min-width: 992px) {
    .hla-nav {
        display: flex !important;
    }

    .hla-nav .navbar-nav {
        flex: 1;
        justify-content: center;
    }

    .hla-nav .hla-call {
        margin-left: auto;
    }

    .hla-nav-dropdown:hover > .hla-nav-dropdown-menu {
        display: block;
    }

    .hla-nav-dropdown::after {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        height: 0.75rem;
        width: 14rem;
        content: "";
    }

    .hla-nav-dropdown:hover::after,
    .hla-nav-dropdown:focus-within::after {
        display: block;
    }

    .hla-nav-dropdown-menu {
        margin-top: 0.55rem;
    }
}

.hla-call {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--hla-text);
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    line-height: 1.05;
}

.hla-call i {
    color: var(--hla-blue);
    font-size: 1.7rem;
}

.hla-call small {
    display: block;
    color: var(--hla-muted);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hla-hero {
    --hla-hero-bg-image: url("/images/theme/honest-lee-auto/Honest_Lee_Hero_BG.png");
    position: relative;
    min-height: 540px;
    padding: 132px 0 44px;
    background-image:
        linear-gradient(90deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.50) 35%, rgba(5, 6, 8, 0) 100%),
        var(--hla-hero-bg-image);
    background-position: left top, right top;
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, auto 100%;
}

.hla-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(7, 8, 9, 0.98));
    content: "";
    pointer-events: none;
}

.hla-service-detail-hero {
    background-image:
        linear-gradient(90deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.50) 35%, rgba(5, 6, 8, 0) 100%),
        var(--hla-hero-bg-image) !important;
}

.hla-hero-content {
    position: relative;
    z-index: 1;
    max-width: 660px;
}

.hla-kicker {
    margin: 0 0 0.35rem;
    color: var(--hla-blue-2);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hla-title {
    margin: 0 0 0.65rem;
    color: #fff;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(3.2rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 0.82;
    text-transform: uppercase;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.75);
}

.hla-lede {
    max-width: 500px;
    margin-bottom: 1rem;
    color: #f5f5f5;
    font-size: 1.28rem;
}

.hla-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hla-btn {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.85rem 1.45rem;
    text-transform: uppercase;
    transition: transform 160ms ease, filter 160ms ease;
}

.hla-btn:hover,
.hla-btn:focus-visible {
    color: #fff;
    filter: brightness(1.14);
    outline: none;
    transform: translateY(-2px);
}

.hla-btn-primary {
    background: linear-gradient(135deg, #0a63c8, #078bff);
    box-shadow: 0 0 26px rgba(5, 119, 255, 0.34);
    color: #fff;
}

.hla-btn-secondary {
    border: 1px solid var(--hla-line);
    background: rgba(5, 6, 8, 0.76);
    color: #fff;
}

.hla-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #f6f7fa;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.hla-section-title::before,
.hla-section-title::after {
    width: min(100px, 14vw);
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hla-blue), transparent);
    content: "";
}

.hla-services {
    position: relative;
    z-index: 2;
    margin-top: -36px;
    padding: 0 0 1rem;
}

.hla-service-card,
.hla-panel,
.hla-review-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--hla-line);
    border-radius: 15px;
    /*background:*/
    /*    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 40%),*/
    /*    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px),*/
    /*    var(--hla-panel);*/
    background-image: url("/images/theme/honest-lee-auto/top_nav_bg.png");
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.72), 0 18px 50px rgba(0, 0, 0, 0.35);
    padding: 8px;
}

.hla-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hla-service-card-link {
    margin-top: auto;
    padding-top: 1rem;
}

.hla-gallery-scroller {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.75rem;
    padding: clamp(0.75rem, 2vw, 1.75rem) 0;
    overflow: hidden;
}

.hla-gallery-scroller::before,
.hla-gallery-scroller::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: min(11vw, 120px);
    pointer-events: none;
    content: "";
}

.hla-gallery-scroller::before {
    left: 0;
    background: linear-gradient(90deg, #050607, rgba(5, 6, 7, 0));
}

.hla-gallery-scroller::after {
    right: 0;
    background: linear-gradient(270deg, #050607, rgba(5, 6, 7, 0));
}

.hla-gallery-swiper,
.swiper_gallery,
.swiper_gallery2 {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.hla-gallery-scroller .swiper-wrapper {
    transition-timing-function: linear;
}

.hla-gallery-scroller-slide,
.gallery-section .swiper-slide {
    width: clamp(220px, 30vw, 380px);
    height: clamp(170px, 20vw, 245px);
    overflow: hidden;
    border: 1px solid var(--hla-line);
    border-radius: 12px;
    background: #0c0d0f;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.hla-gallery-scroller-slide a,
.gallery-section .swiper-slide a,
.gallery-section .swiper-slide .img-fluid,
.gallery-section .swiper-slide .gallery-image {
    display: block;
    width: 100%;
    height: 100%;
}

.hla-gallery-scroller-slide img,
.gallery-section .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hla-gallery-scroller-slide:hover img,
.hla-gallery-scroller-slide:focus img {
    transform: scale(1.04);
}

/*.hla-service-card {*/
/*    display: grid;*/
/*    min-height: 126px;*/
/*    grid-template-columns: 92px minmax(0, 1fr);*/
/*    gap: 0.8rem;*/
/*    align-items: center;*/
/*    padding: 1rem;*/
/*    clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);*/
/*}*/

.hla-service-card img {
    width: 78px;
    justify-self: center;
    filter: drop-shadow(0 0 18px rgba(5, 119, 255, 0.45));
}

.hla-service-card h3,
.hla-feature h3,
.hla-panel h2 {
    margin: 0 0 0.25rem;
    color: #fff;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hla-service-card h3 {
    font-size: 1.25rem;
}

.hla-service-card p,
.hla-feature p,
.hla-review-card p,
.hla-footer p {
    margin: 0;
    color: var(--hla-muted);
    font-size: 0.98rem;
}

.hla-info-row {
    padding: 0 0 1.6rem;
}

.hla-product-info-section {
    position: relative;
    z-index: 2;
    padding: 1.35rem 0;
}

.hla-product-info-section + .hla-product-info-section {
    margin-top: 1.35rem;
}

.hla-product-info-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0 0 0.75rem;
    color: #f6f7fa;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.hla-product-info-title::before,
.hla-product-info-title::after {
    width: min(90px, 13vw);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--hla-blue), transparent);
    content: "";
}

.hla-product-info-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid var(--hla-line);
    border-radius: 15px;
    background-image: url("/images/theme/honest-lee-auto/top_nav_bg.png");
    gap: 0;
    overflow: hidden;
}

.hla-product-info-item {
    display: grid;
    min-height: 96px;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
    gap: 0.8rem;
    padding: 1rem;
}

.hla-product-info-item img {
    width: 58px;
    max-height: 58px;
    margin-top: 0.25rem;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(5, 119, 255, 0.46));
}

.hla-product-info-item h3 {
    margin: 0 0 0.25rem;
    color: #fff;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.05;
    text-transform: uppercase;
}

.hla-product-info-item p {
    margin: 0;
    color: var(--hla-muted);
    font-size: 0.92rem;
    line-height: 1.2;
}

.hla-panel {
    height: 100%;
    padding: 1.25rem;
}

.hla-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hla-panel-header h2 {
    font-size: 1.55rem;
}

.hla-section-link {
    /*display: inline-flex;*/
    /*align-items: center;*/
    gap: 0.35rem;
    color: var(--hla-blue-2);
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.45rem 0.75rem;
    text-transform: uppercase;
}

.hla-section-link:hover,
.hla-section-link:focus {
    color: var(--hla-blue-2);
}

.hla-feature {
    text-align: center;
}

.hla-feature i {
    display: inline-grid;
    width: 62px;
    height: 62px;
    place-items: center;
    margin-bottom: 0.65rem;
    color: var(--hla-blue);
    font-size: 2.5rem;
    text-shadow: 0 0 18px rgba(5, 119, 255, 0.5);
}

.hla-feature h3 {
    font-size: 1.05rem;
}

.hla-review-card {
    height: 100%;
    padding: 1rem;
}

.hla-stars {
    color: var(--hla-gold);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.hla-review-card strong {
    display: block;
    margin-top: 0.7rem;
    color: var(--hla-muted);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hla-footer {
    border-top: 1px solid var(--hla-line);
    /*background:*/
    /*    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 7px),*/
    /*    #090a0b;*/
    background-image: url("/images/theme/honest-lee-auto/top_nav_bg.png");
    padding: 1rem 0;
}

.hla-error-shell {
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
    background:
        radial-gradient(circle at 74% 18%, rgba(5, 119, 255, 0.2), transparent 34%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px),
        var(--hla-bg);
}

.hla-error-header,
.hla-error-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-color: var(--hla-line);
    background-image: url("/images/theme/honest-lee-auto/top_nav_bg.png");
    padding: 1rem clamp(1rem, 4vw, 3rem);
}

.hla-error-header {
    border-bottom: 1px solid var(--hla-line);
}

.hla-error-brand img {
    width: min(320px, 72vw);
}

.hla-error-main {
    display: grid;
    place-items: center;
    padding: clamp(1.25rem, 4vw, 4rem);
}

.hla-error-page {
    width: min(100%, 760px);
}

.hla-error-page .error-page__content {
    overflow: hidden;
    border: 1px solid var(--hla-line);
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%),
        url("/images/theme/honest-lee-auto/top_nav_bg.png");
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.72), 0 24px 70px rgba(0, 0, 0, 0.42);
    padding: clamp(1.5rem, 5vw, 3.25rem);
    text-align: center;
}

.hla-error-page .error-page__code {
    color: var(--hla-blue-2);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(4.4rem, 15vw, 8.5rem);
    font-weight: 700;
    line-height: 0.85;
    text-shadow: 0 0 28px rgba(5, 119, 255, 0.38);
}

.hla-error-page .error-page__title {
    margin: 1rem 0 0.5rem;
    color: #fff;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.hla-error-page .error-page__message {
    max-width: 560px;
    margin: 0 auto 1.5rem;
    color: var(--hla-muted);
    font-size: 1.2rem;
}

.hla-error-page .error-page__actions {
    display: flex;
    justify-content: center;
}

.hla-error-page .error-page__button {
    text-decoration: none;
}

.hla-error-footer {
    border-top: 1px solid var(--hla-line);
    color: var(--hla-muted);
    font-size: 0.95rem;
}

.hla-error-footer a {
    color: var(--hla-blue-2);
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hla-footer h2 {
    margin-bottom: 0.5rem;
    color: var(--hla-blue-2);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hla-footer-logo {
    width: min(330px, 100%);
}

.hla-footer-badge {
    width: min(250px, 100%);
    margin-left: auto;
}

.hla-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hla-socials a {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--hla-line);
    border-radius: 50%;
    color: #fff;
}

.hla-socials a:hover {
    border-color: var(--hla-blue);
    color: var(--hla-blue-2);
}

@media (max-width: 767.98px) {
    .hla-footer-logo {
        display: block;
        margin: 0 auto;
    }

    .hla-product-info-strip {
        grid-template-columns: 1fr;
    }

    .hla-product-info-item + .hla-product-info-item {
        border-top: 1px solid var(--hla-line);
    }
}

@media (max-width: 991.98px) {
    .hla-navbar {
        min-height: 74px;
    }

    .hla-mobile-call {
        display: inline-flex;
        align-items: center;
        margin-left: auto;
        margin-right: 0.75rem;
        white-space: nowrap;
    }

    .hla-nav {
        border: 1px solid var(--hla-line);
        background: rgba(3, 4, 5, 0.96);
        margin-top: 0.75rem;
        padding: 0.75rem;
    }

    .hla-nav-link-row {
        justify-content: space-between;
    }

    .hla-nav-dropdown-toggle {
        width: 34px;
        height: 34px;
    }

    .hla-nav-dropdown-menu {
        position: static;
        width: 100%;
        margin: 0.15rem 0 0.45rem;
        background: rgba(3, 4, 5, 0.72);
        box-shadow: none;
    }

    .hla-nav-dropdown-item {
        padding: 0.65rem 0.8rem;
    }

    .hla-call {
        margin-top: 0.65rem;
    }

    .hla-hero {
        min-height: auto;
        padding-top: 120px;
        background-position: left top, 58% top;
        background-repeat: no-repeat, no-repeat;
        background-size: 100% 100%, cover;
    }

    .hla-service-card {
        grid-template-columns: 80px minmax(0, 1fr);
    }

}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .hla-product-info-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .hla-brand img {
        width: 230px;
    }

    .hla-hero-content {
        background-color: rgba(0, 0, 0, 0.85) !important;
        padding: 1rem;
    }

    .hla-title {
        font-size: clamp(2.7rem, 16vw, 4rem);
    }

    .hla-actions {
        display: grid;
    }

    .hla-btn {
        width: 100%;
    }

    .hla-footer-badge {
        margin: 1rem auto 0;
    }
}
