/* =========================================
           HERO SECTION
        ========================================= */

.transport-hero {
    width: 100%;
    padding: 84px 0 100px;
    display: flex;
    align-items: center;
    /* background: var(--background-color); */
    background: linear-gradient(90deg, rgba(12, 38, 51, 0.05) 0.16%, rgba(12, 38, 51, 0) 0.16%);
}

.transport-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.transport-content .heading-hero {
    max-width: 700px;
    width: 100%;
}

.transport-content .body-text+.transport-info {
    margin-top: 25px;
}

.transport-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 36px 0 34px;
}

.transport-info {
    padding-top: 26px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--body-text);
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.78px;
    text-transform: uppercase;
    max-width: 599px;
    width: 100%;
}

.transport-info-item {
    white-space: nowrap;
}

.transport-info-item.highlight {
    color: var(--secondary-color);
}

.transport-divider {
    width: 1px;
    height: 10px;
    background: var(--body-text)
}

.transport-visual {
    position: relative;
    width: 100%;
    min-height: 390px;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
}

.transport-main-image {
    width: 100%;
    max-width: 654px;
    height: 100%;
    max-height: 619px;
    overflow: hidden;
    border-radius: 10px;
    background: #ddd;
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 0px 1px #0E223314 inset;
}

.transport-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.5s ease;
}

.transport-main-image:hover img {
    transform: scale(1.06);
}

.transport-status {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    background: #081521AD;
    border: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 10.5px;
    line-height: 100%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
}

.transport-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.transport-floating-image {
    position: absolute;
    right: -6px;
    bottom: 60px;
    width: 100%;
    height: 100%;
    max-width: 258px;
    max-height: 195px;
    border: 8px solid var(--button-text-light);
    border-radius: 14px;
    box-shadow: 0px 30px 60px 0px #0E223347;
    background: linear-gradient(153.61deg, #082F46 0%, #051A29 100%) linear-gradient(153.61deg, color(display-p3 0.078 0.180 0.267) 0%, color(display-p3 0.039 0.102 0.157) 100%);
    z-index: 5;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.transport-floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.5s ease;
}

.transport-floating-image:hover {
    transform: translateY(-7px) rotate(1deg);
    box-shadow:
        0 25px 45px rgba(26, 35, 40, 0.25),
        0 5px 15px rgba(26, 35, 40, 0.1);

}

@media (max-width: 1199px) {
    .transport-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .transport-content .heading-hero {
        max-width: 100%;
        width: 100%;
    }

    .transport-hero {
        padding: 60px 0px;
    }

    .transport-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .transport-main-image {
        max-width: 100%;
        width: 100%;
    }

}

@media (max-width: 767px) {

    .transport-hero {
        padding: 20px 0px 30px;
    }

    .transport-container {
        gap: 25px;
    }

    .transport-visual {
        min-height: auto;
    }

    .transport-status {
        top: 8px;
        right: 8px;
        padding: 5px 7px;
        line-height: normal;
        gap: 5px;
        font-size: 7px;
    }

    .transport-main-image {
        max-width: 322px;
        height: auto;
        max-height: 305px;
    }

    .transport-floating-image {
        right: 0;
        bottom: 30px;
        width: 105px;
        height: auto;
        border-width: 3px;
        border-radius: 5px;
        box-shadow: 0px 12.06px 24.13px 0px #0E223347;
    }

    .transport-floating-image img {
        border-radius: 0px;
    }

    .transport-buttons {
        flex-direction: column;
        align-items: flex-start;
        margin: 30px 0;
    }

    .transport-buttons .btn {
        width: fit-content;
    }

    .transport-info {
        padding-top: 15px;
        gap: 4px 8px;
    }
}



/* =========================================================
   TRANSPORT MARQUEE
   ========================================================= */

.transport-marquee {
    width: 100%;
    background: var(--section-bg);
    overflow: hidden;
    padding: 17px 0;
    border: 0;
}

.transport-marquee .splide {
    width: 100%;
}

.transport-marquee .splide__track {
    overflow: hidden;
}

.transport-marquee .splide__list {
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

/* Each item */
.transport-marquee .splide__slide {
    width: auto !important;
    flex: 0 0 auto;
    display: flex;
    gap: 22px;
    align-items: center;
    padding: 0 22px;
    white-space: nowrap;
    box-sizing: border-box;
}

/* Text */
.transport-marquee .splide__slide p {
    transition: color 0.3s ease;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

/* Diamond separator */
.transport-marquee .splide__slide span {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 1px;
    transform: rotate(-45deg);
    /* flex: 0 0 4px; */
}

@media(max-width:767px) {
    .transport-marquee {
        padding: 13px 0;
    }

    .transport-marquee .splide__slide {
        gap: 15px;
        padding: 0 15px;
    }
}

/* =========================================================
   SECTION 01
   CLEAR FROM QUOTE TO DELIVERY
========================================================= */

.quote-delivery-section {
    width: 100%;
    background: var(--background-color);
}

.quote-delivery-header {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 54px;
}

.quote-delivery-header .heading-section {
    margin-bottom: 0;
}

.quote-delivery-list {
    width: 100%;
    border-top: 1px solid var(--border-color);
}

.quote-delivery-item {
    display: grid;
    grid-template-columns: 90px 1fr 1.27fr;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    transition:
        background-color 0.35s ease,
        padding-left 0.35s ease;
    padding: 36px 0;
    align-items: flex-start;
    gap: 36px;
}

.quote-delivery-item:hover {
    padding-left: 8px;
}

.quote-delivery-number {
    padding-top: 6px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.quote-delivery-item:hover .quote-delivery-number {
    transform: translateX(3px);
}

.quote-delivery-title {
    color: var(--section-bg);
    transition: color 0.3s ease;
}

.quote-delivery-item:hover .quote-delivery-title {
    color: var(--secondary-color);
}

@media(max-width: 1024px) {
    .quote-delivery-item {
        grid-template-columns: 40px 1fr 1.4fr;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .quote-delivery-container {
        width: min(100% - 40px, 700px);
    }

    .quote-delivery-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quote-delivery-intro p {
        max-width: 650px;
    }

    .quote-delivery-item {
        grid-template-columns: 40px 250px 1fr;
    }
}

@media (max-width: 767px) {
    .quote-delivery-container {
        width: calc(100% - 32px);
    }

    .quote-delivery-header {
        margin-bottom: 25px;
    }

    .quote-delivery-number {
        padding-top: 10px;
    }

    .quote-delivery-item,
    .quote-delivery-list {
        border: 0;
    }

    .quote-delivery-item {
        display: grid;
        grid-template-columns: 32px 1fr;
        padding: 10px 0;
        gap: 10px;
    }

    .quote-delivery-item:hover {
        padding-left: 5px;
    }

    .quote-delivery-description {
        grid-column: 2;
        padding: 0;
    }
}


/* =========================================================
   SECTION 02
   DEALER OR AUCTION BUYER
========================================================= */

.auction-buyer-section {
    width: 100%;
    background: var(--primary-color);
    color: var(--color-white);
}

.auction-buyer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.auction-buyer-content h2 {
    color: var(--body-text-dark-bg);
    margin-bottom: 20px;
}

.auction-buyer-content h2 span {
    color: var(--secondary-color);
}

.auction-buyer-content p {
    margin-bottom: 34px;
}

.auction-buyer-features {
    width: 100%;
}

.auction-buyer-feature {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 21px 0 22px;
    border-top: 1px solid var(--border-color);
    transition:
        padding-left 0.3s ease,
        border-color 0.3s ease;
}

.auction-buyer-feature:last-child {
    border-bottom: 1px solid var(--border-color);
}

.auction-buyer-feature:hover {
    padding-left: 8px;
}

.auction-buyer-feature-number {
    padding-top: 2px;
}

.auction-buyer-feature:hover .auction-buyer-feature-number {
    transform: translateX(3px);
}

.auction-buyer-feature .auction-buyer-title {
    margin: 0 0 4px;
}

.auction-buyer-feature p {
    margin: 0;
    max-width: 599px;
}

.auction-buyer-feature:hover p {
    color: var(--color-white);
}

@media (max-width: 1024px) {
    .auction-buyer-container {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .auction-buyer-container {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {

    .auction-buyer-feature {
        grid-template-columns: 30px 1fr;
        gap: 10px;
        padding: 20px 0;
    }

    .auction-buyer-feature p {
        font-size: 14px;
        line-height: 22px;
    }
}

/* =========================================================
   SECTION 03
   MOVING EQUIPMENT
========================================================= */

.moving-equipment-section {
    width: 100%;
    background: var(--color-white);
}

.moving-equipment-container {
    display: grid;
    grid-template-columns: 1fr 1.07fr;
    gap: 70px;
    align-items: center;
}

.moving-equipment-content h2 {
    margin: 0 0 17px;
}

.moving-equipment-content p {
    margin: 0 0 17px;
}

.moving-equipment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.moving-equipment-tags span {
    display: inline-flex;
    align-items: center;
    padding: 9px 17px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: #FBFAF7;
    cursor: default;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
    line-height: 16px;
}

.moving-equipment-tags span:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--color-white);
    transform: translateY(-2px);
}

.moving-equipment-services {
    margin: 22px 0 26px;
    font-weight: 500;
    font-size: var(--font-h5);
    line-height: 30px;
    letter-spacing: 30%;
    text-transform: uppercase;
    color: var(--body-text);
}

.moving-equipment-services span {
    color: var(--secondary-color);
}

.moving-equipment-image-wrapper {
    width: 100%;
}

.moving-equipment-image {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0px 0px 0px 1px #0E223314 inset;
}

.moving-equipment-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(.2, .7, .2, 1),
        filter 0.5s ease;
}

.moving-equipment-image-wrapper:hover img {
    transform: scale(1.045);
}

.moving-equipment-image-caption {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 8px;
}

.moving-equipment-image-caption span:last-child {
    text-align: right;
}

@media(max-width: 1199px) {
    .moving-equipment-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .moving-equipment-container {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 767px) {
    .moving-equipment-tags span {
        padding: 5px 10px;
        font-size: 14px;
        line-height: 22px;
    }

    .moving-equipment-tags {
        gap: 5px;
    }
}

/* ====================================================================
        PROCESS SECTION
        ==================================================================== */

.process-section {
    overflow: hidden;
    background: var(--primary-color);
    padding: var(--space-20) 0;
}

.process-section .button {
    text-align: center;
    margin-top: var(--space-10);
}

.process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--space-4);
    margin: var(--space-8) 0 0;
    padding: 0;
    list-style: none;
    margin-top: 52px;
}

.process-list::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--body-text);
    content: '';
}

.process-step {
    position: relative;
    min-width: 0;
    padding-top: var(--space-2);
}

.step-marker {
    position: absolute;
    top: -5px;
    left: 1px;
    width: 10px;
    height: 10px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    background: var(--body-text-dark-bg);
    box-shadow: 0 0 0 1px rgba(215, 152, 73, 0.2);
}

.step-number {
    display: block;
    margin-top: var(--space-2);
    margin-bottom: var(--space-4);
}

.process-title {
    margin-bottom: var(--space-2);
}



.process-step.is-active .step-marker {
    box-shadow: 0 0 0 2px rgba(215, 152, 73, 0.14);
}

@keyframes process-rise {
    from {
        opacity: 0;
        transform: translateY(var(--space-4));
    }

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

@keyframes marker-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(215, 152, 73, 0.2);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(215, 152, 73, 0.08);
    }
}

.process-step {
    opacity: 0;
    animation: process-rise 550ms cubic-bezier(.2, .75, .25, 1) both;
}

.process-step:nth-child(1) {
    animation-delay: 120ms;
}

.process-step:nth-child(2) {
    animation-delay: 190ms;
}

.process-step:nth-child(3) {
    animation-delay: 260ms;
}

.process-step:nth-child(4) {
    animation-delay: 330ms;
}

.process-step:nth-child(5) {
    animation-delay: 400ms;
}

.process-step.is-active .step-marker {
    animation: marker-pulse 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {

    .process-step {
        animation: none;
        opacity: 1;
    }

    .process-step.is-active .step-marker {
        animation: none;
    }
}

@media (max-width: 767px) {

    .process-section {
        padding: var(--space-16) 0;
    }

    .process-list {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 24px;
        padding-left: 14px;
        padding: 20px 0 0 14px;
    }

    .process-list::before {
        top: 0;
        bottom: 0;
        left: 6px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .step-number {
        margin-top: 0;
        margin-bottom: var(--space-2);
    }

    .process-step {
        padding-top: 0;
        padding-left: var(--space-4);
    }

    .step-marker {
        top: 1px;
        left: -13px;
    }

    .process-section .button {
        margin-top: var(--space-8);
    }
}

/* =========================================================
       SERVICES SECTION
       ========================================================= */

.services-section {
    background: var(--background-color);
    padding: var(--space-20) 0;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    column-gap: var(--space-20);
    margin-bottom: var(--space-8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-3);
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    opacity: 1;
    border-radius: 16px;
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        border-color var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-border-subtle);
    box-shadow:
        0 8px 20px rgba(16, 27, 42, 0.055);
}

@keyframes service-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.services-header {
    animation:
        service-rise 650ms cubic-bezier(.2, .75, .25, 1) both;
}

.service-card {
    opacity: 0;
    animation:
        service-rise 550ms cubic-bezier(.2, .75, .25, 1) both;
}

.service-card:nth-child(1) {
    animation-delay: 120ms;
}

.service-card:nth-child(2) {
    animation-delay: 180ms;
}

.service-card:nth-child(3) {
    animation-delay: 240ms;
}

.service-card:nth-child(4) {
    animation-delay: 300ms;
}

.service-card:nth-child(5) {
    animation-delay: 360ms;
}

.service-card:nth-child(6) {
    animation-delay: 420ms;
}

@media (prefers-reduced-motion: reduce) {

    .services-header,
    .service-card {
        animation: none;
        opacity: 1;
    }

    .service-card,
    .service-card .btn {
        transition: none;
    }
}

.service-number {
    margin-bottom: var(--space-2);
}

.service-title {
    padding-top: var(--space-3);
    padding-bottom: var(--space-2);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: auto;
    padding-top: var(--space-5);
    margin-bottom: 16px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    min-height: 14px;
    padding: 6px 10px;
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    background: var(--color-white);
}

@media (min-width: 1200px) {
    .services-header .heading-section {
        margin-bottom: 0;
    }
}

@media (max-width: 1199px) {
    .services-section {
        padding: 50px 0 55px;
    }

    .service-card {
        padding: var(--space-5);
    }

    .services-header {
        column-gap: var(--space-10);
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767px) {

    .services-section {
        padding: 42px 0 48px;
    }

    .services-header {
        display: block;
        margin-bottom: 25px;
    }

    .service-tags {
        padding-top: var(--space-2);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .service-card {
        min-height: 170px;
        padding: var(--space-4);
    }
}

/* ================================================================
WHY AXLE LANE SECTION
================================================================ */

.why-section {
    background-color: var(--background-color);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--space-10);
}

.reason-list {
    width: 100%;
    max-width: 500px;
    margin-top: var(--space-8);
    padding: 0;
    list-style: none;
}

.reason-list li {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    min-height: var(--space-6);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-3) 0;
    transition:
        color var(--transition-fast),
        padding-left var(--transition-fast);
}

.reason-list li:hover {
    color: var(--primary-color);
    padding-left: var(--space-2);
}

.reason-number {
    flex: 0 0 var(--space-10);
}

.why-visual {
    position: relative;
    align-self: start;
    min-height: 254px;
    padding-top: var(--space-2);
}

.vehicle-image {
    position: relative;
    width: 100%;
    height: 548px;
    overflow: hidden;
    border-radius: var(--space-3);
    box-shadow:
        0 var(--space-2) var(--space-4) rgba(10, 22, 30, 0.08);
}

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

.vehicle-image::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(5, 12, 19, 0.47),
            rgba(5, 12, 19, 0.02));
    content: '';
    pointer-events: none;
}

.bill-card {
    position: absolute;
    z-index: 1;
    bottom: -20px;
    left: -20px;
    width: 340px;
    height: auto;
    border: 1px solid var(--border-color);
    overflow: hidden;
    border-radius: var(--space-3);
    background-color: var(--color-white);
    color: var(--body-text);
    box-shadow:
        0 34px 70px rgba(14, 34, 51, 0.18);
}

.bill-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bill-card li {
    position: relative;
    padding:
        var(--space-3) var(--space-4) var(--space-3) var(--space-12);

    border-bottom: 1px solid var(--color-border-subtle);
}

.bill-card li:last-child {
    border-bottom: none;
}

.bill-card li::before {
    position: absolute;
    left: var(--space-4);
    color: var(--secondary-color);
    content: '✓';
    font-size: var(--font-body-text);
    font-weight: 700;
}

@keyframes why-rise {
    from {
        opacity: 0;
        transform: translateY(var(--space-4));
    }

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


@keyframes why-image-in {
    from {
        opacity: 0;
        transform: scale(1.04);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.why-copy {
    animation:
        why-rise 650ms cubic-bezier(.2, .75, .25, 1) both;
}


.why-visual {
    animation:
        why-image-in 850ms cubic-bezier(.2, .75, .25, 1) 120ms both;
}


.reason-list li {
    opacity: 0;
    animation:
        why-rise 500ms cubic-bezier(.2, .75, .25, 1) both;
}


.reason-list li:nth-child(1) {
    animation-delay: 160ms;
}

.reason-list li:nth-child(2) {
    animation-delay: 210ms;
}

.reason-list li:nth-child(3) {
    animation-delay: 260ms;
}

.reason-list li:nth-child(4) {
    animation-delay: 310ms;
}

.reason-list li:nth-child(5) {
    animation-delay: 360ms;
}

.reason-list li:nth-child(6) {
    animation-delay: 410ms;
}

.reason-list li:nth-child(7) {
    animation-delay: 460ms;
}

.reason-list li:nth-child(8) {
    animation-delay: 510ms;
}

@media (prefers-reduced-motion: reduce) {

    .why-copy,
    .why-visual,
    .reason-list li {
        animation: none;
        opacity: 1;
    }

    .reason-list li {
        transition: none;
    }
}

@media (max-width: 1199px) {
    .why-inner {
        grid-template-columns: 1fr;
        row-gap: var(--space-8);
    }

    .reason-list {
        width: 100%;
        max-width: 100%;
        margin-top: var(--space-6);
    }

    .reason-list li {
        min-height: 42px;
        gap: var(--space-3);
        padding: var(--space-2) 0;
    }

    .why-visual {
        min-height: 270px;
        padding-top: 0;
    }

    .vehicle-image {
        height: 100%;
        width: 100%;
    }

    .bill-card {
        top: auto;
        bottom: -30px;
        left: var(--space-4);
    }

    .bill-card li {
        padding:
            var(--space-3) var(--space-3) var(--space-3) var(--space-10);
    }

    .bill-card li::before {
        left: var(--space-3);
    }
}


@media (max-width: 767px) {
    .reason-list {
        margin-top: var(--space-6);
    }

    .reason-list li {
        align-items: flex-start;
    }

    .bill-card {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
        margin-top: 10px;
    }
}

/* ================================================================
transport-types
================================================================ */
.transport-type {
    background-color: var(--background-color);
}

.transport-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-8);
    align-items: center;
}


.transport-card {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.transport-card-image {
    width: 337px;
    height: 278px;
    object-fit: cover;
    border-radius: 18px;
}

.transport-card-content h3 {
    margin-bottom: 14px;
}

@media (max-width: 1199px) {
    .transport-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .transport-card {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .transport-card-content h3 {
        margin-bottom: 8px;
    }

    .transport-card-image {
        width: 100%;
        height: auto;
    }
}

/* ==================================================================
   COMMERCIAL ACCOUNT BENEFITS
   Pixel-matched to the supplied 1119 × 251 reference.
================================================================== */
.commercial-benefits {
    background: var(--background-color);
}

.commercial-benefits__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    width: 100%;
    margin-top: 54px;
}

.commercial-benefit {
    padding: 0 23px;
    border-left: 1px solid var(--color-border-subtle);
}

.commercial-benefit:first-child {
    padding-left: 0;
    border-left: 0;
}

.commercial-benefit:last-child {
    padding-right: 0;
}

.commercial-benefit__number {
    display: block;
    margin-bottom: 15px;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 1140px) {
    .commercial-benefits__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 23px;
    }

    .commercial-benefit:nth-child(4n + 1) {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 1024px) {
    .commercial-benefits__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .commercial-benefit:nth-child(3n + 1) {
        border-left: 0;
        padding-left: 0;
    }

    .commercial-benefit:nth-child(4n + 1) {
        padding: 0 23px;
        border-left: 1px solid var(--color-border-subtle);
    }

    .commercial-benefit:first-child {
        padding-left: 0;
        border-left: 0;
    }

}

@media (max-width: 767px) {
    .commercial-benefits__grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 30px;
    }

    .commercial-benefit,
    .commercial-benefit:first-child,
    .commercial-benefit:last-child {
        min-height: auto;
        padding: 17px 0 !important;
        border-left: 0 !important;
        border-top: 1px solid var(--color-border-subtle);
    }

    .commercial-benefit:first-child {
        padding-top: 0;
        border-top: 0;
    }

    .commercial-benefit__number {
        margin-bottom: 10px;
    }
}

.clarity-section {
    width: 100%;
    background-color: var(--background-color);
    padding: 50px 0;
    position: relative;
}

.clarity-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
    margin-top: 68px;
}

.clarity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    width: 100%;
    padding: 32px;
    height: 100%;
    box-shadow: 0px 6px 12px 0px #17324D1A;
    border: 1px solid var(--secondary-color);
    border-radius: 16px;
    background: #fff;
}

.clarity-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.clarity-icon-badge img {
    width: 40px;
    height: 40px;
    display: block;
}

@media (max-width: 992px) {
    .clarity-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 48px;
    }
}

@media (max-width: 680px) {
    .clarity-grid {
        margin-top: 38px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clarity-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .clarity-grid {
        margin-top: 32px;
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Sequence List Container
   ========================================================================== */
.sequence-section {
    width: 100%;
    background-color: var(--background-color);
    padding: 72px 0;
    position: relative;
}

.sequence-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 52px;
}

.sequence-item {
    padding: 28px 0 10px 0;
    border-bottom: 1px solid var(--border-color);
    transition: opacity 0.2s ease;
}

.sequence-item-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--section-bg);
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.sequence-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.sequence-item-desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--body-text);
    line-height: 1.6;
    letter-spacing: 0.005em;
    max-width: 1400px;
    width: 100%;
}

@media (max-width: 992px) {
    .sequence-section {
        padding: 50px 0;
    }

    .sequence-list {
        margin-top: 40px;
    }

    .sequence-item {
        padding: 22px 0;
    }
}

@media (max-width: 520px) {
    .sequence-section {
        padding: 40px 0;
    }

    .sequence-item {
        padding: 20px 0;
    }
}

/* ==========================================================================
   SECTION 2: WHAT WE'RE BUILDING (START)
   ========================================================================== */
.building-section {
    width: 100%;
    background-color: var(--button-text-light);
    padding: 100px 0;
}

.building-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
}

.building-content {
    display: flex;
    flex-direction: column;
}

.building-title {
    margin-bottom: 30px;
}

.building-text p {
    margin-bottom: 20px;
}

.building-text p:last-child {
    margin-bottom: 0;
}

.building-media {
    width: 100%;
}

.building-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.building-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.building-image-wrapper:hover .building-img {
    transform: scale(1.02);
}

/* What We're Building Responsive */
@media (max-width: 992px) {
    .building-container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .building-section {
        padding: 72px 0;
    }

    .building-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .building-media {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .building-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .building-section {
        padding: 56px 0;
    }

    .building-image-wrapper {
        border-radius: 14px;
    }
}

/* ==========================================================================
   faq2-section
   ========================================================================== */
.faq2-section {
    background-color: var(--section-bg);
    color: var(--faq2-text-title);
    width: 100%;
}

.faq2-section .faq2-inner-container {
    max-width: 980px;
    margin: 0 auto;
    width: 100%;
}

.faq2-section .faq2-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq2-section .faq2-eyebrow {
    margin-bottom: 18px;
}

.faq2-section .faq2-title {
    margin: 0 0 8px;
    color: var(--color-white);
}

.faq2-section .faq2-dot {
    color: var(--faq2-gold);
}

.faq2-section .faq2-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.faq2-section .faq2-list {
    display: flex;
    flex-direction: column;
}

/* FAQ 2 Item Container */
.faq2-section .faq2-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition: border-color 0.25s ease;
}

.faq2-section .faq2-item:hover {
    border-color: var(--faq2-border-hover);
}

/* FAQ 2 Question Button Header */
.faq2-section .faq2-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 30px 0 11px;
    cursor: pointer;
    font-weight: 700;
    text-align: left;
    user-select: none;
    transition: color 0.2s ease;
}

.faq2-section .faq2-question-btn:hover {
    color: var(--color-white);
}

.faq2-section .faq2-title-text {
    flex: 1;
    letter-spacing: 0%;
}

/* FAQ 2 SVG Icon Wrapper */
.faq2-section .faq2-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    border: 1px solid rgba(174, 131, 82, 1);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.faq2-section .faq2-question-btn:hover .faq2-icon-wrapper {
    background-color: var(--faq2-icon-hover-bg);
}

.faq2-section .faq2-svg-icon {
    position: absolute;
    width: 12px;
    height: 12px;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Closed State (Default): Plus Visible, Minus Hidden */
.faq2-section .svg-plus {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.faq2-section .svg-minus {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

/* Open State: Minus Visible, Plus Hidden */
.faq2-section .faq2-item.is-open .svg-plus {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.faq2-section .faq2-item.is-open .svg-minus {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Smooth CSS Grid Forward & Reverse Height Transition */
.faq2-section .faq2-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq2-section .faq2-item.is-open .faq2-answer {
    grid-template-rows: 1fr;
}

.faq2-section .faq2-answer-inner {
    min-height: 0;
    overflow: hidden;
    padding-bottom: 0px;
    transform: translateY(-8px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq2-section .faq2-item.is-open .faq2-answer-inner {
    padding-bottom: 24px;
    transform: translateY(0);
}

/* FAQ 2 Responsive Adjustments */
@media (max-width: 767px) {
    .faq2-section .faq2-header {
        margin-bottom: 36px;
    }

    .faq2-section .faq2-title {
        font-size: 32px;
    }

    .faq2-section .faq2-subtitle {
        font-size: 14px;
    }

    .faq2-section .faq2-question-btn {
        padding: 20px 0 16px;
        font-size: 15px;
    }

    .faq2-section .faq2-icon-wrapper {
        width: 26px;
        height: 26px;
    }

    .faq2-section .faq2-svg-icon {
        width: 11px;
        height: 11px;
    }
}


/* ==========================================================================
                contact-section
========================================================================== */
.contact-section {
    width: 100%;
    display: flex;
    background: #f7f6f2;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 70px 70px 12%;
    box-sizing: border-box;
    max-width: 45%;
    width: 100%;
    padding-left: calc((100% - 1630px) / 2);
}

.contact-info h2 {
    margin: 0 0 42px;
    color: #17324D;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
}

.contact-info .contact-info-wrap {
    text-decoration: none;
    max-width: max-content;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-info .contact-info-wrap:last-child .contact-item {
    margin-bottom: 0;
}

.contact-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ede6;
    border-radius: 50%;
    color: #b58a50;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.contact-text {
    color: #132532;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 100%;
    letter-spacing: 0%;
}

.contact-hours {
    display: flex;
    flex-wrap: wrap;

    column-gap: 8px;
    row-gap: 0;
}

.contact-hours span {
    white-space: nowrap;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 640px;
    overflow: hidden;
    max-width: 55%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 640px;
    display: block;
    border: 0;
}

@media (max-width: 1400px) {

    .contact-info {
        padding-left: 15px;
        padding-right: 50px;
    }

}

@media (max-width: 1200px) {

    .contact-info {
        padding-right: 40px;
    }

    .contact-item {
        gap: 18px;
        margin-bottom: 18px;
    }

    .contact-icon {
        width: 62px;
        height: 62px;
        min-width: 62px;
    }

    .contact-icon svg {
        width: 26px;
        height: 26px;
    }

    .contact-text {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .contact-info {
        padding: 40px 15px;
    }

    .contact-map {
        min-height: 500px;
    }

    .contact-map iframe {
        min-height: 500px;
    }
}

@media (max-width: 767px) {

    .contact-info,
    .contact-map {
        max-width: 100%;
        width: 100%;
    }

    .contact-info {
        padding: 40px 15px;
    }

    .contact-item {
        gap: 16px;
        margin-bottom: 18px;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

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

    .contact-hours {
        display: block;
    }

    .contact-hours span {
        display: inline;
    }

    .contact-hours span:not(:last-child)::after {
        content: " ";
    }

    .contact-map {
        min-height: 420px;
    }

    .contact-map iframe {
        min-height: 420px;
    }
}

@media (max-width: 400px) {

    .contact-info {
        padding: 45px 18px;
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .contact-text {
        font-size: 15px;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 360px;
    }
}