/* Basic, clean defaults */
:root {
    --container: 1100px;
    --gap: 1rem;
    --bg: #ffffff;
    --fg: #0f172a;
    --muted: #64748b;
    --brand: #3b82f6;
}

* {
    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;
    color: var(--fg);
    background: var(--bg);
    line-height: 1.6;
}

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

header {
    background-color: #0F1D16;
}

header .header-nav {
    width: 100%;
}

/* NAV styles */
header ul.nav li {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
}

/* Gradient phone text */
header a.phone-header {
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    background: linear-gradient(86.48deg, #15A665 0%, #05F87A 100%);
    -webkit-background-clip: text;
    color: transparent;
}
header a.phone-header img {
    padding-right: 4px;
    width: 20px;
    height: 20px;
}

/* Quote button */
header .get-quote, form .next-step {
    background: linear-gradient(86.48deg, #15A665 0%, #05F87A 100%);
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    border-radius: 100px;
    padding: 10px 15px;
    color: #000000;
}

header .get-quote:hover, form .next-step:hover {
    background: linear-gradient(86.48deg, #05F87A 0%, #15A665 100%);
    color: #000000;
}

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

.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: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #0F1D16;
    padding: 80px 20px;
    transition: 0.35s ease;
    z-index: 9999;
}

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

.header-nav .nav-link {
    padding: 10px 0;
}

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


/* Main top section */
.top-section {
    background: #0F1D16;
    position: relative;
    min-height: 500px;
    padding-bottom: 240px;
}

.top-section .top-section-content {
    background-image: url('../images/bg/top-section-bg.png');
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position-y: top;
    border-radius: 20px;
    min-height: inherit;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-section .top-section-content h1 {
    font-family: DM Sans, sans-serif;
    font-weight: 700;
    font-size: 82px;
    line-height: 110.00000000000001%;
    text-align: center;
}

.top-section .top-section-content .top-section-subtitle {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
}

.text-green {
    color: #00e676;
}

.top-section-title {
    font-size: 2.6rem;
    font-weight: 700;
}

.top-section-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

/* FORM */
.top-section {
    position: relative;
    padding-bottom: 140px;
}

.top-section .top-section-form {
    position: absolute !important;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
    padding-left: 48px !important;
    padding-right: 48px !important;
    bottom: -30% !important;
    z-index: 1;
}

.top-section .top-section-form .cf7-step-container
{
    background: #FFFFFF1A;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 24px;
    min-height: 200px;
}

.top-section .top-section-form .cf7-step-container:has(.cf7-step-container-success.d-flex) {
    align-items: center;
    justify-content: center;
    display: flex;
    min-width: 100%;
}

.top-section .top-section-form .cf7-step-container h3 {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
}

.top-section .top-section-form .cf7-step-container form h3 {
    padding-bottom: 24px;
}

.top-section .top-section-form .cf7-step-container form p {
    margin: 0;
}

.top-section .top-section-form .cf7-step-container form .step-1,
.top-section .top-section-form .cf7-step-container form .step-2,
.top-section .top-section-form .cf7-step-container form .step-3,
.top-section .top-section-form .cf7-step-container form .step-4

{
    display: flex;
    flex-direction: column;
}

.top-section .top-section-form .cf7-step-container form .cf7mls_current_fs .cf7mls-btns {
    display: none;
}

.top-section .top-section-form .cf7-step-container form .step-1 .row,
.top-section .top-section-form .cf7-step-container form .step-2 .row,
.top-section .top-section-form .cf7-step-container form .step-3 .row,
.top-section .top-section-form .cf7-step-container form .step-4 .row
{
    display: flex;
    margin-bottom: 16px;
}

.top-section .top-section-form .cf7-step-container form p:has(.submit-form) {
    display: none;
}

.top-section .top-section-form .cf7-step-container form .wpcf7-form-control-wrap,
.top-section .top-section-form .cf7-step-container form  button.cf7mls_btn
{
    display: flex;
    flex: 1;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-shadow: 0 1px 2px 0 #1018280D;
    border-radius: 100px;
    height: 60px;
    width: 100%;
    gap: 8px;
    opacity: 1;
}

.top-section .top-section-form .cf7-step-container form .wpcf7-form-control-wrap input,
.top-section .top-section-form .cf7-step-container form .wpcf7-form-control-wrap select,
.top-section .top-section-form .cf7-step-container form  button.cf7mls_btn
{
    border-radius: 100px;
    height: 100%;
    width: 100%;
    border: none;
    padding: 0 24px;
}

.top-section .top-section-form .cf7-step-container form .next-step {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.02em;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: none;
    width: 100%;
}

.top-section .top-section-form .cf7-step-container form .wpcf7-form-control-wrap input:focus,
.top-section .top-section-form .cf7-step-container form .wpcf7-form-control-wrap select:focus,
.top-section .top-section-form .cf7-step-container form .wpcf7-form-control-wrap input:focus-visible,
.top-section .top-section-form .cf7-step-container form .wpcf7-form-control-wrap select:focus-visible
{
    border: none;
    outline-width: 0;
}

.fieldset-cf7mls-wrapper .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -2px;
    left: 24px;
}

.top-section .top-section-form .cf7-step-container form .back-to-step {
    position: fixed;
    color: #ffffff;
    top: 24px;
    left: 24px;
}

.top-section .top-section-form .cf7-step-container form .back-to-step span {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;

    position: relative;
    padding-left: 28px;
}

.top-section .top-section-form .cf7-step-container form .back-to-step p {
    margin: 0;
}

.top-section .top-section-form .cf7-step-container form .back-to-step span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/arrow-narrow-left.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
}

.top-section .top-section-form .cf7-step-container form .vehicle-info {
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
}

.wpcf7 form.init .wpcf7-response-output {
    display: none !important;
}

.top-section-form {
    max-width: 900px;
    margin: 25px auto 0;
}

.top-section-form .form-control,
.top-section-form .form-select {
    height: 48px;
    font-size: 0.9rem;
}

.btn-success {
    background-color: #00c853;
    border-color: #00c853;
}
.btn-success:hover {
    background-color: #00b74a;
}

/* End FORM */
/* Main top section */

/* General Section */
section .section-title {
    font-family: DM Sans, sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
}

section .section-sub-title {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 31px;
    text-align: center;
}

section.how-it-works .section-sub-title {
    max-width: 60%;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* End General Section */

/* How it works */
.how-it-works, .why-choose, .our-services {
    background-size: cover;
    backdrop-filter: blur(400px);
    padding-top: 112px;
    background-position-y: bottom;
    background-origin: content-box;
    background: #0F1D16 url('../images/bg/how-it-works-bg.png') round;
}

.how-it-works .round-text-title, .faqs-section .faqs-text-title, .faqs-section .faqs-text-title {
    font-family: DM Sans, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.how-it-works .round-text-sub-title, .faqs-section .faqs-text-sub-title {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    color: #FAF9F9;
}

.steps-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 40px;
}

.steps-wrapper .step-circle {
    min-width: 330px;
    width: min-content;
    height: 330px;
    border-radius: 50%;
    padding: 50px 35px;
    margin: 0 -20%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.steps-wrapper .step-circle:nth-child(2) {
    z-index: 2;
}

.steps-wrapper .step-circle img {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.steps-wrapper .step-circle h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.steps-wrapper .step-circle p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

.step-circle.step-1 {
    background: #153B34;
}

.step-circle.step-2 {
    background: #2B795D;
}

.step-circle.step-3 {
    background: #0DA463;
}

@media (max-width: 1440px) {
    .steps-wrapper .step-circle {
        margin: 0 -15%;
    }
}

@media (max-width: 1200px) {
    .steps-wrapper .step-circle {
        margin: 0 -10%;
    }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .steps-wrapper .step-circle {
        margin: 0 0;
    }
}

@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
    }

    .steps-wrapper .step-circle {
        margin: 0 auto -40px auto;
        width: 260px;
        /*height: 260px;*/
        padding: 40px 25px;
    }
}
/* End how it works */

/* Why Choose */
.why-choose {
    padding-top: 164px !important;
    background-repeat: space;
    padding-bottom: 112px;
}

.why-choose .why-choose-container {
    width: 90%;
    position: relative;
    border-radius: 24px;
    height: 630px;
}

.why-choose .why-choose-img-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    right: 24px;
}

.z-index-1 {
    z-index: 1;
}

.why-choose .why-choose-container .why-choose-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.why-choose .why-choose-container .wc-card {
    width: 100%;
    max-width: 320px;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(24px);
    background: #FFFFFF1A;
    min-height: 100%;
}

.why-choose .why-choose-container .wc-card h6 {
    font-family: DM Sans, sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
}

.why-choose .why-choose-container .wc-card p {
    color: #FAF9F9;
    text-align: start;
}

.why-choose .why-choose-container .wc-card p, .our-services .service-card p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
}

.why-choose .why-choose-container .wc-card img {
    width: 44px;
    height: auto;
    margin-bottom: 24px;
}
/* End Why Choose */

/* Our Services */
.our-services {
    padding-top: 164px !important;
    background-repeat: space;
    padding-bottom: 112px;
}

.our-services .service-card p {
    color: #FAF9F9;
}

.our-services .service-card img {
    width: 60px;
    height: auto;
}

.our-services .service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #FFFFFF4D;
    border-radius: 24px;
    backdrop-filter: blur(24px);
    transition: 0.3s ease;
}

.our-services .service-card a {
    max-width: 200px;
    background: linear-gradient(86.48deg, #15A665 0%, #05F87A 100%);
}

.our-services .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 255, 120, 0.18);
}
/* End Our Services */

/* Ready to get rolling */
.cta-rolling {
    padding-top: 164px !important;
    padding-bottom: 112px;
    background: linear-gradient(86.48deg, #15A665 0%, #05F87A 100%);
}

.cta-rolling .cta-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
}

.cta-rolling .cta-truck-wrapper {
    max-height: 260px;
    object-fit: contain;
    transform: translateY(6px);
    display: inline-block;
    position: relative;
}

.cta-rolling .cta-truck-wrapper .truck-img {
    display: block;
    max-height: 450px;
    object-fit: contain;
    z-index: 1;
    position: relative;
    filter: sepia(100%) hue-rotate(80deg) saturate(200%);
}

.cta-rolling a.btn {
    height: 60px;
    line-height: 40px;
    vertical-align: middle;
    border-radius: 100px;
    padding-top: 8px;
}

a.btn-phone {
    background: transparent;
    border: 1px solid #000000;
    gap: 10px;
    opacity: 1;
    border-radius: 100px;
    transition: background-color 0.3s ease;
    line-height: 40px;
    vertical-align: middle;
    padding-top: 8px;
}

a.btn-phone img {
    width: 18px;
    height: auto;
}

a.btn-phone img.dark-phone {
    display: inline;
}

a.btn-phone img.light-phone {
    display: none;
}

a.btn-phone:hover img.dark-phone {
    display: none;
}

a.btn-phone:hover img.light-phone {
    display: inline;
}

a.btn-phone:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
/* End ready to get rolling */

/* Testimonials */
.testimonials {
    background: #0F1D16;
}

.testimonials .reviews-section {
    background-color: #0c1b14;
}

.testimonials .review-card {
    background: #FFFFFF1A;
    border-radius: 24px;
    border: 1px solid #FFFFFF4D;
    color: white;
    min-height: 260px;
    padding: 24px;
    backdrop-filter: blur(24px)
}

.testimonials .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
}

.testimonials .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transition: background 0.3s ease;
    transform: scale(1.2);
}

.testimonials .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: auto;
    height: max-content;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.5;
}

.review-author {
    font-size: 0.9rem;
    color: #b5b5b5;
}

.swiper-pagination-bullet {
    background: #aaa;
    opacity: .5;
}

.swiper-pagination-bullet-active {
    background: white !important;
    opacity: 1;
}
/* End testimonials */

/* FAQs section */
.faq-section {
    background-color: #0F1D16;
}

.faq-accordion .accordion-item {
    background: transparent;
    padding-bottom: 8px;
    border-top: 0.5px solid #05F87A;
    border-bottom: 0.5px solid #05F87A;
}

.faq-accordion .accordion-item:first-of-type, .faq-accordion .accordion-item:last-of-type {
    border-top-width: 1px;
    border-bottom-width: 1px;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: #00ff9c !important;
    font-weight: 600;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.1rem;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='%2300FF9C' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 15L6 9H18L12 15Z'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='%23FFFFFF' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 9L18 15H6L12 9Z'/%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    color: #b9c4be;
    padding-left: 0;
    padding-right: 0;
    margin-top: 10px;
}
/* End FAQs section */

/* Ready to get rolling - Footer */
.cta-rolling.cta-rolling-footer {
    background: #0c1b14;
    position: relative;
}

.cta-rolling .cta-rolling-text-title {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFF;
}

.glow-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 900px;
    background: radial-gradient(
            circle,
            rgba(0, 255, 153, 0.4) 0%,
            rgba(0, 255, 153, 0.25) 20%,
            rgba(0, 255, 153, 0.15) 40%,
            rgba(0, 255, 153, 0.05) 60%,
            transparent 80%
    );
    filter: blur(40px);
    z-index: 10;
    pointer-events: none;
}

.cta-rolling .stats-card {
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(24px);
    border-radius: 24px;
    color: white;
    z-index: 2;
    padding: 24px;
}

.cta-rolling .stats-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 255, 120, 0.18);
}

.cta-rolling .stats-card .stats-card-title {
    font-family: DM Sans, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    text-align: center;
}

.cta-rolling .stats-card .stats-card-description {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
}

.cta-rolling .get-quote.cta-btn {
    background: linear-gradient(90deg, #00ff9d, #00c86e);
    border: none;
    color: #000;
    font-weight: 600;
    height: 60px;
    padding: 0 100px;
}

.cta-rolling .get-quote.cta-btn:hover {
    background: linear-gradient(90deg, #00c86e, #00ff9d);
    color: #000;
}
/* End ready to get rolling - Footer */

/* Footer */
.footer {
    background: #173727;
}

.footer-nav a {
    color: #9fb3a7;
    font-size: 0.95rem;
}

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

.footer-separator {
    background: #C1C7CD;
    height: 1px;
    width: 100%;
}

.social-icons i {
    cursor: pointer;
}

.social-icons i:hover {
    color: #00ff9c !important;
}
/* End Footer */

/*About Us page styles */
.about-main {
    background: #0F1D16;
}

.about-main-container {
    background: #0F1D16 url('../images/bg/about-us.png') no-repeat center;
    background-size: cover;
    border-radius: 24px;
    padding-bottom: 112px;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
}

.about-main-container .about-title {
    padding-top: 112px;
}

.about-main-container .about-title h1 {
    font-family: DM Sans, sans-serif;
    font-size: 38px;
    line-height: 60px;
    text-transform: uppercase;
}

.about-main-container .about-title h5 {
    font-family: DM Sans, sans-serif;
    font-size: 19px;
    line-height: 100%;
    text-transform: uppercase;
}

.about-main-container .about-title p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #FAF9F9;
}

.about-main-container .about-description-block h2 {
    font-family: DM Sans, sans-serif;
    font-size: 24px;
    line-height: 60px;
    text-transform: uppercase;
}

.about-main-container .about-description-block {
    padding-bottom: 112px;
}

.about-main-container .about-description-block .wm-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: 0.3s;
}

.about-main-container .about-description-block .wm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,255,120,0.15);
}

/* icon */
.about-main-container .about-description-block .wm-card .wm-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,255,120,0.18);
    color: #00ff89;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-main-container .about-description-block .about-cta {
    background: linear-gradient(90deg, #0cff85 0%, #066c38 100%);
    border-radius: 18px;
}

.about-main-container .about-description-block .stat-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}
/* End of About Us page styles */

/* Contact Us page styles */
.contact-main-container {
    background: #0c1b14;
}

#contact-main.contact-main .glow-bg {
    top: 112px;
}

.contact-main {
    background: linear-gradient(180deg, #061b13 0%, #03140d 100%);
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-main .contact-us-right-side {
    border-radius: 24px;
    gap: 24px;
    opacity: 1;
    padding: 24px 24px;
    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(24px);
    color: #FFFFFF1A;
}

.contact-main .content-form-field, #quote-modal .modal-content input, #quote-modal .modal-content select {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: 60px;
    opacity: 1;
    padding: 10px 24px;
    border-radius: 24px;
    box-shadow: 0 1px 2px 0 #1018280D;
    border: none;
    outline: none;
}

input, select {
    height: 60px;
}

input:-internal-autofill-selected {
    background-color: #FFFFFF1A !important;
}

.contact-main .wpcf7-submit {
    background: linear-gradient(86.48deg, #15A665 0%, #05F87A 100%);
    box-shadow: 0 1px 2px 0 #1018280D;
    height: 60px;
    gap: 10px;
    opacity: 1;
    padding: 16px 22px;
    border-radius: 24px;
    width: 100%;
    border: none;
}

.form-modal .wpcf7 form.failed .wpcf7-response-output, .form-modal .wpcf7 form.aborted .wpcf7-response-output {
    color: #ff0000;
    margin: 0 8px;
    padding: 0;
}

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

form .form-control-block label {
    padding: 18px 24px;
    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;
}

form .form-control-block.input-focused label {
    opacity: 1;
    transform: scale(0.75) translateY(-90%) translateX(-14px);
    background: transparent;
    color: #FFFFFF;
}
/**/

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

.wpcf7-form.form-modal .fieldset-cf7mls p {
    margin-bottom: 20px !important;
}

form p:has(.wpcf7-submit) {
    margin-bottom: 0;
    padding-top: 16px;
}

.wpcf7-spinner {
    position: absolute;
    display: flex;
    margin: 0;
    height: 100%;
    width: 100%;
    bottom: 0;
    border-radius: 0;
}

.wpcf7-spinner::before {
    background: #15A665;
    border-radius: 100px;
    animation: cf7-running-stripe 1.3s infinite linear;
    width: 100%;
    bottom: 0;
    margin-top: auto;
}

@keyframes cf7-running-stripe {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

/* End of Contact Us page styles */

/*Modal*/
#quote-modal .modal-content {
    border-radius: 24px;
}

#quote-modal .modal-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

#quote-modal .modal-content .step-1 .row, #quote-modal .modal-content .step-2 .row, #quote-modal .modal-content .step-3 .row {
    display: flex;
    flex-direction: column;
}

#quote-modal .modal-content h3 {
    display: none;
}

#quote-modal .modal-content .btn-close {
    background: url("../images/icons/close.svg") no-repeat center;
    opacity: 1;
    padding: 0;
    margin-top: 8px;
}

#quote-modal .modal-content .modal-header {
    border-bottom: none;
}

#quote-modal .modal-content .step-1, #quote-modal .modal-content .step-2, #quote-modal .modal-content .step-3 {
    background: transparent;
}

#quote-modal .modal-content .step-1 .col-md-3,
#quote-modal .modal-content .step-2 .col-md-3,
#quote-modal .modal-content .step-3 .col-md-3
{
    width: 100% !important;
}

#quote-modal .modal-content .step-1 .row.pt-3,
#quote-modal .modal-content .step-2 .row.pt-3,
#quote-modal .modal-content .step-3 .row.pt-3
{
    padding-top: 0 !important;
}

#quote-modal .modal-content .next-step {
    width: 100%;
    height: 60px;
    line-height: 40px;
}

#quote-modal .modal-content .cf7mls-btns {
    display: none;
}

#quote-modal .modal-content form p:has(.btn-success) {
    margin-bottom: 0;
}

#quote-modal .modal-content input, #quote-modal .modal-content select {
    padding: 20px 24px;
}

#quote-modal .modal-content .vehicle-info {
    display: none;
}

#quote-modal .modal-content .back-to-step-button {
    color: white;
}

#quote-modal .modal-content form .back-to-step {
    position: fixed;
    color: #ffffff;
    top: 24px;
    left: 24px;
}

#quote-modal .modal-content form .back-to-step span {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;

    position: relative;
    padding-left: 28px;
}

#quote-modal .modal-content form .back-to-step p {
    margin: 0;
}

#quote-modal .modal-content form .back-to-step span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/arrow-narrow-left.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
}

#quote-modal .modal-content .step-3 .success-block {
    min-height: 400px;
    display: flex;
    align-items: center;
    color: white;
    flex-direction: column;
    text-align: center;
    justify-content: space-evenly;
}
/* End modal */

/* Mobile */
@media (max-width: 767px) {
    html, body {
        overflow-x: hidden;
    }

    .top-section {
        padding-bottom: 0 !important;
    }

    .top-section .top-section-content {
        padding-top: 60px;
        background-position: center;
        box-shadow: none;

    }

    .top-section .top-section-content h1 {
        font-size: 40px;
        line-height: 110.00000000000001%;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-section .top-section-content .top-section-subtitle {
        font-size: 18px;
        line-height: 150%;
        padding: 0 20px 32px;
    }

    .top-section .top-section-form {
        position: relative !important;
        padding: 0 !important;
    }

    .top-section .top-section-form .cf7-step-container form .back-to-step {
        position: relative;
        background: linear-gradient(86.48deg, #15A665 0%, #05F87A 100%);
        top: 0;
        left: 0;
        height: 48px;
        border-radius: 24px;
        padding: 10px 15px;
        margin-bottom: 16px;
    }

    .top-section .top-section-content .step-1 .row,
    .top-section .top-section-content .step-2 .row,
    .top-section .top-section-content .step-3 .row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0 !important;
    }

    .top-section .top-section-content h3 {
        font-size: 16px;
    }

    .top-section .top-section-content .btn-close {
        background: url("../images/icons/close.svg") no-repeat center;
        opacity: 1;
        padding: 0;
        margin-top: 8px;
    }

    .top-section .top-section-content .modal-header {
        border-bottom: none;
    }

    .top-section .top-section-content .step-1,
    .top-section .top-section-content .step-2,
    .top-section .top-section-content .step-3 {
        background: transparent;
    }

    .top-section .top-section-content .step-1 .col-md-3,
    .top-section .top-section-content .step-2 .col-md-3,
    .top-section .top-section-content .step-3 .col-md-3
    {
        width: 100% !important;
    }

    .top-section .top-section-content .step-1 .row.pt-3,
    .top-section .top-section-content .step-2 .row.pt-3,
    .top-section .top-section-content .step-3 .row.pt-3
    {
        padding-top: 0 !important;
    }

    .top-section .top-section-content .next-step {
        width: 100%;
        height: 60px;
        line-height: 40px;
    }

    .top-section .top-section-content .cf7mls-btns {
        display: none;
    }

    .top-section .top-section-content form p:has(.btn-success) {
        margin-bottom: 0;
    }

    .top-section .top-section-content input, .top-section .top-section-content select {
        padding: 20px 24px;
    }

    .top-section .top-section-content .vehicle-info {
        display: none;
    }

    select {
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        background: #FFFFFF !important;

        padding-top: 8px !important;
        padding-bottom: 12px !important;
    }

    select:focus {
        outline: none !important;
    }

    .top-section .top-section-content .back-to-step-button {
        color: white;
    }

    .top-section .top-section-content form .back-to-step {
        position: fixed;
        color: #ffffff;
        top: 24px;
        left: 24px;
    }

    .top-section .top-section-content form .back-to-step span {
        padding-left: 0 !important;
        margin-bottom: 16px !important;
        color: #000;
        text-transform: none !important;
    }

    .top-section .top-section-content form .back-to-step p {
        margin: 0;
    }

    .top-section .top-section-content form .back-to-step span::before {
        background-image: none !important;
    }

    .top-section .top-section-content .step-3 .success-block {
        min-height: 400px;
        display: flex;
        align-items: center;
        color: white;
        flex-direction: column;
        text-align: center;
        justify-content: space-evenly;
    }

    .top-section .top-section-form .cf7-step-container form .wpcf7-form-control-wrap,
    .top-section .top-section-form .cf7-step-container form  button.cf7mls_btn {
        margin-bottom: 16px;
    }

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

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

    .why-choose {
        padding-top: 112px !important;
        background-repeat: round;
        padding-bottom: 0 !important;
    }

    .why-choose .why-choose-container {
        width: 100% !important;
        height: auto !important;
        padding-top: 30px;
        background-image: none !important;
    }

    .how-it-works, .our-services {
        padding-top: 50px !important;
        backdrop-filter: none;
    }

    .our-services {
        padding-left: 24px;
        padding-right: 24px;
    }

    .why-choose .why-choose-container .why-choose-block {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .why-choose .why-choose-container .wc-card {
        max-width: 100%;
        height: auto;
    }

    .steps-wrapper .step-circle p {
        font-size: 14px;
    }

    .cta-rolling .cta-truck-wrapper {
        position: absolute;
        top: 20px;
    }

    .cta-rolling .cta-rolling-row {
        margin-top: 100px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .column-rolling {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .cta-rolling .cta-title {
        font-size: 32px;
        color: #000;
        text-transform: uppercase;
        white-space: normal;
        text-align: center;
    }

    .testimonials, .faq-section {
        padding-left: 24px;
        padding-right: 24px;
    }

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

    .cta-rolling.cta-rolling-footer {
        padding-top: 0 !important;
        padding-left: 24px;
        padding-right: 24px;
    }

    .cta-rolling .cta-rolling-footer-row {
        display: flex;
        flex-direction: column-reverse;
    }

    .cta-rolling .cta-rolling-text-title {
        text-align: center;
    }

    .cta-rolling .get-quote.cta-btn {
        width: 100%;
    }

    footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .header-nav {
        top: 75px;
    }

    .header-nav.open {
        padding-left: 24px;
    }

    .header-nav .nav-link {
        text-align: center;
        margin-bottom: 32px;
    }

    header a.phone-header {
        text-align: center;
        height: 60px;
        line-height: 40px;
        border: 1px solid #00c86e;
        border-radius: 24px;
        padding: 10px 15px;
    }

    .header .get-quote {
        text-align: center;
        line-height: 40px;
        height: 60px;
        border-radius: 24px;
        padding: 10px 15px;
    }

    .contact-main-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cta-rolling .stats-card {
        height: 100%;
    }

    .cta-rolling .stats-card .stats-card-title {
        font-size: 24px;
    }

    .about-main-container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-bottom: 0;
        margin-bottom: 40px;
    }

    .about-main-container .about-title, .about-main-container .about-description-block {
        padding-left: 24px;
        padding-right: 24px;
    }

    section.how-it-works .section-sub-title {
        max-width: 100% !important;
    }

    .header-actions {
        height: 50vh;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    html, body {
        overflow-x: hidden;
    }

    .top-section {
        padding-bottom: 0 !important;
    }

    .top-section .top-section-content {
        padding-top: 60px;
        background-position: center;
        box-shadow: none;

    }

    .top-section .top-section-content h1 {
        font-size: 40px;
        line-height: 110.00000000000001%;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-section .top-section-content .top-section-subtitle {
        font-size: 18px;
        line-height: 150%;
        padding: 0 20px 32px;
    }

    .top-section .top-section-form {
        position: relative !important;
        padding: 0 !important;
    }

    .top-section .top-section-form .cf7-step-container form .back-to-step {
        position: relative;
        background: linear-gradient(86.48deg, #15A665 0%, #05F87A 100%);
        top: 0;
        left: 0;
        height: 48px;
        border-radius: 24px;
        padding: 10px 15px;
        margin-bottom: 16px;
    }

    .top-section .top-section-content .step-1 .row,
    .top-section .top-section-content .step-2 .row,
    .top-section .top-section-content .step-3 .row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0 !important;
    }

    .top-section .top-section-content h3 {
        font-size: 16px;
    }

    .top-section .top-section-content .btn-close {
        background: url("../images/icons/close.svg") no-repeat center;
        opacity: 1;
        padding: 0;
        margin-top: 8px;
    }

    .top-section .top-section-content .modal-header {
        border-bottom: none;
    }

    .top-section .top-section-content .step-1,
    .top-section .top-section-content .step-2,
    .top-section .top-section-content .step-3 {
        background: transparent;
    }

    .top-section .top-section-content .step-1 .col-md-3,
    .top-section .top-section-content .step-2 .col-md-3,
    .top-section .top-section-content .step-3 .col-md-3
    {
        width: 100% !important;
    }

    .top-section .top-section-content .step-1 .row.pt-3,
    .top-section .top-section-content .step-2 .row.pt-3,
    .top-section .top-section-content .step-3 .row.pt-3
    {
        padding-top: 0 !important;
    }

    .top-section .top-section-content .next-step {
        width: 100%;
        height: 60px;
        line-height: 40px;
    }

    .top-section .top-section-content .cf7mls-btns {
        display: none;
    }

    .top-section .top-section-content form p:has(.btn-success) {
        margin-bottom: 0;
    }

    .top-section .top-section-content input, .top-section .top-section-content select {
        padding: 20px 24px;
    }

    .top-section .top-section-content .vehicle-info {
        display: none;
    }

    select {
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        background: #FFFFFF !important;

        padding-top: 8px !important;
        padding-bottom: 12px !important;
    }

    select:focus {
        outline: none !important;
    }

    .top-section .top-section-content .back-to-step-button {
        color: white;
    }

    .top-section .top-section-content form .back-to-step {
        position: fixed;
        color: #ffffff;
        top: 24px;
        left: 24px;
    }

    .top-section .top-section-content form .back-to-step span {
        padding-left: 0 !important;
        margin-bottom: 16px !important;
        color: #000;
        text-transform: none !important;
    }

    .top-section .top-section-content form .back-to-step p {
        margin: 0;
    }

    .top-section .top-section-content form .back-to-step span::before {
        background-image: none !important;
    }

    .top-section .top-section-content .step-3 .success-block {
        min-height: 400px;
        display: flex;
        align-items: center;
        color: white;
        flex-direction: column;
        text-align: center;
        justify-content: space-evenly;
    }

    .top-section .top-section-form .cf7-step-container form .wpcf7-form-control-wrap,
    .top-section .top-section-form .cf7-step-container form  button.cf7mls_btn {
        margin-bottom: 16px;
    }

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

    section .section-title,
    .our-services section .section-sub-title h2,
    .why-choose section .section-sub-title h2
    {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-choose {
        padding-top: 112px !important;
        background-repeat: round;
        padding-bottom: 0 !important;
    }

    .why-choose .why-choose-container {
        width: 100% !important;
        height: auto !important;
        padding-top: 30px;
        background-image: none !important;
    }

    .how-it-works, .our-services {
        padding-top: 50px !important;
        backdrop-filter: none;
    }

    .our-services {
        padding-left: 24px;
        padding-right: 24px;
    }

    .why-choose .why-choose-container .why-choose-block {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .why-choose .why-choose-container .wc-card {
        max-width: 100%;
        height: auto;
    }

    .steps-wrapper .step-circle p {
        font-size: 14px;
    }

    .cta-rolling .cta-truck-wrapper {
        position: absolute;
        top: 20px;
    }

    .cta-rolling .cta-rolling-row {
        margin-top: 100px;
    }

    .column-rolling {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .column-rolling {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cta-rolling .cta-title {
        font-size: 32px;
        color: #000;
        text-transform: uppercase;
        white-space: normal;
        text-align: center;
    }

    .testimonials, .faq-section {
        padding-left: 24px;
        padding-right: 24px;
    }

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

    .cta-rolling.cta-rolling-footer {
        padding-top: 0 !important;
        padding-left: 24px;
        padding-right: 24px;
    }

    .cta-rolling .cta-rolling-footer-row {
        display: flex;
        flex-direction: column-reverse;
    }

    .cta-rolling .cta-rolling-text-title {
        text-align: center;
    }

    .cta-rolling .get-quote.cta-btn {
        width: 100%;
    }

    footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .header-nav {
        top: 75px;
    }

    .header-nav.open {
        padding-left: 24px;
    }

    .header-nav .nav-link {
        text-align: center;
        margin-bottom: 32px;
    }

    header a.phone-header {
        text-align: center;
        height: 60px;
        line-height: 40px;
        border: 1px solid #00c86e;
        border-radius: 24px;
        padding: 10px 15px;
    }

    .header .get-quote {
        text-align: center;
        line-height: 40px;
        height: 60px;
        border-radius: 24px;
        padding: 10px 15px;
    }

    .contact-main-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cta-rolling .stats-card {
        height: 100%;
    }

    .cta-rolling .stats-card .stats-card-title {
        font-size: 24px;
    }

    section.how-it-works .section-sub-title {
        max-width: 100% !important;
    }

    .header-actions {
        height: 50vh;
    }
}

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {}

/* Desktop */
@media (min-width: 1200px) {}

