:root {
    --black: #050505;
    --ink: #151515;
    --muted: #666666;
    --soft: #f6f4ef;
    --white: #ffffff;
    --line: #e8e3d7;
    --gold: #d4af37;
    --gold-dark: #a98218;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    --deep-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    --radius: 8px;
    --font-heading: "Plus Jakarta Sans", "Inter", sans-serif;
    --font-body: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.top-bar {
    background: var(--black);
    color: #d8d8d8;
    font-size: 0.82rem;
}

.top-bar .container,
.header-inner,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-bar .container {
    padding: 10px 0;
}

.top-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
}

.gold {
    color: var(--gold);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 82px;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 230px;
}

.brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-name {
    color: var(--black);
    display: block;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-sub {
    color: var(--muted);
    display: block;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 3px;
    text-transform: uppercase;
}

.nav-menu {
    align-items: center;
    display: flex;
    gap: 22px;
    list-style: none;
}

.nav-link {
    color: #2b2b2b;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

.btn,
button.btn {
    align-items: center;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    font: 800 0.88rem var(--font-body);
    gap: 10px;
    justify-content: center;
    letter-spacing: 0;
    min-height: 46px;
    padding: 13px 20px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover,
.btn-header:hover {
    background: #e3bf47;
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: #202020;
}

.btn-header {
    background: var(--gold);
    color: var(--black);
    font-size: 0.82rem;
    min-height: 48px;
    padding-inline: 22px;
    text-transform: uppercase;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.mobile-toggle {
    background: var(--black);
    border: 0;
    color: var(--white);
    cursor: pointer;
    display: none;
    height: 42px;
    width: 42px;
}

.hero {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38) 58%, rgba(0, 0, 0, 0.12)),
        url("images/TRUCK2.jpeg") center / cover no-repeat;
    color: var(--white);
    min-height: 680px;
    padding: 120px 0 150px;
}

.hero-grid,
.split-grid {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: 1.05fr 0.95fr;
}

.eyebrow {
    color: var(--gold);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    color: inherit;
    font-family: var(--font-heading);
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(3rem, 6.8vw, 5.8rem);
    max-width: 760px;
}

h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.75rem);
}

h3 {
    font-size: 1.18rem;
}

.hero p {
    color: #eeeeee;
    font-size: 1.12rem;
    margin: 22px 0 30px;
    max-width: 610px;
}

.hero-kicker {
    color: var(--white);
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.2vw, 2.05rem);
    font-weight: 800;
    line-height: 1.2;
    margin-top: 10px;
    max-width: 760px;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quote-panel {
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    padding: 28px;
    box-shadow: var(--shadow);
}

.red-dot-overlap {
    margin-top: -86px;
    position: relative;
    z-index: 5;
}

.benefit-strip {
    background: var(--white);
    box-shadow: var(--deep-shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-tile {
    border-right: 1px solid var(--line);
    min-height: 230px;
    padding: 34px 28px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.benefit-tile:last-child {
    border-right: 0;
}

.benefit-tile:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-6px);
}

.benefit-tile:hover p {
    color: #d4d4d4;
}

.benefit-icon {
    color: var(--gold);
    display: block;
    font-size: 2.25rem;
    margin-bottom: 22px;
}

.about-red-dot {
    align-items: stretch;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.about-image-panel {
    background: url("images/fleet.jpeg") center / cover no-repeat;
    min-height: 540px;
    position: relative;
}

.about-image-panel::after {
    background: var(--gold);
    bottom: 34px;
    content: "";
    height: 92px;
    position: absolute;
    right: -46px;
    width: 92px;
}

.about-copy-panel {
    padding: 72px 0 72px 84px;
}

.subhead-line {
    color: var(--gold-dark);
    display: block;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    margin: 15px 0 22px;
}

.service-showcase {
    background:
        linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.88)),
        url("images/storage to dealer.jpeg") center / cover fixed;
    color: var(--white);
}

.rd-service-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(5, 1fr);
}

.rd-service-card {
    background: var(--white);
    color: var(--black);
    min-height: 275px;
    overflow: hidden;
    text-decoration: none;
}

.rd-service-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.rd-service-card h3 {
    font-size: 1.08rem;
    padding: 20px 18px 8px;
}

.read-more {
    color: var(--gold-dark);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    gap: 8px;
    padding: 0 18px 20px;
    text-transform: uppercase;
}

.process-showcase {
    background:
        linear-gradient(rgba(246, 244, 239, 0.96), rgba(246, 244, 239, 0.96)),
        url("images/taxi.jpeg") center / cover no-repeat;
}

.rd-process-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, 1fr);
}

.process-method-summary {
    margin-bottom: 28px;
}

.rd-process-card {
    background: var(--white);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    min-height: 350px;
    overflow: hidden;
    position: relative;
}

.rd-process-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.rd-process-body {
    padding: 30px 26px 28px;
}

.rd-number {
    align-items: center;
    background: var(--gold);
    color: var(--black);
    display: grid;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    height: 56px;
    left: 26px;
    place-items: center;
    position: absolute;
    top: calc(56.25% - 28px);
    width: 56px;
}

.client-strip {
    display: block;
    overflow: hidden;
}

.client-track {
    animation: client-slide 34s linear infinite;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    width: max-content;
}

.client-box {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    flex: 0 0 clamp(170px, 22vw, 220px);
    justify-content: center;
    min-height: 112px;
    padding: 18px;
}

.client-box img {
    max-height: 64px;
    object-fit: contain;
}

@keyframes client-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 8px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .client-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
    }
}

.quote-band {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.62)),
        url("images/flatbed.jpeg") center / cover no-repeat;
    color: var(--white);
}

.quote-band-grid {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: 0.85fr 1.15fr;
}

.quote-panel h2 {
    color: var(--black);
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.mini-form,
.quote-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.form-row {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}

label {
    color: #222222;
    display: grid;
    font-size: 0.85rem;
    font-weight: 800;
    gap: 7px;
}

input,
select,
textarea {
    border: 1px solid #d9d2c3;
    border-radius: 0;
    color: var(--ink);
    font: 500 0.95rem var(--font-body);
    min-height: 48px;
    padding: 12px 13px;
    width: 100%;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    outline: 2px solid rgba(212, 175, 55, 0.2);
}

.section {
    padding: 82px 0;
}

.section-soft {
    background: var(--soft);
}

.section-black {
    background: var(--black);
    color: var(--white);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-head p {
    color: var(--muted);
    max-width: 560px;
}

.section-black .section-head p,
.section-black .muted,
.section-black .card p {
    color: #cfcfcf;
}

.grid-3,
.grid-4,
.article-grid {
    display: grid;
    gap: 22px;
}

.grid-3,
.article-grid {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card,
.service-card,
.article-card,
.faq-item,
.step-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 26px;
}

.section-black .card,
.section-black .service-card,
.section-black .step-card {
    background: #111111;
    border-color: #252525;
}

.icon-box {
    align-items: center;
    background: var(--black);
    color: var(--gold);
    display: inline-flex;
    height: 46px;
    justify-content: center;
    margin-bottom: 18px;
    width: 46px;
}

.section-black .icon-box {
    background: var(--gold);
    color: var(--black);
}

.card p,
.service-card p,
.article-card p,
.step-card p,
.faq-item p,
.muted {
    color: var(--muted);
    margin-top: 10px;
}

.service-card {
    overflow: hidden;
    padding: 0;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.75);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.11);
    transform: translateY(-5px);
}

.article-card img {
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.service-card img {
    aspect-ratio: 4 / 3;
    display: block;
    height: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.service-card:nth-child(1) img,
.service-card:nth-child(4) img {
    object-position: center 62%;
}

.service-card:nth-child(2) img,
.service-card:nth-child(5) img {
    object-position: center 55%;
}

.service-card:nth-child(6) img {
    object-position: center 48%;
}

.article-icon {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.84)),
        var(--black);
    color: var(--gold);
    display: flex;
    font-size: 2.35rem;
    height: 150px;
    justify-content: center;
    position: relative;
}

.article-icon::after {
    background: var(--gold);
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
}

.article-icon i {
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.42);
    display: inline-flex;
    height: 72px;
    justify-content: center;
    width: 72px;
}

.service-card-content,
.article-card-content {
    padding: 24px 24px 26px;
}

.service-list,
.check-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin-top: 18px;
}

.service-list li,
.check-list li {
    align-items: flex-start;
    display: flex;
    gap: 9px;
}

.service-list i,
.check-list i {
    color: var(--gold);
    margin-top: 5px;
}

.home-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
}

.visual-frame {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.visual-frame img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.stats {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
}

.stat {
    border-left: 3px solid var(--gold);
    padding-left: 14px;
}

.stat strong {
    color: var(--black);
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1;
}

.section-black .stat strong {
    color: var(--white);
}

.partner-strip {
    align-items: center;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.partner-logo {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    justify-content: center;
    min-height: 120px;
    padding: 22px;
}

.partner-logo img {
    max-height: 72px;
    object-fit: contain;
}

.page-hero {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.48) 54%, rgba(0, 0, 0, 0.2)),
        url("images/fleet.jpeg") center / cover no-repeat;
    color: var(--white);
    min-height: 430px;
    padding: 86px 0 78px;
    position: relative;
}

.page-hero::after {
    background: var(--gold);
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    width: min(42vw, 520px);
}

.page-hero .container {
    max-width: 1180px;
}

.page-hero h1 {
    font-size: clamp(2.45rem, 4.8vw, 4.35rem);
    line-height: 1.05;
    max-width: 780px;
    text-wrap: balance;
}

.page-hero p {
    color: #eeeeee;
    font-size: 1.02rem;
    font-weight: 600;
    margin-top: 18px;
    max-width: 630px;
}

.step-number {
    color: rgba(212, 175, 55, 0.34);
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
}

.process-flow-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.process-flow-card {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
    display: grid;
    gap: 18px;
    overflow: hidden;
    padding: 30px;
    position: relative;
}

.process-flow-card::before {
    background: var(--gold);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.process-flow-card h3 {
    align-items: center;
    display: flex;
    gap: 12px;
    margin: 0;
}

.process-flow-card .icon-box {
    margin-bottom: 0;
}

.process-steps {
    counter-reset: process-step;
    display: grid;
    gap: 12px;
    list-style: none;
}

.process-steps li {
    align-items: flex-start;
    color: var(--muted);
    counter-increment: process-step;
    display: grid;
    font-weight: 600;
    gap: 12px;
    grid-template-columns: 34px 1fr;
    line-height: 1.55;
}

.process-steps li::before {
    align-items: center;
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--gold-dark);
    content: counter(process-step, decimal-leading-zero);
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    line-height: 1;
    width: 34px;
}

.process-workflow-section {
    background:
        linear-gradient(rgba(246, 244, 239, 0.97), rgba(246, 244, 239, 0.97)),
        url("images/truck.jpeg") center / cover no-repeat;
}

.workflow-board {
    display: grid;
    gap: 18px;
}

.workflow-panel {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 290px 1fr;
    overflow: hidden;
}

.workflow-title {
    background:
        linear-gradient(145deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.86)),
        url("images/fleet.jpeg") center / cover no-repeat;
    color: var(--white);
    min-height: 260px;
    padding: 32px 28px;
    position: relative;
}

.workflow-panel:nth-child(1) .workflow-title {
    background:
        linear-gradient(145deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.82)),
        url("images/drivin.jpeg") center / cover no-repeat;
}

.workflow-panel:nth-child(2) .workflow-title {
    background:
        linear-gradient(145deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.82)),
        url("images/carrier.png") center / cover no-repeat;
}

.workflow-panel:nth-child(3) .workflow-title {
    background:
        linear-gradient(145deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.82)),
        url("images/truck.jpeg") center / cover no-repeat;
}

.workflow-panel:nth-child(4) .workflow-title {
    background:
        linear-gradient(145deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.82)),
        url("images/flatbed.jpeg") center / cover no-repeat;
}

.workflow-title::after {
    background: var(--gold);
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
}

.workflow-title i {
    align-items: center;
    background: var(--gold);
    color: var(--black);
    display: inline-flex;
    font-size: 1.25rem;
    height: 48px;
    justify-content: center;
    margin-bottom: 24px;
    width: 48px;
}

.workflow-title h3 {
    font-size: 1.45rem;
    max-width: 210px;
}

.workflow-title p {
    color: #d8d8d8;
    font-size: 0.92rem;
    font-weight: 600;
    margin-top: 12px;
}

.workflow-count {
    color: rgba(212, 175, 55, 0.18);
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 22px;
}

.workflow-steps {
    counter-reset: workflow-step;
    display: grid;
    list-style: none;
    padding: 22px 30px;
}

.workflow-steps li {
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    counter-increment: workflow-step;
    display: grid;
    gap: 5px;
    grid-template-columns: 130px 1fr;
    padding: 16px 0 16px 54px;
    position: relative;
}

.workflow-steps li:last-child {
    border-bottom: 0;
}

.workflow-steps li::before {
    align-items: center;
    background: var(--black);
    color: var(--gold);
    content: counter(workflow-step, decimal-leading-zero);
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 17px;
    width: 34px;
}

.workflow-steps span {
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
}

.quote-layout {
    align-items: start;
    display: grid;
    gap: 34px;
    grid-template-columns: 1fr 0.48fr;
}

.quote-form-card {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 32px;
}

.quote-form-card,
.sidebar-box,
.faq-item,
.article-card,
.service-card,
.step-card {
    border-radius: 2px;
}

.form-section-title {
    border-left: 4px solid var(--gold);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 1.18rem;
    margin: 22px 0 14px;
    padding-left: 12px;
}

.form-section-title:first-child {
    margin-top: 0;
}

.sidebar-box {
    background: var(--black);
    color: var(--white);
    padding: 28px;
}

.sidebar-box p {
    color: #d6d6d6;
    margin-top: 10px;
}

.contact-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 0.95fr 1.05fr;
}

.map-box {
    background: var(--black);
    color: var(--white);
    display: grid;
    gap: 28px;
    min-height: 420px;
    overflow: hidden;
    padding: 34px;
    position: relative;
}

.map-box::before {
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
        url("images/storage to dealer.jpeg") center / cover no-repeat;
    content: "";
    inset: 0;
    opacity: 0.42;
    position: absolute;
}

.map-copy,
.location-map {
    position: relative;
    z-index: 1;
}

.map-copy p {
    color: #e5e5e5;
    margin-top: 12px;
}

.location-map {
    aspect-ratio: 1.22 / 1;
    background:
        radial-gradient(circle at 58% 38%, rgba(212, 175, 55, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.22);
    min-height: 270px;
}

.location-map::before {
    background: rgba(246, 244, 239, 0.9);
    clip-path: polygon(39% 6%, 57% 10%, 69% 22%, 78% 37%, 75% 52%, 86% 64%, 69% 78%, 58% 95%, 42% 87%, 30% 74%, 18% 62%, 23% 42%, 16% 26%, 28% 14%);
    content: "";
    inset: 28px 44px;
    opacity: 0.92;
    position: absolute;
}

.map-route {
    background: rgba(212, 175, 55, 0.8);
    height: 2px;
    left: 34%;
    position: absolute;
    top: 46%;
    transform-origin: left center;
    z-index: 2;
}

.route-jhb-dbn {
    transform: rotate(30deg);
    width: 27%;
}

.route-dbn-cpt {
    left: 56%;
    top: 57%;
    transform: rotate(138deg);
    width: 39%;
}

.map-marker {
    align-items: center;
    color: var(--black);
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
    font-weight: 900;
    gap: 2px;
    position: absolute;
    text-transform: uppercase;
    transform: translate(-50%, -100%);
    z-index: 3;
}

.map-marker i {
    color: var(--gold);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28));
    font-size: 2rem;
}

.marker-jhb {
    left: 48%;
    top: 46%;
}

.marker-dbn {
    left: 67%;
    top: 60%;
}

.marker-cpt {
    left: 39%;
    top: 82%;
}

.contact-method {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 6px;
    padding: 18px 0;
}

.contact-method:first-of-type {
    margin-top: 18px;
}

.contact-method h3 {
    align-items: center;
    display: flex;
    gap: 10px;
}

.contact-method i {
    color: var(--gold);
}

.branch-list {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    gap: 8px;
    margin-top: 24px;
    padding-top: 22px;
}

.branch-list h3 {
    color: var(--white);
}

.branch-list p {
    font-size: 0.9rem;
    margin-top: 0;
}

.branch-list strong {
    color: var(--gold);
}

.faq-item + .faq-item {
    margin-top: 14px;
}

.article-meta {
    color: var(--gold-dark);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.site-footer {
    background: #070707;
    color: var(--white);
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    gap: 34px;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
    padding-bottom: 48px;
}

.footer-grid-simple {
    grid-template-columns: 1.1fr 0.75fr 1fr;
}

.footer-grid h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
    color: #bdbdbd;
    font-size: 0.92rem;
    text-decoration: none;
}

.footer-grid ul {
    display: grid;
    gap: 10px;
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid #1d1d1d;
    color: #9d9d9d;
    font-size: 0.86rem;
    padding: 22px 0;
}

.asset-note {
    background: #fff8e4;
    border: 1px solid #f0d98a;
    color: #594510;
    font-size: 0.9rem;
    padding: 16px;
}

@media (max-width: 1020px) {
    .nav-menu {
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        display: none;
        left: 0;
        padding: 24px;
        position: absolute;
        right: 0;
        top: 100%;
    }

    .nav-menu.is-open {
        display: grid;
    }

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .header-cta {
        display: none;
    }

    .hero-grid,
    .split-grid,
    .about-red-dot,
    .workflow-panel,
    .quote-band-grid,
    .quote-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .grid-4,
    .grid-3,
    .article-grid,
    .benefit-strip,
    .process-flow-grid,
    .rd-service-grid,
    .rd-process-grid,
    .client-strip,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-copy-panel {
        padding: 48px 0 0;
    }

    .about-image-panel::after {
        display: none;
    }

    .page-hero {
        min-height: 360px;
        padding: 72px 0 64px;
    }

    .page-hero h1 {
        font-size: clamp(2.25rem, 7vw, 3.5rem);
    }
}

@media (max-width: 860px) {
    .header-inner {
        min-height: 74px;
    }

    .hero {
        background-position: center right;
        min-height: 560px;
        padding: 96px 0 118px;
    }

    .hero p {
        max-width: 100%;
    }

    .red-dot-overlap {
        margin-top: -58px;
    }

    .benefit-tile {
        min-height: auto;
        padding: 28px 24px;
    }

    .about-image-panel {
        min-height: 360px;
    }

    .rd-service-grid {
        gap: 18px;
    }

    .rd-service-card {
        min-height: auto;
    }

    .quote-band-grid {
        align-items: stretch;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .top-bar {
        display: none;
    }

    .brand {
        min-width: auto;
    }

    .brand img {
        height: 46px;
        width: 46px;
    }

    .brand-name {
        font-size: 0.92rem;
    }

    .brand-sub {
        font-size: 0.56rem;
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        min-height: 68px;
    }

    .nav-menu {
        gap: 0;
        padding: 8px 14px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--line);
    }

    .nav-menu li:last-child {
        border-bottom: 0;
    }

    .nav-link {
        display: block;
        padding: 13px 0;
    }

    .hero {
        min-height: auto;
        padding: 64px 0 70px;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 14vw, 3.8rem);
    }

    .hero-kicker {
        font-size: 1.15rem;
    }

    .hero p {
        font-size: 1rem;
        margin: 18px 0 24px;
    }

    .hero-actions,
    .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn,
    .cta-actions .btn,
    .quote-panel .btn,
    .quote-form-card .btn,
    .section-head .btn {
        width: 100%;
    }

    .page-hero {
        min-height: auto;
        padding: 56px 0 50px;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .page-hero p {
        font-size: 0.96rem;
    }

    .quote-panel,
    .quote-form-card,
    .card,
    .benefit-tile,
    .service-card-content,
    .article-card-content,
    .sidebar-box {
        padding: 20px;
    }

    .form-row,
    .grid-4,
    .grid-3,
    .article-grid,
    .benefit-strip,
    .process-flow-grid,
    .rd-service-grid,
    .rd-process-grid,
    .client-strip,
    .footer-grid,
    .stats,
    .partner-strip {
        grid-template-columns: 1fr;
    }

    .red-dot-overlap {
        margin-top: 0;
    }

    .section {
        padding: 58px 0;
    }

    .section-head {
        gap: 14px;
        margin-bottom: 24px;
    }

    h2 {
        font-size: clamp(1.55rem, 8vw, 2.15rem);
    }

    h3 {
        font-size: 1.06rem;
    }

    .about-image-panel {
        min-height: 300px;
    }

    .section-head,
    .footer-bottom,
    .top-bar .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .process-method-summary {
        margin-bottom: 0;
    }

    .rd-service-card img,
    .visual-frame img {
        aspect-ratio: 16 / 10;
    }

    .client-box {
        min-height: 92px;
    }

    .client-strip {
        display: block;
    }

    .client-track {
        animation: client-slide 34s linear infinite;
        flex-wrap: nowrap;
        width: max-content;
    }

    .home-service-list {
        grid-template-columns: 1fr;
    }

    .quote-band-grid {
        gap: 24px;
    }

    .mini-form,
    .quote-form {
        gap: 12px;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    .site-footer {
        padding-top: 44px;
    }

    .process-flow-card {
        padding: 24px 20px;
    }

    .workflow-title {
        min-height: auto;
        padding: 28px 24px;
    }

    .workflow-steps {
        padding: 18px 20px;
    }

    .workflow-steps li {
        grid-template-columns: 1fr;
        padding-left: 48px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .brand {
        gap: 9px;
    }

    .brand img {
        height: 40px;
        width: 40px;
    }

    .brand-name {
        font-size: 0.82rem;
    }

    .brand-sub {
        font-size: 0.5rem;
        letter-spacing: 0.7px;
    }

    .mobile-toggle {
        height: 40px;
        width: 40px;
    }

    .hero {
        padding: 52px 0 58px;
    }

    .btn,
    button.btn {
        min-height: 44px;
        padding: 12px 16px;
    }
}
