:root {
    --asphalt: #121317;
    --asphalt-soft: #181a21;
    --panel: #1e212a;
    --panel-border: #2c303b;
    --amber: #ffb100;
    --amber-soft: #ffd166;
    --red: #e8432e;
    --ink: #f4f3f0;
    --muted: #9ba0ac;
    --line: #3a3d47;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--asphalt);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.rl-display {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.rl-mono {
    font-family: 'JetBrains Mono', monospace;
}

a {
    text-decoration: none;
    color: #9ba0ac;
}

.rl-ticker {
    background: #0c0d10;
    border-bottom: 1px solid var(--panel-border);
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1200;
}

.rl-ticker-track {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 22s linear infinite;
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    letter-spacing: .12em;
    color: var(--muted);
}

.rl-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    margin-right: 6px;
    animation: pulse-dot 1.4s ease-in-out infinite;
}

.rl-logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: .04em;
    color: var(--ink);
}

.rl-logo span {
    color: var(--amber);
}

.rl-nav .nav-link {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 500;
    letter-spacing: .03em;
    margin: 0 12px;
    position: relative;
    transition: color .25s ease;
}

.rl-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width .25s ease;
}

.rl-nav .nav-link:hover {
    color: var(--ink);
}

.rl-nav .nav-link:hover::after {
    width: 100%;
}

.rl-nav .nav-link.active {
    color: var(--amber-soft);
}

.rl-btn-amber {
    background: var(--amber);
    color: #161616;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 2px;
    border: 1px solid var(--amber);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rl-btn-amber:hover {
    background: var(--amber-soft);
    color: #111;
    box-shadow: 0 8px 30px -6px rgba(255, 177, 0, .55);
    transform: translateY(-2px);
}

.rl-btn-outline {
    background: transparent;
    color: var(--ink);
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 2px;
    border: 1px solid var(--panel-border);
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rl-btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber);
    transform: translateY(-2px);
}

.rl-kicker {
    font-family: 'JetBrains Mono', monospace;
    font-size: .76rem;
    letter-spacing: .18em;
    color: var(--amber);
    margin-bottom: 10px;
}

.rl-h2 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.rl-sub {
    color: var(--muted);
    max-width: 640px;
    font-size: 1.02rem;
}

.rl-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.rl-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.rl-breadcrumb {
    font-family: 'JetBrains Mono', monospace;
    font-size: .76rem;
    letter-spacing: .1em;
    color: var(--muted);
}

.rl-breadcrumb a {
    color: var(--muted);
    transition: color .2s ease;
}

.rl-breadcrumb a:hover {
    color: var(--amber);
}

.rl-breadcrumb span {
    color: var(--amber);
}

.rl-banner-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--panel-border);
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .6);
    transition: transform .4s ease, box-shadow .4s ease;
    display: block;
}

.rl-banner-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px -18px rgba(0, 0, 0, .7);
}

.rl-stat-board {
    background: #0c0d10;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 38px 10px;
}

.rl-stat {
    text-align: center;
    padding: 14px 8px;
}

.rl-stat .n {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 700;
    color: var(--amber-soft);
    text-shadow: 0 0 24px rgba(255, 177, 0, .35);
}

.rl-stat .l {
    color: var(--muted);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.rl-feature {
    display: flex;
    gap: 18px;
    margin-bottom: 34px;
}

.rl-feature .num {
    font-family: 'JetBrains Mono', monospace;
    color: var(--amber);
    font-weight: 700;
    font-size: .95rem;
    flex: 0 0 auto;
    padding-top: 3px;
}

.rl-feature h5 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.rl-feature p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0;
}

.rl-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #181a21, #101114);
    border-top: 1px solid var(--panel-border);
    border-bottom: 1px solid var(--panel-border);
    padding: 80px 0;
    text-align: center;
}

.rl-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 100% at 20% 0%, rgba(255, 177, 0, .14), transparent 60%);
}

.rl-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
    mask-image: radial-gradient(ellipse 70% 100% at 50% 30%, #000 40%, transparent 90%);
}

footer {
    background: #0c0d10;
    border-top: 1px solid var(--panel-border);
    padding: 60px 0 24px;
}

footer h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .85rem;
    color: var(--ink);
    margin-bottom: 18px;
}

footer a.f-link {
    color: var(--muted);
    font-size: .87rem;
    display: block;
    margin-bottom: 10px;
    transition: color .2s ease, padding-left .2s ease;
}

footer a.f-link:hover {
    color: var(--amber);
    padding-left: 4px;
}

.rl-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--panel-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    margin-right: 8px;
    transition: all .25s ease;
}

.rl-social:hover {
    border-color: var(--amber);
    color: var(--amber);
    transform: translateY(-3px);
}

.rl-copy {
    color: #5c616b;
    font-size: .78rem;
}


/* About Us  */
::selection {
    background: var(--amber);
    color: #000;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--asphalt);
}

::-webkit-scrollbar-thumb {
    background: var(--panel-border);
    border-radius: 10px;
}

.rl-ticker-track span {
    color: var(--amber);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 177, 0, .6);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 177, 0, 0);
    }
}

.rl-nav {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(18, 19, 23, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--panel-border);
    padding: 12px 0;
}

.rl-pagehead {
    position: relative;
    padding: 64px 0 56px;
    background:
        radial-gradient(ellipse 55% 60% at 85% 0%, rgba(255, 177, 0, .10), transparent 60%),
        linear-gradient(180deg, #0f1013 0%, #121317 70%);
    border-bottom: 1px solid var(--panel-border);
    overflow: hidden;
}

.rl-pagehead::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 90% 100% at 30% 0%, #000 40%, transparent 85%);
    pointer-events: none;
}

.rl-pagehead h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    margin: 14px 0 12px;
}

.rl-pagehead h1 .accent {
    color: var(--amber);
}

.rl-pagehead p.lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0;
}

.rl-section {
    padding: 100px 0;
    position: relative;
}

.rl-section-alt {
    background: var(--asphalt-soft);
}

.rl-jumpbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 0;
    border-bottom: 1px solid var(--panel-border);
    position: sticky;
    top: 61px;
    z-index: 900;
    background: rgba(18, 19, 23, .92);
    backdrop-filter: blur(10px);
}

.rl-jumpchip {
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem;
    letter-spacing: .04em;
    color: var(--muted);
    border: 1px solid var(--panel-border);
    border-radius: 999px;
    padding: 7px 16px;
    transition: all .25s ease;
}

.rl-jumpchip:hover,
.rl-jumpchip.is-active {
    color: #111;
    background: var(--amber);
    border-color: var(--amber);
}

.rl-svc-block {
    padding: 74px 0;
    border-bottom: 1px solid var(--panel-border);
    scroll-margin-top: 130px;
}

.rl-svc-block:last-of-type {
    border-bottom: none;
}

.rl-svc-index {
    font-family: 'JetBrains Mono', monospace;
    font-size: .8rem;
    color: var(--amber);
    letter-spacing: .1em;
    margin-bottom: 14px;
    display: block;
}

.rl-svc-imgwrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--panel-border);
    box-shadow: 0 20px 45px -20px rgba(0, 0, 0, .65);
}

.rl-svc-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(12%);
    transition: transform .6s ease, filter .4s ease;
}

.rl-svc-block:hover .rl-svc-imgwrap img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.rl-svc-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .82rem;
    color: var(--amber-soft);
    border: 1px solid rgba(255, 177, 0, .3);
    background: rgba(255, 177, 0, .06);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.rl-svc-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 26px;
}

.rl-svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--panel-border);
    color: #d7d9de;
    font-size: .93rem;
}

.rl-svc-list li:first-child {
    border-top: none;
}

.rl-svc-list li i {
    color: var(--amber);
    margin-top: 3px;
    flex: 0 0 auto;
}

.rl-table-wrap {
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--panel);
}

table.rl-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.rl-table th,
.rl-table td {
    padding: 16px 20px;
    font-size: .88rem;
    border-bottom: 1px solid var(--panel-border);
    text-align: left;
}

.rl-table thead th {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .78rem;
    color: var(--amber-soft);
    background: #0c0d10;
    border-bottom: 1px solid var(--panel-border);
}

.rl-table tbody tr:last-child td {
    border-bottom: none;
}

.rl-table tbody tr:hover {
    background: rgba(255, 177, 0, .04);
}

.rl-table td.svc-name {
    color: var(--ink);
    font-weight: 600;
}

.rl-table td,
.rl-table th {
    color: var(--muted);
}

.rl-table i.bi-check-circle-fill {
    color: #2ecc71;
}

.rl-table i.bi-dash-circle {
    color: #545a66;
}

.accordion-item {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    margin-bottom: 12px;
    border-radius: 6px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--panel);
    color: var(--ink);
    font-family: 'Oswald', sans-serif;
    letter-spacing: .02em;
    font-size: .98rem;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 177, 0, .06);
    color: var(--amber-soft);
}

.accordion-button::after {
    filter: invert(72%) sepia(56%) saturate(1000%) hue-rotate(360deg);
}

.accordion-body {
    color: var(--muted);
    font-size: .92rem;
    background: var(--panel);
}

.rl-team-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(160deg, #20232c, #15161b);
    border: 1px solid var(--panel-border);
    padding: 0 0 26px;
    height: 100%;
    transition: transform .35s ease, border-color .35s ease;
}

.rl-team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 177, 0, .4);
}

.rl-team-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(12, 13, 16, .55);
    backdrop-filter: blur(4px);
}

.rl-team-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin-bottom: 18px;
    filter: grayscale(15%);
    transition: transform .5s ease, filter .4s ease;
}

.rl-team-card:hover .rl-team-img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.rl-team-card h5,
.rl-team-card p {
    padding: 0 24px;
}

.rl-team-card h5 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.rl-team-card .role {
    color: var(--amber-soft);
    font-family: 'JetBrains Mono', monospace;
    font-size: .74rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 0 24px;
    display: block;
    margin-bottom: 10px;
}

.rl-team-card p {
    color: var(--muted);
    font-size: .88rem;
    margin: 0;
}

.rl-timeline {
    position: relative;
    padding-left: 42px;
}

.rl-timeline::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--line);
}

.rl-milestone {
    position: relative;
    padding-bottom: 38px;
}

.rl-milestone:last-child {
    padding-bottom: 0;
}

.rl-milestone::before {
    content: "";
    position: absolute;
    left: -42px;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--asphalt-soft);
    border: 2px solid var(--amber);
}

.rl-milestone .yr {
    font-family: 'JetBrains Mono', monospace;
    color: var(--amber-soft);
    font-size: .8rem;
    letter-spacing: .08em;
    display: block;
    margin-bottom: 4px;
}

.rl-milestone h5 {
    margin-bottom: 6px;
}

.rl-milestone p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0;
    max-width: 480px;
}

@media(max-width:991px) {
    .rl-jumpbar {
        top: 57px;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

@media(max-width:767px) {
    .rl-section {
        padding: 64px 0;
    }

    .rl-svc-block {
        padding: 50px 0;
    }
}

/* Home  */
::selection {
    background: var(--amber);
    color: #000;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--asphalt);
}

::-webkit-scrollbar-thumb {
    background: var(--panel-border);
    border-radius: 10px;
}

.rl-ticker-track span {
    color: var(--amber);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 177, 0, .6);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 177, 0, 0);
    }
}

.rl-nav {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(18, 19, 23, .7);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: all .35s ease;
    padding: 16px 0;
}

.rl-nav.scrolled {
    padding: 10px 0;
    background: rgba(18, 19, 23, .92);
    border-bottom: 1px solid var(--panel-border);
}

.rl-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 177, 0, .10), transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(232, 67, 46, .08), transparent 60%),
        linear-gradient(180deg, #0f1013 0%, #121317 60%, #15161b 100%);
    overflow: hidden;
}

.rl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 75%);
    pointer-events: none;
}

.rl-headlight {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 177, 0, .16), transparent 65%);
    filter: blur(10px);
    animation: sweep 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sweep {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(14vw, 10vh) scale(1.15);
    }
}

.rl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .74rem;
    letter-spacing: .16em;
    color: var(--amber-soft);
    border: 1px solid rgba(255, 177, 0, .35);
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 177, 0, .06);
}

.rl-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: .98;
    font-weight: 700;
    margin: 20px 0 18px;
}

.rl-hero h1 .accent {
    color: var(--amber);
    -webkit-text-stroke: 0;
}

.rl-hero p.lead {
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 520px;
}

.rl-chips {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
}

.rl-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
}

.rl-chip i {
    color: var(--amber);
}

.rl-hero-collage {
    position: relative;
    height: 520px;
}

.rl-hero-img {
    border-radius: 10px;
    border: 1px solid var(--panel-border);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7);
    object-fit: cover;
}

.rl-hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    transition: transform .5s ease;
}

.rl-hero-img-main:hover {
    transform: translateY(-6px);
}

.rl-hero-img-badge {
    position: absolute;
    bottom: -6%;
    left: -4%;
    width: 52%;
    height: auto;
    transition: transform .5s ease;
    z-index: 2;
}

.rl-hero-img-badge:hover {
    transform: translateY(-6px) rotate(-1deg);
}

.rl-road {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    background: #0c0d10;
    border-top: 1px solid var(--panel-border);
    overflow: hidden;
}

.rl-road::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 5px;
    transform: translateY(-50%);
    background-image: repeating-linear-gradient(90deg, var(--amber) 0 34px, transparent 34px 64px);
    animation: roadmove 2.2s linear infinite;
    opacity: .85;
}

@keyframes roadmove {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -98px;
    }
}

.rl-section {
    padding: 110px 0;
    position: relative;
}

.rl-section-alt {
    background: var(--asphalt-soft);
}

.rl-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 6px;
    padding: 0 0 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.rl-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 3;
    background: linear-gradient(90deg, var(--amber), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.rl-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 177, 0, .4);
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .6);
}

.rl-card:hover::before {
    transform: scaleX(1);
}

.rl-card-imgwrap {
    position: relative;
    height: 170px;
    overflow: hidden;
}

.rl-card-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: transform .5s ease, filter .4s ease;
}

.rl-card:hover .rl-card-imgwrap img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.rl-card-imgwrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 19, 23, 0) 45%, var(--panel) 100%);
}

.rl-card .rl-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 177, 0, .14);
    border: 1px solid rgba(255, 177, 0, .3);
    backdrop-filter: blur(6px);
    color: var(--amber);
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
    margin: -34px 24px 18px;
    transition: transform .35s ease, background .35s ease;
}

.rl-card:hover .rl-icon {
    transform: rotate(-8deg) scale(1.08);
    background: rgba(255, 177, 0, .22);
}

.rl-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    padding: 0 24px;
}

.rl-card p {
    color: var(--muted);
    font-size: .93rem;
    margin-bottom: 16px;
    padding: 0 24px;
}

.rl-card .rl-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem;
    letter-spacing: .06em;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 24px;
}

.rl-card .rl-link i {
    transition: transform .25s ease;
    color: var(--amber);
}

.rl-card:hover .rl-link i {
    transform: translateX(5px);
}

.rl-process {
    position: relative;
    padding-top: 20px;
}

.rl-process-track {
    position: absolute;
    top: 26px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--line);
    display: none;
}

.rl-process-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--amber), var(--red));
    transition: width .1s linear;
}

.rl-truck {
    position: absolute;
    top: -13px;
    left: 0%;
    font-size: 1.5rem;
    color: var(--amber);
    transform: translateX(-50%);
    transition: left .1s linear;
    filter: drop-shadow(0 0 8px rgba(255, 177, 0, .6));
    display: none;
}

.rl-step {
    text-align: center;
    position: relative;
    padding-top: 10px;
}

.rl-step .dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--panel);
    border: 2px solid var(--panel-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--amber);
    position: relative;
    z-index: 2;
    transition: border-color .35s ease, box-shadow .35s ease;
}

.rl-step.is-visible .dot {
    border-color: var(--amber);
    box-shadow: 0 0 22px rgba(255, 177, 0, .35);
}

.rl-step h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.rl-step p {
    color: var(--muted);
    font-size: .88rem;
}

.rl-fleet-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(160deg, #20232c, #15161b);
    border: 1px solid var(--panel-border);
    padding: 0 0 26px;
    height: 100%;
    transition: transform .35s ease, border-color .35s ease;
}

.rl-fleet-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 177, 0, .35);
}

.rl-fleet-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    margin-bottom: 18px;
    filter: grayscale(15%);
    transition: transform .5s ease, filter .4s ease;
}

.rl-fleet-card:hover .rl-fleet-img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.rl-fleet-card h5,
.rl-fleet-card p {
    padding: 0 24px;
}

.rl-fleet-card h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.rl-fleet-card p {
    color: var(--muted);
    font-size: .88rem;
    margin: 0;
}

.rl-fleet-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(12, 13, 16, .55);
    backdrop-filter: blur(4px);
}

.rl-review {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 6px;
    padding: 26px;
    height: 100%;
    position: relative;
    transition: transform .3s ease, border-color .3s ease;
}

.rl-review:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 177, 0, .3);
}

.rl-review .tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    color: var(--amber);
    letter-spacing: .1em;
    margin-bottom: 12px;
    display: block;
}

.rl-review p {
    color: #d7d9de;
    font-size: .92rem;
    font-style: italic;
    margin-bottom: 18px;
}

.rl-review .who {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rl-review .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #111;
    font-size: .85rem;
}

.rl-review .who span {
    font-size: .85rem;
    color: var(--muted);
}

.rl-stars {
    color: var(--amber);
    font-size: .8rem;
    letter-spacing: 2px;
}

.rl-reviews-swiper {
    padding-bottom: 8px;
}

.rl-reviews-swiper .swiper-slide {
    height: auto;
    padding: 6px 4px 26px;
}

.rl-swiper-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 20px;
}

.rl-swiper-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all .25s ease;
    flex: 0 0 auto;
}

.rl-swiper-btn:hover {
    border-color: var(--amber);
    color: var(--amber);
    background: rgba(255, 177, 0, .08);
}

.rl-swiper-pagination {
    position: static !important;
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto !important;
}

.rl-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--line);
    opacity: 1;
    border-radius: 999px;
    transition: all .3s ease;
    margin: 0 !important;
}

.rl-swiper-pagination .swiper-pagination-bullet-active {
    width: 26px;
    background: var(--amber);
}

.rl-area-chip {
    border: 1px solid var(--panel-border);
    border-radius: 999px;
    padding: 9px 18px;
    font-size: .85rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
    margin: 6px 8px 6px 0;
}

.rl-area-chip:hover {
    border-color: var(--amber);
    color: var(--ink);
    background: rgba(255, 177, 0, .06);
}

.rl-area-chip i {
    color: var(--amber);
    font-size: .7rem;
}

.rl-form-control {
    background: #0e0f13;
    border: 1px solid var(--panel-border);
    color: var(--ink);
    padding: 12px 14px;
    border-radius: 4px;
    font-size: .9rem;
    width: 100%;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.rl-form-control:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(255, 177, 0, .12);
}

.rl-form-control::placeholder {
    color: #6b7078;
}

label.rl-label {
    font-size: .76rem;
    letter-spacing: .08em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
    font-family: 'JetBrains Mono', monospace;
}

.rl-contact-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 34px;
}

.rl-contact-line {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.rl-contact-line i {
    color: var(--amber);
    font-size: 1.15rem;
    margin-top: 3px;
}

.rl-contact-line h6 {
    font-size: .9rem;
    margin-bottom: 2px;
}

.rl-contact-line p {
    color: var(--muted);
    font-size: .85rem;
    margin: 0;
}

@media(max-width:767px) {
    .rl-section {
        padding: 70px 0;
    }

    .rl-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
}

/* Service Details */
::selection {
    background: var(--amber);
    color: #000;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--asphalt);
}

::-webkit-scrollbar-thumb {
    background: var(--panel-border);
    border-radius: 10px;
}

.rl-ticker-track span {
    color: var(--amber);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 177, 0, .6);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 177, 0, 0);
    }
}

.rl-nav {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(18, 19, 23, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--panel-border);
    padding: 12px 0;
}

.rl-dhero {
    position: relative;
    padding: 56px 0 0;
    background:
        radial-gradient(ellipse 55% 60% at 85% 0%, rgba(255, 177, 0, .10), transparent 60%),
        linear-gradient(180deg, #0f1013 0%, #121317 70%);
    border-bottom: 1px solid var(--panel-border);
    overflow: hidden;
}

.rl-dhero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 90% 100% at 30% 0%, #000 40%, transparent 85%);
    pointer-events: none;
}

.rl-dhero-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .74rem;
    letter-spacing: .16em;
    color: var(--amber-soft);
    border: 1px solid rgba(255, 177, 0, .35);
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 177, 0, .06);
}

.rl-dhero h1 {
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    font-weight: 700;
    margin: 16px 0 14px;
}

.rl-dhero p.lead {
    color: var(--muted);
    font-size: 1.06rem;
    max-width: 560px;
}

.rl-dhero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 26px;
    padding-bottom: 34px;
}

.rl-dhero-meta .item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
}

.rl-dhero-meta .item i {
    color: var(--amber);
}

.rl-dhero-img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    border: 1px solid var(--panel-border);
    border-bottom: none;
    box-shadow: 0 20px 45px -20px rgba(0, 0, 0, .65);
    object-fit: cover;
    height: 380px;
    display: block;
}

.rl-section {
    padding: 90px 0;
    position: relative;
}

.rl-section-alt {
    background: var(--asphalt-soft);
}

.rl-sticky-card {
    position: sticky;
    top: 90px;
}

.rl-quote-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 30px;
}

.rl-quote-card .price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    color: var(--amber-soft);
    font-weight: 700;
    text-shadow: 0 0 24px rgba(255, 177, 0, .25);
}

.rl-quote-card .price small {
    font-size: .8rem;
    color: var(--muted);
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

.rl-quote-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.rl-quote-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--panel-border);
    color: #d7d9de;
    font-size: .88rem;
}

.rl-quote-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.rl-quote-list li i {
    color: var(--amber);
    margin-top: 3px;
}

.rl-detail-body h3 {
    font-size: 1.3rem;
    margin: 40px 0 14px;
}

.rl-detail-body h3:first-child {
    margin-top: 0;
}

.rl-detail-body p {
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.7;
}

.rl-check-grid {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.rl-check-grid li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #d7d9de;
    font-size: .92rem;
}

.rl-check-grid li i {
    color: var(--amber);
    margin-top: 3px;
    flex: 0 0 auto;
}

.rl-note-card {
    display: flex;
    gap: 16px;
    background: rgba(255, 177, 0, .06);
    border: 1px solid rgba(255, 177, 0, .3);
    border-radius: 8px;
    padding: 22px 24px;
    margin: 32px 0;
}

.rl-note-card i {
    color: var(--amber);
    font-size: 1.3rem;
    margin-top: 2px;
}

.rl-note-card p {
    margin: 0;
    color: #e6e2d8;
    font-size: .9rem;
}

.rl-note-card strong {
    color: var(--ink);
}

.rl-mini-step {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid var(--panel-border);
}

.rl-mini-step:first-child {
    border-top: none;
    padding-top: 0;
}

.rl-mini-step .dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--amber);
    flex: 0 0 auto;
}

.rl-mini-step h5 {
    font-size: .98rem;
    margin-bottom: 4px;
}

.rl-mini-step p {
    color: var(--muted);
    font-size: .88rem;
    margin: 0;
}

.rl-gallery img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--panel-border);
    filter: grayscale(12%);
    transition: transform .4s ease, filter .3s ease;
}

.rl-gallery a:hover img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.rl-review {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 6px;
    padding: 24px;
    height: 100%;
    transition: transform .3s ease, border-color .3s ease;
}

.rl-review:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 177, 0, .3);
}

.rl-review .tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    color: var(--amber);
    letter-spacing: .1em;
    margin-bottom: 10px;
    display: block;
}

.rl-review p {
    color: #d7d9de;
    font-size: .9rem;
    font-style: italic;
    margin-bottom: 16px;
}

.rl-review .who {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rl-review .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #111;
    font-size: .8rem;
}

.rl-review .who span {
    font-size: .82rem;
    color: var(--muted);
}

.rl-stars {
    color: var(--amber);
    font-size: .78rem;
    letter-spacing: 2px;
}

.rl-related-card {
    display: block;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 6px;
    padding: 22px;
    height: 100%;
    transition: all .3s ease;
}

.rl-related-card:hover {
    border-color: rgba(255, 177, 0, .4);
    transform: translateY(-6px);
}

.rl-related-card .rl-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 177, 0, .12);
    border: 1px solid rgba(255, 177, 0, .3);
    color: var(--amber);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.rl-related-card h5 {
    font-size: .98rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.rl-related-card p {
    font-size: .85rem;
    color: var(--muted);
    margin: 0;
}

.accordion-item {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    margin-bottom: 12px;
    border-radius: 6px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--panel);
    color: var(--ink);
    font-family: 'Oswald', sans-serif;
    letter-spacing: .02em;
    font-size: .94rem;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 177, 0, .06);
    color: var(--amber-soft);
}

.accordion-button::after {
    filter: invert(72%) sepia(56%) saturate(1000%) hue-rotate(360deg);
}

.accordion-body {
    color: var(--muted);
    font-size: .9rem;
    background: var(--panel);
}

@media(max-width:991px) {
    .rl-sticky-card {
        position: static;
        margin-top: 40px;
    }
}

@media(max-width:767px) {
    .rl-section {
        padding: 60px 0;
    }

    .rl-dhero-img {
        height: 220px;
    }

    .rl-check-grid {
        grid-template-columns: 1fr;
    }
}

/* Services */
::selection {
    background: var(--amber);
    color: #000;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--asphalt);
}

::-webkit-scrollbar-thumb {
    background: var(--panel-border);
    border-radius: 10px;
}

.rl-ticker-track span {
    color: var(--amber);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 177, 0, .6);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 177, 0, 0);
    }
}

.rl-nav {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(18, 19, 23, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--panel-border);
    padding: 12px 0;
}

.rl-pagehead {
    position: relative;
    padding: 64px 0 56px;
    background:
        radial-gradient(ellipse 55% 60% at 85% 0%, rgba(255, 177, 0, .10), transparent 60%),
        linear-gradient(180deg, #0f1013 0%, #121317 70%);
    border-bottom: 1px solid var(--panel-border);
    overflow: hidden;
}

.rl-pagehead::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 90% 100% at 30% 0%, #000 40%, transparent 85%);
    pointer-events: none;
}

.rl-pagehead h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    margin: 14px 0 12px;
}

.rl-pagehead h1 .accent {
    color: var(--amber);
}

.rl-pagehead p.lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0;
}

.rl-section {
    padding: 100px 0;
    position: relative;
}

.rl-section-alt {
    background: var(--asphalt-soft);
}

.rl-jumpbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 0;
    border-bottom: 1px solid var(--panel-border);
    position: sticky;
    top: 61px;
    z-index: 900;
    background: rgba(18, 19, 23, .92);
    backdrop-filter: blur(10px);
}

.rl-jumpchip {
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem;
    letter-spacing: .04em;
    color: var(--muted);
    border: 1px solid var(--panel-border);
    border-radius: 999px;
    padding: 7px 16px;
    transition: all .25s ease;
}

.rl-jumpchip:hover,
.rl-jumpchip.is-active {
    color: #111;
    background: var(--amber);
    border-color: var(--amber);
}

.rl-svc-block {
    padding: 74px 0;
    border-bottom: 1px solid var(--panel-border);
    scroll-margin-top: 130px;
}

.rl-svc-block:last-of-type {
    border-bottom: none;
}

.rl-svc-index {
    font-family: 'JetBrains Mono', monospace;
    font-size: .8rem;
    color: var(--amber);
    letter-spacing: .1em;
    margin-bottom: 14px;
    display: block;
}

.rl-svc-imgwrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--panel-border);
    box-shadow: 0 20px 45px -20px rgba(0, 0, 0, .65);
}

.rl-svc-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(12%);
    transition: transform .6s ease, filter .4s ease;
}

.rl-svc-block:hover .rl-svc-imgwrap img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.rl-svc-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .82rem;
    color: var(--amber-soft);
    border: 1px solid rgba(255, 177, 0, .3);
    background: rgba(255, 177, 0, .06);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.rl-svc-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 26px;
}

.rl-svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--panel-border);
    color: #d7d9de;
    font-size: .93rem;
}

.rl-svc-list li:first-child {
    border-top: none;
}

.rl-svc-list li i {
    color: var(--amber);
    margin-top: 3px;
    flex: 0 0 auto;
}

.rl-table-wrap {
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--panel);
}

table.rl-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.rl-table th,
.rl-table td {
    padding: 16px 20px;
    font-size: .88rem;
    border-bottom: 1px solid var(--panel-border);
    text-align: left;
}

.rl-table thead th {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .78rem;
    color: var(--amber-soft);
    background: #0c0d10;
    border-bottom: 1px solid var(--panel-border);
}

.rl-table tbody tr:last-child td {
    border-bottom: none;
}

.rl-table tbody tr:hover {
    background: rgba(255, 177, 0, .04);
}

.rl-table td.svc-name {
    color: var(--ink);
    font-weight: 600;
}

.rl-table td,
.rl-table th {
    color: var(--muted);
}

.rl-table i.bi-check-circle-fill {
    color: #2ecc71;
}

.rl-table i.bi-dash-circle {
    color: #545a66;
}

.accordion-item {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    margin-bottom: 12px;
    border-radius: 6px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--panel);
    color: var(--ink);
    font-family: 'Oswald', sans-serif;
    letter-spacing: .02em;
    font-size: .98rem;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 177, 0, .06);
    color: var(--amber-soft);
}

.accordion-button::after {
    filter: invert(72%) sepia(56%) saturate(1000%) hue-rotate(360deg);
}

.accordion-body {
    color: var(--muted);
    font-size: .92rem;
    background: var(--panel);
}

@media(max-width:991px) {
    .rl-jumpbar {
        top: 57px;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

@media(max-width:767px) {
    .rl-section {
        padding: 64px 0;
    }

    .rl-svc-block {
        padding: 50px 0;
    }
}

/* ---------- testimonial media (image / video / photo avatar) ---------- */
.rl-review .media {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 16px;
    display: block;
    background: #0c0d10;
}

.rl-review .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}




/* =====================================================
   BLOG — list page + detail page
   Reuses the color/spacing tokens already defined in
   style.css (:root, .rl-section, .rl-h2, .rl-sub, etc.)
   ===================================================== */

/* ---------- Category filter chips (blog.php) ---------- */
.rl-blog-filterbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.rl-blog-chip {
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem;
    letter-spacing: .04em;
    color: var(--muted);
    border: 1px solid var(--panel-border);
    background: var(--panel);
    border-radius: 30px;
    padding: 8px 18px;
    text-decoration: none;
    transition: all .25s ease;
    white-space: nowrap;
}

.rl-blog-chip:hover,
.rl-blog-chip.is-active {
    color: #15161b;
    background: var(--amber);
    border-color: var(--amber);
}

/* ---------- Blog card grid (blog.php) ---------- */
.rl-blog-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(160deg, #20232c, #15161b);
    border: 1px solid var(--panel-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--ink);
    transition: transform .35s ease, border-color .35s ease;
}

.rl-blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 177, 0, .35);
    color: var(--ink);
}

.rl-blog-img-wrap {
    height: 210px;
    overflow: hidden;
}

.rl-blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: transform .5s ease, filter .4s ease;
}

.rl-blog-card:hover .rl-blog-img-wrap img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.rl-blog-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--amber);
    color: #15161b;
    padding: 4px 12px;
    border-radius: 30px;
}

.rl-blog-body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rl-blog-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: .74rem;
    color: var(--muted);
    letter-spacing: .03em;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rl-blog-card h5 {
    font-size: 1.08rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.rl-blog-card p {
    color: var(--muted);
    font-size: .88rem;
    margin: 0 0 16px;
}

.rl-blog-readmore {
    margin-top: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem;
    letter-spacing: .03em;
    color: var(--amber);
}

/* ---------- Pagination ---------- */
.rl-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.rl-pagination a,
.rl-pagination span {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--panel-border);
    color: var(--muted);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: .85rem;
}

.rl-pagination a:hover,
.rl-pagination .is-active {
    background: var(--amber);
    border-color: var(--amber);
    color: #15161b;
}

/* ---------- Detail page ---------- */
.rl-blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: .82rem;
    margin: 14px 0 22px;
}

.rl-blog-detail-meta span i {
    color: var(--amber);
    margin-right: 6px;
}

.rl-blog-detail-img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 36px;
}

.rl-blog-body-content {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
}

.rl-blog-body-content h2,
.rl-blog-body-content h3,
.rl-blog-body-content h4 {
    color: var(--ink);
    text-transform: none;
    letter-spacing: 0;
    margin: 30px 0 14px;
}

.rl-blog-body-content p {
    margin-bottom: 18px;
}

.rl-blog-body-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 10px 0 20px;
}

.rl-blog-body-content ul,
.rl-blog-body-content ol {
    margin-bottom: 18px;
    padding-left: 22px;
}

.rl-blog-quote {
    border-left: 3px solid var(--amber);
    background: var(--panel);
    padding: 22px 26px;
    margin: 30px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    color: var(--ink);
    letter-spacing: .01em;
}

.rl-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 34px;
}

.rl-blog-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: .74rem;
    color: var(--muted);
    border: 1px solid var(--panel-border);
    border-radius: 30px;
    padding: 5px 14px;
}

/* ---------- Sidebar widgets (detail + list) ---------- */
.rl-blog-widget {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 10px;
    padding: 26px;
    margin-bottom: 24px;
}

.rl-blog-widget h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .92rem;
    margin-bottom: 18px;
    color: var(--ink);
}

.rl-blog-widget .cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    padding: 9px 0;
    border-bottom: 1px solid var(--panel-border);
}

.rl-blog-widget .cat-link:last-child {
    border-bottom: none;
}

.rl-blog-widget .cat-link:hover,
.rl-blog-widget .cat-link.is-active {
    color: var(--amber);
}

.rl-blog-widget .cat-link .count {
    font-family: 'JetBrains Mono', monospace;
    font-size: .75rem;
    color: var(--muted);
}

.rl-recent-post {
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
    padding: 12px 0;
    border-bottom: 1px solid var(--panel-border);
}

.rl-recent-post:last-child {
    border-bottom: none;
}

.rl-recent-post img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.rl-recent-post h6 {
    font-size: .86rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
    line-height: 1.35;
    color: var(--ink);
}

.rl-recent-post span {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    color: var(--muted);
}