/* =========================================================== 
                        hero-section  
============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to right,
      rgba(15, 20, 26, 0.90) 0%,
      rgba(15, 20, 26, 0.82) 32%,
      rgba(15, 20, 26, 0.52) 58%,
      rgba(15, 20, 26, 0.22) 82%,
      rgba(15, 20, 26, 0.12) 100%),
    linear-gradient(to top,
      rgba(10, 14, 18, 0.4) 0%,
      transparent 60%);
  pointer-events: none;
  /* z-index: 1; */
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
}

.hero-title {
  color: var(--body-text-dark-bg);
  margin-bottom: 24px;
}

.hero-description {
  color: var(--body-text-dark-bg);
  max-width: 829px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hero Banner Responsive */
@media (max-width: 992px) {
  .hero-section {
    min-height: 560px;
  }

  .hero-bg-img {
    object-position: 65% center;
  }

  .hero-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 520px;
  }

  .hero-bg-img {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(15, 20, 26, 0.85) 0%,
        rgba(15, 20, 26, 0.92) 100%);
  }

  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}

/* =========================================================== 
                        MAIN SECTION  
============================================================ */
.info-section {
  width: 100%;
  background-color: #ffff;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

.info-content {
  width: 100%;
}

.info-content h2 {
  margin: 0 0 54px;
}

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

.info-image {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  border-radius: 18px;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.info-image:hover img {
  transform: scale(1.015);
}

.number-list {
  width: 100%;
}

.number-item {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--border-color);
  padding: 18px 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--body-text);
}

.number-item:first-child {
  border-top: 0;
}

.number {
  font-size: 12px;
  line-height: 1;
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 0.78px;
}

.number-text {
  display: block;
}

.number-list--two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  /* grid-auto-flow: column;
  grid-template-rows: repeat(5, auto); */
}

.info-description {
  max-width: 100%;
  margin-top: 54px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--body-text);
}

.info-grid--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.info-grid--reverse .info-image {
  order: 1;
}

.info-grid--reverse .info-content {
  order: 2;
}

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

.section-beige {
  background: var(--body-text-dark-bg);
}

.circle-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #AE835212;
  color: var(--secondary-color);
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.78px;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eee9df;
}

.icon-circle svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}


.icon-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--body-text);
  font-weight: 500;
}

/* ======= DARK SECTION=========== */

.info-section--dark {
  background: var(--primary-color);
}

.info-section--dark .info-content h2 {
  color: var(--button-text-light);
}

.info-section--dark .info-content h2 span {
  color: var(--secondary-color);
}


/* ===============DARK CHECK LIST============== */

.check-list {
  width: 100%;
}

.check-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.check-list .number-item {
  color: var(--button-text-light);
}

@media (max-width: 900px) {

  .info-grid,
  .info-grid--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .info-content h2 {
    margin-bottom: 23px;
  }

  .number-list--two-columns {
    column-gap: 18px;
  }
}

@media (max-width: 767px) {

  .info-grid,
  .info-grid--reverse {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .info-content,
  .info-image {
    width: 100%;
  }

  .info-grid--reverse .info-image,
  .info-grid--reverse .info-content {
    order: unset;
  }

  .info-content h2 {
    margin-bottom: 22px;
  }

  .number-list--two-columns {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .info-description {
    max-width: 100%;
    margin-top: 22px;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
  }

  .icon-circle svg {
    width: 22px;
    height: 22px;
  }
}

/* =========================================================== 
                        CTA SECTION  
============================================================ */

.axle-cta {
  background: var(--color-white);
  text-align: center;
}

.axle-cta.bg-dark {
  background: var(--primary-color);
}

.axle-cta__content {
  max-width: 740px;
  margin: 0 auto;
}

.full-width {
  max-width: 997px !important;
}

.axle-cta__eyebrow {
  margin-bottom: 18px;
}

.axle-cta__title {
  margin-bottom: 20px;
}

.axle-cta.bg-dark .axle-cta__title {
  color: var(--body-text-dark-bg);
}

.axle-cta__title span {
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #AE8352;
}

.axle-cta__desc {
  max-width: 650px;
  margin: 0 auto;
}

.axle-cta__desc+.axle-cta__actions {
  margin: 32px auto 0;
}

.axle-cta.bg-dark .axle-cta__desc {
  color: var(--body-text-dark-bg);
}

.axle-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width:767px) {
  .axle-cta__desc {
    margin-bottom: 28px;
  }

  .axle-cta__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 100%;
  }
}

/* ===================================================== 
    Built for Auction Details Section css start 
===================================================== */

.axle-auction-details {
  background: var(--background-color);
}

.axle-auction-details__title {
  margin-bottom: 24px;
}

.axle-auction-details__desc {
  max-width: 1040px;
}

@media (max-width: 767px) {
  .axle-auction-details__title {
    margin-bottom: 16px;
  }
}

/* ===================================================== 
    axle-value-notice
===================================================== */
.axle-value-notice {
  background: var(--background-color);
  text-align: center;
}

.axle-value-notice__title {
  margin-bottom: 54px;
}

.axle-value-notice__card {
  max-width: 808px;
  margin: 0 auto;
  background: #17324D0A;
  border: 1px solid var(--border-color);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: left;
}

.axle-value-notice__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 14px;
  border-right: 1px solid var(--border-color);
}

.axle-value-notice__icon {
  width: 40px;
  height: 40px;
  display: block;
}

@media (max-width: 991px) {
  .axle-value-notice__title {
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .axle-value-notice__title {
    margin-bottom: 20px;
  }

  .axle-value-notice__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }

  .axle-value-notice__icon-wrap {
    padding-right: 0;
    padding-bottom: 12px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    justify-content: flex-start;
  }
}

/* ==========================================================================
   SECTION 3: AUTHORITY (START)
   ========================================================================== */
.review-container {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.review-container svg {
  margin: 0 auto 48px;
}

@media (max-width: 767px) {
  .review-container svg {
    margin: 0 auto 20px;
  }
}

/* ==========================================================================
   SECTION 3: AUTHORITY (START)
   ========================================================================== */
.authority-section {
  width: 100%;
  background-color: var(--background-color);
}

.authority-section.bg-white {
  background-color: var(--color-white);
}

.authority-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.authority-title {
  margin-bottom: 48px;
}

.authority-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

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

.authority-card {
  background-color: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px 31px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.authority-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border-color: #d1d5db;
}

.authority-card-num {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: block;
  letter-spacing: -0.01em;
  line-height: 40px;
}

.authority-card-num img {
  height: 40px;
  width: 40px;
}

.authority-card-text {
  color: #081521;
}

.authority-action-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.axlelane-form .wpforms-form {
  display: flex;
  flex-direction: column;
}

#axle-transport-tabs {
  width: 100%;
  margin: 0 0 22px 0;
  order: 1;
}

#axle-transport-tabs .axle-tabs-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  margin-bottom: 12px;
  color: var(--body-text-dark-bg);
}

#axle-transport-tabs .axle-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid #FFFFFF1F;
  border-radius: 12px;
  background: #FFFFFF05;
}

#axle-transport-tabs .axle-tab {
  appearance: none;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #fff !important;
  padding: 11px 24px !important;
  margin: 0 !important;
  border-radius: 9px !important;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
}

#axle-transport-tabs .axle-tab-active {
  background: #AE8352 !important;
  color: #fff !important;
}

#axle-transport-tabs .axle-tab:hover:not(.axle-tab-active) {
  background: rgba(255, 255, 255, .08) !important;
}

.quote-request-form .axlelane-form .wpforms-page-indicator.progress {
  order: 2;
}

.quote-request-form .wpforms-field-container {
  order: 3;
}

/* Authority Responsive */
@media (max-width: 1080px) {
  .authority-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .authority-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 720px) {

  .authority-cards-grid,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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

  .authority-title {
    margin-bottom: 28px;
  }

  .authority-cards-grid,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .authority-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .authority-card-num {
    font-size: 1.15rem;
    margin-bottom: 14px;
  }

  .authority-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}


/* ==========================================================================
   faq-section
   ========================================================================== */

.faq-section {
  background-color: var(--primary-color);
  width: 100%;
  box-sizing: border-box;
}

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

.faq-section .faq-header {
  margin-bottom: 80px;
}

.faq-section .faq-header h2 {
  margin: 0;
  font-size: 42px;
  font-family: 'manrope', sans-serif;
  color: var(--color-white);
}

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

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

/* Question Button Header */
.faq-section .faq-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;
  text-align: left;
  font-weight: 700;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-section .faq-question-btn:hover {
  color: #ffffff;
}

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

/* SVG Icon Wrapper */
.faq-section .faq-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;
}

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

.faq-section .faq-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 */
.faq-section .svg-plus {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

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

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

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

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

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

.faq-section .faq-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);
}

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

/* Responsive Adjustments */
@media (max-width: 767px) {
  .faq-section .faq-header {
    margin-bottom: 28px;
  }

  .faq-section .faq-question-btn {
    padding: 18px 0;
    font-size: 16px;
  }

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

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

  .faq-section .faq-header h2 {
    font-size: 36px;
  }
}

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

.articles-section.bg-white {
  background-color: var(--color-white);
}

/* Section Header */
.articles-section .articles-header {
  text-align: center;
  margin-bottom: 54px;
}

/* Articles 3-Column Grid */
.articles-section .articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 36px;
  row-gap: 52px;
}

/* Article Card */
.articles-section .article-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

/* Image Wrapper with Rounded Corners & Hover Zoom */
.articles-section .article-image-wrap {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  border-radius: 18px;
  overflow: hidden;
  background-color: #e5e1d8;
  position: relative;
}

.articles-section .article-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.articles-section .article-card:hover .article-image-wrap img {
  transform: scale(1.04);
}

/* Card Content */
.articles-section .article-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 18px;
  flex-grow: 1;
}

/* Date Tag */
.articles-section .article-date {
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Article Title */
.articles-section .article-title {
  margin: 0 0 12px;
  transition: color 0.25s ease;
}

.articles-section .article-card:hover .article-title {
  color: var(--articles-btn-bg);
}


.articles-section .article-btn svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.articles-section .article-card:hover .article-btn svg {
  transform: translateX(2px);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .articles-section .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
    row-gap: 44px;
  }

  .articles-section .articles-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .articles-section .articles-header {
    margin-bottom: 10px;
  }

  .articles-section .articles-header h2 {
    font-size: 24px;
  }

  .articles-section .articles-grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .articles-section .article-title {
    font-size: 17px;
  }
}


/* ==========================================================================
   equipment-section
   ========================================================================== */
.equipment-section {
  --eq-bg: #f6f4ee;
  --eq-title-color: #0c141c;
  --eq-text-color: #0c141c;
  --eq-hover-color: #ae8352;

  background-color: var(--eq-bg);
  padding: 90px 24px 110px;
  width: 100%;
  box-sizing: border-box;
}

.equipment-section *,
.equipment-section *::before,
.equipment-section *::after {
  box-sizing: border-box;
}

.equipment-section .equipment-container {
  max-width: 1620px;
  margin: 0 auto;
  width: 100%;
}

/* Section Header */
.equipment-section .equipment-header {
  text-align: center;
  margin-bottom: 60px;
}

.equipment-section .equipment-header h2 {
  margin: 0;

  color: var(--eq-title-color);
  line-height: 100%;
  letter-spacing: 0%;
}

/* Equipment 6-Column Grid */
.equipment-section .equipment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

/* Equipment Item Card */
.equipment-section .equipment-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Image Box with Rounded Corners */
.equipment-section .equipment-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
}

.equipment-section .equipment-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.equipment-section .equipment-card:hover .equipment-image-wrap img {
  transform: scale(1.05);
}

/* Item Label Title */
.equipment-section .equipment-label {
  margin: 24px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--button-text-dark);
  line-height: 40px;
  letter-spacing: 0%;
  transition: color 0.2s ease;
}

.equipment-section .equipment-card:hover .equipment-label {
  color: var(--eq-hover-color);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .equipment-section .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .equipment-section {
    padding: 60px 16px 80px;
  }

  .equipment-section .equipment-header {
    margin-bottom: 40px;
  }

  .equipment-section .equipment-header h2 {
    font-size: 32px;
  }

  .equipment-section .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .equipment-section .equipment-image-wrap {
    border-radius: 16px;
  }

  .equipment-section .equipment-label {
    font-size: 18px;
    line-height: 28px;
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .equipment-section .equipment-header h2 {
    font-size: 26px;
  }

  .equipment-section .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .equipment-section .equipment-label {
    font-size: 15px;
    line-height: 22px;
  }
}

/* ====================================
axle-lane-form 
======================================*/
.axlelane-form-section {
  background-color: #0C2133;
  overflow: hidden;
}

.axlelane-form-section.axlelane-form-title h2 {
  color: var(--secondary-color);
  margin: 0 auto 40px;
  max-width: 690px;
}

.quote-tags-group {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  gap: 34px;
  text-transform: uppercase;
  justify-content: center;
  flex-wrap: wrap;
}

li.quote-tag {
  display: flex;
  gap: 10px;
  align-items: center;
}

.get-quote-form .axlelane-form,
.commercial-accounts-form .axlelane-form,
.quote-request-form .axlelane-form {
  max-width: 880px !important;
  width: 100% !important;
  background: #132C43 !important;
  padding: 52px 36px 36px !important;
  box-shadow: 0px 20px 50px 0px #040C1433 !important;
  border: 1px solid #FFFFFF4D !important;
  border-radius: 18px !important;
  margin: 30px auto 0 !important;
}

.transport-quote-form .axlelane-form,
.contact-us-form .axlelane-form {
  max-width: 795px !important;
  width: 100% !important;
  margin: auto !important;
}

.transport-quote-form .axlelane-form .wpforms-submit-container,
.contact-us-form .axlelane-form .wpforms-submit-container,
.commercial-accounts-form .axlelane-form .wpforms-submit-container {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 30px !important;
}

.get-quote-form .axlelane-form,
.quote-request-form {
  background-color: var(--primary-color) !important;
}

.axlelane-form-section .axlelane-form .wpforms-page-indicator.progress {
  display: flex !important;
}

.axlelane-form-section .axlelane-form .wpforms-page-indicator.progress span {
  font-weight: 700;
  font-size: 12px !important;
  line-height: 20px !important;
  letter-spacing: 0.78px !important;
  text-transform: uppercase !important;
  color: var(--body-text-dark-bg);

}

.axlelane-form-section .axlelane-form .wpforms-page-indicator.progress .wpforms-page-indicator-steps {
  order: 1;
}

.axlelane-form-section .axlelane-form .wpforms-page-indicator.progress .wpforms-page-indicator-page-title-sep {
  order: 2;
}

.axlelane-form-section .axlelane-form .wpforms-page-indicator.progress .wpforms-page-indicator-page-title {
  order: 3;
}

.axlelane-form-section .axlelane-form .wpforms-page-indicator-page-progress {
  background-color: var(--secondary-color) !important;
}

.axlelane-form-section .axlelane-form .wpforms-page-indicator.progress .wpforms-page-indicator-page-progress-wrap {
  order: 4;
  background-color: #FFFFFF1F !important;
  height: 2px !important;
  border-radius: 2px !important;
  overflow: hidden;
  margin: auto 0 auto auto !important;
  max-width: 552px !important;
}

.get-quote-form .wpforms-page-3 .wpforms-field[data-field-id="47"],
.get-quote-form .wpforms-page-3 .wpforms-field.wpforms-field-gdpr-checkbox,
.get-quote-form .wpforms-page-1 .wpforms-field.wpforms-field-date-time,
.get-quote-form .wpforms-page-2 .wpforms-field[data-field-id="38"],
.get-quote-form .wpforms-page-2 .wpforms-field[data-field-id="39"] {
  grid-column: 1 / -1 !important;
}

.get-quote-form .wpforms-page-3 .wpforms-field.wpforms-field-gdpr-checkbox .choice-1{
  gap: 10px !important;
}
.get-quote-form .wpforms-page-3 .wpforms-field.wpforms-field-gdpr-checkbox input {
  width: fit-content !important;
  padding: 0 !important;
  height: fit-content !important;
}
.get-quote-form .wpforms-page-3 .wpforms-field.wpforms-field-gdpr-checkbox input::before {
  background-color: transparent !important;
  border: 2px solid #D9D9D9;
}
.get-quote-form .wpforms-page-3 .wpforms-field.wpforms-field-gdpr-checkbox input::after {
  border-left: 4px solid #D9D9D9;
  border-bottom: 4px solid #D9D9D9;
}

.wpforms-field-container:not(:has(.wpforms-page)) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.wpforms-field-container .wpforms-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  margin-top: 26px !important;
}

.wpforms-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}

.axlelane-form .wpforms-field-label,
.axlelane-form label {
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  letter-spacing: 0% !important;
  color: #F0F4F6B8 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.axlelane-form .wpforms-field-label::before,
.axlelane-form label::before {
  display: none !important;
}

.axlelane-form input,
.axlelane-form select {
  height: 54px !important;
  background: #FFFFFF0D !important;
  border: 1px solid #FFFFFF26 !important;
  padding: 16px !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 26px !important;
  letter-spacing: 0% !important;
  width: 100% !important;
  max-width: 100% !important;
  color: #F4F1EA !important;
}
.axlelane-form select {
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url(/wp-content/uploads/2026/09/arrow.svg) !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px !important;
  padding-right: 35px !important;
}
.axlelane-form .wpforms-datepicker {
  background-image: url(/wp-content/uploads/2026/09/calendar.svg) !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 15px !important;
  padding-right: 35px !important;
}

.axlelane-form input:focus,
.axlelane-form select:focus {
  box-shadow: var(--secondary-color) !important;
  border-color: var(--secondary-color);
}

.axlelane-form option {
  background: #0c2133 !important;
  border: none;
  color: var(--body-text-dark-bg) !important;
}

.axlelane-form input::placeholder {
  color: #9EADB8 !important;
}

.axlelane-form-section.commercial-accounts-form .axlelane-form .wpforms-submit-container,
.wpforms-page .wpforms-field:last-child {
  grid-column: 1 / -1;
  padding: 24px 0 0 !important;
  border-top: 1px dashed #FFFFFF26 !important;
}

.wpforms-page .wpforms-field:last-child .wpforms-page-button-group {
  margin: 0 !important;
}

.wpforms-page .wpforms-clear {
  display: flex;
  justify-content: end;
}

.wpforms-clear::after,
.wpforms-clear::before {
  position: absolute;
  content: "" !important;
  width: 100%;
  height: 100%;
  border-top: 1px dashed #FFFFFF26 !important;
  top: -16px;
  display: none !important;
}

.wpforms-page-button-group {
  margin-top: 9px !important;
}

.quote-tags-group {
  margin-top: 30px !important;
}

.wpforms-container {
  margin: 0 !important;
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field:first-child {
  grid-column: 1 / -1;
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field legend {
  display: none;
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field .wpforms-image-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 20px;
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field .wpforms-image-choices .wpforms-field-label-inline {
  width: 100%;
  position: relative;
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field .wpforms-image-choices-item br{
  display: none;
}
.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field .wpforms-image-choices .wpforms-image-choices-image {
    left: 16px;
    position: absolute;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
    display: inline-flex;
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field .wpforms-image-choices .wpforms-image-choices-label {
    position: absolute;
    top: 50%;
    left: 63px;
    transform: translateY(-50%);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--body-text-dark-bg);
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field .wpforms-image-choices .wpforms-field-label-inline input {
  margin: 0 !important;
  border-radius: 10px;
  cursor: pointer;
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field .wpforms-image-choices .wpforms-field-label-inline input[type=radio]:after {
  right: 16px !important;
  left: auto;
  top: auto;
  background: none;
  border-radius: 50%;
  border: 2px solid #FFFFFF26;
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field .wpforms-image-choices .wpforms-field-label-inline input[type=radio]:before {
  right: 16px !important;
  left: auto;
  top: auto;
  background: none;
  border: 2px solid #FFFFFF26;
  box-shadow: none;
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field .wpforms-image-choices .wpforms-field-label-inline input[type=radio]:checked:after {
  background: var(--secondary-color);
  box-shadow: none;
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field .wpforms-uploader .dz-message {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 20px;
}

.get-quote-form .wpforms-field-layout-columns.wpforms-field-layout-preset-33-33-33 {
  display: flex;
  gap: 8px;
  grid-auto-columns: 1fr 1fr 1fr;
}

.get-quote-form .wpforms-field-layout-columns.wpforms-field-layout-preset-33-33-33 .wpforms-layout-column-33 .wpforms-field {
  padding: 0 !important;
  border-top: 0 !important;
}

.get-quote-form .axlelane-form .wpforms-page-2 .wpforms-field .wpforms-uploader {
  padding: 10px;
  height: 54px;
}

#axle-form-tabs {
  width: 100%;
  margin-bottom: 18px;
}

#axle-form-tabs .axle-form-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid #FFFFFF1F;
  border-radius: 12px;
  background: #FFFFFF05;
}

#axle-form-tabs .axle-form-tab {
  appearance: none;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #fff !important;
  padding: 11px 24px !important;
  margin: 0 !important;
  border-radius: 9px !important;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
}

#axle-form-tabs .axle-form-tab.active {
  background: #AE8352 !important;
  color: #ffffff !important;
}

#axle-form-tabs .axle-form-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #ffffff !important;
}

@media(max-width: 991px) {

  .wpforms-field-container:not(:has(.wpforms-page)),
  .wpforms-field-container .wpforms-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .commercial-accounts-form .axlelane-form,
  .quote-request-form .axlelane-form {
    padding: 30px !important;
  }

  .axlelane-form input,
  .axlelane-form select {
    height: 50px !important;
    background: #FFFFFF0D !important;
    border: 1px solid #FFFFFF26 !important;
    padding: 16px;
    font-weight: 500;
    font-size: 16px !important;
    line-height: 26px !important;
    letter-spacing: 0%;
    width: 100% !important;
    max-width: 100%;
    color: #F4F1EA !important;
  }

  .axlelane-form-section .axlelane-form .wpforms-page-indicator.progress .wpforms-page-indicator-page-progress-wrap {
    max-width: 400px !important;
  }
}

@media (max-width: 767px) {
  .axlelane-form select {
    padding: 6px 16px !important;
  }

  .quote-tags-group {
    gap: 10px;
  }

  li.quote-tag {
    font-size: 10px;
  }

  .axlelane-form-section .axlelane-form .wpforms-page-indicator.progress .wpforms-page-indicator-page-progress-wrap {
    max-width: 34px !important;
  }
}