@charset "UTF-8";
html {
  --primary-color: #fe0009;
  --primary-600-color: #d60008;
  --secondary-color: #050b20;
  --secondary-050-color: #eceef3;
  --light-color: #f9f9f9;
  --white-color: #ffffff;
  --text-color: #33373d;
  --dark-color: #0b0f19;
  --muted-color: #7a8894;
  --line-color: #e5eaed;
  --accent-1-color: #ffa319;
  --accent-2-color: #8a1fff;
  --info-color: #007bff;
  --success-color: #28a745;
  --primary-rgb: 254,
  0,
  9;
  --secondary-rgb: 5,
  11,
  32;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.primary-text {
  color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.bg-primary-600 {
  background-color: var(--primary-600-color) !important;
}

.primary-600-text {
  color: var(--primary-600-color) !important;
}

.border-primary-600 {
  border-color: var(--primary-600-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.secondary-text {
  color: var(--secondary-color) !important;
}

.border-secondary {
  border-color: var(--secondary-color) !important;
}

.bg-secondary-050 {
  background-color: var(--secondary-050-color) !important;
}

.secondary-050-text {
  color: var(--secondary-050-color) !important;
}

.border-secondary-050 {
  border-color: var(--secondary-050-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.light-text {
  color: var(--light-color) !important;
}

.border-light {
  border-color: var(--light-color) !important;
}

.bg-white {
  background-color: var(--white-color) !important;
}

.white-text {
  color: var(--white-color) !important;
}

.border-white {
  border-color: var(--white-color) !important;
}

.bg-text {
  background-color: var(--text-color) !important;
}

.text-text {
  color: var(--text-color) !important;
}

.border-text {
  border-color: var(--text-color) !important;
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.dark-text {
  color: var(--dark-color) !important;
}

.border-dark {
  border-color: var(--dark-color) !important;
}

.bg-muted {
  background-color: var(--muted-color) !important;
}

.muted-text {
  color: var(--muted-color) !important;
}

.border-muted {
  border-color: var(--muted-color) !important;
}

.bg-line {
  background-color: var(--line-color) !important;
}

.line-text {
  color: var(--line-color) !important;
}

.border-line {
  border-color: var(--line-color) !important;
}

.bg-accent-1 {
  background-color: var(--accent-1-color) !important;
}

.accent-1-text {
  color: var(--accent-1-color) !important;
}

.border-accent-1 {
  border-color: var(--accent-1-color) !important;
}

.bg-accent-2 {
  background-color: var(--accent-2-color) !important;
}

.accent-2-text {
  color: var(--accent-2-color) !important;
}

.border-accent-2 {
  border-color: var(--accent-2-color) !important;
}

.bg-info {
  background-color: var(--info-color) !important;
}

.info-text {
  color: var(--info-color) !important;
}

.border-info {
  border-color: var(--info-color) !important;
}

.bg-success {
  background-color: var(--success-color) !important;
}

.success-text {
  color: var(--success-color) !important;
}

.border-success {
  border-color: var(--success-color) !important;
}

:root {
  --shadow: 0 10px 30px rgba(20, 33, 46, .08);
  --shadow-lg: 0 18px 50px rgba(20, 33, 46, .14);
  --radius: 16px;
  --radius-sm: 12px;
  --font: 'Manrope', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--text-color);
  overflow-x: clip;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  text-rendering: optimizeLegibility;
  text-rendering: geometricPrecision;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  touch-action: auto;
  position: relative;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: var(--dark-color);
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.mx-n1 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.mx-n2 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.ms-n3 {
  margin-left: -1rem !important;
}

.me-n3 {
  margin-right: -1rem !important;
}

.mx-n3 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.ms-n4 {
  margin-left: -1.5rem !important;
}

.me-n4 {
  margin-right: -1.5rem !important;
}

.mx-n4 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.ms-n5 {
  margin-left: -3rem !important;
}

.me-n5 {
  margin-right: -3rem !important;
}

.mx-n5 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.bg-cover {
  background-size: cover !important;
}

.bg-center {
  background-position: center center !important;
}

.search-form .form-select {
  padding: 12px;
}
.search-form .theme-btn {
  height: 48px;
  font-size: 1.1rem;
}

.form-select,
.form-control {
  height: 45px;
  padding: 10px 15px;
  border-radius: 6px;
}
.form-select:focus,
.form-control:focus {
  box-shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  text-decoration: none;
  outline: none;
  border: none;
  color: var(--primary-color);
}
a:hover, a:active, a:focus {
  color: var(--secondary-color);
  text-decoration: none;
}
@media (max-width: 767px) {
  a:focus {
    outline: 1px dashed var(--secondary-color);
  }
}

.text-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.12rem;
  transition: 0.3s ease-in;
}
.text-underline:hover {
  color: var(--secondary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.15rem;
}
.text-underline-hover:hover {
  color: var(--secondary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.12rem;
}

.primary-color {
  color: var(--primary-color) !important;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.ulStyle {
  position: relative;
}

.ulStyle li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.ulStyle li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 9px;
  height: 14px;
  border: solid var(--secondary-color);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

button {
  border: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.container-mid {
  position: relative;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.bg-light {
  background: #f8f9fa;
}

.custom-slim-scroll {
  scrollbar-color: rgba(0, 0, 0, 0.2) rgba(255, 255, 255, 0.1019607843);
  scrollbar-width: thin;
}

.custom-slim-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

.custom-slim-scroll::-webkit-scrollbar {
  width: 2px;
  height: 5px;
  background-color: transparent;
}

.custom-slim-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #eee;
}

/* ---------------------------- Theme Heading CSS Start --------------------------- */
.main-heading {
  margin-bottom: 40px;
}
.main-heading h2 {
  font-size: 30px;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .main-heading h2 {
    font-size: 24px;
  }
}

.rv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.rv-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.rv-lead {
  font-size: 1.05rem;
  color: var(--muted-color);
  max-width: 620px;
}

/* ---------------------------- Theme Heading CSS End --------------------------- */
/* ------------------------------------- Page Banner CSS Start  ---------------------------------*/
.page-banner-section {
  padding-top: 75px !important;
  padding: 75px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  text-align: left;
}
.page-banner-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  display: block;
  z-index: -1;
}
.page-banner-section h1 {
  font-size: 32px;
  color: var(--light-color);
}
@media (max-width: 767px) {
  .page-banner-section h1 {
    font-size: 20px;
  }
}
.page-banner-section ul {
  font-size: 0;
  padding: 0;
  margin: 0;
}
.page-banner-section ul li {
  color: var(--light-color);
  text-transform: capitalize;
  font-size: 16px;
}
.page-banner-section ul li a {
  color: var(--light-color);
  font-size: 16px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  text-transform: capitalize;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .page-banner-section ul li a {
    font-size: 13px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-banner-section ul li a {
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .page-banner-section ul li a {
    font-size: 15px;
  }
}
.page-banner-section ul li:hover a {
  color: var(--light-color);
  opacity: 0.85;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.top-banner {
  position: relative;
  padding: 50px 0;
  background-color: #f9f9f9;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
@media (max-width: 767px) {
  .top-banner {
    padding: 35px 0;
  }
}
.top-banner h1 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .top-banner h1 {
    font-size: 1.5rem;
  }
}
.top-banner__content {
  position: relative;
  max-width: 600px;
}

html {
  overflow-x: clip;
}

body.rv {
  font-family: var(--font);
  color: var(--text-color);
  background: var(--white-color);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* ------------------------------------- Page Banner CSS End  ---------------------------------*/
@media (min-width: 992px) {
  .border-lg-bottom {
    border-bottom: 1px solid #dee2e6;
  }
}
/* =====================================================================
   RV Header — .site-header structure, no mega menu
   Inline nav bar on desktop, Bootstrap offcanvas drawer on mobile
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
}
.site-header.scrolled .header-topbar {
  max-height: 0;
  opacity: 0;
}
.site-header .navbar-toggler {
  border: 0;
  padding: 6px;
  background: none;
  box-shadow: none;
}
.site-header .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.site-header .navbar-toggler .icon-bar {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--secondary-color);
  border-radius: 2px;
}
.site-header .navbar-toggler .icon-bar + .icon-bar {
  margin-top: 6px;
}
.site-header .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  flex: none;
}

/* Top utility bar */
.header-topbar {
  background: var(--secondary-color);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  overflow: hidden;
  max-height: 60px;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.header-topbar a {
  color: #fff;
  opacity: 0.9;
  font-weight: 600;
}
.header-topbar a:hover {
  color: #fff;
  opacity: 1;
}
.header-topbar .topbar-inner {
  height: 42px;
}

.topbar-left {
  gap: 24px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar-item svg {
  width: 15px;
  height: 15px;
  opacity: 0.85;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 991px) {
  .topbar-right {
    display: none;
  }
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.topbar-social a {
  display: inline-grid;
  place-items: center;
  opacity: 0.85;
}
.topbar-social a:hover {
  opacity: 1;
}
.topbar-social img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .topbar-mail {
    display: none;
  }
}
@media (max-width: 575px) {
  .topbar-hours {
    display: none;
  }
}
/* Main nav row */
.header-top {
  border-bottom: 1px solid var(--line-color);
}
@media (max-width: 991px) {
  .header-top .py-md-3 {
    min-height: 62px;
  }
}

/* Logo mark & text */
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex: none;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-600-color));
  display: grid;
  place-items: center;
}
.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text b {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -0.02em;
}
.brand-text small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-top: 4px;
}

/* Logo — their logo art is white, so recolor it dark to show on the light header/drawer */
.brand-plate {
  display: inline-flex;
  align-items: center;
}
.brand-plate img {
  height: 40px;
  width: auto;
  display: block;
}

/* Nav list */
.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
}
.nav-menu .nav-item {
  flex: none;
  position: relative;
}
.nav-menu .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary-color);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-menu .nav-link svg {
  transition: transform 0.18s ease;
}
.nav-menu .nav-link:hover {
  background: var(--secondary-050-color);
  color: var(--secondary-color);
}
.nav-menu .nav-item.show > .nav-link {
  background: var(--secondary-050-color);
  color: var(--secondary-color);
}
.nav-menu .nav-item.show > .nav-link svg {
  transform: rotate(180deg);
}
.nav-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line-color);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.nav-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 14.5px;
}
.nav-menu .dropdown-item:hover, .nav-menu .dropdown-item:focus {
  background: var(--light-color);
  color: var(--secondary-color);
}
.nav-menu .dropdown-item span {
  color: var(--muted-color);
}

.nav-drawer-foot {
  display: none;
}

/* ===== One menu via Bootstrap offcanvas ===== */
/* Desktop (>=992): render the offcanvas inline as a centered nav bar */
@media (min-width: 992px) {
  .main-navigation.offcanvas {
    position: static;
    transform: none;
    visibility: visible;
    flex-grow: 1;
    width: auto;
    height: auto;
    max-width: none;
    z-index: auto;
    background: transparent;
    box-shadow: none;
    border: 0;
    overflow: visible;
  }
  .main-navigation .offcanvas-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: visible;
  }
  .nav-menu .nav-item.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
  }
  .nav-menu .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
  .nav-menu .nav-item.dropdown:hover > .nav-link {
    background: var(--secondary-050-color);
    color: var(--secondary-color);
  }
  .nav-menu .nav-item.dropdown:hover > .nav-link svg {
    transform: rotate(180deg);
  }
}
/* Compact desktop nav (992–1199): tighten so the call button doesn't clip */
@media (min-width: 992px) and (max-width: 1199px) {
  .nav-menu {
    gap: 0;
  }
  .nav-menu .nav-link {
    padding: 8px 8px;
    font-size: 14px;
  }
  .header-actions.gap-3 {
    gap: 8px !important;
  }
  .search-trigger {
    width: 40px;
    height: 40px;
  }
  .header-actions .call-btn {
    padding: 10px 14px;
    font-size: 14px;
  }
}
/* Mobile (<992): drawer content — Bootstrap handles show/hide, backdrop & Esc */
@media (max-width: 991px) {
  .main-navigation .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
  }
  .nav-menu .nav-item {
    position: static;
  }
  .nav-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    padding: 14px 22px;
    font-size: 16px;
    border-bottom: 1px solid var(--line-color);
  }
  .nav-menu .nav-link:hover {
    background: var(--light-color);
  }
  .nav-menu .nav-item.dropdown {
    display: flex;
    flex-wrap: wrap;
  }
  .nav-menu .nav-item.dropdown > .nav-link {
    flex: 1 1 auto;
  }
  .nav-menu .nav-item.dropdown > .nav-link svg {
    display: none;
  }
  .nav-menu .dropdown-menu {
    flex-basis: 100%;
    position: static;
    float: none;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
    background: var(--light-color);
  }
  .nav-menu .dropdown-menu.collapse:not(.show) {
    display: none;
  }
  .nav-menu .dropdown-menu.collapsing, .nav-menu .dropdown-menu.collapse.show {
    display: block;
  }
  .nav-menu .dropdown-item {
    padding: 12px 22px 12px 38px;
    border-bottom: 1px solid var(--line-color);
  }
  .nav-sub-toggle {
    flex: 0 0 56px;
    display: grid;
    place-items: center;
    background: none;
    border: 0;
    border-left: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    color: var(--secondary-color);
    cursor: pointer;
  }
  .nav-sub-toggle svg {
    transition: transform 0.2s ease;
  }
  .nav-sub-toggle[aria-expanded=true] svg {
    transform: rotate(180deg);
  }
  .nav-drawer-foot {
    display: block;
    padding: 20px 22px;
  }
  .nav-drawer-foot .theme-btn {
    width: 100%;
  }
  .nav-drawer-foot .social-icons {
    padding: 20px 0 0;
  }
}
/* Right-side actions */
.header-actions {
  flex: none;
}

.search-trigger {
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: #eef0f3;
  color: var(--secondary-color);
  cursor: pointer;
  transition: 0.18s ease;
}
.search-trigger:hover {
  background: #fff;
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 0 5px rgba(254, 0, 9, 0.1);
}

/* Social icons (mobile drawer) */
.social-icons {
  padding: 22px 0;
  margin: 0;
}
.social-icons .social-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--light-color);
}
.social-icons .social-icon:hover {
  background: var(--secondary-050-color);
}
.social-icons img {
  width: 20px;
  height: 20px;
}

/* =====================================================================
   RV Footer — .site-footer design (curved arc + menu columns + copyright)
   ===================================================================== */
.site-footer {
  position: relative;
  background-color: var(--dark-color);
}
.site-footer .pre-footer {
  padding: 50px 0;
}
.site-footer .footer-menu-container .footer-menu-title {
  color: var(--white-color);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 15px;
}
.site-footer .footer-menu-container .footer-menu-contact {
  margin-bottom: 15px;
}
.site-footer .footer-menu-container .footer-menu-contact .footer-menu-contact-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--light-color);
  margin-bottom: 2px;
}
.site-footer .footer-menu-container .footer-menu-contact a {
  color: rgba(255, 255, 255, 0.7);
}
.site-footer .footer-menu-container .footer-menu-contact .footer-menu-contact-value {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer .footer-menu-container ul li {
  margin-bottom: 13px;
}
.site-footer .footer-menu-container ul li a {
  position: relative;
  display: block;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  transition: color 0.18s ease;
}
.site-footer .footer-menu-container a:hover {
  color: var(--primary-color);
}
.site-footer .footer-menu-container .footer-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.site-footer .footer-menu-container .footer-hours .footer-hours-head {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 8px;
}
.site-footer .footer-menu-container .footer-hours ul li {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}
.site-footer .social-icons {
  padding: 0;
  margin: 0;
}
.site-footer .social-icons .social-icon {
  background: transparent;
  width: 30px;
  height: 30px;
}
.site-footer .social-icons .icon-box {
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: background 0.18s ease;
}
.site-footer .social-icons a:hover .icon-box {
  background: var(--primary-color);
}
.site-footer .social-icons img {
  width: 30px;
  height: 30px;
}
.site-footer .footer-logo img {
  height: 46px;
  width: auto;
  display: block;
}
.site-footer .copyright-text .copyright-text-container {
  display: flex;
  align-items: center;
  border-top: 1px solid #3a4d64;
}
@media (max-width: 767px) {
  .site-footer .copyright-text .copyright-text-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-footer .copyright-text .copyright-text-content {
  border-left: 1px solid #3a4d64;
  padding: 40px 0 40px 20px;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .site-footer .copyright-text .copyright-text-content {
    border-left: 0;
    padding: 15px 0;
    margin-left: 0;
  }
}
.site-footer .copyright-text .copyright-text-content p {
  margin-bottom: 0;
  color: var(--light-color);
  font-size: 15px;
  line-height: 1.25;
}
.site-footer .copyright-text .copyright-text-content p a {
  color: var(--light-color);
}
.site-footer .copyright-text .copyright-text-content p a:hover {
  color: var(--primary-color);
}
@media (max-width: 767px) {
  .site-footer .copyright-text .footer-logo {
    margin-top: 20px;
  }
}
.site-footer .rv-logo-text b {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.site-footer .rv-logo-text span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-top: 4px;
}

/* Brand logo lockup (shared shape) */
.rv-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.rv-logo-mark {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-600-color));
  display: grid;
  place-items: center;
}
.rv-logo-mark svg {
  width: 30px;
  height: 30px;
}

.rv-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* =====================================================================
   Theme button — .theme-btn base + primary / secondary / white / outline
   ===================================================================== */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  padding: 12px 22px;
  border-radius: 10px;
  text-transform: capitalize;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: visible;
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 8px 20px rgba(254, 0, 9, 0.26);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.theme-btn:hover, .theme-btn:focus, .theme-btn:active {
  color: #fff;
  transform: translateY(-2px);
}
.theme-btn svg {
  width: 18px;
  height: 18px;
}
.theme-btn.primary-btn {
  background: var(--primary-color);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(254, 0, 9, 0.26);
}
.theme-btn.primary-btn:hover {
  background: var(--primary-600-color);
  box-shadow: 0 12px 26px rgba(254, 0, 9, 0.32);
}
.theme-btn.secondary-btn {
  background: var(--secondary-color);
  color: #fff;
  border-color: transparent;
  box-shadow: none;
}
.theme-btn.secondary-btn:hover {
  background: var(--dark-color);
  box-shadow: var(--shadow);
}
.theme-btn.white-btn {
  background: #fff;
  color: var(--secondary-color);
  border: 1px solid var(--line-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.theme-btn.white-btn:hover {
  background: #fff;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.theme-btn.outline-btn {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: var(--white-color);
}
.theme-btn.outline-btn:hover {
  background: var(--secondary-050-color);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.theme-btn-lg {
  padding: 16px 30px;
  min-width: 250px;
}

.theme-btn-wide {
  min-width: 200px;
}

/**********************************************
    Blog Grid Component - Reusable News Card
**********************************************/
.news-card {
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-card:hover {
  transform: translateY(-8px);
}
.news-card:hover .news-image img {
  transform: scale(1.08);
}
.news-card:hover .news-title a {
  text-decoration: underline;
}
.news-card .news-image {
  position: relative;
  overflow: hidden;
}
.news-card .news-image .news-cat-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.5px;
}
.news-card .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-card .news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.news-card .news-body .news-cat-text {
  font-size: 12px;
  color: var(--primary-color);
  margin-top: 4px;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-card .news-body .news-title {
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 600;
}
.news-card .news-body .news-title a {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.inventoryCar_card_col {
  margin-bottom: 24px;
}

.inventoryCar_card {
  position: relative;
  height: 100%;
}
.inventoryCar_card .inventoryCar_card_link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  color: var(--dark-color);
  font-size: 0;
  line-height: 2;
}
.inventoryCar_card .inventoryCar_card__inner {
  display: block;
  background: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid #e9ecef;
  height: 100%;
}
.inventoryCar_card:hover .inventoryCar_card__inner {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--primary-color);
}
.inventoryCar_card:hover .inventoryCar_card__inner .inventoryCar_card_image img {
  transform: scale(1.05);
}
.inventoryCar_card:hover .inventoryCar_card__inner .inventoryCar_card_title h2 {
  color: var(--primary-color);
}
.inventoryCar_card .inventoryCar_card_image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f5f5f5;
}
@media (max-width: 767px) {
  .inventoryCar_card .inventoryCar_card_image {
    height: 200px;
  }
}
.inventoryCar_card .inventoryCar_card_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.inventoryCar_card .inventoryCar_card_content {
  padding: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .inventoryCar_card .inventoryCar_card_content {
    padding: 15px;
  }
}
.inventoryCar_card .inventoryCar_card_wishlist {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: var(--white-color);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  margin-left: 5px;
  border: none;
}
.inventoryCar_card .inventoryCar_card_wishlist svg {
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.inventoryCar_card .inventoryCar_card_wishlist:hover {
  background: #ddd;
  transform: scale(1.1);
}
.inventoryCar_card .inventoryCar_card_wishlist:hover svg {
  color: var(--primary-color);
}
.inventoryCar_card .inventoryCar_card_wishlist:active, .inventoryCar_card .inventoryCar_card_wishlist.active {
  background: var(--primary-color);
}
.inventoryCar_card .inventoryCar_card_wishlist:active svg, .inventoryCar_card .inventoryCar_card_wishlist.active svg {
  fill: var(--white-color);
  color: var(--white-color);
}
@media (max-width: 767px) {
  .inventoryCar_card .inventoryCar_card_wishlist svg {
    width: 18px;
    height: 18px;
  }
}
.inventoryCar_card .inventoryCar_card_title {
  min-height: 50px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .inventoryCar_card .inventoryCar_card_title {
    min-height: unset;
  }
}
.inventoryCar_card .inventoryCar_card_title h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.4;
  transition: color 0.3s ease;
  margin: 0;
}
.inventoryCar_card .inventoryCar_card_specs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--text-color);
  white-space: nowrap;
  font-weight: 500;
}
.inventoryCar_card .inventoryCar_card_specs img,
.inventoryCar_card .inventoryCar_card_specs svg {
  width: 14px;
  height: 14px;
  flex: none;
  opacity: 0.7;
}
.inventoryCar_card .inventoryCar_card_price-dealer .inventoryCar_card_price {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 8px;
}
.inventoryCar_card .inventoryCar_card_price-dealer .inventoryCar_card_dealer {
  font-size: 15px;
  text-decoration: underline;
  color: #596169;
  font-weight: 500;
}
@media (max-width: 767px) {
  .inventoryCar_card .inventoryCar_card_price-dealer {
    font-size: 20px;
  }
}
.inventoryCar_card .inventoryCar_card_location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-color);
}
.inventoryCar_card .inventoryCar_card_location img {
  opacity: 0.7;
}
.inventoryCar_card .inventoryCar_card_specs_list {
  font-size: 13px;
}
.inventoryCar_card .inventoryCar_card_specs_list li {
  position: relative;
  display: inline-block;
  font-size: 13px;
  padding: 3px 6px;
  background-color: #f1f1f1;
  border-radius: 6px;
}

.js-slider-navs {
  display: flex;
  position: absolute;
  right: 15px;
  z-index: 5;
  gap: 15px;
  top: 0;
}
.js-slider-navs .slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--white-color);
  border: none;
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.js-slider-navs .slider-btn:hover {
  background: rgb(9.8285714286, 24.5714285714, 76.1714285714);
  color: var(--white-color);
}
.js-slider-navs .slider-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gird-box-container {
  position: relative;
  padding-top: 10px;
}
.gird-box-container ._inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 26px;
  transition: transform 0.4s ease;
}

.box-slider {
  flex: 0 0 auto;
}

/* =====================================================================
   Reusable card slider (custom, no library) — add .js-rv-slider to a
   container whose direct children are the slides. JS builds the viewport,
   track and nav at runtime.
   ===================================================================== */
.rv-slider {
  position: relative;
}
.rv-slider .rv-slider-viewport {
  overflow: hidden;
}
.rv-slider .rv-slider-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.4s ease;
  will-change: transform;
}
.rv-slider .rv-slide {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 10px 12px;
  box-sizing: border-box;
  display: flex;
}
.rv-slider .rv-slide > * {
  width: 100%;
}
.rv-slider .rv-slider-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
}
.rv-slider .rv-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.rv-slider .rv-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line-color);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.rv-slider .rv-slider-dot.is-active {
  width: 26px;
  border-radius: 5px;
  background: var(--primary-color);
}
.rv-slider .rv-slider-arrow {
  position: absolute;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--secondary-color);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(20, 33, 46, 0.18);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}
.rv-slider .rv-slider-arrow:hover {
  background: var(--primary-color);
  box-shadow: 0 10px 22px rgba(254, 0, 9, 0.32);
}
.rv-slider .rv-slider-arrow.prev {
  right: 60px;
}
.rv-slider .rv-slider-arrow.next {
  right: 6px;
}
.rv-slider .rv-slider-arrow.is-disabled {
  background: #fff;
  color: var(--muted-color);
  border: 1px solid var(--line-color);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 767px) {
  .rv-slider .rv-slide {
    padding: 10px 8px;
  }
}

.custom-pagination {
  margin-top: 2rem;
}
.custom-pagination .pagination {
  display: flex;
  gap: 8px;
  border: none;
  padding: 0;
}
.custom-pagination .pagination .page-item .page-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px !important;
  border: 1px solid rgba(11, 15, 25, 0.1);
  color: var(--dark-color);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.custom-pagination .pagination .page-item .page-link:hover {
  background: var(--dark-color);
  color: #fff;
  border-color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.custom-pagination .pagination .page-item .page-link:focus {
  box-shadow: 0 0 0 3px rgba(254, 0, 9, 0.2);
  background: rgb(255, 255, 255);
  outline: none;
}
.custom-pagination .pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 8px 20px -5px rgba(254, 0, 9, 0.4);
}
.custom-pagination .pagination .page-item.active .page-link:hover {
  background: var(--dark-color);
  border-color: var(--dark-color);
}
.custom-pagination .pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.5);
  transform: none;
}
.custom-pagination .pagination .page-item:first-child .page-link, .custom-pagination .pagination .page-item:last-child .page-link {
  font-size: 1.2rem;
  line-height: 1;
}

/* =====================================================================
   RV Home page (index) — base helpers + all sections
   ===================================================================== */
/* ---------- Base ---------- */
.rv-section {
  padding: 60px 0;
}

.rv-section-sm {
  padding: 48px 0;
}

/* ---------- Hero ---------- */
.rv-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 620px;
  background-color: #0b0f19;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%), url("../images/main-banner.webp");
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: cover, cover;
}
.rv-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}
.rv-hero h1 .hl {
  color: var(--primary-color);
}
.rv-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 560px;
}

.rv-hero-inner {
  padding: 84px 0 190px;
  max-width: 720px;
}
@media (max-width: 767px) {
  .rv-hero-inner {
    padding: 54px 0 130px;
  }
}

.rv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.rv-hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ee7a8;
  box-shadow: 0 0 0 4px rgba(110, 231, 168, 0.25);
}

.rv-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero search bar */
.rv-hero-search {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  margin-bottom: 0;
}

.rv-search-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 14px;
  align-items: end;
}
.rv-search-card .theme-btn {
  height: 56px;
  min-width: 210px;
  padding-inline: 40px;
  font-size: 16px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .rv-search-card {
    grid-template-columns: 1fr 1fr;
  }
  .rv-search-card .theme-btn {
    min-width: 0;
    width: 100%;
    padding-inline: 20px;
  }
}
@media (max-width: 575px) {
  .rv-search-card {
    grid-template-columns: 1fr;
  }
}

.rv-cond-tabs {
  display: flex;
  gap: 0;
  border: 0;
  margin: 0 0 -1px 8px;
  position: relative;
  z-index: 2;
}
.rv-cond-tabs .nav-item {
  flex: none;
  margin: 0;
}
.rv-cond-tabs .nav-link {
  border: 0;
  border-radius: 14px 14px 0 0;
  padding: 17px 52px;
  min-width: 150px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  background: var(--secondary-color);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.rv-cond-tabs .nav-link:hover {
  color: #fff;
}
.rv-cond-tabs .nav-link.active {
  background: #fff;
  color: var(--secondary-color);
  border-top: 3px solid var(--primary-color);
  padding-top: 14px;
}
@media (max-width: 575px) {
  .rv-cond-tabs {
    margin-left: 0;
    flex-wrap: nowrap;
  }
  .rv-cond-tabs .nav-item {
    flex: 1 1 0;
    min-width: 0;
  }
  .rv-cond-tabs .nav-link {
    width: 100%;
    min-width: 0;
    padding: 13px 8px;
    font-size: 15px;
    border-radius: 12px 12px 0 0;
  }
  .rv-cond-tabs .nav-link.active {
    padding-top: 10px;
  }
}

.rv-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}
.rv-field select,
.rv-field input {
  width: 100%;
  height: 56px;
  border: 1px solid var(--line-color);
  border-radius: 10px;
  padding: 0 18px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  background: #f1f2f4;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%2314212e' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.rv-field select:focus,
.rv-field input:focus {
  outline: none;
  border-color: var(--secondary-color);
  background-color: #fff;
}
.rv-field input {
  background-image: none;
}

/* ---------- Trust strip — floating stat card ---------- */
.rv-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
@media (max-width: 767px) {
  .rv-trust {
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
  }
}
@media (max-width: 420px) {
  .rv-trust {
    grid-template-columns: 1fr;
  }
}

.rv-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 26px 18px;
  position: relative;
  transition: background 0.2s ease;
}
.rv-trust-item:hover {
  background: var(--light-color);
}
.rv-trust-item + .rv-trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: var(--line-color);
}
.rv-trust-item > svg {
  width: 52px;
  height: 52px;
  flex: none;
  padding: 12px;
  border-radius: 14px;
  background: var(--secondary-050-color);
  color: var(--secondary-color);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.rv-trust-item:hover > svg {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(254, 0, 9, 0.28);
}
.rv-trust-item .rv-trust-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rv-trust-item .rv-trust-label {
  font-size: 13px;
  color: var(--muted-color);
  font-weight: 600;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .rv-trust-item {
    justify-content: flex-start;
    padding: 20px 20px;
  }
  .rv-trust-item:nth-child(odd)::before {
    display: none;
  }
  .rv-trust-item:nth-child(n+3) {
    border-top: 1px solid var(--line-color);
  }
}
@media (max-width: 420px) {
  .rv-trust-item::before {
    display: none;
  }
  .rv-trust-item:nth-child(n+2) {
    border-top: 1px solid var(--line-color);
  }
}

/* ---------- Video ---------- */
.video-section .video-embed {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  background: var(--secondary-color);
}
.video-section .video-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(5, 11, 32, 0.25) 0%, rgba(5, 11, 32, 0.55) 100%);
  transition: background 0.25s ease;
  pointer-events: none;
}
.video-section .video-embed:hover::after {
  background: radial-gradient(circle at center, rgba(5, 11, 32, 0.15) 0%, rgba(5, 11, 32, 0.45) 100%);
}
.video-section .video-embed:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
}
.video-section .video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.video-section .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(254, 0, 9, 0.5);
  animation: video-pulse 2.2s infinite;
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-section .video-play svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}
@media (max-width: 575px) {
  .video-section .video-play {
    width: 66px;
    height: 66px;
  }
  .video-section .video-play svg {
    width: 26px;
    height: 26px;
  }
}
.video-section .video-embed:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-section .video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@keyframes video-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(254, 0, 9, 0.5);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(254, 0, 9, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(254, 0, 9, 0);
  }
}
/* ---------- Welcome / about ---------- */
.welcome-section p {
  margin: 0 0 16px;
}
.welcome-section .welcome-media {
  position: relative;
  padding-bottom: 10px;
}
.welcome-section .welcome-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}
.welcome-section .welcome-media .welcome-badge {
  position: absolute;
  left: -22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  background: var(--secondary-color);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 575px) {
  .welcome-section .welcome-media .welcome-badge {
    left: 12px;
    bottom: 12px;
    padding: 12px 16px;
  }
}
.welcome-section .welcome-media .welcome-badge-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.welcome-section .welcome-media .welcome-badge-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  opacity: 0.95;
}
.welcome-section p a {
  color: var(--primary-color);
  font-weight: 600;
}
.welcome-section p a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.welcome-section .welcome-cta {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 991px) {
  .welcome-section .welcome-media {
    margin-bottom: 20px;
  }
}

/* ---------- Quick links / CTA grid ---------- */
.rv-cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 220px;
  padding: 30px 30px 28px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background: var(--secondary-color) center/cover no-repeat;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rv-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  transition: background 0.25s ease;
}
.rv-cta-card .rv-cta-ic {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease;
}
.rv-cta-card .rv-cta-ic svg {
  width: 26px;
  height: 26px;
}
.rv-cta-card h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0;
}
.rv-cta-card .rv-cta-accent {
  position: relative;
  z-index: 1;
  display: block;
  width: 46px;
  height: 3px;
  margin: 8px 0 5px;
  border-radius: 2px;
  background: var(--primary-color);
  transition: width 0.25s ease;
}
.rv-cta-card .rv-cta-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 15px;
}
.rv-cta-card .rv-cta-link svg {
  transition: transform 0.2s ease;
}
.rv-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.rv-cta-card:hover::before {
  background: linear-gradient(180deg, rgba(5, 11, 32, 0.3) 0%, rgba(254, 0, 9, 0.35) 50%, rgba(5, 11, 32, 0.9) 100%);
}
.rv-cta-card:hover .rv-cta-ic {
  background: var(--primary-color);
}
.rv-cta-card:hover .rv-cta-accent {
  width: 68px;
}
.rv-cta-card:hover .rv-cta-link {
  color: #fff;
}
.rv-cta-card:hover .rv-cta-link svg {
  transform: translateX(4px);
}

/* ---------- Next step band (single background image + floating card) ---------- */
.rv-nextstep {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 60px 0;
  background: var(--secondary-color) center/cover no-repeat;
}
@media (max-width: 767px) {
  .rv-nextstep {
    min-height: 460px;
    padding: 40px 0;
  }
}
.rv-nextstep .rv-nextstep-card {
  max-width: 500px;
  padding: 44px 40px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 767px) {
  .rv-nextstep .rv-nextstep-card {
    max-width: none;
    padding: 30px 26px;
  }
}
.rv-nextstep .rv-nextstep-card .rv-eyebrow {
  margin-bottom: 18px;
}
.rv-nextstep .rv-nextstep-card .theme-btn {
  margin-top: 6px;
}
.rv-nextstep .rv-nextstep-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--secondary-color);
  margin: 0 0 16px;
}
.rv-nextstep .rv-nextstep-text {
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 16px;
}
.rv-nextstep .rv-nextstep-list {
  display: grid;
  gap: 11px;
  margin: 0 0 20px;
}
.rv-nextstep .rv-nextstep-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
}
.rv-nextstep .rv-nextstep-list li::before {
  content: "✓";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.rv-nextstep .rv-nextstep-note {
  font-size: 13px;
  font-style: italic;
  color: var(--muted-color);
  margin: 0 0 22px;
}

/* ---------- Reusable photo placeholder ---------- */
.rv-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #dfeae7 0%, #cfe0da 100%);
  display: grid;
  place-items: center;
}
.rv-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='72' viewBox='0 0 120 72' fill='none' stroke='%23050b20' stroke-opacity='0.28' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 46h84a10 10 0 0 0 10-10V22a8 8 0 0 0-8-8H30L14 26H10a4 4 0 0 0-4 4z'/%3E%3Ccircle cx='34' cy='52' r='8'/%3E%3Ccircle cx='80' cy='52' r='8'/%3E%3Cpath d='M6 46v6h8m28 0h30m8 0h14v-6M46 14v16'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
}
.rv-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---------- Shop by Type ---------- */
.rv-type-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-color);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.rv-type-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.rv-type-ic {
  height: 140px;
  display: grid;
  place-items: center;
  background: var(--light-color);
  border-bottom: 1px solid var(--line-color);
}
.rv-type-ic:hover {
  background: #fcf6ef;
}

.rv-type-body {
  padding: 16px 18px 18px;
}
.rv-type-body h3 {
  font-size: 1.05rem;
  margin-bottom: 3px;
}
.rv-type-body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted-color);
  font-weight: 600;
}
.rv-type-body .go {
  color: var(--primary-color);
}

/* ---------- Inventory listing cards ---------- */
.rv-card {
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.rv-card-media {
  position: relative;
}
.rv-card-media .rv-photo {
  height: 210px;
}

.rv-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.rv-badge.newly {
  background: var(--secondary-color);
}
.rv-badge.sale {
  background: var(--primary-color);
}

.rv-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rv-card-category {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rv-card-title {
  font-size: 1.12rem;
  margin: 4px 0 12px;
  min-height: 40px;
}
.rv-card-title a {
  color: var(--secondary-color);
}
.rv-card-title a:hover {
  color: var(--secondary-color);
}

.rv-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin-bottom: 14px;
}

.rv-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-color);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-color);
}
.rv-spec svg {
  width: 15px;
  height: 15px;
  color: var(--secondary-color);
}

.rv-card-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rv-card-foot .theme-btn {
  padding: 11px 18px;
}

.rv-price .was {
  font-size: 13px;
  color: var(--muted-color);
  text-decoration: line-through;
}
.rv-price .now {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary-color);
}
.rv-price .mo {
  display: block;
  font-size: 12px;
  color: var(--muted-color);
  font-weight: 600;
}

/* Shop by name brand — logo grid (Bootstrap columns) */
.rv-brand-logo {
  display: grid;
  place-items: center;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.rv-brand-logo img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.rv-brand-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--secondary-050-color);
}

/* ---------- Reviews ---------- */
.rv-reviews .main-heading {
  margin-bottom: 44px;
}
.rv-reviews .rv-eyebrow {
  justify-content: center;
}

.rv-review-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.rv-review-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}
.rv-review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.rv-review-card:hover::after {
  transform: scaleY(1);
}
.rv-review-card p {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}
.rv-review-card.is-expanded p {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.rv-readmore {
  margin-top: 10px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.15s ease;
}
.rv-readmore:hover {
  text-decoration: underline;
}

.rv-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.rv-google {
  width: 22px;
  height: 22px;
  flex: none;
}

.rv-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.rv-stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent-1-color);
}

.rv-review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rv-review-user b {
  color: var(--secondary-color);
  display: block;
  font-size: 15px;
  line-height: 1.2;
}
.rv-review-user span {
  font-size: 13px;
  color: var(--muted-color);
}

.rv-avatar {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 0 0 3px var(--secondary-050-color);
}

/* ---------- Shop by budget + FAQ split ---------- */
.budget-faq-section .rv-budget-grid {
  display: grid;
  gap: 14px;
}
.budget-faq-section .rv-budget-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line-color);
  box-shadow: 0 1px 2px rgba(5, 11, 32, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.budget-faq-section .rv-budget-card .rv-budget-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--secondary-050-color);
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -1px;
  transition: background 0.2s ease, color 0.2s ease;
}
.budget-faq-section .rv-budget-card .rv-budget-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.budget-faq-section .rv-budget-card .rv-budget-range {
  font-weight: 800;
  font-size: 17px;
  color: var(--secondary-color);
}
.budget-faq-section .rv-budget-card .rv-budget-sub {
  font-size: 13.5px;
  color: var(--muted-color);
  margin-top: 2px;
}
.budget-faq-section .rv-budget-card > svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--muted-color);
  transition: transform 0.2s ease, color 0.2s ease;
}
.budget-faq-section .rv-budget-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 14px 26px rgba(5, 11, 32, 0.1);
}
.budget-faq-section .rv-budget-card:hover .rv-budget-icon {
  background: var(--primary-color);
  color: #fff;
}
.budget-faq-section .rv-budget-card:hover > svg {
  color: var(--primary-color);
  transform: translateX(4px);
}
.budget-faq-section .rv-faq .accordion-item {
  border: 1px solid var(--line-color);
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
}
.budget-faq-section .rv-faq .accordion-header {
  margin: 0;
}
.budget-faq-section .rv-faq .accordion-button {
  padding: 18px 20px;
  font-family: inherit;
  font-size: 16px;
  color: var(--secondary-color);
  background: #f9f9f9;
  box-shadow: none;
}
.budget-faq-section .rv-faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.budget-faq-section .rv-faq .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: var(--light-color);
  box-shadow: none;
}
.budget-faq-section .rv-faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fe0009' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}
.budget-faq-section .rv-faq .accordion-button::after {
  width: 18px;
  height: 18px;
  background-size: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23050b20' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}
.budget-faq-section .rv-faq .accordion-body {
  padding: 0 20px 20px;
  color: var(--muted-color);
  font-size: 15px;
  line-height: 1.65;
}
@media (max-width: 991px) {
  .budget-faq-section .col-lg-7 {
    margin-top: 8px;
  }
}

/* ---------- News / insights ---------- */
.news-section .news-cat-text {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-color);
}
.news-section .news-title a {
  color: var(--secondary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.1em;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.18s ease, color 0.18s ease;
}
.news-section .news-title a:hover {
  color: var(--primary-color);
  text-decoration-color: currentColor;
}

/* Featured (large) card */
.featured-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.featured-card .news-image {
  flex-shrink: 0;
}
.featured-card .news-body {
  padding: 20px 0;
}
.featured-card .news-body .news-title {
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .featured-card .news-body .news-title {
    font-size: 18px;
  }
}

.mini-card {
  display: flex;
  flex-direction: row;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 575px) {
  .mini-card {
    flex-direction: column;
    height: auto;
  }
}
.mini-card .news-image {
  max-width: 35%;
  height: 100%;
  flex-shrink: 0;
  border-radius: 5px;
}
@media (max-width: 575px) {
  .mini-card .news-image {
    max-width: 100%;
  }
}
.mini-card .news-body {
  padding: 0px 20px;
  flex: 1;
}
@media (max-width: 575px) {
  .mini-card .news-body {
    padding: 20px 0 0;
  }
}
.mini-card .news-body .news-title {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Search modal ---------- */
.rv-search-modal .modal-content {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.rv-search-modal .modal-header {
  border: 0;
  padding: 24px 26px 4px;
}
.rv-search-modal .modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary-color);
}
.rv-search-modal .modal-body {
  padding: 10px 26px 28px;
}
.rv-search-modal .theme-btn {
  height: 54px;
  font-size: 16px;
}

.rv-modal-input {
  width: 100%;
  height: 54px;
  border: 1.5px solid var(--line-color);
  border-radius: 12px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
}
.rv-modal-input:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.rv-modal-trending {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-top: 18px;
}
.rv-modal-trending a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--secondary-color);
  background: var(--secondary-050-color);
  padding: 5px 12px;
  border-radius: 100px;
}
.rv-modal-trending a:hover {
  background: var(--primary-color);
  color: #fff;
}

.rv-modal-trending-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-color);
}

/* ---------- Scroll to top ---------- */
.rv-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--secondary-color);
  color: #fff;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  display: grid;
  place-items: center;
}
.rv-top.show {
  opacity: 1;
  visibility: visible;
}
.rv-top svg {
  width: 22px;
  height: 22px;
}

.inventory-top-bar .breadcrumb .breadcrumb-item {
  font-weight: 600;
}
.inventory-top-bar .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: inherit;
  font-size: 15px;
}
.inventory-top-bar .breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-color) !important;
}
.inventory-top-bar h1 {
  font-size: 30px;
  line-height: 1.2;
}

.carListings {
  padding-bottom: 70px;
}
.carListings .view-options .list-sort-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .carListings .view-options .list-sort-filter {
    margin-right: 0;
  }
}
.carListings .view-options .list-sort-filter label {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: 0;
}
.carListings .view-options .list-sort-filter .form-select {
  height: 40px;
  font-size: 14px;
  border-color: #eee;
  border-radius: 3px;
  min-width: 180px;
}
.carListings .view-options .list-sort-filter .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}
.carListings .view-options .switch-view-icon {
  background: #f8f9fa;
  border: 1px solid #eee;
  padding: 4px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 5px;
}
.carListings .view-options .switch-view-icon .btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background: transparent;
  position: relative;
}
.carListings .view-options .switch-view-icon .btn img {
  opacity: 0.5;
  transition: all 0.3s ease;
  filter: grayscale(1);
  width: 16px;
  height: 16px;
}
.carListings .view-options .switch-view-icon .btn:hover {
  background: rgba(0, 0, 0, 0.03);
}
.carListings .view-options .switch-view-icon .btn:hover img {
  opacity: 0.8;
}
.carListings .view-options .switch-view-icon .btn.active {
  background: var(--white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.carListings .view-options .switch-view-icon .btn.active img {
  opacity: 1;
  filter: none;
}
.carListings .view-options .switch-view-icon .btn:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: #e0e0e0;
  opacity: 0.5;
}
.carListings .view-options .switch-view-icon .btn.active::after, .carListings .view-options .switch-view-icon .btn.active + .carListings .view-options .switch-view-icon .btn::after {
  opacity: 0;
}
.carListings .srp-search-container {
  position: sticky;
  top: 0;
  z-index: 9999;
}
.carListings .srp-search-container .srp-search-pill {
  background-color: var(--white-color) !important;
  border-radius: 10px;
  border: 1px solid #aaa !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.carListings .srp-search-container .srp-search-pill:focus-within {
  background-color: var(--white-color) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}
.carListings .srp-search-container .srp-search-pill:focus-within .search-icon-prefix {
  color: var(--primary-color);
  opacity: 1;
}
.carListings .srp-search-container .srp-search-pill .search-icon-prefix {
  transition: all 0.3s ease;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carListings .srp-search-container .srp-search-pill .form-control {
  background: transparent;
  font-weight: 500;
  font-size: 17px;
  color: var(--secondary-color);
  height: 60px;
}
.carListings .srp-search-container .srp-search-pill .form-control::-moz-placeholder {
  color: #495057;
  font-weight: 400;
  opacity: 1;
}
.carListings .srp-search-container .srp-search-pill .form-control::placeholder {
  color: #495057;
  font-weight: 400;
  opacity: 1;
}
.carListings .srp-search-container .srp-search-pill .search-action-wrap {
  display: flex;
  align-items: center;
}
.carListings .srp-search-container .srp-search-pill .search-btn-pill {
  width: 48px;
  height: 48px;
  background: var(--white-color);
  border: 1px solid #aaa;
  border-radius: 10px;
  color: var(--secondary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.carListings .srp-search-container .srp-search-pill .search-btn-pill svg {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}
.carListings .srp-search-container .srp-search-pill .search-btn-pill:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(254, 0, 9, 0.2);
  transform: scale(1.05);
}
.carListings .srp-search-container .srp-search-pill .search-btn-pill:hover svg {
  opacity: 1;
}
@media (max-width: 767px) {
  .carListings .srp-search-container .srp-search-pill {
    border-radius: 10px;
  }
  .carListings .srp-search-container .srp-search-pill .ps-4 {
    padding-left: 1.2rem !important;
  }
  .carListings .srp-search-container .srp-search-pill .form-control {
    font-size: 15px;
    height: 54px;
  }
  .carListings .srp-search-container .srp-search-pill .search-btn-pill {
    width: 42px;
    height: 42px;
  }
}
.carListings .listingFilter-sidebar {
  position: sticky;
  top: 135px;
}
@media (max-width: 991px) {
  .carListings .listingFilter-sidebar {
    position: relative;
    top: 0;
  }
}
.carListings .listingFilter-sidebar .listingFilter {
  height: calc(100vh - 155px);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.carListings .listingFilter-sidebar .listingFilter:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .carListings .listingFilter-sidebar .listingFilter:hover {
    box-shadow: none;
  }
}
@media (max-width: 991px) {
  .carListings .listingFilter-sidebar .listingFilter {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    display: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--white-color);
  }
}
@media (max-width: 991px) {
  .carListings .listingFilter-sidebar .listingFilter-inner {
    padding: 20px;
    padding-bottom: 165px;
  }
}
.carListings .listingFilter-sidebar .listingFilter-inner .backBtn {
  display: flex;
  justify-content: flex-end;
}
.carListings .listingFilter-sidebar .listingFilter-inner .backBtn img {
  width: 36px;
  height: 36px;
  padding: 9px;
  border: 1px solid var(--line-color);
  border-radius: 50%;
  background: #f6f7f9;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.2s ease;
}
.carListings .listingFilter-sidebar .listingFilter-inner .backBtn img:hover {
  background: #ececec;
}
.carListings .listingFilter-sidebar .listingFilter-inner .applied_filters .filter-heading {
  font-size: 15px;
  color: var(--secondary-color);
}
.carListings .listingFilter-sidebar .listingFilter-inner .applied_filters .clear-all-filter {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 12px;
  background: none;
}
.carListings .listingFilter-sidebar .listingFilter-inner .applied_filters .clear-all-filter:hover {
  text-decoration: underline !important;
}
.carListings .listingFilter-sidebar .listingFilter-inner .applied_filters .filter-chip {
  background: #f8f9fa;
  border: 1px solid #eee;
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  margin-bottom: 5px;
}
.carListings .listingFilter-sidebar .listingFilter-inner .applied_filters .filter-chip:hover {
  border-color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 2px 8px rgba(254, 0, 9, 0.1);
}
.carListings .listingFilter-sidebar .listingFilter-inner .applied_filters .filter-chip .btn-close-chip {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 8px;
  display: flex;
  align-items: center;
  color: #adb5bd;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.carListings .listingFilter-sidebar .listingFilter-inner .applied_filters .filter-chip .btn-close-chip:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-topbar .filter-topbar-title {
  font-size: 18px;
  color: var(--secondary-color);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-topbar .filter-topbar-title svg {
  color: var(--secondary-color);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-topbar .save-search-btn {
  border: 1px solid var(--line-color);
  background: #fff;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-topbar .save-search-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.carListings .listingFilter-sidebar .listingFilter-inner .stock-search {
  position: relative;
}
.carListings .listingFilter-sidebar .listingFilter-inner .stock-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-color);
  pointer-events: none;
}
.carListings .listingFilter-sidebar .listingFilter-inner .stock-search .form-control {
  height: 46px;
  padding-left: 40px;
  border-radius: 8px;
  border: 1px solid var(--line-color);
  font-size: 14px;
}
.carListings .listingFilter-sidebar .listingFilter-inner .stock-search .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: none;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box {
  border-bottom: 0px solid #eee;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .filter-icon {
  opacity: 0.6;
  transition: all 0.3s ease;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box:hover .filter-icon {
  opacity: 1;
  transform: scale(1.1);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .accordion-button {
  padding: 15px;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: transparent;
  box-shadow: none;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .accordion-button:not(.collapsed) .filter-heading {
  color: var(--primary-color);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .accordion-button::after {
  width: 14px;
  height: 14px;
  background-size: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .filter-heading {
  font-size: 15px;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .color-preview-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
  flex-shrink: 0;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 5px;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-card {
  display: block;
  cursor: pointer;
  text-align: center;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-card input[type=checkbox] {
  display: none;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-card .card-icon {
  height: 32px;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-card .card-icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-card .card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 2px;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-card .card-count {
  font-size: 11px;
  color: #777;
  display: inline;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-card:hover {
  border-color: var(--primary-color);
  background-color: rgba(254, 0, 9, 0.02);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-card:hover .card-icon {
  transform: translateY(-2px);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-card input[type=checkbox]:checked ~ .body-type-card-inner, .carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-card.active {
  border-color: var(--primary-color);
  background: rgba(254, 0, 9, 0.05);
  box-shadow: 0 4px 12px rgba(254, 0, 9, 0.08);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter_box .body-type-card:has(input[type=checkbox]:checked) {
  border-color: var(--primary-color);
  background-color: rgba(254, 0, 9, 0.05);
  box-shadow: 0 4px 12px rgba(254, 0, 9, 0.08);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-search .form-control {
  height: 38px;
  font-size: 13px;
  border-radius: 6px;
  border-color: #eee;
  background-color: #f8f9fa;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-search .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(254, 0, 9, 0.05);
  background-color: var(--white-color);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-select {
  height: 40px;
  font-size: 13px;
  border-color: #eee;
  border-radius: 8px;
  background-color: #f8f9fa;
  font-weight: 500;
  color: var(--dark-color);
  cursor: pointer;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(254, 0, 9, 0.05);
  background-color: var(--white-color);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  display: block;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .under-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .under-price-grid .price-box {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 8px 5px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-color);
  cursor: pointer;
  transition: all 0.2s ease;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .under-price-grid .price-box:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: #fff5f5;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container {
  padding: 10px 5px;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .val-box .lbl {
  font-size: 11px;
  color: #999;
  display: block;
  margin-bottom: 2px;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .val-box .val {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider .slider-track {
  position: absolute;
  height: 4px;
  background: #333;
  border-radius: 2px;
  width: 100%;
  z-index: 1;
  -webkit-mask-image: radial-gradient(circle, black 1px, transparent 1.5px);
  -webkit-mask-size: 6px 100%;
  -webkit-mask-repeat: repeat-x;
  mask-image: radial-gradient(circle, black 1px, transparent 1.5px);
  mask-size: 6px 100%;
  mask-repeat: repeat-x;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider input[type=range] {
  position: absolute;
  width: calc(100% + 24px);
  left: -12px;
  pointer-events: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 6px;
  background: none;
  outline: none;
  margin: 0;
  z-index: 2;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider input[type=range]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border: none;
  background: url("../images/icons/location.svg") no-repeat center bottom;
  background-size: contain;
  cursor: pointer;
  z-index: 3;
  position: relative;
  margin-top: -28px;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider input[type=range]::-moz-range-thumb {
  pointer-events: auto;
  width: 24px;
  height: 24px;
  border: none;
  background: url("../images/icons/location.svg") no-repeat center bottom;
  background-size: contain;
  cursor: pointer;
  z-index: 3;
  transform: translateY(-12px);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider.priceSlider input[type=range]::-webkit-slider-thumb {
  background: url("../images/icons/inventory-icons/price.svg") no-repeat center bottom;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider.priceSlider input[type=range]::-moz-range-thumb {
  background: url("../images/icons/inventory-icons/price.svg") no-repeat center bottom;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider.weightSlider input[type=range]::-webkit-slider-thumb {
  background: url("../images/icons/weight.svg") no-repeat center bottom;
  background-size: contain;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider.weightSlider input[type=range]::-moz-range-thumb {
  background: url("../images/icons/weight.svg") no-repeat center bottom;
  background-size: contain;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider.lengthSlider input[type=range]::-webkit-slider-thumb {
  background: url("../images/icons/length.svg?v=3") no-repeat center bottom;
  background-size: contain;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider.lengthSlider input[type=range]::-moz-range-thumb {
  background: url("../images/icons/length.svg?v=3") no-repeat center bottom;
  background-size: contain;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider.odoSlider input[type=range]::-webkit-slider-thumb {
  background: url("../images/icons/odo.svg") no-repeat center bottom;
  background-size: contain;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .range-slider-container .dual-range-slider.odoSlider input[type=range]::-moz-range-thumb {
  background: url("../images/icons/odo.svg") no-repeat center bottom;
  background-size: contain;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-scroll-list {
  padding-right: 5px;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-scroll-list .form-check {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-scroll-list .form-check .form-check-input {
  margin-left: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  border-color: #ddd;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-scroll-list .form-check .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-scroll-list .form-check .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(254, 0, 9, 0.1);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-scroll-list .form-check .form-check-label {
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  cursor: pointer;
  transition: color 0.2s ease;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-scroll-list .form-check .form-check-label:hover {
  color: var(--primary-color);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-content .filter-scroll-list .form-check .form-check-label .text-muted {
  font-size: 12px;
  font-weight: 500;
  color: #6c757d !important;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-select {
  height: 48px;
  font-size: 14px;
  font-weight: 500;
  border-color: #eee;
  border-radius: 8px;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-select:focus {
  border-color: var(--primary-color);
  background-color: var(--white-color);
  box-shadow: 0 4px 12px rgba(254, 0, 9, 0.08);
}
.carListings .listingFilter-sidebar .listingFilter-inner .filter-select:hover {
  border-color: #ddd;
  background-color: #f1f3f5;
}
.carListings .listingFilter-sidebar .listingFilter-footer {
  position: fixed;
  bottom: 0;
  background: var(--white-color);
  width: 100%;
  z-index: 9999999;
}
.carListings .listingFilter-sidebar .custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.carListings .listingFilter-sidebar .custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.carListings .listingFilter-sidebar .custom-scrollbar::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 10px;
}
.carListings .listingFilter-sidebar .custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}
.carListings .mobile-filters-cta {
  display: flex;
  justify-content: flex-end;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .carListings .mobile-filters-cta {
    justify-content: space-between;
    margin-left: 0;
  }
}
.carListings .alterResult {
  background: #ddd;
  padding: 6px 14px;
  cursor: pointer !important;
}
.carListings .alterResult:hover {
  cursor: pointer !important;
}

.inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card_col {
  width: 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
}
.inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card .inventoryCar_card_link {
  min-height: 220px;
}
@media (max-width: 767px) {
  .inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card .inventoryCar_card_link {
    min-height: auto;
  }
}
.inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card .inventoryCar_card__inner {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card .inventoryCar_card__inner {
    flex-direction: column;
  }
}
.inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card .inventoryCar_card_image {
  width: 300px;
  flex-shrink: 0;
  height: auto;
  min-height: 100%;
}
@media (max-width: 767px) {
  .inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card .inventoryCar_card_image {
    width: 100%;
    height: 200px;
  }
}
.inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card .inventoryCar_card_image img {
  height: auto;
  width: 100%;
  -o-object-fit: unset;
     object-fit: unset;
}
.inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card .inventoryCar_card_content {
  width: calc(100% - 300px);
  justify-content: center;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card .inventoryCar_card_content {
    width: 100%;
  }
}
.inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card .inventoryCar_card_content .inventoryCar_card_title {
  min-height: unset;
}
.inventory-content-wrapper .inventory-grid.list-view .inventoryCar_card .inventoryCar_card_content .inventoryCar_card_title h2 {
  font-size: 20px;
}

@media (min-width: 1200px) {
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
}
.vdp-top-bar .breadcrumb .breadcrumb-item {
  font-weight: 600;
}
.vdp-top-bar .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: inherit;
  font-size: 15px;
}
.vdp-top-bar .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.vdp-top-bar .breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-color) !important;
}
.vdp-top-bar .breadcrumb .breadcrumb-item.active {
  color: var(--dark-color);
}

.vdp-gallery .vdp-main-slider {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #f8f9fa;
}
.vdp-gallery .vdp-main-slider .vdp-main-image-container {
  position: relative;
  overflow: hidden;
}
.vdp-gallery .vdp-main-slider .main-vdp-img {
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.vdp-gallery .vdp-main-slider .main-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-color);
  border: 1px solid var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
}
.vdp-gallery .vdp-main-slider .main-nav:hover:not(.disabled) {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}
.vdp-gallery .vdp-main-slider .main-nav.disabled {
  display: none !important;
}
.vdp-gallery .vdp-main-slider .main-nav.main-prev {
  left: 20px;
}
.vdp-gallery .vdp-main-slider .main-nav.main-next {
  right: 20px;
}
.vdp-gallery .vdp-main-slider .vdp-full-screen-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.vdp-gallery .vdp-main-slider .vdp-full-screen-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(254, 0, 9, 0.2);
}
.vdp-gallery .vdp-main-slider .vdp-full-screen-btn:hover img {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}

.vdp-thumb-slider-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.vdp-thumb-slider-wrap .vdp-thumb-track-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.vdp-thumb-slider-wrap .vdp-thumb-track-container::-webkit-scrollbar {
  display: none;
}
.vdp-thumb-slider-wrap .vdp-thumb-track {
  flex-wrap: nowrap;
}
.vdp-thumb-slider-wrap .vdp-thumb-item {
  flex: 0 0 calc((100% - 40px) / 6);
  /* Show 6 items in desktop */
  min-width: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0.6;
}
.vdp-thumb-slider-wrap .vdp-thumb-item img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.vdp-thumb-slider-wrap .vdp-thumb-item:hover {
  opacity: 1;
}
.vdp-thumb-slider-wrap .vdp-thumb-item.active {
  border-color: var(--primary-color);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(254, 0, 9, 0.15);
}

/* Lightbox Styling */
.vdp-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.vdp-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.vdp-lightbox .lightbox-content {
  max-width: 90%;
  max-height: 70vh;
  margin-bottom: 2rem;
}
.vdp-lightbox .lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: lbZoom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vdp-lightbox .lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white-color);
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 100;
}
.vdp-lightbox .lightbox-close:hover {
  opacity: 1;
}
.vdp-lightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}
.vdp-lightbox .lightbox-nav:hover:not(.disabled) {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.vdp-lightbox .lightbox-nav.disabled {
  display: none !important;
}
.vdp-lightbox .lightbox-nav.lb-prev {
  left: 40px;
}
.vdp-lightbox .lightbox-nav.lb-next {
  right: 40px;
}

.vdp-lightbox-thumbs-wrap {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 10px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  position: relative;
}
.vdp-lightbox-thumbs-wrap::-webkit-scrollbar {
  display: none;
}
.vdp-lightbox-thumbs-wrap .vdp-lightbox-thumbs {
  display: flex;
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  gap: 10px;
  margin: 0 auto;
}
.vdp-lightbox-thumbs-wrap .lb-thumb-item {
  flex: 0 0 100px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.vdp-lightbox-thumbs-wrap .lb-thumb-item img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.vdp-lightbox-thumbs-wrap .lb-thumb-item:hover {
  opacity: 0.8;
}
.vdp-lightbox-thumbs-wrap .lb-thumb-item.active {
  opacity: 1;
  border-color: var(--primary-color);
}

@keyframes lbZoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .vdp-thumb-item {
    flex: 0 0 calc((100% - 30px) / 4) !important;
  }
}
@media (max-width: 767px) {
  .vdp-gallery .vdp-main-slider .main-nav {
    width: 36px;
    height: 36px;
  }
  .vdp-gallery .vdp-main-slider .main-nav svg {
    width: 18px;
    height: 18px;
  }
  .vdp-gallery .vdp-main-slider .main-nav.main-prev {
    left: 10px;
  }
  .vdp-gallery .vdp-main-slider .main-nav.main-next {
    right: 10px;
  }
  .vdp-thumb-slider-wrap {
    padding: 0 30px;
  }
  .vdp-thumb-slider-wrap .vdp-thumb-item {
    flex: 0 0 90px !important;
  }
  .vdp-lightbox .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .vdp-lightbox .lightbox-nav.lb-prev {
    left: 10px;
  }
  .vdp-lightbox .lightbox-nav.lb-next {
    right: 10px;
  }
  .vdp-lightbox .lightbox-nav svg {
    width: 24px;
    height: 24px;
  }
  .vdp-lightbox .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 36px;
  }
  .vdp-lightbox .lightbox-content {
    margin-bottom: 1rem;
  }
  .vdp-lightbox-thumbs-wrap .lb-thumb-item {
    flex: 0 0 60px;
    max-width: 60px;
  }
}
.vdp-sidebar-box {
  border: 2px solid #eee;
  border-radius: 20px;
}
.vdp-sidebar-box.vdp-sticky-box {
  position: sticky;
  top: 20px;
}
.vdp-sidebar-box .vdp-side-title-box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 20px 20px 0 0px;
}
.vdp-sidebar-box .vdp-side-title-box .vdp-side-condition {
  font-weight: 600;
  color: var(--primary-color);
}
.vdp-sidebar-box .vdp-side-title-box .vdp-view-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  background: var(--white-color);
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.vdp-sidebar-box .vdp-side-title-box .vdp-view-count svg {
  stroke: var(--primary-color);
}
.vdp-sidebar-box .vdp-side-title-box h2,
.vdp-sidebar-box .vdp-side-title-box h1 {
  font-size: 24px;
  font-weight: 600;
}
.vdp-sidebar-box .vdp-side-title-box .vdp-side-specs-list li {
  font-size: 14px;
  background: var(--white-color);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
  border: 1px solid #d6d6d6;
  font-weight: 600;
}
.vdp-sidebar-box .vdp-side-price {
  padding: 20px;
}
.vdp-sidebar-box .vdp-side-price .h4 {
  font-weight: 600;
}
.vdp-sidebar-box .vdp-side-price .vdp-side-price-text {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.vdp-sidebar-box .vdp-side-price .vdp-side-actions .vdp-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fde6d1;
  color: var(--dark-color);
  transition: all 0.3s ease;
  cursor: pointer;
}
.vdp-sidebar-box .vdp-side-price .vdp-side-actions .vdp-action-btn:hover {
  background: #f8f9fa;
  border-color: #ddd;
  color: var(--primary-color);
  transform: translateY(-2px);
}
.vdp-sidebar-box .vdp-side-price .vdp-side-actions .vdp-action-btn.wishlist-btn.active svg {
  fill: var(--primary-color);
}
.vdp-sidebar-box .vdp-side-price .vdp-side-actions .vdp-social-share-popup {
  bottom: calc(100% + 10px);
  right: 0;
  background: #fcf6ef;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  border: 1px solid #eee;
  white-space: nowrap;
  transform: translateY(10px);
}
.vdp-sidebar-box .vdp-side-price .vdp-side-actions .vdp-social-share-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 15px;
  border-width: 8px;
  border-style: solid;
  border-color: #fcf6ef transparent transparent transparent;
}
.vdp-sidebar-box .vdp-side-price .vdp-side-actions .share-wrapper:hover .vdp-social-share-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vdp-sidebar-box .vdp-side-price .vdp-side-actions .share-item {
  transition: all 0.2s ease;
  position: relative;
}
.vdp-sidebar-box .vdp-side-price .vdp-side-actions .share-item:hover {
  transform: scale(1.1);
}
.vdp-sidebar-box .vdp-side-price .vdp-side-actions .share-item img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.2s ease;
}
.vdp-sidebar-box .vdp-side-price .vdp-side-actions .share-item .copy-tooltip {
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-color);
  color: var(--white-color);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.vdp-sidebar-box .vdp-side-price .vdp-side-actions .share-item.copied .copy-tooltip {
  opacity: 1;
  visibility: visible;
}

.vdp-dealer-info {
  padding: 24px 20px;
  border-radius: 0 0 20px 20px;
}
.vdp-dealer-info .dealer-label {
  color: #777 !important;
  font-size: 11px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  opacity: 0.8;
}
.vdp-dealer-info .dealer-name {
  color: #1a1a1a !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  margin-top: 4px;
  margin-bottom: 0;
}
.vdp-dealer-info .dealer-stock {
  color: #1a1a1a !important;
  font-weight: 700 !important;
  font-size: 15px !important;
}

.detail-box {
  border: 2px solid #eee;
  border-radius: 20px;
  padding: 20px;
}
.detail-box.vdp-specs-box .spec-icon {
  width: 48px;
  height: 48px;
  background: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 1px solid #ddd;
}

#enquireModal .modal-content {
  overflow: hidden;
}
#enquireModal .modal-header {
  background: #f5f5f5;
  padding: 16px 24px;
  border-bottom: 0;
}
#enquireModal .modal-header .modal-title {
  color: #1a1a1a;
  font-size: 20px;
}
#enquireModal .modal-header .btn-close {
  opacity: 0.7;
}
#enquireModal .modal-header .btn-close:hover {
  opacity: 1;
}
#enquireModal .modal-body {
  padding: 24px;
}
#enquireModal .form-group {
  margin-bottom: 16px;
}
#enquireModal .form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
#enquireModal .form-control {
  background-color: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
#enquireModal .form-control::-moz-placeholder {
  color: #999;
  font-size: 14px;
}
#enquireModal .form-control::placeholder {
  color: #999;
  font-size: 14px;
}
#enquireModal .form-control:focus {
  background-color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  outline: none;
}
#enquireModal textarea.form-control {
  min-height: 100px;
  resize: none;
}
#enquireModal .form-check-input {
  width: 1.25em;
  height: 1.25em;
  border-radius: 4px;
  border: 2px solid #ddd;
  transition: all 0.2s ease;
  margin-top: 0.15em;
  cursor: pointer;
  flex-shrink: 0;
}
#enquireModal .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
#enquireModal .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(254, 0, 9, 0.1);
}
#enquireModal .form-check-label {
  font-size: 14px;
  cursor: pointer;
  line-height: 1.5;
  padding-top: 1px;
}

.comment-vdp-box .vdp-description-wrap {
  position: relative;
  overflow: hidden;
}
.comment-vdp-box .vdp-description-content {
  max-height: 160px;
  transition: max-height 0.5s ease;
  overflow: hidden;
}
.comment-vdp-box .vdp-description-content.expanded {
  max-height: 2000px;
}
.comment-vdp-box .vdp-description-content p {
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.comment-vdp-box .vdp-description-content ul {
  padding-left: 1.25rem;
}
.comment-vdp-box .vdp-description-content ul li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}
.comment-vdp-box .vdp-description-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.comment-vdp-box .vdp-description-overlay.d-none {
  opacity: 0;
}
.comment-vdp-box #vdpDescBtn {
  color: var(--primary-color);
  font-size: 15px;
}
.comment-vdp-box #vdpDescBtn:hover {
  opacity: 0.8;
}
.comment-vdp-box #vdpDescBtn .toggle-icon {
  transition: transform 0.3s ease;
}
.comment-vdp-box #vdpDescBtn.active .toggle-icon {
  transform: rotate(180deg);
}

.vdp-similar-vehicles {
  background-color: var(--white-color);
  overflow: hidden;
  position: relative;
  padding: 0px 0 50px;
}
.vdp-similar-vehicles .main-heading {
  margin-bottom: 25px;
}
.vdp-similar-vehicles .gird-box-container {
  padding-bottom: 20px;
}
.vdp-similar-vehicles .box-slider {
  flex: 0 0 auto;
}
@media (max-width: 1200px) {
  .vdp-similar-vehicles .box-slider {
    flex: 0 0 calc((100% - 52px) / 3);
  }
}
@media (max-width: 992px) {
  .vdp-similar-vehicles .box-slider {
    flex: 0 0 calc((100% - 26px) / 2);
  }
}
@media (max-width: 600px) {
  .vdp-similar-vehicles .box-slider {
    flex: 0 0 100%;
  }
}
.vdp-similar-vehicles .inventoryCar_card_title {
  min-height: unset;
}

.vdp-quick-links {
  padding-bottom: 2rem;
}
.vdp-quick-links .quick-link-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fef7f1;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}
.vdp-quick-links .quick-link-card:hover {
  background: #fef7f1;
  transform: translateY(-2px);
}
.vdp-quick-links .quick-link-card:hover .ql-value::after {
  transform: translateX(3px);
}
.vdp-quick-links .quick-link-card .ql-icon-box {
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vdp-quick-links .quick-link-card .ql-icon-box img {
  max-width: 25px;
  max-height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.9;
}
.vdp-quick-links .quick-link-card .ql-content {
  display: flex;
  flex-direction: column;
}
.vdp-quick-links .quick-link-card .ql-content .ql-label {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 2px;
}
.vdp-quick-links .quick-link-card .ql-content .ql-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 5px;
}
.vdp-quick-links .quick-link-card .ql-content .ql-value::after {
  content: "›";
  font-size: 26px;
  line-height: 1;
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}
@media (max-width: 767px) {
  .vdp-quick-links .quick-link-card {
    padding: 12px;
    gap: 12px;
  }
  .vdp-quick-links .quick-link-card .ql-icon-box {
    width: 44px;
    height: 44px;
  }
  .vdp-quick-links .quick-link-card .ql-label {
    font-size: 13px;
  }
  .vdp-quick-links .quick-link-card .ql-value {
    font-size: 15px;
  }
}

.vdp-faq .accordion-item {
  border: 1px solid #eee;
  border-radius: 12px !important;
  margin-bottom: 15px;
  overflow: hidden;
  background: var(--white-color);
}
.vdp-faq .accordion-item:last-child {
  margin-bottom: 0;
}
.vdp-faq .accordion-button {
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  background-color: var(--white-color);
  box-shadow: none;
}
.vdp-faq .accordion-button::after {
  background-size: 1.1rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.vdp-faq .accordion-button:not(.collapsed) {
  background: #f9f9f9;
}
.vdp-faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.vdp-faq .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(254, 0, 9, 0.1);
}
.vdp-faq .accordion-body {
  padding: 20px 25px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
@media (max-width: 767px) {
  .vdp-faq .accordion-button {
    padding: 15px 20px;
    font-size: 16px;
  }
  .vdp-faq .accordion-body {
    padding: 15px 20px;
    font-size: 15px;
  }
}

.about-hero {
  position: relative;
  padding: 74px 0;
  text-align: left;
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 11, 32, 0.82), rgba(5, 11, 32, 0.92)), url("../images/rv/hero.jpg") center/cover no-repeat;
}
.about-hero .rv-eyebrow {
  color: #fff;
  justify-content: center;
  margin-bottom: 16px;
}
.about-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .about-hero h1 {
    font-size: 30px;
  }
}
.about-hero p {
  max-width: 640px;
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 767px) {
  .about-hero {
    padding: 52px 0;
  }
}

.about-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  backdrop-filter: blur(6px);
}
.about-crumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-crumb a:hover {
  color: var(--primary-color);
}
.about-crumb span {
  color: rgba(255, 255, 255, 0.45);
}
.about-crumb span:last-child {
  color: #fff;
}

.about-story-img {
  position: relative;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-story-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 320px;
}

.about-story-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.about-story-badge .b-num {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-color);
}
.about-story-badge .b-lab {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.3;
}

.about-story p {
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-story .rv-lead {
  max-width: none;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 15px;
}
.about-checklist svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary-color);
}
@media (max-width: 575px) {
  .about-checklist {
    grid-template-columns: 1fr;
  }
}

.about-stats {
  background: var(--secondary-color);
  border-radius: var(--radius);
  padding: 40px 24px;
}

.about-stat {
  text-align: center;
  color: #fff;
}
.about-stat .num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.about-stat .num .plus {
  color: var(--primary-color);
}
@media (max-width: 767px) {
  .about-stat .num {
    font-size: 30px;
  }
}
.about-stat .lab {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.about-value {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.about-value:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}
.about-value .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fef2f2;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.about-value .ic svg {
  width: 26px;
  height: 26px;
}
.about-value h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.about-value p {
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.6;
  margin: 0;
}

.about-step {
  text-align: center;
  padding: 0 10px;
}
.about-step .n {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(254, 0, 9, 0.26);
}
.about-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.about-step p {
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.6;
  margin: 0;
}

.about-cta {
  background: linear-gradient(135deg, var(--secondary-color), #0b1533);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
.about-cta h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .about-cta h2 {
    font-size: 26px;
  }
}
.about-cta p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .about-cta {
    padding: 40px 22px;
  }
}

.about-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-hero {
  position: relative;
  padding: 74px 0;
  text-align: left;
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 11, 32, 0.82), rgba(5, 11, 32, 0.92)), url("../images/rv/hero.jpg") center/cover no-repeat;
}
.service-hero .rv-eyebrow {
  color: #fff;
  justify-content: center;
  margin-bottom: 16px;
}
.service-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .service-hero h1 {
    font-size: 30px;
  }
}
.service-hero p {
  max-width: 660px;
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 767px) {
  .service-hero {
    padding: 52px 0;
  }
}

.service-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  backdrop-filter: blur(6px);
}
.service-crumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.service-crumb a:hover {
  color: var(--primary-color);
}
.service-crumb span {
  color: rgba(255, 255, 255, 0.45);
}
.service-crumb span:last-child {
  color: #fff;
}

.service-intro-img {
  position: relative;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-intro-img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-intro p {
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.service-intro .rv-lead {
  max-width: none;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fef2f2;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 30px;
  margin-top: 6px;
}
.service-badge svg {
  width: 18px;
  height: 18px;
}

.service-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}
.service-card .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fef2f2;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card .ic svg {
  width: 25px;
  height: 25px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.6;
  margin: 0;
}

.pkg-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pkg-card.featured {
  position: relative;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 5px 15px;
  border-radius: 30px;
  white-space: nowrap;
}

.pkg-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted-color);
}

.pkg-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-top: 4px;
}

.pkg-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 14px 0 2px;
  line-height: 1;
}
.pkg-price .cents {
  font-size: 20px;
  vertical-align: super;
}

.pkg-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-color);
}

.pkg-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
  flex-grow: 1;
}
.pkg-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  padding: 7px 0;
  color: var(--text-color);
}
.pkg-list li svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}
.pkg-list li b {
  color: var(--secondary-color);
  font-weight: 700;
}

.svc-accordion .accordion-item {
  border: 1px solid var(--line-color);
  border-radius: 12px !important;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
}
.svc-accordion .accordion-button {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 15px;
  color: var(--secondary-color);
  background: #f6f8fa;
  padding: 18px 20px;
  box-shadow: none;
}
.svc-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: #fff;
}
.svc-accordion .accordion-button:focus {
  box-shadow: none;
}
.svc-accordion .accordion-button::after {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--secondary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.svc-accordion .accordion-button:not(.collapsed)::after {
  background-color: var(--primary-color);
  transform: rotate(45deg);
}
.svc-accordion .accordion-body {
  padding: 4px 20px 20px;
}
.svc-accordion .accordion-body p {
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.6;
  margin-bottom: 12px;
}

.svc-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px dashed var(--line-color);
  font-size: 14px;
}
.svc-price .k {
  font-weight: 600;
  color: var(--secondary-color);
}
.svc-price .v {
  font-weight: 800;
  font-size: 16px;
  color: var(--primary-color);
}

.svc-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
@media (max-width: 767px) {
  .svc-form-wrap {
    padding: 26px 20px;
  }
}

.svc-form-group {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line-color);
}
.svc-form-group:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.svc-form-legend {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.svc-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.svc-label .req {
  color: var(--primary-color);
}

.svc-input {
  width: 100%;
  font-size: 15px;
  color: var(--text-color);
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.svc-input::-moz-placeholder {
  color: var(--muted-color);
}
.svc-input::placeholder {
  color: var(--muted-color);
}
.svc-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(254, 0, 9, 0.12);
}

textarea.svc-input {
  resize: vertical;
  min-height: 120px;
}

.svc-radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.svc-radio {
  flex: 1 1 120px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid var(--line-color);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--secondary-color);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.svc-radio input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
  margin: 0;
}
.svc-radio:hover {
  border-color: var(--primary-color);
}
.svc-radio:has(input:checked) {
  border-color: var(--primary-color);
  background: #fef2f2;
}

.svc-form-actions {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line-color);
  text-align: center;
}

.svc-form-note {
  font-size: 14px;
  color: var(--muted-color);
  margin: 16px 0 0;
}
.svc-form-note a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.svc-sec {
  padding: 64px 0;
}

.svc-sec-white {
  background: var(--white-color);
}

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

.svc-parallax {
  position: relative;
  padding: 96px 0;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(rgba(5, 11, 32, 0.78), rgba(5, 11, 32, 0.86)), url("../images/rv/hero.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.svc-parallax .rv-eyebrow {
  color: #fff;
  justify-content: center;
  margin-bottom: 14px;
}
.svc-parallax h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .svc-parallax h2 {
    font-size: 26px;
  }
}
.svc-parallax p {
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 991px) {
  .svc-parallax {
    background-attachment: scroll;
    padding: 68px 0;
  }
}

.svc-parallax-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-schedule {
  background: linear-gradient(135deg, var(--secondary-color), #0b1533);
  border-radius: var(--radius);
  padding: 44px 40px;
  color: #fff;
}
.service-schedule h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .service-schedule h2 {
    font-size: 24px;
  }
}
.service-schedule p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px;
  max-width: 520px;
}
.service-schedule .hours-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 22px 24px;
}
.service-schedule .hours-box h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.service-schedule .hours-box h3 svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
}
.service-schedule .hours-box .row-h {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service-schedule .hours-box .row-h:first-of-type {
  border-top: 0;
}
.service-schedule .hours-box .row-h .d {
  font-weight: 600;
  color: #fff;
}
.service-schedule .hours-box .row-h .t {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}
@media (max-width: 767px) {
  .service-schedule {
    padding: 32px 22px;
  }
}

.service-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin-bottom: 26px;
}

.service-contact-item .l {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}
.service-contact-item a,
.service-contact-item .v {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.service-contact-item a:hover {
  color: var(--primary-color);
}

.contact-hero {
  position: relative;
  padding: 74px 0;
  text-align: left;
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 11, 32, 0.82), rgba(5, 11, 32, 0.92)), url("../images/rv/hero.jpg") center/cover no-repeat;
}
.contact-hero .rv-eyebrow {
  color: #fff;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .contact-hero h1 {
    font-size: 30px;
  }
}
.contact-hero p {
  max-width: 640px;
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 767px) {
  .contact-hero {
    padding: 52px 0;
  }
}

.contact-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  backdrop-filter: blur(6px);
}
.contact-crumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-crumb a:hover {
  color: var(--primary-color);
}
.contact-crumb span {
  color: rgba(255, 255, 255, 0.45);
}
.contact-crumb span:last-child {
  color: #fff;
}

.contact-info-card {
  height: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f6f8fa;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
  background: #fff;
}
.contact-info-card .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fef2f2;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .ic svg {
  width: 24px;
  height: 24px;
}
.contact-info-card .h {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted-color);
  margin-bottom: 6px;
}
.contact-info-card a,
.contact-info-card p {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none;
  margin: 0;
  line-height: 1.45;
}
.contact-info-card a:hover {
  color: var(--primary-color);
}
.contact-info-card .sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-color);
  margin-top: 4px;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  height: 100%;
}
.contact-panel h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 6px;
}
.contact-panel .sub {
  color: var(--muted-color);
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.contact-form .form-control {
  width: 100%;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--secondary-color);
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .form-control::-moz-placeholder {
  color: #9aa4af;
}
.contact-form .form-control::placeholder {
  color: #9aa4af;
}
.contact-form .form-control:focus {
  background: #fff;
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.contact-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}
.contact-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 22px;
}
.contact-form .form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.15em;
  border: 2px solid #ccd3da;
  border-radius: 5px;
  flex-shrink: 0;
  cursor: pointer;
}
.contact-form .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.contact-form .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(254, 0, 9, 0.12);
}
.contact-form .form-check-label {
  font-size: 13.5px;
  color: var(--muted-color);
  line-height: 1.5;
  cursor: pointer;
}

.contact-side {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-hours {
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 26px;
}
.contact-hours h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-hours h3 svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}
.contact-hours .row-h {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line-color);
  font-size: 14px;
}
.contact-hours .row-h:first-of-type {
  border-top: 0;
}
.contact-hours .row-h .d {
  font-weight: 600;
  color: var(--secondary-color);
}
.contact-hours .row-h .t {
  color: var(--muted-color);
  font-weight: 600;
}

.contact-hours-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  margin: 16px 0 4px;
}
.contact-hours-title:first-child {
  margin-top: 0;
}

.contact-callout {
  background: linear-gradient(135deg, var(--secondary-color), #0b1533);
  border-radius: var(--radius);
  padding: 26px;
  color: #fff;
}
.contact-callout h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.contact-callout p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  margin-bottom: 16px;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-color);
  box-shadow: var(--shadow);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
@media (max-width: 767px) {
  .contact-map iframe {
    height: 320px;
  }
}

.parts-hero {
  position: relative;
  padding: 74px 0;
  text-align: left;
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 11, 32, 0.82), rgba(5, 11, 32, 0.92)), url("../images/rv/hero.jpg") center/cover no-repeat;
}
.parts-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 14px;
  max-width: 760px;
}
@media (max-width: 767px) {
  .parts-hero h1 {
    font-size: 30px;
  }
}
.parts-hero p {
  max-width: 680px;
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 767px) {
  .parts-hero {
    padding: 52px 0;
  }
}

.parts-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.parts-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  backdrop-filter: blur(6px);
}
.parts-crumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.parts-crumb a:hover {
  color: var(--primary-color);
}
.parts-crumb span {
  color: rgba(255, 255, 255, 0.45);
}
.parts-crumb span:last-child {
  color: #fff;
}

.parts-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 30px;
}
@media (max-width: 767px) {
  .parts-strip {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

.parts-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.parts-strip-item .ic {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fef2f2;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.parts-strip-item .ic svg {
  width: 22px;
  height: 22px;
}
.parts-strip-item .l {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted-color);
  margin-bottom: 2px;
}
.parts-strip-item a,
.parts-strip-item .v {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none;
}
.parts-strip-item a:hover {
  color: var(--primary-color);
}

.part-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.part-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}
.part-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.part-card p {
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.6;
  margin: 0 0 18px;
  flex-grow: 1;
}

.part-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted-color);
  background: #f6f8fa;
  border: 1px solid var(--line-color);
  padding: 4px 10px;
  border-radius: 30px;
}

.part-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fef2f2;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.part-ic svg {
  width: 26px;
  height: 26px;
}

.part-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-color);
}

.part-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary-color);
}

.part-price-quote {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
}

.part-btn {
  padding: 9px 18px;
  min-width: 0;
}

.part-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--secondary-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.part-cat:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.part-cat svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary-color);
}

.parts-panel {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.parts-panel h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 6px;
}
.parts-panel .sub {
  font-size: 15px;
  color: var(--muted-color);
  margin-bottom: 26px;
}
.parts-panel button[type=submit] {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .parts-panel {
    padding: 26px 20px;
  }
}

.pt-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.pt-label .req {
  color: var(--primary-color);
}
.pt-label .opt {
  font-weight: 500;
  color: var(--muted-color);
}

.pt-input {
  width: 100%;
  font-size: 15px;
  color: var(--text-color);
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.pt-input::-moz-placeholder {
  color: var(--muted-color);
}
.pt-input::placeholder {
  color: var(--muted-color);
}
.pt-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(254, 0, 9, 0.12);
}

select.pt-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23050b20' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}

textarea.pt-input {
  resize: vertical;
  min-height: 110px;
}

.pt-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-color);
  cursor: pointer;
}
.pt-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
  margin-top: 1px;
  flex-shrink: 0;
}

.parts-form-note {
  font-size: 14px;
  color: var(--muted-color);
  text-align: center;
  margin: 16px 0 0;
}
.parts-form-note a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.parts-side {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.parts-why {
  background: #f6f8fa;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 30px;
}
.parts-why h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 18px;
}

.parts-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.parts-why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-color);
  padding: 10px 0;
  border-top: 1px dashed var(--line-color);
}
.parts-why-list li:first-child {
  border-top: 0;
  padding-top: 0;
}
.parts-why-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 1px;
}
.parts-why-list li b {
  color: var(--secondary-color);
  font-weight: 700;
}

.parts-hours {
  background: linear-gradient(135deg, var(--secondary-color), #0b1533);
  border-radius: var(--radius);
  padding: 26px 28px;
  color: #fff;
}
.parts-hours h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.parts-hours h3 svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
}
.parts-hours .row-h {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.parts-hours .row-h:first-of-type {
  border-top: 0;
}
.parts-hours .row-h .d {
  font-weight: 600;
  color: #fff;
}
.parts-hours .row-h .t {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.pt-sec {
  padding: 64px 0;
}

.pt-sec-white {
  background: var(--white-color);
}

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

.parts-parallax {
  position: relative;
  padding: 96px 0;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(rgba(5, 11, 32, 0.78), rgba(5, 11, 32, 0.86)), url("../images/rv/hero.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.parts-parallax .rv-eyebrow {
  color: #fff;
  justify-content: center;
  margin-bottom: 14px;
}
.parts-parallax h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .parts-parallax h2 {
    font-size: 26px;
  }
}
.parts-parallax p {
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 991px) {
  .parts-parallax {
    background-attachment: scroll;
    padding: 68px 0;
  }
}

.parts-parallax-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.trade-hero {
  position: relative;
  padding: 74px 0;
  text-align: left;
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 11, 32, 0.82), rgba(5, 11, 32, 0.92)), url("../images/rv/hero.jpg") center/cover no-repeat;
}
.trade-hero .rv-eyebrow {
  color: #fff;
  justify-content: center;
  margin-bottom: 16px;
}
.trade-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .trade-hero h1 {
    font-size: 30px;
  }
}
.trade-hero p {
  max-width: 680px;
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 767px) {
  .trade-hero {
    padding: 52px 0;
  }
}

.trade-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  backdrop-filter: blur(6px);
}
.trade-crumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.trade-crumb a:hover {
  color: var(--primary-color);
}
.trade-crumb span {
  color: rgba(255, 255, 255, 0.45);
}
.trade-crumb span:last-child {
  color: #fff;
}

.trade-step {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.trade-step:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}
.trade-step .num {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-color);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.trade-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.trade-step p {
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.6;
  margin: 0;
}

.trade-panel {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.trade-panel h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 6px;
}
.trade-panel .sub {
  font-size: 15px;
  color: var(--muted-color);
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .trade-panel {
    padding: 26px 20px;
  }
}

.wiz-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.wiz-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.wiz-step-item:not(:last-child)::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--line-color);
  border-radius: 2px;
  transition: background 0.25s ease;
}
.wiz-step-item.is-done:not(:last-child)::after {
  background: var(--primary-color);
}
.wiz-step-item.is-active .wiz-dot {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(254, 0, 9, 0.14);
}
.wiz-step-item.is-done .wiz-dot {
  color: #fff;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  cursor: pointer;
}
.wiz-step-item.is-active .wiz-step-label {
  color: var(--secondary-color);
}
.wiz-step-item.is-done .wiz-step-label {
  color: var(--secondary-color);
}

.wiz-dot {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted-color);
  background: #fff;
  border: 2px solid var(--line-color);
  transition: all 0.25s ease;
}

.wiz-step-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}

.wiz-progress {
  height: 6px;
  border-radius: 6px;
  background: var(--line-color);
  overflow: hidden;
  margin-bottom: 26px;
}

.wiz-progress-bar {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: var(--primary-color);
  transition: width 0.35s ease;
}

.wiz-panel {
  display: none;
  animation: wizFade 0.3s ease;
}
.wiz-panel.is-active {
  display: block;
}

@keyframes wizFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wiz-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.wiz-actions .wiz-next,
.wiz-actions .wiz-submit {
  margin-left: auto;
}
.wiz-actions .theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wiz-actions .theme-btn svg {
  width: 18px;
  height: 18px;
}

.ghost-btn {
  background: #fff;
  color: var(--secondary-color);
  border: 1px solid var(--line-color);
}
.ghost-btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.tr-input.is-invalid {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(254, 0, 9, 0.12);
}

.trade-legend {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.tr-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.tr-label .req {
  color: var(--primary-color);
}
.tr-label .opt {
  font-weight: 500;
  color: var(--muted-color);
}

.tr-input {
  width: 100%;
  font-size: 15px;
  color: var(--text-color);
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.tr-input::-moz-placeholder {
  color: var(--muted-color);
}
.tr-input::placeholder {
  color: var(--muted-color);
}
.tr-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(254, 0, 9, 0.12);
}

select.tr-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23050b20' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}

textarea.tr-input {
  resize: vertical;
  min-height: 110px;
}

.tr-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-color);
  margin: 4px 0 22px;
  cursor: pointer;
}
.tr-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
  margin-top: 1px;
  flex-shrink: 0;
}

.trade-form-note {
  font-size: 14px;
  color: var(--muted-color);
  text-align: center;
  margin: 16px 0 0;
}
.trade-form-note a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.trade-side {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trade-why {
  background: #f6f8fa;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 30px;
}
.trade-why h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 18px;
}

.trade-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trade-why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-color);
  padding: 10px 0;
  border-top: 1px dashed var(--line-color);
}
.trade-why-list li:first-child {
  border-top: 0;
  padding-top: 0;
}
.trade-why-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 1px;
}
.trade-why-list li b {
  color: var(--secondary-color);
  font-weight: 700;
}

.trade-callout {
  background: linear-gradient(135deg, var(--secondary-color), #0b1533);
  border-radius: var(--radius);
  padding: 30px;
  color: #fff;
}
.trade-callout h3 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.trade-callout p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.trade-browse {
  background: linear-gradient(135deg, var(--secondary-color), #0b1533);
  border-radius: var(--radius);
  padding: 40px 44px;
  color: #fff;
}
.trade-browse h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .trade-browse h2 {
    font-size: 23px;
  }
}
.trade-browse p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 620px;
}
@media (max-width: 767px) {
  .trade-browse {
    padding: 30px 22px;
    text-align: center;
  }
}