/* Basic, clean defaults */
:root {
    --container: 1100px;
    --gap: 1rem;
    --wc: #ffffff;
    --brand: #FF9B2F;
    --br-grey: #C4CDD4;
    --bg: #0C2433;
}

* {
    box-sizing: border-box;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--wc);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

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

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/*Header*/
header .logo-text, .success-text {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 130%;
    color: var(--wc);
    text-decoration: none;
}

header.header a {
    text-decoration: none;
}

header.header {
    background: var(--bg);
    height: 84px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    z-index: 2;
}

header.header nav.header-nav ul li.nav-item a.nav-link,
header.header .header-actions .phone-header {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 110.00000000000001%;
    letter-spacing: 0.5px;
    color: var(--br-grey);
}

header.header nav.header-nav ul li.nav-item a.nav-link:hover {
    color: var(--wc);
}

header.header .header-actions .phone-header:hover {
    color: var(--br-grey);
}

header.header .header-actions .phone-header {
    opacity: 1;
    padding: 10px 15px;
    white-space: nowrap;
}

header.header .header-actions .btn-header-quote {
    justify-content: space-between;
    opacity: 1;

    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: .5px;

    border-radius: 0;
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;

    height: 84px;
    max-width: 243px;
    color: var(--bg);
    background: var(--brand);
    backdrop-filter: blur(14px);

    white-space: nowrap;
}

header.header .header-actions .btn-header-quote:hover {
    background: #ff8a00;
    color: var(--wc);
}

@media (max-width: 1200px) {
    header.header .header-actions .btn-header-quote {
        padding-left: 20px;
        padding-right: 20px;
    }

    header.header nav.header-nav ul li.nav-item a.nav-link,
    header.header .header-actions .phone-header {
        font-size: 16px;
    }

    header .logo-text {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    header.header .header-actions .btn-header-quote {
        padding-left: 20px;
        padding-right: 20px;

        width: 100%;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        height: 60px;
    }

    header.header {
        width: 100%;
        position: fixed;
    }

    header.header nav.header-nav ul li.nav-item a.nav-link,
    header.header .header-actions .phone-header {
        font-size: 14px;
    }

    header .logo-text {
        font-size: 24px;
    }

    header .burger {
        background: var(--brand);
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 32px;
        padding-right: 32px;
    }

    header .header-actions {
        display: none;
    }

    header .header-actions.open {
        display: flex;
    }

    .logo-link {
        margin-left: 24px;
    }

    header.header nav.header-nav ul li.nav-item a.nav-link, header.header .header-actions .phone-header {
        font-size: 16px;
        line-height: 130%;
        letter-spacing: 0.5px;
        color: var(--br-grey) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 56px;
    }

    header.header .header-actions .phone-header {
        border: 1px solid var(--br-grey);
        border-radius: 6px;
    }
}

@media (max-width: 768px) {
    header.header .header-actions .btn-header-quote {
        padding-left: 10px;
        padding-right: 10px;

        width: 100%;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        height: 60px;
    }

    header.header {
        width: 100%;
        position: fixed;
    }

    header.header nav.header-nav ul li.nav-item a.nav-link,
    header.header .header-actions .phone-header {
        font-size: 12px;
    }

    header .logo-text {
        font-size: 18px;
    }

    header .burger {
        background: var(--brand);
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 32px;
        padding-right: 32px;
    }

    header .header-actions {
        display: none;
    }

    header .header-actions.open {
        display: flex;
    }

    .logo-link {
        margin-left: 24px;
    }

    header.header nav.header-nav ul li.nav-item a.nav-link, header.header .header-actions .phone-header {
        font-size: 16px;
        line-height: 130%;
        letter-spacing: 0.5px;
        color: var(--br-grey);
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.burger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.burger:focus-visible {
    outline: none;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Burger active animation */
.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- MOBILE MENU --- */
.header-nav {
    position: fixed;
    top: 84px;
    right: -100%;
    min-width: 280px;
    width: 100%;
    height: 100vh;
    background-color: var(--bg);
    padding: 80px 20px;
    transition: 0.35s ease;
    z-index: 9999;
}

@media (min-width: 992px) {
    .header-nav {
        position: static;
        height: auto;
        width: auto;
        padding: 0;
        background: none;
        display: flex !important;
        flex-direction: row;
    }
}

.header-nav.open {
    right: 0;
}

/* End of header and nav */

/*End header*/

/* General styles */
.bg-dark-blue {
    background: var(--bg);
}

.section-top,
.vehicle-types-section,
.who-we-serve-section,
.testimonials-section,
.cta-banner,
.shipping-cost-section,
.faq-section,
.about-section {
    padding-top: 112px;
    padding-bottom: 112px;
}

.section-padding {
    padding-top: 112px;
    padding-bottom: 112px;
}

.section-title {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 110%;
    letter-spacing: .5px;
}

.section-sub-title {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
}

/* End general styles */

/* Top block */
.top-block-bg-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
}

.top-block-bg-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
}

.top-block {
    background: #F2F7FC;
}

.top-block h1 {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 68px;
    line-height: 120%;
    letter-spacing: .5px;
    color: var(--bg);
}

.top-block p.section-sub-title {
    width: 80%;
}

/* Form styles*/
.fieldset-cf7mls, .wpcf7-form .fieldset-cf7mls {
    z-index: 3;
    justify-content: space-between;
    opacity: 1;
    padding: 40px 24px;
    background: #ffffff;
    box-shadow: 0 7px 50px 0 #24262B29;
}

.wpcf7-form .fieldset-cf7mls p:has(.submit-form) {
    display: flex;
    flex: 1;
    right: 24px;
    padding-top: 40px;
    float: right;
    width: 60%;
}

.wpcf7-form .fieldset-cf7mls p:has(.submit-form) input {
    min-width: 100%;
}

form.cf7mls input.wpcf7-form-control.wpcf7-submit {
    margin: 0 !important;
    width: 100%;
}

.hero-form h3.form-title {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 110%;
    letter-spacing: .5px;
}

.hero-form input, .hero-form select, .hero-form textarea {
    height: 56px;
    border-radius: 4px;
    border-width: 1px;
    opacity: 1;
    padding-right: 12px;
    padding-left: 12px;
}

.textarea {
    min-height: 120px;
}

.hero-form .operable-group .operable-radio p, .hero-form .operable-group p,
.hero-form .operable-group .operable-radio .wpcf7-list-item {
    margin: 0 !important;
}

.hero-form .operable-group .operable-radio .wpcf7-list-item label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 60px;
    height: 32px;
}

.hero-form .operable-group .operable-radio .wpcf7-list-item.last {
    margin-left: 16px !important;
}

input[type="radio"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #072334;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    padding: 0;
}

input[type="radio"]:checked {
    border-color: #FF8A00;
}

input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: #FF8A00;
    border-radius: 50%;
}

.hero-form .operable-group input[type="radio"] {
    height: 22px;
}

.hero-form .form-control-block p {
    margin: 0;
    position: relative;
    width: 100%;
}

.hero-form .form-control-block label {
    padding: 10px 12px;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.2s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.5;
    background: transparent;
}

.hero-form .form-control-block.input-focused label {
    opacity: 1;
    transform: scale(0.75) translateY(-65%) translateX(-14px);
    background: #fff;
}

#quote-modal input[type="date"].form-control {
    padding-top: 15px;
}

.hero-form .form-control-block.input-focused:has(textarea) label {
    transform: scale(0.75) translateY(-85%) translateX(-14px);
}

.wpcf7-form .fieldset-cf7mls p,
.hero-form p:has(.hero-submit-btn) {
    margin: 0 !important;
}

.cf7mls-btns .cf7mls_next,
form.cf7mls input.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    height: 56px;
    opacity: 1;
    background: var(--brand);
    border: 0;
    outline: none;
}

.cf7mls-btns .cf7mls_next,
.wpcf7-form fieldset[data-cf7mls-order="1"] .cf7mls-btns .cf7mls_back.action-button,
form.cf7mls input.wpcf7-form-control.wpcf7-submit {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: .5px;
    color: var(--bg);
}

.cf7mls-btns .cf7mls_next.action-button, .cf7mls-btns .cf7mls_back.action-button {
    height: 56px;
    margin: 0 !important;
    width: 100%;
}

.wpcf7-form fieldset[data-cf7mls-order="1"] .cf7mls-btns .cf7mls_back.action-button {
    height: 56px;
    width: 30%;
    margin-top: 40px !important;
    background: transparent;
}

.wpcf7-form .fieldset-cf7mls .cf7mls-btns {
    min-height: 56px;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
    position: absolute;
    top: 80px;
    font-size: 12px;
    margin-left: 24px;
    margin-right: 24px;
    width: -webkit-fill-available;
    text-align: center;
}

#quote-modal .modal-body .wpcf7 form .wpcf7-response-output {
    display: none !important;
}

.wpcf7 form .wpcf7-response-output {
    margin-top: 0;
    margin-bottom: 0;
}

input[type="date"].form-control {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

input[type="date"]::placeholder {
    color: red;
}

input[name="date"].form-control:disabled, input[name="date"].form-control[readonly] {
    background-color: #fff;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(40%);
    opacity: .6;
    cursor: pointer;
}

input[type="date"]:not(.has-value)::before {
    content: "";
    color: #999;
    position: absolute;
    left: 12px;
}

@media (max-width: 768px) {
    .top-block h1 {
        font-size: 43px;
    }
}

/* mobile adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .top-block h1 {
        font-size: 54px;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none;
        margin-top: 40px;
    }

    .hero-title {
        font-size: 38px;
    }

    .cert-logo {
        height: 44px;
    }
}

/* End top block */


/* How it work block */
.how-subtitle {
    font-size: 20px;
    color: #072334;
}

.timeline {
    max-width: 680px;
}

.timeline-item {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 32px;
    top: 140px;
    width: 2px;
    height: calc(100% - 60px);
    background: #d4d4d4;
}

.timeline-icon img {
    width: 64px;
    height: auto;
}

.step-label, .vehicle-subtitle {
    font-family: Inter, sans-serif;
    display: inline-block;
    border: 1px solid #072334;
    color: #072334;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 20px;
}

.step-title {
    font-family: Anton, sans-serif;
    font-size: 24px;
    color: #072334;
}

.step-text {
    font-size: 16px;
    color: #072334;
    max-width: 420px;
}

.cta-title {
    font-family: Anton, sans-serif;
    font-size: 28px;
    color: #072334;
}

.cta-phone {
    padding: 12px 24px;
}

.cta-quote {
    padding: 12px 40px;
    font-family: Anton, sans-serif;
    font-size: 18px;
    color: #072334;
}

.how-cta {
    padding-top: 60px;
}

.how-cta .how-cta-title {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
}

.how-cta .how-cta-sub-title {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.how-cta .how-cta-btn {
    flex: 1;
    display: flex;
    width: 100%;
    height: 56px;
    align-items: center;
    justify-content: center;
}

.how-cta .how-cta-btn img {
    width: 24px;
    height: auto;
}

/* End how it work block */


/* Vehicle types block */
.vehicle-types-section {
    background: #F2F7FC;
}

.vehicle-title {
    font-family: Anton, sans-serif;
    font-size: 42px;
    color: #072334;
}

.vehicle-subtitle {
    font-size: 18px;
    color: #072334;
}

.vehicle-grid .vehicle-item {
    border: 1px solid #d8d8d8;
    background: var(--wc);
}

.vehicle-grid .vehicle-item:hover {
    transform: scale(1.02);
}

.vehicle-box {
    padding: 35px 20px;
}

.vehicle-label {
    font-family: Anton, sans-serif;
    font-size: 18px;
    color: #072334;
}

.vehicle-section-sub-title {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
}

.btn-cta {
    padding: 12px 80px !important;
    font-family: Anton, sans-serif;
    font-size: 18px !important;
    color: #072334 !important;
    height: 56px;
}

.btn-warning.how-cta-btn, .btn-warning.btn-cta {
    background: var(--brand) !important;
}

/* End vehicle types block */


/* Serve block */
.who-we-serve-section {
    background: var(--wc);
}

.wws-title {
    font-family: Anton, sans-serif;
    font-size: 44px;
    color: #072334;
}

.wws-subtitle {
    font-size: 20px;
    color: #072334;
}

.wws-card {
    background: #ffffff;
    border-radius: 0;
    padding: 30px 28px;
    text-align: left;
    height: 100%;
    box-shadow: 0 7px 50px 0 #24262B29;
    display: flex;
    flex-direction: row;
}

.wws-card:hover {
    transform: scale(1.02);
}

.wws-card img {
    padding-right: 24px;
    width: 100%;
    height: 72px;
}

.wws-icon {
    width: 48px;
    height: auto;
}

.wws-card-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 8px;
}

.wws-card-text {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -3.6%;
    margin-bottom: 0;
    height: 100%;
}

/* End serve block */

/* Let's move */
.cta-banner {
    background-image: url('../images/bg/cta-bg.png');
    background-size: cover;
    background-position: center;
    min-height: 588px;
}

.cta-banner .cta-overlay {
    position: absolute;
    inset: 0;
    background: #0C2433;
    opacity: .8;
}

.cta-banner .cta-actions a {
    font-size: 16px;
    font-family: Anton, sans-serif;
    font-weight: 400;
    height: 56px;
    min-width: 160px;
    flex: 1;
}

/* PHONE BUTTON */
.cta-banner .cta-actions .cta-phone-btn {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.cta-banner .cta-actions .cta-phone-btn:hover {
    border-color: #fff;
    color: var(--brand);
}

/* QUOTE BUTTON */
.cta-banner .cta-actions .cta-quote-btn,
.footer-form-btn .get-quote {
    background: #FF8A00;
    color: #072334;
}

.cta-banner .cta-actions .cta-quote-btn:hover,
.footer-form-btn .get-quote:hover {
    background: #e27600;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    /*.cta-banner {*/
    /*    min-height: 547px;*/
    /*}*/
    .cta-banner .cta-container {
        gap: 24px;
    }
}

/* End let's move */

/* Testimonials block */
.testimonials-section {
    background: #F6FAFF;
}

.contact-us-container .testimonials-section {
    background: #FFFFFF;
}

.testimonials-section .testimonial-box {
    background: #fff;
    border-radius: 6px;
    position: relative;
    text-align: left;
    height: auto;

    box-shadow: 0 7px 50px 0 #24262B29;
    padding: 32px;
}

.testimonials-section .swiper-horizontal {
    padding-left: 40px;
}

.testimonials-section .stars {
    color: #FF8A00;
    font-size: 22px;
    letter-spacing: 2px;
}

.testimonials-section .stars img {
    width: 32px;
    height: auto;
}

.testimonials-section .testimonial-box .quote-icon {
    height: 44px;
    width: auto;
    opacity: 0.25;
    position: absolute;
    top: 25px;
    right: 25px;
}

.testimonials-section .swiper-wrapper {
    padding-bottom: 40px;
}

.testimonials-section .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-section .swiper-pagination .swiper-pagination-bullet {
    background: #495B66;
    border: 1px solid #495B66
}

.testimonials-section .swiper-pagination .swiper-pagination-bullet-active {
    padding: 6px;
}

.testimonials-section .swiper-wrapper .review-text {
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #0C2433;
}

.testimonials-section .swiper-wrapper .author {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0C2433;
    margin-top: 10px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #072334;
    opacity: .3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* End testimonials block */

/* Determination block */
.shipping-cost-section {
    background: #EAF0F7;
}

.shipping-cost-section .section-sub-title {
    font-size: 20px;
}

.shipping-cost-section .sc-bg-icon {
    width: 320px;
    margin-top: 30px;
}

.shipping-cost-section .sc-box {
    background: #fff;
    /*border-radius: 6px;*/
    padding: 32px;
    gap: 24px;
    box-shadow: 0 7px 50px 0 #24262B29;
}

.sc-box h4 {
    font-family: Anton, sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #FF9B2F;
}

.sc-box p {
    font-family: Inter, sans-serif;
    font-size: 18px;
    color: #0C2433;
    margin-top: 5px;
}

/* End determination block */

/* FAQs block */
.faq-section {
    background: #FFFFFF;
}

.faq-section .faq-item {
    background: #fff;
    border-radius: 6px;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-section .faq-item p {
    margin-bottom: 0;
}

.faq-section .faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    background: none;
    border: none;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0C2433;
    display: flex;
    cursor: pointer;
    position: relative;
    align-items: center;
}

.faq-section .faq-item .icon {
    border-radius: 50%;
    position: relative;
    width: 50px;
}

.faq-section .faq-item .icon img {
    width: 44px;
    height: 44px;
}

.faq-section .faq-item .icon .close {
    display: flex;
    transition: all .35s ease;
}

.faq-section .faq-item .icon .open {
    display: none;
    transition: all .35s ease;
}

.faq-section .faq-item.active .icon .close {
    display: none;
    transition: all .35s ease;
}

.faq-section .faq-item.active .icon .open {
    display: flex;
    transition: all .35s ease;
}

.faq-section .faq-answer {
    max-height: 0;
    opacity: 0;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 18px;
    overflow: hidden;
    transition: all .35s ease;
    color: #0C2433;
    line-height: 1.6;
    padding: 0 24px 0 24px;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 24px 24px 24px;
}

/* End FAQs block */

.additional-section {
    background: #0C2433;
    padding-top: 96px;
    padding-bottom: 112px;
}

.additional-section .additional-section-label {
    color: #FF9B2F;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
}

.additional-section .additional-section-title {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 68px;
    line-height: 120%;
    text-align: center;
    color: #ffffff
}

/* Pre-footer form */
.pre-footer-title {
    font-family: Anton, sans-serif;
    font-size: 42px;
}

.pre-footer-subtext {
    font-size: 20px;
    line-height: 1.4;
}

.pre-footer-info-title {
    font-weight: 700;
    letter-spacing: 0.3px;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-form-section .pre-footer-info {
    color: var(--wc);
}

.footer-form-section .pre-footer-info a {
    text-decoration: none;
    color: var(--wc);
}

.pre-footer-info img {
    width: auto;
    height: 44px;
}

.pre-footer-form {
    border-radius: 4px;
}

/* End pre-footer form */

/*Footer*/
.footer-logo-block .footer-logo {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: .5px;
    color: var(--br-grey);
}

.footer-logo-block {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-logo img {
    height: 44px;
}

.footer-nav {
    color: var(--br-grey);
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.5%;
}

.footer-nav a:hover {
    color: #FF8A00;
}

/*End footer*/

/* About Us */
.about-section {
    background: #F1F6FA;
}

.about-section .about-section-text {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #0C2433;

    margin-bottom: 0;
}

.about-main .about-card {
    box-shadow: 0 7px 50px 0 #24262B29;
    background: #FFFFFF;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-main .about-card img {
    padding-right: 0;
}

/* End About Us */

/* Contact Us*/
.contact-section {
    background: #F1F6FA;
}

.contact-section .cf7-step-container.form-page {
    width: 100%;
}

.cf7-step-container {
    background: #FFFFFF;
}

.contact-section .contact-section-text {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #0C2433;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 16px;
    margin-top: 24px;
}

.contact-section .contact-section-description {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #0C2433;
    text-align: center;
}

.contact-section .contact-us-form-block {
    box-shadow: 0 7px 50px 0 #24262B29;
    background: #FFFFFF;
}

.contact-section .contact-us-form-block form {
    padding: 40px 24px;
    background: #FFFFFF;
    position: relative;
}

.contact-section .contact-us-form-block form p {
    margin-bottom: 0;
}

/* End Contact Us*/


.f-20 {
    font-size: 20px;
}

/* Responsive */

@media (max-width: 768px) {
    .wpcf7-form {
        padding: 24px;
    }

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

    .section-sub-title {
        font-size: 16px;
    }

    .top-block p.section-sub-title {
        width: 100%;
    }

    .hero-form .operable-group input[type="radio"] {
        width: 22px;
    }

    .cf7-step-container {
        box-shadow: 0 7px 50px 0 #24262B29;
    }

    .section-padding {
        padding-bottom: 0;
    }

    body, .how-it-works {
        background: #F1F5F9;
    }

    .how-it-works,
    .shipping-cost-section,
    .faq-section,
    .footer-form-section {
        padding-right: 24px;
        padding-left: 24px;
    }

    .timeline-item:nth-child(1) .timeline-line {
        top: 70px;
        left: 20px;
        height: calc(100% - 90px);
    }

    .timeline-item:nth-child(2) .timeline-line {
        top: 60px;
        left: 20px;
        height: calc(100% - 80px);
    }

    .timeline-item:nth-child(3) .timeline-line {
        top: 60px;
        left: 20px;
        height: calc(100% - 80px);
    }

    .timeline-icon img {
        width: 40px;
    }

    .how-cta {
        padding-top: 20px;
    }

    .how-cta .how-cta-title {
        text-align: start;
        font-size: 20px;
    }

    .how-cta .how-cta-sub-title,
    .shipping-cost-section .section-sub-title,
    .faq-section .faq-answer {
        text-align: start;
        font-size: 16px;
    }

    .section-top,
    .vehicle-types-section,
    .who-we-serve-section,
    .testimonials-section,
    .cta-banner,
    .shipping-cost-section,
    .faq-section,
    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .vehicle-section-sub-title {
        font-size: 20px;
    }

    .vehicle-cta .btn-cta {
        width: 60%;
    }

    .cta-banner {
        min-height: auto;
    }

    .testimonials-section .swiper-horizontal {
        padding-left: 24px;
    }

    .cta-banner .cta-actions .cta-quote-btn,
    .cta-banner .cta-actions .cta-phone-btn,
    .footer-form-btn .get-quote {
        min-height: 56px;
    }

    .footer-form-section {
        padding-bottom: 24px;
    }

    .additional-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .additional-section .additional-section-title {
        font-size: 48px;
    }

    .additional-section .additional-section-label {
        font-size: 20px;
    }

    .about-main .about-section, .contact-section {
        padding-top: 0;
    }

    .about-main .about-section img {
        width: 100%;
        mix-blend-mode: luminosity;
    }

    .faq-section .faq-question {
        padding: 16px;
    }

    .faq-section .faq-answer {
        padding: 0 16px 0 16px;
    }

    .faq-section .faq-item.active .faq-answer {
        padding: 0 16px 16px 16px;
    }

    .form-modal .fieldset-cf7mls, .wpcf7-form .fieldset-cf7mls {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .wpcf7-form {
        padding: 24px;
    }

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

    .section-sub-title {
        font-size: 16px;
    }

    .top-block p.section-sub-title {
        width: 100%;
    }

    .hero-form .operable-group input[type="radio"] {
        width: 22px;
    }

    .cf7-step-container {
        box-shadow: 0 7px 50px 0 #24262B29;
    }

    body, .how-it-works {
        background: #F1F5F9;
    }

    .how-it-works,
    .shipping-cost-section,
    .faq-section,
    .footer-form-section {
        padding-right: 24px;
        padding-left: 24px;
    }

    .timeline-item:nth-child(1) .timeline-line {
        top: 70px;
        left: 20px;
        height: calc(100% - 90px);
    }

    .timeline-item:nth-child(2) .timeline-line {
        top: 60px;
        left: 20px;
        height: calc(100% - 80px);
    }

    .timeline-item:nth-child(3) .timeline-line {
        top: 60px;
        left: 20px;
        height: calc(100% - 80px);
    }

    .timeline-icon img {
        width: 40px;
    }

    .how-cta {
        padding-top: 20px;
    }

    .how-cta .how-cta-title {
        text-align: start;
        font-size: 20px;
    }

    .how-cta .how-cta-sub-title,
    .shipping-cost-section .section-sub-title,
    .faq-section .faq-answer {
        text-align: start;
        font-size: 16px;
    }

    .section-top,
    .vehicle-types-section,
    .who-we-serve-section,
    .testimonials-section,
    .cta-banner,
    .shipping-cost-section,
    .faq-section,
    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .vehicle-section-sub-title {
        font-size: 20px;
    }

    .vehicle-cta .btn-cta {
        width: 60%;
    }

    .cta-banner {
        min-height: auto;
    }

    .testimonials-section .swiper-horizontal {
        padding-left: 24px;
    }

    .cta-banner .cta-actions .cta-quote-btn,
    .cta-banner .cta-actions .cta-phone-btn,
    .footer-form-btn .get-quote {
        min-height: 56px;
    }

    .footer-form-section {
        padding-bottom: 24px;
    }

    .additional-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .additional-section .additional-section-title {
        font-size: 48px;
    }

    .additional-section .additional-section-label {
        font-size: 20px;
    }

    .about-main .about-section, .contact-section {
        padding-top: 0;
    }

    .about-main .about-section img {
        width: 100%;
        mix-blend-mode: luminosity;
    }

    .faq-section .faq-question {
        padding: 16px;
    }

    .faq-section .faq-answer {
        padding: 0 16px 0 16px;
    }

    .faq-section .faq-item.active .faq-answer {
        padding: 0 16px 16px 16px;
    }

    .form-modal .fieldset-cf7mls, .wpcf7-form .fieldset-cf7mls {
        padding: 0;
    }
}

.cf7-wrapper {
    position: relative;
    height: 100%;
    background: #FFFFFF;
}

.cf7-form-container,
.cf7-success-message {
    width: 100%;
}

.cf7-wrapper .cf7-success-message {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cf7-wrapper .cf7-success-message img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.wpcf7-form {
    position: relative;
}

.cf7-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.submitting .cf7-loading-overlay {
    opacity: 1;
    pointer-events: all;
}

.cf7-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

