:root {
    --navy: #061b45;
    --navy-two: #0a2c68;
    --orange: #f5790b;
    --orange-dark: #d86100;
    --blue: #0647a1;
    --green: #19bf63;
    --white: #ffffff;
    --soft: #f5f7fa;
    --text: #17233b;
    --grey: #687386;
    --border: #dce2ea;
    --container: 1420px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 105px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.topbar {
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
}

.topbar-inner {
    min-height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.topbar-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.9);
}

.topbar-item svg {
    width: 16px;
    height: 16px;
    fill: var(--orange);
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: box-shadow .25s ease;
}

.header.scrolled {
    box-shadow: 0 12px 40px rgba(6,27,69,.12);
}

.nav-wrap {
    min-height: 102px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.logo-link img {
    width: 285px;
    height: 68px;
    object-fit: contain;
    object-position: left center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu > a {
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

.nav-menu > a:hover,
.nav-menu > a.active {
    color: var(--orange);
}

.nav-cta {
    padding: 16px 23px;
    background: var(--orange);
    color: var(--white) !important;
}

.nav-cta:hover {
    background: var(--orange-dark);
}

.menu-toggle {
    display: none;
    width: 47px;
    height: 47px;
    border: 0;
    background: var(--navy);
    cursor: pointer;
}

.menu-toggle span {
    width: 23px;
    height: 2px;
    margin: 5px auto;
    display: block;
    background: var(--white);
}

.hero {
    position: relative;
    min-height: 790px;
    padding-bottom: 0;
    background: var(--navy);
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0 0 180px;
    background:
        url("assets/images/remote/walmax-image-05-3541fb8d2c58.jpg")
        center/cover no-repeat;
}

.hero-shade {
    position: absolute;
    inset: 0 0 180px;
    background:
        linear-gradient(
            90deg,
            rgba(5,23,59,.2) 0%,
            rgba(5,23,59,.35) 48%,
            rgba(5,23,59,.91) 100%
        );
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 610px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-content {
    width: min(620px, 100%);
}

.hero-kicker,
.section-label {
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}

.hero h1 {
    font-size: clamp(54px, 6vw, 90px);
    line-height: .98;
    letter-spacing: -.055em;
}

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

.hero-text {
    max-width: 650px;
    margin-top: 27px;
    color: rgba(255,255,255,.82);
    font-size: 19px;
}

.hero-buttons,
.button-row {
    margin-top: 31px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    min-height: 54px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
}

.btn-orange:hover {
    background: var(--orange-dark);
}

.btn-outline {
    border-color: rgba(255,255,255,.6);
    color: var(--white);
    background: rgba(255,255,255,.08);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-border {
    color: var(--navy);
    border-color: var(--navy);
    background: transparent;
}

.hero-features {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.hero-feature {
    padding: 0 22px;
    border-left: 1px solid rgba(255,255,255,.3);
    display: flex;
    flex-direction: column;
}

.hero-feature strong {
    font-size: 14px;
}

.hero-feature span {
    color: rgba(255,255,255,.67);
    font-size: 12px;
}

.service-shortcuts {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 9px;
}

.shortcut-card {
    min-height: 235px;
    padding: 27px 23px;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(145deg, #0b2b64 0%, #04183c 100%);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    transition: transform .25s ease, border-color .25s ease;
}

.shortcut-card:hover {
    transform: translateY(-9px);
    border-color: var(--orange);
}

.shortcut-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shortcut-number {
    color: var(--orange);
    font-size: 14px;
    font-weight: 900;
}

.shortcut-icon {
    color: var(--orange);
    font-size: 29px;
}

.shortcut-card h3 {
    margin-top: 21px;
    font-size: 17px;
}

.shortcut-card p {
    margin-top: 15px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.shortcut-card strong {
    margin-top: auto;
    padding-top: 18px;
    color: var(--orange);
    font-size: 12px;
}

.section {
    padding: 115px 0;
}

.milestone-section {
    background: var(--white);
}

.milestone-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.milestone-image {
    height: 510px;
    overflow: hidden;
    border-radius: 8px;
}

.milestone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.milestone-content h2,
.about-copy h2,
.section-heading h2,
.quote-copy h2,
.contact-callout h2 {
    color: var(--navy);
    font-size: clamp(40px,4.5vw,65px);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.lead {
    margin-top: 26px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
}

.milestone-content > p:not(.lead),
.about-copy > p:not(.lead) {
    margin-top: 18px;
    color: var(--grey);
}

.milestone-stats {
    margin: 35px 0 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.milestone-stats div {
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
}

.milestone-stats div:last-child {
    border-right: 0;
}

.milestone-stats strong {
    color: var(--orange);
    font-size: 23px;
}

.milestone-stats span {
    color: var(--grey);
    font-size: 11px;
}

.about-section {
    background: var(--soft);
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 85px;
    align-items: center;
}

.about-copy .btn {
    margin-top: 32px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.about-cards article {
    min-height: 235px;
    padding: 32px;
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-cards span,
.vehicle-card span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
}

.about-cards h3,
.vehicle-card h3 {
    margin-top: 45px;
    color: var(--navy);
    font-size: 22px;
}

.about-cards p,
.vehicle-card p {
    margin-top: 10px;
    color: var(--grey);
    font-size: 13px;
}

.section-heading {
    margin-bottom: 55px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: end;
}

.section-heading > p {
    color: var(--grey);
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.vehicle-card {
    min-height: 275px;
    padding: 34px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.partner-strip {
    margin-top: 38px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background: var(--navy);
    color: var(--white);
}

.partner-strip span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
}

.partner-strip h3 {
    margin-top: 8px;
    font-size: 25px;
}

.industries-section {
    background: var(--soft);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.industry-card {
    min-height: 170px;
    padding: 38px;
    display: flex;
    align-items: flex-end;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    font-size: 22px;
    font-weight: 900;
    transition: background .2s ease, color .2s ease;
}

.industry-card:hover {
    color: var(--white);
    background: var(--navy);
}

.quote-section {
    padding: 115px 0;
    background: #edf3f9;
}

.quote-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
    align-items: start;
}

.quote-copy > p {
    margin-top: 22px;
    color: var(--grey);
}

.section-label-light {
    color: var(--orange);
}

.contact-details {
    margin-top: 38px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    background: var(--white);
    border-left: 5px solid var(--orange);
}

.contact-details h3 {
    color: var(--navy);
    font-size: 23px;
}

.contact-details p,
.contact-details a {
    color: var(--blue);
    font-size: 16px;
    font-weight: 700;
}

.contact-details a:hover {
    color: var(--orange);
}

.quote-form {
    padding: 40px;
    background: var(--white);
    box-shadow: 0 25px 60px rgba(6,27,69,.11);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 17px;
}

.quote-form label {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--soft);
    outline: none;
}

.quote-form input,
.quote-form select {
    height: 52px;
    padding: 0 14px;
}

.quote-form textarea {
    padding: 14px;
    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    background: var(--white);
    border-color: var(--blue);
}

.form-submit {
    width: 100%;
    border: 0;
}

.contact-section {
    background: var(--white);
}

.contact-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.footer {
    padding-top: 75px;
    background: #031433;
    color: var(--white);
}

.footer-grid {
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1.7fr repeat(3,1fr);
    gap: 55px;
}

.footer-logo {
    width: 285px;
    height: auto;
    display: block;
}

.footer-grid h3 {
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 14px;
}

.footer-grid p,
.footer-grid a {
    margin-top: 8px;
    display: block;
    color: rgba(255,255,255,.63);
    font-size: 13px;
}

.footer-bottom {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.45);
    font-size: 11px;
}

.quick-contact {
    position: fixed;
    z-index: 950;
    right: 18px;
    top: 42%;
    width: 128px;
    padding: 7px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0,0,0,.2);
}

.quick {
    min-height: 49px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
}

.quick.whatsapp { background: var(--green); }
.quick.call { background: var(--blue); }
.quick.email { background: var(--orange); }
.quick.location { background: var(--navy); }

.wa-widget {
    position: fixed;
    z-index: 1200;
    right: 22px;
    bottom: 22px;
}

.wa-float {
    position: relative;
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    border: 5px solid var(--white);
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 15px 40px rgba(25,191,99,.4);
    cursor: pointer;
}

.wa-float svg {
    width: 32px;
    fill: var(--white);
}

.wa-notification {
    position: absolute;
    right: -3px;
    top: -7px;
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f03616;
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
}

.wa-panel {
    position: absolute;
    right: 0;
    bottom: 80px;
    width: 355px;
    display: none;
    overflow: hidden;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 25px 70px rgba(0,0,0,.24);
}

.wa-panel.open {
    display: block;
}

.wa-panel-header {
    padding: 23px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: var(--navy);
    color: var(--white);
}

.wa-panel-header div {
    display: flex;
    flex-direction: column;
}

.wa-panel-header span {
    margin-top: 4px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
}

.wa-panel-header button {
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 27px;
    cursor: pointer;
}

.wa-options {
    padding: 19px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
}

.wa-options button {
    min-height: 44px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--soft);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.wa-options button:hover {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.wa-message {
    padding: 0 19px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.wa-message input {
    height: 44px;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 22px;
    outline: none;
}

.wa-message button {
    padding: 0 17px;
    border: 0;
    border-radius: 22px;
    background: var(--green);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}

.wa-panel > p {
    padding: 0 19px 18px;
    color: var(--grey);
    font-size: 10px;
    text-align: center;
}

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

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

@media (max-width: 1200px) {
    .nav-menu {
        gap: 18px;
    }

    .nav-menu > a {
        font-size: 12px;
    }

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

    .quick-contact {
        display: none;
    }
}

@media (max-width: 950px) {
    .topbar-right {
        display: none;
    }

    .nav-wrap {
        min-height: 78px;
    }

    .logo-link img {
        width: 220px;
        height: 55px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 126px;
        padding: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        box-shadow: 0 25px 50px rgba(0,0,0,.15);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu > a {
        padding: 12px;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
    }

    .hero-bg,
    .hero-shade {
        inset: 0 0 340px;
    }

    .hero-layout {
        min-height: 660px;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
        padding-top: 40px;
    }

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

    .milestone-grid,
    .about-grid,
    .quote-grid,
    .section-heading {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 650px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .topbar {
        display: none;
    }

    .nav-menu {
        top: 78px;
    }

    .logo-link img {
        width: 190px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 30px;
    }

    .hero-bg,
    .hero-shade {
        inset: 0 0 620px;
    }

    .hero-layout {
        min-height: 620px;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons,
    .button-row {
        flex-direction: column;
    }

    .hero-buttons .btn,
    .button-row .btn {
        width: 100%;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-feature {
        padding: 12px 0 12px 15px;
    }

    .service-shortcuts,
    .vehicle-grid,
    .industry-grid,
    .about-cards,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 0;
    }

    .milestone-image {
        height: 370px;
    }

    .milestone-stats {
        grid-template-columns: 1fr;
    }

    .milestone-stats div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .partner-strip,
    .contact-callout {
        align-items: flex-start;
        flex-direction: column;
    }

    .quote-form {
        padding: 25px 20px;
    }

    .footer-bottom {
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .wa-panel {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 95px;
        width: auto;
    }
}


/* WALMAX FOOTER LOGO */
.footer-logo-white {
    background: transparent !important;
    padding: 0 !important;
    filter: brightness(0) invert(1);
    opacity: 0.98;
}

.footer-logo-white:hover {
    opacity: 1;
}

@media (max-width: 650px) {
    .footer-logo,
    .footer-logo-white {
        width: 235px;
    }
}

/* =========================================================
   WALMAX PREMIUM ENHANCEMENTS
   ========================================================= */

.shortcut-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
}

.shortcut-icon svg,
.process-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shortcut-icon svg {
    color: var(--orange);
}

.experience-strip {
    padding: 70px 0;
    background:
        linear-gradient(125deg, #061b45 0%, #0a2c68 100%);
    color: #ffffff;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, .75fr);
    align-items: stretch;
}

.experience-title {
    padding-right: 45px;
}

.experience-title h2 {
    max-width: 430px;
    font-size: clamp(31px, 3.4vw, 49px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.experience-stat {
    padding: 20px 27px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,.2);
}

.experience-stat strong {
    color: var(--orange);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -.05em;
}

.experience-stat span {
    max-width: 180px;
    margin-top: 12px;
    color: rgba(255,255,255,.7);
    font-size: 11px;
    line-height: 1.55;
}

.process-section {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.process-card {
    min-height: 340px;
    padding: 37px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #ffffff;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.process-card:hover {
    z-index: 2;
    transform: translateY(-8px);
    background: var(--navy);
    color: #ffffff;
    box-shadow: 0 25px 50px rgba(6,27,69,.18);
}

.process-icon {
    width: 52px;
    height: 52px;
    padding: 13px;
    display: grid;
    place-items: center;
    background: rgba(245,121,11,.1);
    color: var(--orange);
}

.process-card > span {
    margin-top: 35px;
    display: block;
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
}

.process-card h3 {
    margin-top: 11px;
    color: var(--navy);
    font-size: 24px;
}

.process-card:hover h3 {
    color: #ffffff;
}

.process-card p {
    margin-top: 14px;
    color: var(--grey);
    font-size: 13px;
}

.process-card:hover p {
    color: rgba(255,255,255,.66);
}

.premium-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: #ffffff;
}

.premium-cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4,18,48,.96),
            rgba(4,18,48,.78)
        ),
        url("assets/images/remote/walmax-image-07-b2aee8b7798d.jpg")
        center/cover no-repeat;
}

.premium-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    align-items: center;
}

.premium-cta h2 {
    max-width: 800px;
    font-size: clamp(41px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.premium-cta p {
    max-width: 650px;
    margin-top: 21px;
    color: rgba(255,255,255,.7);
    font-size: 16px;
}

.premium-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.btn-white {
    color: var(--navy);
    background: #ffffff;
}

.btn-white:hover {
    background: #edf2f7;
}

@media (max-width: 1150px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-title {
        grid-column: span 2;
        margin-bottom: 35px;
    }

    .experience-stat {
        min-height: 160px;
        border-top: 1px solid rgba(255,255,255,.2);
    }
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-cta-content {
        grid-template-columns: 1fr;
    }

    .premium-cta-actions {
        max-width: 420px;
    }
}

@media (max-width: 650px) {
    .experience-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .experience-title {
        grid-column: auto;
    }

    .experience-stat {
        padding: 27px 0;
        border-left: 0;
    }

    .process-card {
        min-height: 280px;
    }

    .premium-cta {
        padding: 80px 0;
    }

    .premium-cta-actions .btn {
        width: 100%;
    }
}

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

.why-walmax-section {
    background: #ffffff;
}

.why-walmax-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.why-card {
    min-height: 390px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #ffffff;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.why-card:hover {
    z-index: 2;
    transform: translateY(-9px);
    background: var(--navy);
    box-shadow: 0 25px 60px rgba(6,27,69,.18);
}

.why-icon {
    width: 58px;
    height: 58px;
    padding: 14px;
    display: grid;
    place-items: center;
    background: rgba(245,121,11,.1);
    color: var(--orange);
}

.why-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card > span {
    margin-top: 38px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
}

.why-card h3 {
    margin-top: 10px;
    color: var(--navy);
    font-size: 23px;
    line-height: 1.2;
}

.why-card p {
    margin-top: 15px;
    color: var(--grey);
    font-size: 13px;
}

.why-card a {
    margin-top: auto;
    padding-top: 28px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.why-card:hover h3,
.why-card:hover a {
    color: #ffffff;
}

.why-card:hover p {
    color: rgba(255,255,255,.65);
}

/* =========================================================
   CONTACT HUB
   ========================================================= */

.contact-hub-section {
    padding: 115px 0;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(245,121,11,.17),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #041431 0%,
            #07235a 100%
        );
    color: #ffffff;
}

.contact-hub-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: start;
}

.contact-hub-intro {
    position: sticky;
    top: 145px;
}

.contact-hub-intro h2 {
    font-size: clamp(43px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.contact-hub-intro > p {
    margin-top: 24px;
    color: rgba(255,255,255,.68);
    font-size: 16px;
}

.contact-hub-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-whatsapp {
    background: #20bd65;
    color: #ffffff;
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-hub-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-hub-card {
    min-height: 215px;
    padding: 29px;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,.97);
    color: var(--text);
    border: 1px solid rgba(255,255,255,.15);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.contact-hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.2);
}

.contact-card-icon {
    width: 43px;
    height: 43px;
    padding: 10px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(6,71,161,.1);
    color: var(--blue);
}

.contact-card-icon.whatsapp-icon {
    color: #20bd65;
    background: rgba(32,189,101,.1);
}

.contact-card-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-hub-card > span {
    margin-top: 23px;
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.contact-hub-card strong {
    margin-top: 7px;
    color: var(--blue);
    font-size: 20px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.contact-hub-card small {
    margin-top: 9px;
    color: var(--grey);
    font-size: 12px;
    line-height: 1.55;
}

.contact-quote-card {
    justify-content: center;
    background: var(--orange);
    color: #ffffff;
}

.contact-quote-card > span,
.contact-quote-card strong,
.contact-quote-card small,
.contact-quote-card b {
    color: #ffffff;
}

.contact-quote-card strong {
    font-size: 27px;
}

.contact-quote-card b {
    margin-top: 22px;
    font-size: 12px;
}

/* Scroll progress */

.scroll-progress {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    box-shadow: 0 2px 8px rgba(245,121,11,.5);
}

/* Back to top */

.back-to-top {
    position: fixed;
    z-index: 1100;
    left: 22px;
    bottom: 22px;
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(6,27,69,.28);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange);
}

.back-to-top svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1100px) {
    .why-walmax-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-hub-layout {
        grid-template-columns: 1fr;
    }

    .contact-hub-intro {
        position: static;
        max-width: 800px;
    }
}

@media (max-width: 650px) {
    .why-walmax-grid,
    .contact-hub-cards {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 320px;
    }

    .contact-hub-section {
        padding: 80px 0;
    }

    .contact-hub-actions {
        flex-direction: column;
    }

    .contact-hub-actions .btn {
        width: 100%;
    }

    .contact-hub-card {
        min-height: 195px;
    }

    .back-to-top {
        left: 14px;
        bottom: 14px;
    }
}

/* =========================================================
   WALMAX INNER PAGES
   ========================================================= */

.inner-hero {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

.inner-hero-bg,
.inner-hero-overlay {
    position: absolute;
    inset: 0;
}

.inner-hero-bg {
    background-position: center;
    background-size: cover;
}

.inner-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3,16,43,.97) 0%,
            rgba(3,16,43,.78) 58%,
            rgba(3,16,43,.45) 100%
        );
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}

.inner-breadcrumb {
    margin-bottom: 38px;
    display: flex;
    gap: 10px;
    color: rgba(255,255,255,.65);
    font-size: 12px;
}

.inner-breadcrumb strong {
    color: var(--orange);
}

.inner-hero h1 {
    max-width: 950px;
    font-size: clamp(58px, 7vw, 102px);
    line-height: .95;
    letter-spacing: -.06em;
}

.inner-hero-content > p {
    max-width: 710px;
    margin-top: 25px;
    color: rgba(255,255,255,.75);
    font-size: 18px;
}

.inner-content-section {
    background: #ffffff;
}

.inner-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 85px;
    align-items: center;
}

.inner-copy h2,
.partner-page-grid h2 {
    color: var(--navy);
    font-size: clamp(39px,4.6vw,66px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.inner-copy > p {
    margin-top: 18px;
    color: var(--grey);
}

.inner-copy .lead {
    color: var(--navy);
}

.inner-copy .btn {
    margin-top: 30px;
}

.inner-image {
    height: 590px;
    overflow: hidden;
}

.inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-values-section,
.partner-page-section {
    background: var(--soft);
}

.inner-feature-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.inner-feature-card {
    min-height: 390px;
    padding: 48px;
    background: #ffffff;
}

.inner-feature-dark {
    background: var(--navy);
    color: #ffffff;
}

.inner-feature-card > span,
.inner-small-card > span,
.service-detail-card > span {
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
}

.inner-feature-card h3 {
    margin-top: 90px;
    color: var(--navy);
    font-size: 39px;
}

.inner-feature-dark h3 {
    color: #ffffff;
}

.inner-feature-card p {
    margin-top: 17px;
    color: var(--grey);
}

.inner-feature-dark p {
    color: rgba(255,255,255,.67);
}

.inner-card-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.inner-small-card {
    min-height: 255px;
    padding: 29px;
    background: #ffffff;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.inner-small-card h3 {
    margin-top: 55px;
    color: var(--navy);
    font-size: 20px;
}

.inner-small-card p {
    margin-top: 10px;
    color: var(--grey);
    font-size: 12px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.service-detail-card {
    min-height: 330px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .25s ease, transform .25s ease;
}

.service-detail-card:hover {
    background: var(--navy);
    transform: translateY(-7px);
}

.service-detail-card h3 {
    margin-top: 65px;
    color: var(--navy);
    font-size: 25px;
}

.service-detail-card p {
    margin-top: 14px;
    color: var(--grey);
    font-size: 13px;
}

.service-detail-card a {
    margin-top: auto;
    padding-top: 25px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.service-detail-card:hover h3,
.service-detail-card:hover a {
    color: #ffffff;
}

.service-detail-card:hover p {
    color: rgba(255,255,255,.65);
}

.partner-page-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 75px;
    align-items: center;
}

.partner-page-grid > div:first-child p {
    margin-top: 20px;
    color: var(--grey);
}

.contact-page-section {
    background: #edf3f9;
}

@media (max-width: 1000px) {
    .inner-two-column,
    .partner-page-grid {
        grid-template-columns: 1fr;
    }

    .inner-card-grid {
        grid-template-columns: repeat(3,1fr);
    }

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

@media (max-width: 650px) {
    .inner-hero {
        min-height: 430px;
    }

    .inner-hero h1 {
        font-size: 54px;
    }

    .inner-two-column,
    .inner-feature-grid,
    .inner-card-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .inner-image {
        height: 390px;
    }

    .inner-feature-card {
        min-height: 330px;
        padding: 30px 24px;
    }

    .inner-feature-card h3 {
        margin-top: 60px;
    }

    .service-detail-card {
        min-height: 290px;
    }
}


/* WALMAX HOMEPAGE PORT HERO */
.hero-bg {
    position: absolute;
    inset: 0 0 180px;
    background-image: url("../images/walmax-port-hero.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* =========================================================
   WALMAX LIVE QUOTATION FORM
   ========================================================= */

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.quote-form-status {
    margin-top: 17px;
    padding: 0;
    color: var(--grey);
    font-size: 13px;
    line-height: 1.55;
}

.quote-form-status.success,
.quote-form-status.error {
    padding: 15px 17px;
    border-left: 4px solid;
}

.quote-form-status.success {
    color: #126438;
    background: #eaf8f0;
    border-color: #20bd65;
}

.quote-form-status.error {
    color: #8b1e1e;
    background: #fff0f0;
    border-color: #db3434;
}

.quote-whatsapp-followup {
    margin-top: 10px;
    display: block;
    color: #087a3d;
    font-weight: 900;
}

.quote-whatsapp-followup:hover {
    text-decoration: underline;
}

.form-submit:disabled {
    cursor: wait;
    opacity: .68;
}

/* ==========================================================
   WALMAX HERO ALIGNMENT
   ========================================================== */

.hero-content{
    margin-right:auto !important;
    margin-left:0 !important;
    max-width:680px !important;
    padding-left:7% !important;
    padding-right:0 !important;
    text-align:left !important;
    align-items:flex-start !important;
}

.hero-content h1{
    max-width:650px;
}

.hero-content p{
    max-width:620px;
}

.hero-buttons{
    justify-content:flex-start !important;
}

.hero-features{
    justify-content:flex-start !important;
}

@media (max-width:992px){

.hero-content{
    padding-left:30px !important;
    padding-right:30px !important;
}

}

@media (max-width:768px){

.hero-content{
    padding-left:20px !important;
    padding-right:20px !important;
}

.hero-content h1{
    font-size:54px !important;
    line-height:1.05;
}

}



/* ==========================================================
   WALMAX HERO PREMIUM POLISH
   ========================================================== */

.hero {
    isolation: isolate;
    overflow: hidden;
}

.hero-bg {
    animation: walmaxHeroZoom 18s ease-in-out infinite alternate;
    transform-origin: center center;
    will-change: transform;
}

.hero-shade {
    background:
        linear-gradient(
            90deg,
            rgba(3, 18, 48, 0.94) 0%,
            rgba(3, 18, 48, 0.85) 35%,
            rgba(3, 18, 48, 0.55) 60%,
            rgba(3, 18, 48, 0.18) 100%
        ) !important;
}

.hero-layout {
    justify-content: flex-start !important;
}

.hero-content {
    width: min(690px, 100%) !important;
    max-width: 690px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
    text-align: left !important;
}

.hero-kicker,
.hero-content h1,
.hero-text,
.hero-buttons,
.hero-features {
    opacity: 0;
    transform: translateY(28px);
    animation: walmaxHeroReveal 0.85s ease forwards;
}

.hero-kicker {
    animation-delay: 0.08s;
}

.hero-content h1 {
    animation-delay: 0.20s;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.hero-text {
    animation-delay: 0.34s;
    color: rgba(255, 255, 255, 0.88) !important;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.34);
}

.hero-buttons {
    animation-delay: 0.48s;
    justify-content: flex-start !important;
}

.hero-features {
    animation-delay: 0.62s;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.24),
            transparent
        );
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.hero-buttons .btn:hover::after {
    left: 140%;
}

.hero-feature {
    backdrop-filter: blur(3px);
}

@keyframes walmaxHeroReveal {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes walmaxHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.055);
    }
}

@media (max-width: 950px) {
    .hero-shade {
        background:
            linear-gradient(
                90deg,
                rgba(3, 18, 48, 0.92) 0%,
                rgba(3, 18, 48, 0.75) 65%,
                rgba(3, 18, 48, 0.48) 100%
            ) !important;
    }

    .hero-content {
        padding-left: 0 !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 650px) {
    .hero-shade {
        background:
            linear-gradient(
                180deg,
                rgba(3, 18, 48, 0.72) 0%,
                rgba(3, 18, 48, 0.91) 58%,
                rgba(3, 18, 48, 0.98) 100%
            ) !important;
    }

    .hero-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-content h1 {
        font-size: 50px !important;
        line-height: 1.02 !important;
    }

    .hero-text {
        max-width: 100% !important;
        font-size: 16px !important;
    }

    .hero-features {
        width: 100%;
    }

    .hero-bg {
        animation-duration: 24s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .hero-kicker,
    .hero-content h1,
    .hero-text,
    .hero-buttons,
    .hero-features {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ==========================================
   WALMAX CONTACT PAGE - DARK BLUE TEXT
   ========================================== */

.contact-details h3,
.contact-details p,
.contact-details a,
.contact-details strong,
.contact-details span{
    color: var(--navy) !important;
}

.contact-details a{
    display:block;
    margin:8px 0;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
}

.contact-details a:hover{
    color:var(--orange) !important;
}

.contact-details p{
    line-height:1.8;
    font-weight:500;
}

.contact-details h3{
    margin-bottom:18px;
    font-size:30px;
    font-weight:800;
}


/* ==================================================
   WALMAX CONTACT INFO - CLEAN CORPORATE STYLE
   ================================================== */

.contact-details h3{
    color:var(--navy) !important;
    font-size:28px;
    font-weight:700;
    margin:0 0 14px;
}

.contact-details p{
    color:var(--navy) !important;
    font-weight:400 !important;
    line-height:1.45;
    margin:0 0 8px;
}

.contact-details a{
    display:block;
    color:var(--navy) !important;
    font-weight:400 !important;
    line-height:1.45;
    margin:0 0 6px;
    text-decoration:none;
    transition:.25s;
}

.contact-details a:hover{
    color:var(--orange) !important;
}

.contact-details strong,
.contact-details span{
    font-weight:400 !important;
    color:var(--navy) !important;
}

.contact-details>*:last-child{
    margin-bottom:0;
}

/* =========================================================
   WALMAX VEHICLE CLEAN V2
   ========================================================= */

.vehicle-clean-hero {
    min-height: 570px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

.vehicle-clean-hero-image,
.vehicle-clean-hero-overlay {
    position: absolute;
    inset: 0;
}

.vehicle-clean-hero-image {
    background:
        url("../images/tranquil-ace-dar-port.jpg")
        center center / cover no-repeat;
}

.vehicle-clean-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(4, 19, 50, .96) 0%,
            rgba(4, 19, 50, .82) 53%,
            rgba(4, 19, 50, .40) 100%
        );
}

.vehicle-clean-hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}

.vehicle-clean-breadcrumb {
    margin-bottom: 35px;
    display: flex;
    gap: 10px;
    color: rgba(255,255,255,.65);
    font-size: 12px;
}

.vehicle-clean-breadcrumb strong {
    color: var(--orange);
}

.vehicle-clean-hero h1 {
    max-width: 900px;
    font-size: clamp(52px, 6vw, 88px);
    line-height: .98;
    letter-spacing: -.055em;
}

.vehicle-clean-hero-content > p {
    max-width: 690px;
    margin-top: 25px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
}

.vehicle-clean-buttons,
.vehicle-clean-card-actions,
.vehicle-clean-cta-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.vehicle-clean-intro,
.vehicle-clean-partners,
.vehicle-clean-process {
    padding: 105px 0;
}

.vehicle-clean-intro {
    background: #ffffff;
}

.vehicle-clean-intro-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.vehicle-clean-intro-image {
    height: 570px;
    overflow: hidden;
}

.vehicle-clean-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-clean-intro-copy h2,
.vehicle-clean-heading h2,
.vehicle-clean-cta h2 {
    color: var(--navy);
    font-size: clamp(40px, 4.6vw, 66px);
    line-height: 1.04;
    letter-spacing: -.048em;
}

.vehicle-clean-lead {
    margin-top: 25px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
}

.vehicle-clean-intro-copy > p:not(.vehicle-clean-lead) {
    margin-top: 17px;
    color: var(--grey);
}

.vehicle-clean-benefits {
    margin: 35px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.vehicle-clean-benefits div {
    padding: 22px 15px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
}

.vehicle-clean-benefits div:last-child {
    border-right: 0;
}

.vehicle-clean-benefits strong {
    color: var(--orange);
    font-size: 19px;
}

.vehicle-clean-benefits span {
    margin-top: 5px;
    color: var(--grey);
    font-size: 11px;
}

.vehicle-clean-partners {
    background: #f4f7fb;
}

.vehicle-clean-heading {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: end;
}

.vehicle-clean-heading > p {
    color: var(--grey);
}

.vehicle-clean-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.vehicle-clean-partner-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #ffffff;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.vehicle-clean-partner-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 65px rgba(6,27,69,.14);
}

.vehicle-clean-logo-area {
    min-height: 230px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    background: #ffffff;
}

.vehicle-clean-logo-area img {
    width: auto;
    max-width: 280px;
    max-height: 125px;
    object-fit: contain;
}

.vehicle-clean-partner-copy {
    padding: 38px;
}

.vehicle-clean-partner-copy > span {
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.vehicle-clean-partner-copy h3 {
    margin-top: 9px;
    color: var(--navy);
    font-size: 34px;
}

.vehicle-clean-partner-copy > p {
    margin-top: 14px;
    color: var(--grey);
    font-size: 13px;
}

.vehicle-clean-partner-copy ul {
    margin-top: 24px;
    list-style: none;
}

.vehicle-clean-partner-copy li {
    position: relative;
    margin-top: 9px;
    padding-left: 20px;
    color: var(--navy);
    font-size: 12px;
}

.vehicle-clean-partner-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
}

.vehicle-clean-text-link {
    align-self: center;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
}

.vehicle-clean-process {
    background: #ffffff;
}

.vehicle-clean-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.vehicle-clean-step {
    min-height: 275px;
    padding: 34px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #ffffff;
    transition:
        background .25s ease,
        transform .25s ease;
}

.vehicle-clean-step:hover {
    background: var(--navy);
    transform: translateY(-5px);
}

.vehicle-clean-step > span {
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
}

.vehicle-clean-step h3 {
    margin-top: 55px;
    color: var(--navy);
    font-size: 22px;
}

.vehicle-clean-step p {
    margin-top: 12px;
    color: var(--grey);
    font-size: 13px;
}

.vehicle-clean-step:hover h3 {
    color: #ffffff;
}

.vehicle-clean-step:hover p {
    color: rgba(255,255,255,.67);
}

.vehicle-clean-cta {
    padding: 90px 0;
    background:
        linear-gradient(
            135deg,
            #061b45,
            #0a2c68
        );
    color: #ffffff;
}

.vehicle-clean-cta-inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
}

.vehicle-clean-cta h2 {
    color: #ffffff;
}

.vehicle-clean-cta p {
    max-width: 650px;
    margin-top: 20px;
    color: rgba(255,255,255,.70);
}

.vehicle-clean-cta-actions {
    margin-top: 0;
    flex-direction: column;
}

.vehicle-clean-wa-letter {
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
}

@media (max-width: 950px) {
    .vehicle-clean-intro-grid,
    .vehicle-clean-heading,
    .vehicle-clean-cta-inner {
        grid-template-columns: 1fr;
    }

    .vehicle-clean-partner-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-clean-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .vehicle-clean-hero {
        min-height: 500px;
    }

    .vehicle-clean-hero h1 {
        font-size: 48px;
    }

    .vehicle-clean-buttons,
    .vehicle-clean-card-actions,
    .vehicle-clean-cta-actions {
        flex-direction: column;
    }

    .vehicle-clean-buttons .btn,
    .vehicle-clean-card-actions .btn,
    .vehicle-clean-cta-actions .btn {
        width: 100%;
    }

    .vehicle-clean-intro,
    .vehicle-clean-partners,
    .vehicle-clean-process {
        padding: 78px 0;
    }

    .vehicle-clean-intro-image {
        height: 380px;
    }

    .vehicle-clean-benefits,
    .vehicle-clean-process-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-clean-benefits div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .vehicle-clean-logo-area {
        min-height: 180px;
    }

    .vehicle-clean-logo-area img {
        max-width: 220px;
        max-height: 100px;
    }

    .vehicle-clean-partner-copy {
        padding: 28px 22px;
    }

    .vehicle-clean-step {
        min-height: 235px;
    }
}

/* =========================================================
   WALMAX VEHICLE PAGE VISIBILITY FIX
   ========================================================= */

/*
 * Fail-safe: Vehicle content must remain visible even if
 * IntersectionObserver or another script fails.
 */
.vehicle-import-page .reveal {
    opacity: 1;
    transform: none;
}

.vehicle-import-page .vehicle-clean-intro,
.vehicle-import-page .vehicle-clean-partners,
.vehicle-import-page .vehicle-clean-process,
.vehicle-import-page .vehicle-clean-cta {
    display: block;
    visibility: visible;
}

/* Prevent accidental giant empty section heights */
.vehicle-import-page main section {
    min-height: 0;
}

.vehicle-import-page .vehicle-clean-intro-grid,
.vehicle-import-page .vehicle-clean-partner-grid,
.vehicle-import-page .vehicle-clean-process-grid,
.vehicle-import-page .vehicle-clean-cta-inner {
    visibility: visible;
    opacity: 1;
}

/* =========================================================
   WALMAX SAFE REVEAL SYSTEM
   ========================================================= */

/*
 * Default state is visible.
 * This protects the site when JavaScript is disabled or fails.
 */
.reveal {
    opacity: 1;
    transform: none;
}

/*
 * Animation hiding is activated only after the clean JavaScript
 * has successfully started.
 */
html.walmax-js-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .65s ease,
        transform .65s ease;
}

html.walmax-js-ready .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keep all page sections visible during reduced-motion mode */
@media (prefers-reduced-motion: reduce) {
    html.walmax-js-ready .reveal,
    html.walmax-js-ready .reveal.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   WALMAX HOME VEHICLE CLEAN SECTION
   ========================================================= */

.home-vehicle-clean {
    padding: 105px 0;
    overflow: hidden;
    background: #ffffff;
}

.home-vehicle-clean-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 78px;
    align-items: center;
}

.home-vehicle-clean-image {
    height: 520px;
    overflow: hidden;
    background: #061b45;
}

.home-vehicle-clean-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-vehicle-clean-copy h2 {
    max-width: 720px;
    color: var(--navy);
    font-size: clamp(40px, 4.7vw, 67px);
    line-height: 1.04;
    letter-spacing: -.05em;
}

.home-vehicle-clean-copy > p {
    max-width: 650px;
    margin-top: 23px;
    color: var(--grey);
    font-size: 15px;
    line-height: 1.75;
}

.home-vehicle-clean-points {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.home-vehicle-clean-points div {
    min-height: 105px;
    padding: 22px 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
}

.home-vehicle-clean-points div:last-child {
    border-right: 0;
}

.home-vehicle-clean-points span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
}

.home-vehicle-clean-points strong {
    margin-top: 7px;
    color: var(--navy);
    font-size: 13px;
}

.home-vehicle-clean-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/*
 * Disable old giant homepage journey graphics in case
 * any fragments survived previous edits.
 */
body:not(.wmvi-page) .vehicle-journey,
body:not(.wmvi-page) .journey-card,
body:not(.wmvi-page) .journey-icon,
body:not(.wmvi-page) .vehicle-centre-panel {
    display: none !important;
}

@media (max-width: 950px) {
    .home-vehicle-clean-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home-vehicle-clean-image {
        height: 440px;
    }
}

@media (max-width: 650px) {
    .home-vehicle-clean {
        padding: 78px 0;
    }

    .home-vehicle-clean-image {
        height: 340px;
    }

    .home-vehicle-clean-points {
        grid-template-columns: 1fr;
    }

    .home-vehicle-clean-points div {
        min-height: 82px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .home-vehicle-clean-actions {
        flex-direction: column;
    }

    .home-vehicle-clean-actions .btn {
        width: 100%;
    }
}

/* =========================================================
   WALMAX HOMEPAGE FAQ RESTORE
   ========================================================= */

.faq-section {
    padding: 105px 0 !important;
    background: #ffffff !important;
}

.faq-layout {
    display: grid !important;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr) !important;
    gap: 85px !important;
    align-items: start !important;
}

.faq-intro {
    position: sticky !important;
    top: 145px !important;
}

.faq-intro .section-label {
    margin-bottom: 18px !important;
    color: var(--orange) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
}

.faq-intro h2 {
    margin: 0 !important;
    color: var(--navy) !important;
    font-size: clamp(39px, 4.4vw, 63px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.045em !important;
}

.faq-intro > p {
    max-width: 540px !important;
    margin: 22px 0 0 !important;
    color: var(--grey) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.faq-intro .btn {
    margin-top: 30px !important;
}

.faq-list {
    width: 100% !important;
    border-top: 1px solid var(--border) !important;
}

.faq-item {
    width: 100% !important;
    border-bottom: 1px solid var(--border) !important;
    background: #ffffff !important;
}

.faq-question {
    width: 100% !important;
    min-height: 84px !important;
    padding: 21px 7px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 25px !important;

    border: 0 !important;
    border-radius: 0 !important;
    outline: none !important;

    background: transparent !important;
    color: var(--navy) !important;

    font-family: inherit !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    text-align: left !important;

    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.faq-question:hover {
    color: var(--orange) !important;
}

.faq-question span {
    flex: 1 1 auto !important;
}

.faq-question strong {
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;

    display: grid !important;
    place-items: center !important;

    border: 1px solid var(--border) !important;
    background: #ffffff !important;
    color: var(--orange) !important;

    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease !important;
}

.faq-item.open .faq-question {
    color: var(--orange) !important;
}

.faq-item.open .faq-question strong {
    transform: rotate(45deg) !important;
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #ffffff !important;
}

.faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;

    transition:
        max-height .35s ease,
        opacity .3s ease !important;
}

.faq-item.open .faq-answer {
    opacity: 1 !important;
}

.faq-answer p {
    margin: 0 !important;
    padding: 0 55px 27px 7px !important;

    color: var(--grey) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
}

/* Prevent browser default button appearance */
.faq-section button {
    font-family: inherit !important;
}

/* Remove excessive blank vertical space around FAQ */
.faq-section::before,
.faq-section::after {
    display: none !important;
}

@media (max-width: 950px) {
    .faq-layout {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    .faq-intro {
        position: static !important;
        max-width: 760px !important;
    }
}

@media (max-width: 650px) {
    .faq-section {
        padding: 78px 0 !important;
    }

    .faq-intro h2 {
        font-size: 39px !important;
    }

    .faq-question {
        min-height: 75px !important;
        padding: 18px 3px !important;
        font-size: 15px !important;
    }

    .faq-answer p {
        padding: 0 44px 23px 3px !important;
        font-size: 13px !important;
    }
}

/* =========================================================
   WALMAX HOMEPAGE GALLERY RESTORE
   Scoped only to #gallery
   ========================================================= */

#gallery.gallery-section {
    padding: 105px 0 !important;
    overflow: hidden !important;
    background: #f4f7fb !important;
}

#gallery .section-heading {
    margin-bottom: 52px !important;
    display: grid !important;
    grid-template-columns: 1.15fr .85fr !important;
    gap: 70px !important;
    align-items: end !important;
}

#gallery .section-heading h2 {
    margin: 0 !important;
    max-width: 820px !important;
    color: var(--navy) !important;
    font-size: clamp(40px, 4.6vw, 66px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.047em !important;
}

#gallery .section-heading > p {
    margin: 0 !important;
    color: var(--grey) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

#gallery .gallery-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: 360px !important;
    gap: 20px !important;
}

#gallery .gallery-item {
    min-width: 0 !important;
    min-height: 0 !important;
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    margin: 0 !important;
    border-radius: 4px !important;
    background: var(--navy) !important;
}

#gallery .gallery-wide {
    grid-column: span 2 !important;
}

#gallery .gallery-item img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform .65s ease !important;
}

#gallery .gallery-item:hover img {
    transform: scale(1.055) !important;
}

#gallery .gallery-item::after {
    content: "" !important;
    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;
    display: block !important;
    background:
        linear-gradient(
            180deg,
            rgba(4, 18, 48, 0) 25%,
            rgba(4, 18, 48, .88) 100%
        ) !important;
    pointer-events: none !important;
}

#gallery .gallery-item figcaption {
    position: absolute !important;
    z-index: 2 !important;
    left: 28px !important;
    right: 28px !important;
    bottom: 26px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    color: #ffffff !important;
}

#gallery .gallery-item figcaption span {
    margin: 0 !important;
    color: var(--orange) !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
    letter-spacing: .15em !important;
    text-transform: uppercase !important;
}

#gallery .gallery-item figcaption strong {
    margin-top: 6px !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}

@media (max-width: 950px) {
    #gallery .section-heading {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    #gallery .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 320px !important;
    }
}

@media (max-width: 650px) {
    #gallery.gallery-section {
        padding: 78px 0 !important;
    }

    #gallery .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 285px !important;
        gap: 14px !important;
    }

    #gallery .gallery-wide {
        grid-column: auto !important;
    }

    #gallery .gallery-item figcaption {
        left: 20px !important;
        right: 20px !important;
        bottom: 20px !important;
    }

    #gallery .gallery-item figcaption strong {
        font-size: 18px !important;
    }
}

/* WALMAX HERO BACKGROUND SLIDER START */

.hero {
    position: relative !important;
    isolation: isolate;
    overflow: hidden !important;
}

/* The old single hero background is replaced by the slider. */
.hero > .hero-bg {
    display: none !important;
}

.walmax-hero-slider {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    background: #061b45;
    touch-action: pan-y;
}

.walmax-hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    transform: scale(1.035);

    transition:
        opacity 1s ease,
        visibility 1s ease,
        transform 7s ease;
}

.walmax-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.09);
}

/* Keep the existing dark overlay and homepage text above slides. */
.hero-shade,
.hero-overlay {
    position: absolute;
    z-index: 1 !important;
    inset: 0;
}

.hero-layout,
.hero > .container,
.hero-content {
    position: relative;
    z-index: 2 !important;
}

.walmax-hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;

    background: rgba(4, 18, 48, .46);
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 31px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
    transform: translateY(-50%);

    backdrop-filter: blur(5px);

    transition:
        background .22s ease,
        border-color .22s ease,
        transform .22s ease;
}

.walmax-hero-arrow:hover {
    border-color: #f5790b;
    background: #f5790b;
}

.walmax-hero-prev {
    left: 22px;
}

.walmax-hero-next {
    right: 22px;
}

.walmax-hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 24px;

    display: flex;
    align-items: center;
    gap: 9px;

    transform: translateX(-50%);
}

.walmax-hero-dot {
    width: 9px;
    height: 9px;

    padding: 0;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 50%;

    background: transparent;
    cursor: pointer;

    transition:
        width .22s ease,
        border-radius .22s ease,
        background .22s ease;
}

.walmax-hero-dot.is-active {
    width: 29px;
    border-color: #f5790b;
    border-radius: 10px;
    background: #f5790b;
}

@media (max-width: 950px) {
    .walmax-hero-arrow {
        width: 42px;
        height: 42px;
    }

    .walmax-hero-prev {
        left: 12px;
    }

    .walmax-hero-next {
        right: 12px;
    }
}

@media (max-width: 650px) {
    .walmax-hero-slide {
        background-position: center center;
    }

    .walmax-hero-arrow {
        top: auto;
        bottom: 14px;

        width: 38px;
        height: 38px;

        font-size: 25px;
        transform: none;
    }

    .walmax-hero-prev {
        left: 14px;
    }

    .walmax-hero-next {
        right: 14px;
    }

    .walmax-hero-dots {
        bottom: 29px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .walmax-hero-slide,
    .walmax-hero-slide.is-active {
        transform: none;
        transition: opacity .25s ease;
    }
}

/* WALMAX HERO BACKGROUND SLIDER END */

