/* ========================================================
   CUSTOM COMPONENTS - First Choice Cars
   ======================================================== */


/* ========================================================
   NOTE: CSS Variables moved to config/variables.css
   Load variables.css FIRST in your HTML header
   ======================================================== */
/* ========================================================
   VEHICLE GRID SECTION
   ======================================================== */

.c-vehicleGrid {
  width: 100%;
}

.c-vehicleGrid__row {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.c-vehicleGrid__row > [class*="col-"] {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-bottom: 1.5rem;
}

.c-vehicleGrid__row > [class*="col-"].d-flex {
  display: flex;
  align-items: stretch;
}

.c-vehicleGrid__row > [class*="col-"] .c-vehicleCard {
  height: 100%;
}
/* Responsive spacing adjustments */
@media (min-width: 576px) and (max-width: 992px) {
  .c-vehicleGrid__row > [class*="col-"] {
    margin-bottom: 1.25rem;
  }
}

  .c-header__nav .c-header__nav-list {
    display: none;
  }

  .c-header__nav .c-header__nav-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
/* Component Rule 11-14: Moved to HEADER SECTION (lines 2073+) */

.c-banner > .container .row .col-12 {
  position: relative;
  z-index: 1;
}

  .container .c-sectionCard.c-sectionCard--plainHeading .c-sectionCard__header {
    margin-bottom: 0;
  }

  .c-sellCarForm .custom-select:focus {
    transform: none; /* FIXED: Prevent layout shift on mobile */
    box-shadow: 0 0 0 4px rgba(198, 167, 111, 0.15); /* Stronger glow instead */
  }

  .c-sellCarForm .form-control:active {
    transform: none; /* FIXED: Prevent layout shift on mobile */
  }
/* ========================================================
   CONSOLIDATED FORM CONTROLS
   ======================================================== */
/* Base Form Control Styles - All 5 Forms */
.c-sellCarForm .form-control,
.c-financeForm .form-control,
.c-requestCarForm .form-control,
.c-consignCarForm .form-control,
.c-tradeInForm .form-control {
  width: 100%;
  height: var(--form-input-height);
  padding: var(--form-input-padding);
  border: var(--form-input-border);
  border-left: var(--form-input-border-left);
  border-radius: var(--form-input-border-radius);
  background: var(--form-input-bg);
  font-size: var(--form-input-font-size);
  font-weight: var(--form-input-font-weight);
  line-height: var(--form-input-line-height);
  color: var(--form-input-text-color);
  transition: var(--form-input-transition);
  box-sizing: border-box;
  display: block;
  font-family: inherit;
}
/* Textarea Variant - All Forms */
.c-sellCarForm .form-control[type="textarea"],
.c-financeForm .form-control[type="textarea"],
.c-requestCarForm .form-control[type="textarea"],
.c-consignCarForm .form-control[type="textarea"],
.c-tradeInForm .form-control[type="textarea"] {
  height: auto;
  min-height: var(--form-input-min-height);
  resize: vertical;
}
/* Focus State - Sell Car, Request Car, Consign Car, Trade-In (stronger shadow) */
.c-sellCarForm .form-control:focus,
.c-requestCarForm .form-control:focus,
.c-consignCarForm .form-control:focus,
.c-tradeInForm .form-control:focus {
  outline: none;
  border-color: var(--form-input-border-color-focus);
  background: var(--form-input-bg-focus);
  box-shadow: var(--form-input-box-shadow-focus);
  transition: var(--form-input-transition-focus);
}
/* Focus State - Finance Form (lighter shadow - intentional design difference) */
.c-financeForm .form-control:focus {
  outline: none;
  border-color: var(--form-input-border-color-focus);
  background: var(--form-input-bg-focus);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1); /* Finance form uses lighter shadow */
  transition: var(--form-input-transition-focus);
}
/* Hover State - All Forms */
.c-sellCarForm .form-control:hover:not(:focus),
.c-financeForm .form-control:hover:not(:focus),
.c-requestCarForm .form-control:hover:not(:focus),
.c-consignCarForm .form-control:hover:not(:focus),
.c-tradeInForm .form-control:hover:not(:focus) {
  border-color: var(--form-input-border-color-focus);
  background: var(--form-input-bg-focus);
}
/* Invalid State - Sell Car & Trade-In Forms */
.c-sellCarForm .form-control:invalid:not(:focus):not(:placeholder-shown),
.c-tradeInForm .form-control:invalid:not(:focus):not(:placeholder-shown) {
  border-color: var(--error-400);
  background: var(--error-100);
}
/* Placeholder - All Forms */
.c-sellCarForm .form-control::placeholder,
.c-financeForm .form-control::placeholder,
.c-requestCarForm .form-control::placeholder,
.c-consignCarForm .form-control::placeholder,
.c-tradeInForm .form-control::placeholder {
  color: var(--form-input-placeholder-color);
  opacity: 1;
  font-size: var(--form-input-font-size);
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
}
/* ========================================================
   CONSOLIDATED CUSTOM SELECT
   ======================================================== */
/* Base Custom Select Styles - All 4 Forms (Finance Form doesn't have custom-select styles) */
.c-sellCarForm .c-sellCarForm__select.custom-select,
.c-requestCarForm .c-requestCarForm__select.custom-select,
.c-consignCarForm .c-consignCarForm__select.custom-select,
.c-tradeInForm .c-tradeInForm__select.custom-select {
  height: var(--form-input-height);
  border: var(--form-input-border);
  border-left: var(--form-input-border-left);
  border-radius: var(--form-input-border-radius);
  padding: 12px 1.3125rem;
  padding-right: 40px;
  font-size: var(--form-input-font-size);
  font-weight: var(--form-input-font-weight);
  color: var(--form-input-text-color);
  background: var(--form-input-bg);
  transition: var(--form-input-transition);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  z-index: 10;
  line-height: 1.5;
}
/* Hover State - All Forms */
.c-sellCarForm .c-sellCarForm__select.custom-select:hover:not(:focus),
.c-requestCarForm .c-requestCarForm__select.custom-select:hover:not(:focus),
.c-consignCarForm .c-consignCarForm__select.custom-select:hover:not(:focus),
.c-tradeInForm .c-tradeInForm__select.custom-select:hover:not(:focus) {
  border-color: var(--form-input-border-color-focus);
  background-color: var(--form-input-bg-focus);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}
/* Focus State - All Forms */
.c-sellCarForm .c-sellCarForm__select.custom-select:focus,
.c-requestCarForm .c-requestCarForm__select.custom-select:focus,
.c-consignCarForm .c-consignCarForm__select.custom-select:focus,
.c-tradeInForm .c-tradeInForm__select.custom-select:focus {
  border-color: var(--form-input-border-color-focus);
  background-color: var(--form-input-bg-focus);
  box-shadow: var(--form-input-box-shadow-focus);
  outline: none;
  z-index: 100;
}
/* FORM-SPECIFIC OVERRIDES & UNIQUE STYLES */
/* Sell Car Form Specific */
.c-sellCarForm .row {
  margin-bottom: 0.5rem;
}

.c-sellCarForm .row:last-child {
  margin-bottom: 0;
}

.c-sellCarForm__field.has-error .form-control {
  border-color: var(--error-400);
  background: var(--error-100);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
  animation: shake 0.3s ease;
}

.c-sellCarForm .form-control::placeholder {
  color: var(--gray-700);
  opacity: 1;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
}

.c-sellCarForm__input--phone .form-control {
  border: none;
  border-radius: 0;
  height: 44px;
  margin: 0;
  flex: 1;
  background: transparent;
  padding: 0.875rem 1rem;
}

.c-sellCarForm__input--phone .form-control:focus {
  box-shadow: none;
  border: none;
  background: transparent;
  transform: none;
}

.c-sellCarForm .input-group-text {
  display: none;
}

.c-sellCarForm .input-group .form-control {
  height: 40px;
  padding: 10px 14px;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-200);
  flex: 1;
  min-width: 0;
}

.c-sellCarForm .input-group .form-control:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background: transparent;
}

.c-sellCarForm .input-group .form-control::placeholder {
  color: var(--gray-700);
  opacity: 1;
}

.c-sellCarForm__field.has-error .input-group {
  border-color: var(--error-400);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

  .c-sellCarForm .custom-select {
    background-size: 20px 16px;
    background-position: right 10px center;
    padding-right: 45px;
  }

  .c-sellCarForm__input--phone {
    min-height: 48px;
  }

  .c-sellCarForm__input--phone .form-control {
    font-size: 16px;
    padding: 12px;
  }

  .c-sellCarForm__input--phone-code {
    min-height: 46px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    padding: 0 12px;
  }

  .c-sellCarForm .row {
    margin-bottom: 0.75rem;
  }

  .c-sellCarForm section[role="tabpanel"] {
    padding: 0.5rem 0;
  }

  .c-sellCarForm__field .error {
    font-size: 0.75rem;
    margin-top: 0.375rem;
    font-weight: 500;
  }

  .c-sellCarWizard__list {
    gap: 0.625rem;
  }

  .c-sellCarWizard__item {
    min-width: 140px;
    max-width: 180px;
  }

  .c-sellCarWizard__link {
    padding: 1.25rem 1.5rem;
    min-height: 64px;
  }

  .c-sellCarForm .form-control {
    min-height: 46px;
    font-size: 0.9375rem;
  }

  .c-sellCarForm__header--title {
    font-size: 0.95rem;
  }

  .c-sellCarWizard__list {
    gap: 0.25rem;
  }

  .c-sellCarWizard__link {
    padding: 0.4rem 0.5rem;
    min-height: 42px;
  }

  .c-sellCarWizard__title {
    font-size: 0.5rem;
  }

  .c-sellCarForm .form-control {
    font-size: 15px;
  }

  .c-sellCarForm__label {
    font-size: 0.85rem;
  }

.c-select::placeholder {
  color: var(--gray-600);
}

.c-select:disabled {
  border-color: var(--info-light);
  background: var(--gray-200);
}

.c-select:disabled:focus {
  border-color: var(--gray-500);
  box-shadow: none;
  outline: none;
}

  .c-header__main {
    position: relative;
    z-index: 1035;
  }

  .c-header__main-inner {
    padding: 0.75rem 0;
  }

  .c-header__nav {
    margin-left: 0;
    width: auto;
    position: relative;
  }

  .c-footer__brand img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
  }
/* Component Rules 118-121: Consolidated in c-sectionCard section above */

  .c-header .c-header__nav .c-header__nav-list {
    display: block;
  }
/* Component Rules 128-129: Consolidated in c-sectionCard section above */

  .c-about-us__team--tag-line.customtext {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .c-about-us__cta-banner .container {
    padding: 2rem 0;
  }

  .c-about-us__cta-banner {
    min-height: 400px;
  }

  .c-financeForm .c-select:focus {
    transform: none; /* FIXED: Prevent layout shift on mobile */
    box-shadow: 0 0 0 4px rgba(198, 167, 111, 0.15); /* Stronger glow instead */
  }

  .c-financeForm .c-select:active {
    transform: none; /* FIXED: Prevent layout shift on mobile */
  }
/* Finance Form - Specific Overrides */
  .c-financeForm__header--title {
    font-size: 0.95rem;
  }

  .c-financeWizard__list {
    gap: 0.25rem;
  }

  .c-financeWizard__link {
    padding: 0.4rem 0.5rem;
    min-height: 42px;
  }

  .c-financeWizard__title {
    font-size: 0.5rem;
  }

  .c-financeForm .form-control {
    font-size: 15px;
  }

  .c-financeForm__label {
    font-size: 0.85rem;
  }

  .c-requestCarForm__header--title {
    font-size: 0.95rem;
  }

  .c-requestCarWizard__list {
    gap: 0.25rem;
  }

  .c-requestCarWizard__link {
    padding: 0.4rem 0.5rem;
    min-height: 42px;
  }

  .c-requestCarWizard__title {
    font-size: 0.5rem;
  }

  .c-requestCarForm .form-control {
    font-size: 15px;
  }

  .c-requestCarForm__label {
    font-size: 0.85rem;
  }
/* Request Car Form - Specific Overrides */
.c-requestCarForm .row {
  margin-bottom: 0.5rem;
}

.c-requestCarForm .row:last-child {
  margin-bottom: 0;
}

.c-requestCarForm .input-group-text {
  display: none;
}

  .c-consignCarForm__header--title {
    font-size: 0.95rem;
  }

  .c-consignCarWizard__list {
    gap: 0.25rem;
  }

  .c-consignCarWizard__link {
    padding: 0.4rem 0.5rem;
    min-height: 42px;
  }

  .c-consignCarWizard__title {
    font-size: 0.5rem;
  }

  .c-consignCarForm .form-control {
    font-size: 15px;
  }

  .c-consignCarForm__label {
    font-size: 0.85rem;
  }
/* Consign Car Form - Specific Overrides */
.c-consignCarForm .row {
  margin-bottom: 0.5rem;
}

.c-consignCarForm .row:last-child {
  margin-bottom: 0;
}

.c-consignCarForm .input-group-text {
  display: none;
}

  .c-consignCarForm {
    padding: 16px 12px;
    border-radius: 8px;
  }

  .c-consignCarForm__inner {
    padding: 20px 16px;
    border-radius: 8px;
  }

  .c-consignCarForm .form-control {
    font-size: 16px;
    height: 44px;
    padding: 12px 16px;
  }

  .c-consignCarForm__input textarea {
    min-height: 44px;
  }

  .c-consignCarForm__input--phone {
    height: 44px;
  }

  .c-consignCarForm__input--phone-code {
    height: 42px;
    padding: 12px 16px;
    font-size: 16px;
  }

  .c-consignCarForm__input--phone .c-consignCarForm__input {
    height: 42px;
    padding: 12px 14px;
    font-size: 16px;
  }

#consign-steps .c-consignCarForm .c-consignCarForm__select.custom-select.is-invalid {
  border-color: var(--error-400);
  border-left-color: var(--error-400);
  background: var(--color-white);
}
/* Drawer-specific filter styles moved to Filter Drawer section (lines 12400+) */

  .c-filterDrawer__header {
    padding: 1rem 1.25rem;
  }

  .c-filterDrawer__title {
    font-size: 1.125rem;
  }

  .c-filterDrawer__body {
    padding: 1.25rem;
    padding-bottom: 1.5rem;
  }
/* Trade-In Form - Specific Overrides */
.c-tradeInForm .row {
  margin-bottom: 0.5rem;
}

.c-tradeInForm .row:last-child {
  margin-bottom: 0;
}

.c-tradeInForm__field.has-error .form-control {
  border-color: var(--error-400);
  background: var(--error-100);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
  animation: shake 0.3s ease;
}

.c-tradeInForm__input--currency .form-control {
  border: none;
  border-radius: 0;
  height: 44px;
  margin: 0;
  flex: 1;
  background: transparent;
  padding: 0.875rem 1rem;
}

.c-tradeInForm__input--currency .form-control:focus {
  box-shadow: none;
  border: none;
  background: transparent;
  transform: none;
}

#tradein-steps .c-tradeInForm .c-tradeInForm__select.custom-select.is-invalid {
  border-color: var(--error-400);
  border-left-color: var(--error-400);
  background: var(--color-white);
}

  .c-tradeInForm {
    margin: 0;
    padding: 1.25rem 1rem;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .c-tradeInForm__header--title {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
  }

  .c-tradeInForm__header {
    margin-bottom: 0.5rem;
  }

  .c-tradeInForm__inner {
    padding: 0.125rem 0.125rem;
  }

  .c-tradeInForm__field {
    margin-bottom: 1rem;
  }

  .c-tradeInWizard {
    padding: 0;
    margin-bottom: 1rem;
  }

  .c-tradeInWizard__list {
    gap: 0.625rem;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 1rem 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .c-tradeInWizard__item {
    flex: 0 0 auto;
    min-width: 180px;
  }

  .c-tradeInWizard__link {
    padding: 0.875rem 1rem;
    min-height: 72px;
    gap: 0.375rem;
    border-radius: 10px;
    border-width: 2px;
  }

  .c-tradeInWizard__step {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }

  .c-tradeInWizard__title {
    font-size: 0.8125rem;
    line-height: 1.2;
  }

  .c-tradeInForm .form-control:focus {
    transform: none;
    box-shadow: 0 0 0 4px rgba(198, 167, 111, 0.15);
  }

  .c-tradeInForm .form-control:active {
    transform: none;
  }

  .c-tradeInForm .form-control {
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  }

  .c-tradeInForm {
    padding: 1rem;
    margin: 0;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .c-tradeInWizard__list {
    gap: 0.625rem;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 1rem 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .c-tradeInWizard__item {
    flex: 0 0 auto;
    min-width: 180px;
  }

  .c-tradeInWizard__link {
    padding: 0.875rem 0.875rem;
    min-height: 70px;
    border-radius: 8px;
    gap: 0.375rem;
  }

  .c-tradeInWizard__step {
    font-size: 0.625rem;
    letter-spacing: 0.25px;
  }

  .c-tradeInWizard__title {
    font-size: 0.75rem;
    line-height: 1.2;
  }
/* ========================================================
   VEHICLE DETAIL STYLES MOVED
   All vehicle detail page CSS has been moved to:
   public/theme/css/vehicle-detail.css

   This includes:
   - Vehicle Tabs
   - Vehicle Gallery
   - Vehicle Specs
   - Vehicle Pricing
   - Vehicle Actions
   - Vehicle Status
   - Vehicle Watermark
   - Coverage Variants
   - All responsive breakpoints
   ======================================================== */
/* ORIGINAL style-working.css CONTENT BELOW */

/* ========================================================
   FONT AWESOME ICONS
   ======================================================== */
/* ========================================================
   UTILITY CLASSES
   ======================================================== */
.icon-gold {
  color: var(--gold-primary);
}
/* ========================================================
   VEHICLE SEARCH COMPONENT - Moved to components/tabs.css
   ======================================================== */
/* Tabs styles extracted to components/tabs.css */

/* ========================================================
   FORM BASE STYLES
   ======================================================== */
/* ========================================================
   PRODUCT GRID & LAYOUT
   ======================================================== */
.grid-view {
  width: 100%;
  overflow: hidden;
}
/* ========================================================
   SLICK SLIDER COMPONENTS
   ======================================================== */
/* UNIFIED SLIDER SYSTEM - BASE CONFIGURATION */
.slider-vehicles,
.slider-hero,
.slider-reviews {
  position: relative;
  visibility: hidden;
  min-height: 300px;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}

.slider-vehicles.slick-initialized,
.slider-hero.slick-initialized,
.slider-reviews.slick-initialized {
  visibility: visible;
}
/* SLIDER CONTENT STRUCTURE */

.slider-vehicles .slick-track,
.slider-hero .slick-track,
.slider-reviews .slick-track {
  display: flex;
  align-items: stretch;
}

.slider-vehicles .slick-slide,
.slider-hero .slick-slide,
.slider-reviews .slick-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.slider-vehicles .slick-slide > div,
.slider-hero .slick-slide > div,
.slider-reviews .slick-slide > div {
  height: 100%;
  width: 100%;
}
/* Slider Navigation Arrows */
.slider-vehicles .slick-prev,
.slider-vehicles .slick-next,
.slider-hero .slick-prev,
.slider-hero .slick-next,
.slider-reviews .slick-prev,
.slider-reviews .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--gold-primary);
  color: var(--color-black);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 8px rgba(198, 167, 111, 0.3);
  text-indent: 0;
  overflow: hidden;
}

.slider-vehicles .slick-prev i,
.slider-vehicles .slick-next i,
.slider-hero .slick-prev i,
.slider-hero .slick-next i,
.slider-reviews .slick-prev i,
.slider-reviews .slick-next i {
  font-size: 16px;
  line-height: 1;
}

.slider-vehicles .slick-prev:hover,
.slider-vehicles .slick-next:hover,
.slider-hero .slick-prev:hover,
.slider-hero .slick-next:hover,
.slider-reviews .slick-prev:hover,
.slider-reviews .slick-next:hover {
  background: var(--dark-100);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.slider-vehicles .slick-prev {
  left: 10px;
}

.slider-vehicles .slick-next {
  right: 10px;
}

.slider-reviews .slick-prev {
  left: 0;
}

.slider-reviews .slick-next {
  right: 0;
}

.slider-hero .slick-prev {
  left: 10px;
}

.slider-hero .slick-next {
  right: 10px;
}
/* SLIDER FALLBACK - GRACEFUL DEGRADATION */

.slider-vehicles:not(.slick-initialized) {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  visibility: visible;
}
/* Slider not-initialized fallback: See consolidated section (lines 2120+) */
/* ========================================================
   VEHICLE CARD COMPONENT
   ======================================================== */
/* Base Component Styles
   ---------------------- */
.c-vehicleCard {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  height: 100%;
  min-height: 400px;
}

.c-vehicleCard:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.c-vehicleCard .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  box-shadow: none;
  margin-bottom: 0;
}

.c-vehicleCard .card-footer {
  margin: 0;
}
/* Image Element
   ------------- */
.c-vehicleCard__image {
  height: 200px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  border-radius: 1rem 1rem 0 0;
  flex-shrink: 0;
}
/* Body Element
   ------------ */
.c-vehicleCard__body {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex-grow: 1;
}

.c-vehicleCard__body .mb-2.pb-2.border-bottom {
  min-height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* Title Element
   ------------- */
.c-vehicleCard__title {
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  min-height: 2.6rem;
  display: flex;
  align-items: flex-start;
}
/* Price Elements
   -------------- */
.c-vehicleCard__price {
  font-weight: bold;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.c-vehicleCard__price-label {
  font-size: 0.8rem;
  color: var(--gray-700);
}

.c-vehicleCard__emi {
  font-size: 0.8rem;
  color: var(--gray-700);
  display: block;
  min-height: 1.2rem;
}
/* Specifications Elements
   ----------------------- */
.c-vehicleCard__specs {
  flex-grow: 1;
  align-items: center;
  margin-bottom: 1rem;
  min-height: 80px;
}

.c-vehicleCard__spec {
  padding: 0.5rem;
  background-color: var(--gray-100);
  border-radius: 0.375rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 60px;
}

.c-vehicleCard__spec-label {
  font-size: 0.7rem;
  color: var(--gray-700);
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  margin-bottom: 0.25rem;
}

.c-vehicleCard__spec-value {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--gray-900);
}
/* Footer Element
   -------------- */
.c-vehicleCard__footer {
  background-color: transparent;
  border: 0;
  padding: 0.75rem 1rem;
  margin-top: auto;
  flex-shrink: 0;
}
/* Button Elements - Primary Variant
   ---------------------------------- */
.c-vehicleCard__button {
  background-color: var(--gold-primary);
  border-color: var(--gold-secondary);
  color: var(--color-black);
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1.4;
  min-height: 44px;
  border-radius: 32px;
  padding: 0.5rem 0.75rem;
  width: 100%;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: 2px solid var(--gold-secondary);
}

.c-vehicleCard .c-vehicleCard__button:hover,
.c-vehicleCard .c-vehicleCard__button:focus {
  background-color: var(--color-black);
  border-color: var(--gold-secondary);
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-2px);
}

.c-vehicleCard .c-vehicleCard__button:active {
  background-color: var(--color-black);
  border-color: var(--gold-secondary);
  transform: translateY(0);
}
/* Grid Integration
   ---------------- */
.c-product__row > [class*="col-"] .c-vehicleCard {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* Slider Integration
   ------------------ */
.slider-vehicles .c-vehicleCard,
.slider-reviews .c-vehicleCard {
  margin: 0 8px;
  padding: 0 4px;
  box-sizing: border-box;
  height: auto;
}

.slider-vehicles:not(.slick-initialized) .c-vehicleCard {
  display: none;
}

.slider-vehicles:not(.slick-initialized) .c-vehicleCard:first-child {
  display: block;
  width: 100%;
}
/* ======================================================== */

*::after {
  box-sizing: border-box;
}
/* HEADER SECTION � START */
/* Desktop Header CSS */

.c-header {
  position: relative;
  z-index: 1031;
}

.c-header__top {
  padding-bottom: 0.375rem;
  padding-top: 0.375rem;
  position: relative;
  z-index: 1032;
  border-bottom: solid 0.0625rem var(--bg-gray);
  background: var(--color-white);
  transition: all 0.3s ease;
}

.c-header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 2.5rem;
}

.c-header__top-left,
.c-header__top-right {
  display: flex;
  align-items: center;
}

.c-header__top-left {
  flex: 0 0 auto;
}

.c-header__top-right {
  flex: 0 0 auto;
  margin-left: auto;
}

.c-header__top-utilities {
  display: flex;
  align-items: center;
}

.c-contact-bar__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-contact-bar__item {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.2;
  color: var(--dark-300);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.c-contact-bar__link,
.c-contact-bar__btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--dark-300);
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  letter-spacing: 0.01em;
}

.c-contact-bar__btn {
  background: transparent;
  border: none;
  cursor: pointer;
}

.c-contact-bar__link:hover,
.c-contact-bar__btn:hover {
  color: var(--gold-primary);
  background: rgba(198, 167, 111, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(198, 167, 111, 0.15);
}

.c-contact-bar__link:active,
.c-contact-bar__btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(198, 167, 111, 0.1);
}

.c-contact-bar__link:focus-visible,
.c-contact-bar__btn:focus-visible {
  outline: 2px solid var(--gold-secondary);
  outline-offset: 2px;
}

.c-contact-bar__link i,
.c-contact-bar__btn i {
  margin-right: 0.5rem;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.c-contact-bar__link:hover i,
.c-contact-bar__btn:hover i {
  transform: scale(1.1);
}

.c-header__main {
  background-color: var(--dark-300);
  position: sticky;
  top: 0;
  z-index: 1032;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.c-header__main.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.c-header__main .container {
  max-width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.c-header__main .row {
  margin-left: 0;
  margin-right: 0;
}

.c-header__main .col-12 {
  padding-left: 0;
  padding-right: 0;
}

.c-header__main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  min-height: 60px;
}

.c-header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  z-index: 10;
  padding: 0;
  margin: 0;
}

.c-header__logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  padding: 4px;
}

.c-header__logo-link:hover {
  transform: scale(1.03) translateY(-2px);
  filter: brightness(1.05);
}

.c-header__logo-link:active {
  transform: scale(0.98) translateY(0);
  filter: brightness(1);
}

.c-header__logo-link:focus-visible {
  outline: 2px solid var(--gold-secondary);
  outline-offset: 4px;
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.2);
}

.c-header__logo-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  border: none;
}

.c-header__main-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
  margin-left: auto;
}

.c-search {
  max-width: 250px;
  width: 100%;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.c-search__field {
  position: relative;
}

.c-search__input {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--dark-300);
  height: 2.5rem;
  border-radius: 25px;
  border: 1px solid var(--bg-gray);
  background: var(--gray-100);
  padding: 0.5rem 2.75rem 0.5rem 1.25rem;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-font-smoothing: antialiased;
}

.c-search__input::-webkit-search-cancel-button,
.c-search__input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.c-search__input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.c-search__input:hover {
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.c-search__input:focus {
  outline: none;
  border: 1px solid var(--gold-secondary);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  background: var(--color-white);
}

.c-search__input::placeholder {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 400;
  transition: all 0.3s ease;
  opacity: 1;
}

.c-search__input:focus::placeholder {
  color: var(--gold-primary);
  transform: translateX(2px);
  opacity: 0.8;
}

.c-search__clear {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.c-search__clear.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c-search__clear:hover {
  background: rgba(198, 167, 111, 0.15);
  color: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
}

.c-search__clear:active {
  transform: translateY(-50%) scale(0.9);
  background: rgba(198, 167, 111, 0.25);
}

.c-search__clear:focus-visible {
  outline: 2px solid var(--gold-secondary);
  outline-offset: 2px;
}

.c-search__clear svg {
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.c-header__nav {
  display: none;
  flex: 1 1 auto;
  padding: 0;
  margin: 0;
}

.c-header__nav-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
}

.c-header__nav-list {
  display: block;
  margin: 0;
  padding: 0;
}

.c-header__nav-items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  flex-wrap: nowrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.c-header__nav-item {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
}

.c-header__nav-item:last-child {
  margin-right: 0;
}

.c-header__nav-item:hover .c-header__nav-submenu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c-header__nav-link {
  position: relative;
  display: block;
  margin: 0;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.c-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-secondary) 0%, var(--gold-gradient) 100%);
  transform-origin: left;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-header__nav-link:hover,
.c-header__nav-link:focus {
  color: var(--gold-primary);
  text-decoration: none;
  transform: translateY(-1px);
}

.c-header__nav-link:hover::after,
.c-header__nav-link:focus::after {
  width: 100%;
}

.c-header__nav-link:active {
  transform: translateY(0);
}

.c-header__nav-link:focus-visible {
  outline: 2px solid var(--gold-secondary);
  outline-offset: 4px;
  border-radius: 2px;
}

.c-header__nav-link--active {
  color: var(--gold-primary);
  font-weight: 600;
}

.c-header__nav-link--active::after {
  width: 100%;
}
/* Social Media Component - Base Styles */

.c-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.c-social .c-social__title {
  margin: 0;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--dark-300);
  font-family: "BioSans Regular", sans-serif;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.c-social .c-social__items {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2rem;
  transition: all 0.4s ease 0.2s;
  flex-shrink: 0;
}

.c-social .c-social__item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-social .c-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(198, 167, 111, 0.1);
  border: 1px solid rgba(198, 167, 111, 0.2);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}
/* Facebook */
.c-social .c-social__link[href*="facebook"]:hover,
.c-social .c-social__link[href*="facebook"]:focus {
  background: var(--social-facebook);
  color: var(--color-white);
  border-color: var(--social-facebook);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}
/* Instagram */
.c-social .c-social__link[href*="instagram"]:hover,
.c-social .c-social__link[href*="instagram"]:focus {
  background: linear-gradient(45deg, var(--social-reddit), var(--social-instagram-gradient-2), var(--social-instagram-gradient-1), var(--social-snapchat));
  color: var(--color-white);
  border-color: var(--social-instagram-gradient-2);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(221, 42, 123, 0.3);
}
/* LinkedIn */
.c-social .c-social__link[href*="linkedin"]:hover,
.c-social .c-social__link[href*="linkedin"]:focus {
  background: var(--social-linkedin);
  color: var(--color-white);
  border-color: var(--social-linkedin);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}
/* TikTok */
.c-social .c-social__link[href*="tiktok"]:hover,
.c-social .c-social__link[href*="tiktok"]:focus {
  background: var(--color-black);
  color: var(--social-tiktok-accent);
  border-color: var(--color-black);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 0, 80, 0.3);
}
/* YouTube */
.c-social .c-social__link[href*="youtube"]:hover,
.c-social .c-social__link[href*="youtube"]:focus {
  background: var(--social-youtube);
  color: var(--color-white);
  border-color: var(--social-youtube);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}
/* Pinterest */
.c-social .c-social__link[href*="pinterest"]:hover,
.c-social .c-social__link[href*="pinterest"]:focus {
  background: var(--social-pinterest);
  color: var(--color-white);
  border-color: var(--social-pinterest);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.3);
}

.c-social .c-social__link:active {
  transform: scale(0.95);
}

.c-social .c-social__link:focus-visible {
  outline: 2px solid var(--gold-secondary);
  outline-offset: 2px;
}

.c-social .c-social__link i {
  line-height: 1;
}
/* Tablet Header CSS */

@media (max-width: 992px) {
  .c-contact-bar__link {
    font-size: 0.75rem;
  }

  .c-contact-bar__btn {
    font-size: 0.75rem;
  }

  .c-header__main-inner {
    min-height: 56px;
    gap: 0.5rem;
    justify-content: space-between;
  }

  .c-header__main-right {
    gap: 0.5rem;
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .c-header__nav .c-header__nav-list {
    display: none;
  }

  .c-header__nav .c-header__nav-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
/* Hide desktop menu, search, and header top on mobile */
  .c-header__top {
    display: none;
  }

  .c-header__nav {
    display: none;
  }

  .c-search {
    display: none;
  }
}
/* Mobile Header CSS */

@media (max-width: 768px) {
  .c-header__top {
    padding: 0.5rem 0;
  }

  .c-header__top-inner {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
  }

  .c-header__top-left,
  .c-header__top-right {
    width: 100%;
    justify-content: center;
  }

  .c-contact-bar__list {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .c-header__top .c-social {
    justify-content: center;
    gap: 0.75rem;
  }

  .c-header__top .c-social .c-social__title {
    display: none;
  }

  .c-header__top .c-social .c-social__items {
    gap: 0.5rem;
    justify-content: center;
  }
/* .c-contact-bar__link: Defined above in @media (max-width: 992px) at line 2927 */

  .c-contact-bar__btn {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .c-search__clear {
    width: 1.75rem;
    height: 1.75rem;
    right: 0.375rem;
  }

  .c-search__clear svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 576px) {
  .c-header__main-inner {
    min-height: 52px;
    gap: 0.25rem;
  }

  .c-header__logo-image {
    max-width: 130px;
    max-height: 50px;
  }

  .c-search {
    max-width: 100%;
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .c-header__logo-image {
    max-width: 145px;
    max-height: 55px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .c-header__logo-image {
    max-width: 155px;
    max-height: 58px;
  }
}

@media (min-width: 992px) {
  .c-header__nav {
    display: block;
  }

  .c-header__nav .c-header__nav-list {
    display: block;
  }

  .c-header__nav .c-header__nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .c-header__logo-image {
    max-width: 165px;
    max-height: 62px;
  }
}

@media (min-width: 1200px) {
  .c-header__main .container {
    max-width: 1400px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .c-header__logo-image {
    max-width: 175px;
    max-height: 65px;
  }
}

@media (min-width: 1400px) {
  .c-header__main .container {
    max-width: 1600px;
  }
}
/* HEADER SECTION � END */
/* Tablet-specific search adjustments */
@media (min-width: 768px) and (max-width: 992px) {
  .c-search {
    max-width: 200px;
  }
}
/* Hide search on small mobile */
@media (max-width: 576px) {
  .c-search {
    display: none;
  }
}
/* === BREADCRUMB NAVIGATION === */
/* Breadcrumb styles consolidated in c-sectionCard section above */
/* ========================================================
   BANNER & HERO
   ======================================================== */
.c-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.c-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.c-vehicleSearch.is-n-margin {
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.c-vehicleSearch__inner {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

@media (max-width: 768px) {
  .c-vehicleSearch__inner {
    padding: 0.75rem 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 576px) {
  .c-vehicleSearch__inner {
    padding: 0.5rem 0.375rem;
    border-radius: 0;
    box-shadow: none;
  }
}
/* ========================================================
   FEATURED CARD
   ======================================================== */
.c-featuredCard {
  padding: 1rem 0;
}
/* ========================================================
   HOMEPAGE SECTIONS
   ======================================================== */
.our-commitment {
  margin: 5px;
  border-radius: 20px;
  padding: 20px;
  background: var(--bg-gray);
  min-height: 250px;
}

.our-commitment p {
  font-size: 0.8rem;
}

.our-commitment img {
  max-width: 120px;
}

.how-section p {
  font-size: 0.8rem;
}
/* ========================================================
   GOOGLE REVIEWS INTEGRATION
   ======================================================== */
.g-agg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-white);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  padding: 8px 14px;
  margin: 0 auto 10px;
}

.g-agg-wrap {
  margin-top: 4px;
  margin-bottom: 6px;
}

.g-context {
  margin-top: 8px;
}

.g-agg-badge .g-ltr {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.g-agg-badge .g-blue {
  color: var(--google-blue);
}

.g-agg-badge .g-red {
  color: var(--google-red);
}

.g-agg-badge .g-yellow {
  color: var(--google-yellow);
}

.g-agg-badge .g-green {
  color: var(--google-green);
}

.g-agg-badge .g-sep {
  color: var(--text-muted);
  margin: 0 2px;
}

.g-agg-badge .g-stars {
  color: var(--google-yellow);
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
}

.g-agg-badge .g-score {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-500);
}

.google-reviews-content {
  overflow: visible;
}

.slider-reviews {
  margin-top: 20px;
  padding: 0 50px;
}

.slider-reviews .slick-list {
  overflow: hidden;
  margin: 0 -50px;
  padding: 0 40px;
}

.slider-reviews .review-card {
  margin: 0 10px;
  padding: 16px;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 350px;
  max-height: 400px;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.slider-reviews .review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.slider-reviews .review-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.slider-reviews .review-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 3px solid var(--gold-secondary);
}

.slider-reviews .review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-reviews .review-avatar-placeholder {
  font-size: 28px;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.slider-reviews .review-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.slider-reviews .reviewer-name {
  font-weight: 700;
  margin: 0;
  color: var(--gold-primary);
  font-size: 1.05rem;
  text-align: center;
}

.slider-reviews .reviewer-name span {
  display: block;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-reviews .review-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.slider-reviews .rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

.slider-reviews .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.slider-reviews .star {
  font-size: 16px;
  margin: 0 1px;
}

.slider-reviews .star-full {
  color: var(--google-yellow);
}

.slider-reviews .star-half {
  color: var(--google-yellow);
}

.slider-reviews .star-empty {
  color: var(--gray-500);
}

.slider-reviews .rating-count {
  margin-left: 4px;
  font-weight: 700;
  color: var(--dark-500);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.slider-reviews .review-date {
  font-size: 0.75rem;
  color: var(--gray-700);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-reviews .review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding: 0 8px 60px 8px;
  align-items: center;
  min-height: 0;
  overflow: hidden;
}

.slider-reviews .review-text {
  margin: 0;
  font-weight: 500;
  color: var(--dark-100);
  font-size: 1rem;
  line-height: 1.45;
  text-align: center;
  overflow-wrap: anywhere;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 180px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-reviews .review-actions {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  margin: 0;
  padding: 8px 0;
  text-align: center;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  box-sizing: border-box;
}

.slider-reviews .review-expand-btn {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 48px;
  text-align: center;
  white-space: nowrap;
  margin: 0 auto;
  box-sizing: border-box;
  line-height: 1.5;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-reviews .review-expand-btn:hover {
  background-color: var(--color-black);
  border-color: var(--gold-secondary);
  color: var(--color-white);
  text-decoration: none;
}

.slider-reviews .review-expand-btn:focus {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--gold-secondary);
  outline: none;
}

.slider-reviews .review-expand-btn:active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--gold-secondary);
}

@media (min-width: 576px) and (max-width: 992px) {
  .slider-reviews .review-card {
    margin: 0 8px;
    padding: 14px;
    min-height: 340px;
    max-height: 380px;
  }
  .slider-reviews .review-content {
    padding: 0 6px 55px 6px;
  }
  .slider-reviews .review-text {
    font-size: 0.9rem;
    max-height: 110px;
  }
  .slider-reviews .review-actions {
    bottom: 14px;
    left: 14px;
    right: 14px;
    width: calc(100% - 28px);
  }
  .slider-reviews .review-expand-btn {
    font-size: 0.8rem;
    width: 85px;
    height: 30px;
  }
}

.slider-reviews .review-placeholder {
  opacity: 0.7;
}

.slider-reviews .review-placeholder .review-text {
  font-style: italic;
  color: var(--gray-700);
}

#googleReviewsSection .slider-reviews .review-text {
  color: var(--dark-100);
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}

#googleReviewsSection {
  margin-top: 0;
  padding-top: 8px;
}
/* Google Reviews section styles consolidated in c-sectionCard section above */

.c-banner {
  margin-top: 0;
  min-height: 70vh;
}
/* .our-commitment: Defined in BANNER SECTION above (line 3185+) */

.our-commitment p {
  font-size: 0.8rem;
}

.our-commitment img {
  max-width: 120px;
}

.how-section p {
  font-size: 0.8rem;
}
/* ========================================================
   SECTION: FEATURES GRID
   Features grid layout for homepage
            ======================================================== */
.features-grid {
  margin-top: 0.25rem;
}

.features-grid .features-column {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
  background-color: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
}

.features-grid .feature-item {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-300);
  background-color: var(--color-white);
  transition: background-color 0.2s ease;
}

.features-grid .feature-item:nth-child(even) {
  background-color: var(--gray-100);
}

.features-grid .feature-item:last-child {
  border-bottom: none;
}

.features-grid .feature-item:hover {
  background-color: var(--gray-300);
}

.features-grid .feature-item i {
  display: none;
}
/* ========================================================
   SECTION: PRODUCT DETAILS
   Product detail page components
            ======================================================== */
/* ========================================================
   SECTION: SEARCH RESULTS
   Search results page styling
            ======================================================== */
.search_result {
  padding: 1rem;
}

.c-sellCarForm__header--title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-200);
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.2;
}

.c-sellCarForm__header {
  margin-bottom: 2rem;
  padding: 0;
}

.c-sellCarForm__label--required {
  color: var(--error-400);
  font-weight: 600;
  text-transform: none;
}
/* ========================================================
   SECTION: LOADING STATES
   Loading spinners and state indicators
            ======================================================== */
.loading-container {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container img {
  max-width: 120px;
  height: auto;
  aspect-ratio: 1;
}

.loading-container.loading-hidden {
  display: none;
}

.loading-container.loading-large img {
  max-width: 300px;
}

.tagline-large {
  font-size: 1.19rem;
}
/* ========================================================
   SECTION: BLOG COMPONENTS - Moved to components/blog.css
   Blog listing and article components
            ======================================================== */
/* Blog styles extracted to components/blog.css */

/* ========================================================
   SECTION: FAQ COMPONENTS
   FAQ page specific styles
            ======================================================== */
/* ========================================================
   SECTION: ABOUT US PAGE
   About us page sections and content
            ======================================================== */
/* ========================================================
   SECTION: CONTENT BOTTOM SECTIONS
   Bottom content sections (guarantee, stock info)
            ======================================================== */
.content-bottom__guarantee {
  font-weight: bold;
  text-align: center;
}

.content-bottom__description {
  text-align: center;
}

.content-bottom__stock-info {
  font-weight: bold;
  text-align: center;
}
/* ========================================================
   SECTION: CUSTOM TEXT CONTENT
   Custom text content styling
            ======================================================== */

@media (max-width: 576px) {

  section[aria-labelledby="finance-faqs"] .acc-head,
  section[aria-labelledby="faq-title"] .acc-head,
  section[aria-labelledby="commercial-faqs"] .acc-head,
  section[aria-labelledby="sell-faqs"] .acc-head,
  section[aria-labelledby="buycar-faqs"] .acc-head,
  section[aria-labelledby="consign-faqs"] .acc-head,
  section[aria-labelledby="request-faqs"] .acc-head,
  section[aria-labelledby="tradein-faqs"] .acc-head,
  section[aria-labelledby="sold-faqs"] .acc-head {
    font-size: 16px;
    padding: 10px 45px 10px 12px;
  }
}
/* ============================================
   CONTACT PAGES SECTION � START
   All contact page related styles consolidated
      ============================================ */
/* ========================================================
   CONTACT PAGE � Main Contact Page
   Contact page map, info sections, and contact info cards
         ======================================================== */
.contact-page .map {
  position: relative;
  min-height: clamp(180px, 30vw, 420px);
  height: clamp(180px, 30vw, 420px);
}

.contact-page .map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.contact-page .box-shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.c-contactInfo__wrapper {
  display: block;
}

.c-contactInfo__section {
  background: var(--gold-primary);
  color: var(--color-white);
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 0 12px 12px;
}

.c-contactInfo__section--dark {
  background: var(--dark-300);
  color: var(--color-white);
}

.c-contactInfo__header {
  display: flex;
  align-items: center;
  padding: 16px 16px 12px;
  color: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
  margin-bottom: 12px;
}

.c-contactInfo__header i {
  color: var(--color-black);
  font-size: 22px;
  line-height: 1;
  margin-right: 10px;
}

.c-contactInfo__section .c-contactInfo__header i {
  color: var(--color-black);
}

.c-contactInfo__section h3 {
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
}

.c-contactInfo__section p {
  margin: 0;
  font-size: 14px;
  opacity: 0.95;
  color: var(--color-white);
}

.c-contactInfo__section--email .c-contactInfo__header p {
  color: var(--color-black);
  opacity: 1;
}

.c-contactInfo__section ul {
  list-style: none;
  padding: 0 16px;
  margin: 0;
}

.c-contactInfo__section ul li {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
  align-items: center;
}

.c-contactInfo__section--email ul li {
  white-space: normal;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.c-contactInfo__section ul li {
  white-space: nowrap;
  overflow: hidden;
}

.c-contactInfo__section ul li:last-child {
  border-bottom: 0;
}

.c-contactInfo__section--dark .c-contactInfo__header {
  border-bottom: 1px solid rgba(198, 167, 111, 0.45);
}

.c-contactInfo__section--dark .c-contactInfo__header h3 {
  color: var(--gold-primary);
}

.c-contactInfo__section--dark .c-contactInfo__header p {
  color: var(--gold-primary);
}

.c-contactInfo__section--dark ul li {
  border-bottom: 1px solid rgba(198, 167, 111, 0.35);
}

.c-contactInfo__section--dark ul li:last-child {
  border-bottom: 0;
}

.c-contactInfo__section ul li b {
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
  margin-right: 6px;
}

.c-contactInfo__section ul li span a {
  color: var(--color-black);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.c-contactInfo__section ul li span {
  color: var(--color-white);
  opacity: 1;
}

.c-contactInfo__section--email ul li span a:hover {
  color: var(--color-white);
  opacity: 1;
}

.c-contactInfo__section ul li span {
  min-width: 0;
  flex: 1 1 auto;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-contactInfo__section--email ul li span {
  flex: 1 1 auto;
  text-align: right;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.c-contact__wrapper {
  margin-top: 3.125rem;
  padding: 0;
}

.c-contactForm {
  padding: 0;
}

.c-contactForm__form {
  padding: 0;
}

.c-contactForm__title {
  font-size: 1.875rem;
  margin-bottom: 1.5625rem;
}

.c-contactForm__title span {
  color: var(--gold-primary);
}

.c-contactForm p {
  margin-bottom: 1rem;
}
/* Mobile Responsive Styles for Contact Info */
@media (max-width: 992px) {
  .c-contactInfo__wrapper {
    margin-bottom: 2rem;
  }

  .c-contactInfo__section {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .c-contactInfo__header {
    padding: 12px 12px 8px;
  }

  .c-contactInfo__header i {
    font-size: 20px;
    margin-right: 8px;
  }

  .c-contactInfo__section h3 {
    font-size: 1.125rem;
  }

  .c-contactInfo__section p {
    font-size: 13px;
  }

  .c-contactInfo__section ul {
    padding: 0 12px;
  }

  .c-contactInfo__section ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0;
  }

  .c-contactInfo__section ul li b {
    margin-bottom: 2px;
  }

  .c-contactInfo__section ul li span {
    text-align: left;
    width: 100%;
  }

  .c-contactInfo__section--email ul li span {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .c-contact__wrapper {
    margin-top: 2rem;
  }

  .c-contactInfo__section {
    padding: 0 8px 8px;
    margin-bottom: 1rem;
  }

  .c-contactInfo__header {
    padding: 10px 10px 8px;
  }

  .c-contactInfo__section h3 {
    font-size: 1rem;
  }

  .c-contactInfo__section p {
    font-size: 12px;
  }

  .c-contactInfo__section ul {
    padding: 0 10px;
  }

  .c-contactInfo__section ul li {
    padding: 6px 0;
    font-size: 14px;
  }

  .c-contactInfo__section ul li span a {
    font-size: 14px;
    word-break: break-all;
  }
}
/* CONTACT FORM � Form Fields & Validation */
.c-contactForm__field {
  margin-bottom: 1.25rem;
}

.c-contactForm__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-100);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.c-contactForm__label .required {
  color: var(--error-400);
  font-weight: 700;
}

.c-contactForm__label .optional {
  color: var(--gray-700);
  font-weight: 400;
  font-size: 0.8125rem;
}

.c-contactForm__label .char-counter {
  float: right;
  color: var(--gray-700);
  font-weight: 400;
  font-size: 0.8125rem;
}

.c-contactForm__label .char-counter.warning {
  color: var(--warning-400);
}

.c-contactForm__label .char-counter.danger {
  color: var(--error-400);
  font-weight: 600;
}

.c-contactForm__input .error {
  display: none;
  color: var(--error-400);
  font-size: 0.875rem;
  margin-top: 0.375rem;
  font-weight: 500;
  line-height: 1.4;
}

.c-contactForm__input .error:before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.375rem;
}

.c-contactForm__inputField,
.c-contactForm__textarea {
  width: 100%;
  background: var(--form-input-bg);
  border: var(--form-input-border);
  border-left: var(--form-input-border-left);
  border-radius: var(--form-input-border-radius);
  padding: var(--form-input-padding);
  box-shadow: none;
  font-size: var(--form-input-font-size);
  font-weight: var(--form-input-font-weight);
  line-height: var(--form-input-line-height);
  color: var(--form-input-text-color);
  transition: var(--form-input-transition);
}

.c-contactForm__inputField {
  height: var(--form-input-height);
}
/* Mobile: Increase height for 16px font */
@media (max-width: 768px) {
  .c-contactForm__inputField {
    height: 54px;
    font-size: 16px; /* Prevent iOS auto-zoom on input focus */
  }

  .c-contactForm__textarea {
    font-size: 16px; /* Prevent iOS auto-zoom on input focus */
  }
}

.c-contactForm__textarea {
  min-height: 120px;
  resize: vertical;
}

.c-contactForm__inputField:focus,
.c-contactForm__textarea:focus,
.c-contactForm__select:focus {
  border-color: var(--form-input-border-color-focus);
  background-color: var(--form-input-bg-focus);
  outline: 3px solid rgba(198, 167, 111, 0.25);
  outline-offset: 0;
  box-shadow: var(--form-input-box-shadow-focus);
}

.c-contactForm__inputField::placeholder,
.c-contactForm__textarea::placeholder {
  color: var(--form-input-placeholder-color);
  opacity: 1;
  font-size: var(--form-input-font-size);
  font-weight: 400;
}

.c-contactForm__inputField.is-invalid {
  border-color: var(--error-400);
  background-color: var(--error-50);
}

.c-contactForm__inputField.is-valid {
  border-color: var(--success-400);
  background-color: var(--success-50);
}

.c-contactForm__submit {
  min-height: 44px;
  padding: 10px 24px;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  background-color: var(--gold-primary);
  border: 2px solid var(--gold-secondary);
  color: var(--color-black);
  cursor: pointer;
  text-align: center;
  font-family: var(--font-body);
  min-width: 140px;
  display: block;
  margin: 0 auto;
}

.c-contactForm__submit span {
  color: var(--color-black);
}

.c-contactForm__submit:hover {
  background-color: var(--color-black);
  border-color: var(--gold-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.c-contactForm__submit:hover span {
  color: var(--color-white);
}

.c-contactForm__submit:focus {
  background-color: var(--color-black);
  border-color: var(--gold-secondary);
  color: var(--color-white);
  box-shadow: 0 0 0 0.2rem rgba(198, 167, 111, 0.35);
  outline: none;
}

.c-contactForm__submit:focus span {
  color: var(--color-white);
}

.c-contactForm__submit:active {
  background-color: var(--color-black);
  border-color: var(--gold-secondary);
  color: var(--color-white);
  transform: translateY(0);
}

.c-contactForm__submit:active span {
  color: var(--color-white);
}

.c-contactForm__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.col-sm-12 .c-contactForm__submit {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .c-contactForm__submit {
    width: 100%;
    min-height: 48px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    float: none;
  }
}

#recaptcha-error i {
  margin-right: 0.375rem;
}
/* ========================================================
   CONTACT THANK YOU � Confirmation & Conversion Funnel
   Thank you page after form submission with conversion options
   ======================================================= */
.thank-you-icon {
  color: var(--gold-primary);
  font-size: 2.2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.contact-thank-you-funnel .phone-link {
  color: var(--gold-primary);
  font-weight: bold;
  text-decoration: none;
}

.contact-thank-you-funnel .phone-link:hover {
  color: var(--color-black);
  text-decoration: underline;
}
/* CONTACT PAGES SECTION � END */
/* ============================================
   OTP VERIFICATION MODAL � START
    One-Time Password (OTP) verification modal styles
   ============================================ */
.otp-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.otp-modal[aria-hidden="false"] {
  display: flex;
  opacity: 1;
}

.otp-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.otp-modal__container {
  position: relative;
  width: 100%;
  max-width: 400px;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.otp-modal[aria-hidden="false"] .otp-modal__container {
  transform: scale(1);
}

.otp-modal__content {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.otp-modal__header {
  background: var(--color-white);
  color: var(--color-black);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.otp-modal__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  color: var(--color-black);
}

.otp-modal__close {
  background: none;
  border: none;
  color: var(--color-black);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: all 0.2s ease;
  margin: 0;
}

.otp-modal__close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.otp-modal__close span {
  line-height: 1;
}

.otp-modal__body {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}

.otp-icon-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.otp-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(198, 167, 111, 0.35),
    0 0 0 8px rgba(198, 167, 111, 0.1);
  position: relative;
  animation: fadeIn 0.5s ease 0.2s backwards;
}

.otp-icon-circle::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: rgba(198, 167, 111, 0.08);
  z-index: -1;
}

.otp-icon-circle i {
  font-size: 1.75rem;
  color: white;
  animation: pulse 2s ease infinite;
}

.otp-modal__description {
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 1.75rem;
  line-height: 1.6;
  text-align: center;
}

.otp-modal__description strong {
  color: var(--gold-primary);
  font-weight: 600;
  white-space: nowrap;
}

.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}

.otp-input:hover {
  border-color: var(--gold-secondary);
  box-shadow: none;
}

.otp-input:focus {
  border-color: var(--gold-secondary);
  border-width: 2px;
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.2);
  background: var(--color-white);
  transform: scale(1.08);
  z-index: 10;
}

.otp-input.filled {
  border-color: var(--gold-secondary);
  border-width: 2px;
  background: linear-gradient(
    135deg,
    rgba(198, 167, 111, 0.08) 0%,
    rgba(198, 167, 111, 0.12) 100%
  );
  color: var(--dark-400);
  font-weight: 800;
  box-shadow: none;
  transform: scale(1.05);
}

.otp-input.error {
  border-color: var(--error-400);
  border-width: 2px;
  background: rgba(220, 53, 69, 0.08);
  animation: shake 0.5s ease;
  box-shadow: none;
}

.otp-input.success {
  border-color: var(--success-400);
  border-width: 2px;
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.08) 0%,
    rgba(40, 167, 69, 0.12) 100%
  );
  animation: pulse 0.5s ease;
  box-shadow: none;
}

.otp-error {
  background: var(--error-200);
  border: 1px solid var(--error-300);
  color: var(--error-800);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.otp-success {
  background: var(--success-200);
  border: 1px solid var(--success-300);
  color: var(--success-700);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.otp-modal__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.otp-btn {
  flex: 1;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 100px;
}

.otp-btn--primary {
  background: var(--gold-primary);
  color: white;
  box-shadow: 0 2px 4px rgba(198, 167, 111, 0.3);
}

.otp-btn--primary:hover:not(:disabled) {
  background: var(--gold-secondary);
  box-shadow: 0 4px 8px rgba(198, 167, 111, 0.4);
  transform: translateY(-1px);
}

.otp-btn--primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(198, 167, 111, 0.3);
}

.otp-btn--secondary {
  background: var(--color-white);
  color: var(--gray-700);
  border: 1px solid var(--gray-400);
}

.otp-btn--secondary:hover:not(:disabled) {
  background: var(--gray-100);
  border-color: var(--gold-secondary);
  color: var(--gold-primary);
  transform: translateY(-1px);
}

.otp-btn--secondary:active:not(:disabled) {
  transform: translateY(0);
}

.otp-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.otp-btn.loading {
  pointer-events: none;
  color: transparent;
}

.otp-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  color: white;
}

.otp-resend-container {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-300);
}

.otp-timer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}

.otp-timer.warning {
  color: var(--error-400);
  font-weight: 600;
}

@media (max-width: 360px) {
  .otp-modal__container {
    max-width: 260px;
  }
  .otp-inputs {
    gap: 2px;
  }
  .otp-input {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    padding: 8px 0;
    line-height: 1;
  }
}
/* OTP VERIFICATION MODAL � END */
/* ========================================================
   SECTION: SEC TITLE COMPONENT
   Section title component
            ======================================================== */
/* ============================================================================
   START SECTION: UNIFIED FILTER COMPONENT

   Base component for all vehicle filters (Buy, Sell, Commercial, Sold)

      - buy_car_filter.php
   - sell_car_filter.php
   - commercial_vehicle_filter.php
   - sold_vehicle_filter.php

      - .c-filter (base form)
   - .c-filter__field (field container)
   - .c-filter__label (field labels)
   - .c-filter__input (input wrapper)
   - .c-filter__select (dropdown selects)
   - .c-filter__priceSlider (price range slider)
   - .c-filter__priceInput (range input)
   - .c-filter__priceLabels (price label container)
   - .c-filter__priceLabel (individual price label)
   - .c-filter__submit (primary button)
   - .c-filter__submit--secondary (secondary button)
   - .c-filter__error (error message)

   ============================================================================ */

/* Field Labels */
.c-filter .c-filter__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-black);
  letter-spacing: 0.01em;
}

.c-filter .c-filter__input {
  position: relative;
  z-index: 1;
}

/* Select Dropdowns */
.c-filter .c-filter__select {
  width: 100%;
  height: 48px;
  padding: 12px 1.3125rem;
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray-900);
  vertical-align: middle;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.c-filter .c-filter__select option[value=""] {
  color: var(--gray-600);
}

.c-filter .c-filter__select:focus {
  outline: none;
  border-color: var(--gold-secondary);
  border-left-color: var(--gold-secondary);
  box-shadow: 0 0 0 0.2rem rgba(198, 167, 111, 0.25);
  background: var(--color-white);
  color: var(--color-black);
  z-index: 100;
}

.c-filter .c-filter__select:hover:not(:focus) {
  border-color: var(--gold-secondary);
  border-left-color: var(--gold-secondary);
  background: var(--bg-lightest);
}

.c-filter .c-filter__select:valid:not(:focus) {
  background: var(--gray-100);
  border-color: var(--gray-500);
  border-left-color: var(--gold-secondary);
  color: var(--color-black);
}

/* Mobile: Proportional margins that match container padding */

/* Price Slider Container - Unified (Buy, Commercial, Sold only) */
.c-filter .c-filter__priceSlider {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.c-filter .c-filter__priceSlider--holder {
  background: var(--color-white);
  border: 2px solid var(--bg-gray);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  height: 56px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
/* Price Slider Holder with Track Background */
.c-filter .c-filter__priceSlider--holder::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  right: 16px;
  height: 6px;
  background: var(--info-light);
  border-radius: 3px;
  z-index: 1;
}

.c-filter .c-filter__priceSlider--holder:hover {
  border-color: var(--gold-secondary);
  background: var(--bg-lightest);
}

.c-filter .c-filter__priceSlider--holder:focus-within {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 4px rgba(198, 167, 111, 0.1);
  background: var(--color-white);
}

.c-filter .c-filter__priceProgress {
  position: absolute;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-secondary) 0%, var(--gold-secondary) 100%);
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  box-shadow: 0 1px 3px rgba(198, 167, 111, 0.3);
}

.c-filter .c-filter__priceInput {
  position: absolute;
  width: calc(100% - 32px);
  height: 6px;
  background: transparent;
  pointer-events: auto;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
}

.c-filter .c-filter__priceInput::-webkit-slider-track {
  background: transparent;
  border: none;
  outline: none;
  height: 6px;
  border-radius: 3px;
}
/* ========================================================
   UNIFIED FILTER CSS - Replaces all 4 individual filter blocks
   All price sliders, buttons, and responsive styles unified
   ======================================================== */

.c-filter .c-filter__priceInput::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 3px solid var(--color-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(198, 167, 111, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  z-index: 3;
}

.c-filter .c-filter__priceInput::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--gold-secondary);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(198, 167, 111, 0.4);
}

.c-filter .c-filter__priceInput::-webkit-slider-thumb:active {
  transform: scale(1.1);
  background: var(--gold-primary);
}

.c-filter .c-filter__priceInput::-moz-range-track {
  background: transparent;
  border: none;
  outline: none;
  height: 6px;
  border-radius: 3px;
}

.c-filter .c-filter__priceInput::-moz-range-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 3px solid var(--color-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.c-filter .c-filter__priceInput:first-of-type {
  z-index: 4;
}

.c-filter .c-filter__priceInput:last-of-type {
  z-index: 5;
}

.c-filter .c-filter__priceLabels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.3px;
}

.c-filter .c-filter__priceLabel {
  border: 2px solid var(--gray-300);
  padding: 6px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--color-white) 100%);
  font-weight: 600;
  color: var(--gray-800);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  min-width: 70px;
  text-align: center;
  transition: all 0.2s ease;
  font-size: 0.65rem;
}

.c-filter .c-filter__priceLabel:first-child {
  color: var(--gray-700);
  text-align: left;
}

.c-filter .c-filter__priceLabel:last-child {
  color: var(--gray-700);
  text-align: right;
}

.c-filter .c-filter__submit {
  min-height: 44px;
  padding: 10px 24px;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  background-color: var(--gold-primary);
  border: 2px solid var(--color-black);
  color: var(--color-black);
}

.c-filter .c-filter__submit:hover {
  background-color: var(--color-black);
  border-color: var(--gold-secondary);
  color: var(--color-white);
  border-radius: 32px;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.3);
}

.c-filter .c-filter__submit:focus {
  background-color: var(--color-black);
  border-color: var(--gold-secondary);
  color: var(--color-white);
  box-shadow: 0 0 0 0.2rem rgba(198, 167, 111, 0.35);
  border-radius: 32px;
  outline: none;
}

.c-filter .c-filter__submit:active {
  background-color: var(--color-black);
  border-color: var(--gold-secondary);
  color: var(--color-white);
  border-radius: 32px;
  transform: translateY(0);
}

.c-filter .c-filter__submit--secondary {
  background-color: var(--color-black);
  border: 2px solid var(--gold-secondary);
  color: var(--color-white);
}

.c-filter .c-filter__submit--secondary:hover {
  background-color: var(--gold-primary);
  border-color: var(--color-black);
  color: var(--color-black);
  border-radius: 32px;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(160, 136, 80, 0.3);
}

.c-filter .c-filter__submit--secondary:focus {
  background-color: var(--gold-primary);
  border-color: var(--color-black);
  color: var(--color-black);
  box-shadow: 0 0 0 0.2rem rgba(198, 167, 111, 0.35);
  border-radius: 32px;
  outline: none;
}

.c-filter .c-filter__submit--secondary:active {
  background-color: var(--gold-secondary);
  border-color: var(--color-black);
  color: var(--color-black);
  border-radius: 32px;
  transform: translateY(0);
}

.c-filter__field .error {
  color: var(--error-400);
  font-size: 0.875em;
  margin-top: 0.25rem;
  display: block;
}
/* MOBILE RESPONSIVE - Unified for all filters */
@media (max-width: 992px) {
  .c-filter .c-filter__submit,
  .c-filter .c-filter__submit--secondary {
    width: 100%;
    display: block;
    margin-bottom: 0.75rem;
  }
}

/* ========================================================
   SECTION CARD COMPONENT (c-sectionCard)
   ======================================================== */
/* Base Component */
.container .c-sectionCard.c-sectionCard--plainHeading .c-sectionCard__header {
  margin-bottom: 0;
}

main#main-content .c-sectionCard:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
/* Plain Heading Variant - Header Styles */
.c-sectionCard.c-sectionCard--plainHeading .c-sectionCard__header,
:is(section[aria-labelledby="eligibility-title"], section[aria-labelledby="finance-faqs"], section[aria-labelledby="finance-eligibility"], section[aria-labelledby="faq-title"], section[aria-labelledby="commercial-faqs"], section[aria-labelledby="sell-faqs"], section[aria-labelledby="buycar-faqs"], section[aria-labelledby="sold-faqs"]) .c-sectionCard__header {
  border-bottom: 0.0625rem solid var(--gray-500);
  padding-block: 0;
  padding-inline: 1rem;
  margin-bottom: 0;
  background: transparent;
  position: relative;
}

.c-sectionCard.c-sectionCard--plainHeading .c-sectionCard__header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 1.5rem;
  width: 60px;
  height: 3px;
  background: var(--gold-secondary);
  border-radius: 2px;
  z-index: 10;
}

section[aria-labelledby="finance-eligibility"] .c-sectionCard__header {
  text-align: center;
  margin-bottom: 2rem;
}

.c-sectionCard.c-sectionCard--plainHeading .c-sectionCard__header.justify-content-start {
  text-align: left;
  margin-bottom: 1rem;
}

.c-sectionCard.c-sectionCard--plainHeading .c-sectionCard__header.justify-content-start .c-sectionCard__heading {
  justify-content: flex-start;
}

.c-sectionCard.c-sectionCard--plainHeading .c-sectionCard__header.justify-content-start .c-sectionCard__heading--title {
  text-align: left;
}

@media (min-width: 768px) {
  .c-sectionCard.c-sectionCard--plainHeading .c-sectionCard__header,
  :is(section[aria-labelledby="eligibility-title"], section[aria-labelledby="finance-faqs"], section[aria-labelledby="finance-eligibility"], section[aria-labelledby="faq-title"], section[aria-labelledby="commercial-faqs"], section[aria-labelledby="sell-faqs"], section[aria-labelledby="buycar-faqs"], section[aria-labelledby="sold-faqs"]) .c-sectionCard__header {
    padding-inline: 1.5rem;
    padding-block: 0.5rem;
  }
}
/* Plain Heading Variant - Heading Styles */
.c-sectionCard.c-sectionCard--plainHeading .c-sectionCard__heading,
:is(section[aria-labelledby="eligibility-title"], section[aria-labelledby="finance-faqs"], section[aria-labelledby="finance-eligibility"], section[aria-labelledby="faq-title"], section[aria-labelledby="commercial-faqs"], section[aria-labelledby="sell-faqs"], section[aria-labelledby="buycar-faqs"], section[aria-labelledby="sold-faqs"]) .c-sectionCard__heading {
  max-width: 100%;
  align-items: center;
}

.c-sectionCard.c-sectionCard--plainHeading .c-sectionCard__heading::after,
:is(section[aria-labelledby="eligibility-title"], section[aria-labelledby="finance-faqs"], section[aria-labelledby="finance-eligibility"], section[aria-labelledby="faq-title"], section[aria-labelledby="commercial-faqs"], section[aria-labelledby="sell-faqs"], section[aria-labelledby="buycar-faqs"], section[aria-labelledby="sold-faqs"]) .c-sectionCard__heading::after {
  display: none;
}

.c-sectionCard__heading--title {
  background: transparent;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 0;
  padding: 0.625rem 0;
}

.c-sectionCard__heading--title span {
  color: var(--gold-primary);
}
/* Body Styles */
.c-sectionCard > .c-sectionCard__body {
  padding: 1rem 1rem 1.5rem;
}

.c-sectionCard .c-sectionCard__body h6 {
  color: var(--gray-900);
}

.c-sectionCard .c-sectionCard__body h6 span {
  color: var(--gold-primary);
}
/* Breadcrumb Section Variant */
.breadcrumb-section.c-sectionCard {
  margin-bottom: 0.75rem;
  box-shadow: none;
}

.c-sectionCard.breadcrumb-section .c-sectionCard__body {
  padding: 0.5rem 1rem;
}
/* Page-Specific Overrides */

.contact-page .c-sectionCard__body {
  padding: 0.75rem 1rem 1.25rem;
}
/* Integration with Other Components */
.c-sectionCard__body .c-tabs.c-tabs--detail {
  margin-top: -0.75rem;
}

.c-tabs--detail .c-tabs__content {
  margin-top: 1.5rem;
}

.c-tabs--detail .c-tabs__pane {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.3s ease-in-out;
}



.c-tabs--detail .features-grid {
  margin-top: 0;
}

.c-tabs--detail .features-grid .features-column {
  margin-bottom: 1rem;
}

.c-tabs--detail .features-grid .feature-item {
  padding: 0.875rem 1.25rem;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.c-tabs--detail .features-grid .feature-item:hover {
  background-color: var(--gray-100);
  border-left-color: var(--gold-secondary);
  padding-left: 1.5rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.c-sectionCard__body .c-vehicleSearch--standalone {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}
/* Google Reviews Section */
#googleReviewsSection .c-sectionCard {
  padding-top: 8px;
}

#googleReviewsSection .c-sectionCard__header {
  margin-bottom: 0;
  padding-bottom: 0;
}

#googleReviewsSection .c-sectionCard__heading {
  margin-bottom: 0;
}

#googleReviewsSection .c-sectionCard__heading--title {
  margin: 0;
}

#googleReviewsSection .c-sectionCard__body {
  margin-top: 0;
  padding-top: 0;
  overflow: visible;
}
/* FAQ Page Accordion Integration */
.c-sectionCard__body .acc-content {
  padding: 15px 10px;
  display: none;
  border-radius: 12px;
  margin-top: 5px;
  overflow: hidden;
}

#content-faq .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#content-faq .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#content-faq .c-sectionCard__body p,
#content-faq .c-sectionCard__body ul,
#content-faq .c-sectionCard__body li {
  font-size: 0.9375rem;
  line-height: 1.6;
  text-align: left;
}

#content-faq .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#content-faq .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#content-faq .c-sectionCard__body strong {
  font-weight: bold;
}

#content-faq .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#content-faq .c-sectionCard__body .text-center {
  text-align: center;
}

@media (max-width: 576px) {
  #content-buycar .c-sectionCard__body h2,
  #content-commercial .c-sectionCard__body h2,
  #content-consigncar .c-sectionCard__body h2,
  #content-faq .c-sectionCard__body h2,
  #content-finance .c-sectionCard__body h2,
  #content-requestcar .c-sectionCard__body h2,
  #content-sellcar .c-sectionCard__body h2,
  #content-terms .c-sectionCard__body h2,
  #content-tradein .c-sectionCard__body h2,
  #content-privacy .c-sectionCard__body h2,
  #content-sold .c-sectionCard__body h2 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }

  #content-buycar .c-sectionCard__body h3,
  #content-commercial .c-sectionCard__body h3,
  #content-consigncar .c-sectionCard__body h3,
  #content-faq .c-sectionCard__body h3,
  #content-finance .c-sectionCard__body h3,
  #content-requestcar .c-sectionCard__body h3,
  #content-sellcar .c-sectionCard__body h3,
  #content-terms .c-sectionCard__body h3,
  #content-tradein .c-sectionCard__body h3,
  #content-privacy .c-sectionCard__body h3,
  #content-sold .c-sectionCard__body h3 {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}
/* END SECTION: SECTION CARD COMPONENT */
/* ========================================================
   SECTION: ACCORDION COMPONENTS (dt/dd only - keep in custom)
   FAQ definition list styles for accordion content
            ======================================================== */

section[aria-labelledby="finance-faqs"] .acc-container,
section[aria-labelledby="faq-title"] .acc-container,
section[aria-labelledby="commercial-faqs"] .acc-container,
section[aria-labelledby="sell-faqs"] .acc-container,
section[aria-labelledby="buycar-faqs"] .acc-container,
section[aria-labelledby="consign-faqs"] .acc-container,
section[aria-labelledby="request-faqs"] .acc-container,
section[aria-labelledby="tradein-faqs"] .acc-container,
section[aria-labelledby="sold-faqs"] .acc-container {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin-bottom: 1.5rem;
}
section[aria-labelledby="finance-faqs"] .acc,
section[aria-labelledby="faq-title"] .acc,
section[aria-labelledby="commercial-faqs"] .acc,
section[aria-labelledby="sell-faqs"] .acc,
section[aria-labelledby="buycar-faqs"] .acc,
section[aria-labelledby="consign-faqs"] .acc,
section[aria-labelledby="request-faqs"] .acc,
section[aria-labelledby="tradein-faqs"] .acc,
section[aria-labelledby="sold-faqs"] .acc {
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
section[aria-labelledby="finance-faqs"] .acc-head,
section[aria-labelledby="faq-title"] .acc-head,
section[aria-labelledby="commercial-faqs"] .acc-head,
section[aria-labelledby="sell-faqs"] .acc-head,
section[aria-labelledby="buycar-faqs"] .acc-head,
section[aria-labelledby="consign-faqs"] .acc-head,
section[aria-labelledby="request-faqs"] .acc-head,
section[aria-labelledby="tradein-faqs"] .acc-head,
section[aria-labelledby="sold-faqs"] .acc-head {
  border: 2px solid var(--gold-secondary);
  background-color: var(--color-white);
  color: var(--gold-primary);
  padding: 12px 50px 12px 15px;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}
section[aria-labelledby="finance-faqs"] .acc-head:hover,
section[aria-labelledby="faq-title"] .acc-head:hover,
section[aria-labelledby="commercial-faqs"] .acc-head:hover,
section[aria-labelledby="sell-faqs"] .acc-head:hover,
section[aria-labelledby="buycar-faqs"] .acc-head:hover,
section[aria-labelledby="consign-faqs"] .acc-head:hover,
section[aria-labelledby="request-faqs"] .acc-head:hover,
section[aria-labelledby="tradein-faqs"] .acc-head:hover,
section[aria-labelledby="sold-faqs"] .acc-head:hover {
  background-color: var(--gray-100);
  border-color: var(--gold-secondary);
}
section[aria-labelledby="finance-faqs"] .acc-head::before,
section[aria-labelledby="faq-title"] .acc-head::before,
section[aria-labelledby="finance-faqs"] .acc-head::after,
section[aria-labelledby="faq-title"] .acc-head::after,
section[aria-labelledby="commercial-faqs"] .acc-head::before,
section[aria-labelledby="commercial-faqs"] .acc-head::after,
section[aria-labelledby="sell-faqs"] .acc-head::before,
section[aria-labelledby="sell-faqs"] .acc-head::after,
section[aria-labelledby="buycar-faqs"] .acc-head::before,
section[aria-labelledby="buycar-faqs"] .acc-head::after,
section[aria-labelledby="consign-faqs"] .acc-head::before,
section[aria-labelledby="consign-faqs"] .acc-head::after,
section[aria-labelledby="request-faqs"] .acc-head::before,
section[aria-labelledby="request-faqs"] .acc-head::after,
section[aria-labelledby="tradein-faqs"] .acc-head::before,
section[aria-labelledby="tradein-faqs"] .acc-head::after,
section[aria-labelledby="sold-faqs"] .acc-head::before,
section[aria-labelledby="sold-faqs"] .acc-head::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: var(--gold-primary);
  transition: all 0.3s;
}
section[aria-labelledby="finance-faqs"] .acc-head::before,
section[aria-labelledby="faq-title"] .acc-head::before,
section[aria-labelledby="commercial-faqs"] .acc-head::before,
section[aria-labelledby="sell-faqs"] .acc-head::before,
section[aria-labelledby="buycar-faqs"] .acc-head::before,
section[aria-labelledby="consign-faqs"] .acc-head::before,
section[aria-labelledby="request-faqs"] .acc-head::before,
section[aria-labelledby="tradein-faqs"] .acc-head::before,
section[aria-labelledby="sold-faqs"] .acc-head::before {
  right: 30px;
  width: 3px;
  height: 20px;
  margin-top: -10px;
}
section[aria-labelledby="finance-faqs"] .acc-head::after,
section[aria-labelledby="faq-title"] .acc-head::after,
section[aria-labelledby="commercial-faqs"] .acc-head::after,
section[aria-labelledby="sell-faqs"] .acc-head::after,
section[aria-labelledby="buycar-faqs"] .acc-head::after,
section[aria-labelledby="consign-faqs"] .acc-head::after,
section[aria-labelledby="request-faqs"] .acc-head::after,
section[aria-labelledby="tradein-faqs"] .acc-head::after,
section[aria-labelledby="sold-faqs"] .acc-head::after {
  right: 21px;
  width: 20px;
  height: 3px;
  margin-top: -2px;
}
/* Hide vertical line when accordion is active (changes + to -) */
section[aria-labelledby="finance-faqs"] .acc.active .acc-head::before,
section[aria-labelledby="faq-title"] .acc.active .acc-head::before,
section[aria-labelledby="commercial-faqs"] .acc.active .acc-head::before,
section[aria-labelledby="sell-faqs"] .acc.active .acc-head::before,
section[aria-labelledby="buycar-faqs"] .acc.active .acc-head::before,
section[aria-labelledby="consign-faqs"] .acc.active .acc-head::before,
section[aria-labelledby="request-faqs"] .acc.active .acc-head::before,
section[aria-labelledby="tradein-faqs"] .acc.active .acc-head::before,
section[aria-labelledby="sold-faqs"] .acc.active .acc-head::before {
  height: 0;
  opacity: 0;
}
section[aria-labelledby="finance-faqs"] .acc-head p,
section[aria-labelledby="faq-title"] .acc-head p,
section[aria-labelledby="commercial-faqs"] .acc-head p,
section[aria-labelledby="sell-faqs"] .acc-head p,
section[aria-labelledby="buycar-faqs"] .acc-head p,
section[aria-labelledby="consign-faqs"] .acc-head p,
section[aria-labelledby="request-faqs"] .acc-head p,
section[aria-labelledby="tradein-faqs"] .acc-head p,
section[aria-labelledby="sold-faqs"] .acc-head p {
  color: var(--gold-primary);
  font-weight: bold;
  margin: 0;
}

section[aria-labelledby="finance-faqs"] .acc-content,
section[aria-labelledby="faq-title"] .acc-content,
section[aria-labelledby="commercial-faqs"] .acc-content,
section[aria-labelledby="sell-faqs"] .acc-content,
section[aria-labelledby="buycar-faqs"] .acc-content,
section[aria-labelledby="consign-faqs"] .acc-content,
section[aria-labelledby="request-faqs"] .acc-content,
section[aria-labelledby="tradein-faqs"] .acc-content,
section[aria-labelledby="sold-faqs"] .acc-content,
#faq-accordion .acc-content {
  padding: 15px 10px;
  display: none;
  border-radius: 12px;
  margin-top: 5px;
  overflow: hidden;
}
/* FAQ Page Specific Styles - c-sectionCard styles consolidated in section above */

#content-faq .acc-head {
  font-size: 18px;
  padding: 12px 50px 12px 15px;
}

#content-faq .acc-head p {
  margin: 0;
  padding-right: 10px;
  width: calc(100% - 40px);
}

#content-faq .acc-content {
  padding: 1rem 1.25rem;
}

@media (max-width: 576px) {
  #content-faq .acc-head {
    font-size: 16px;
    padding: 10px 45px 10px 12px;
  }

  #content-faq .acc-content {
    padding: 0.875rem 1rem;
  }
}

.c-sellCarForm {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: formSlideIn 0.4s ease-out;
}
/* ========================================================
   SECTION: ANIMATIONS & KEYFRAMES
   CSS animations and keyframe definitions
            ======================================================== */
@keyframes formSlideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* .c-sellCarForm .wizard-step-header: Consolidated in responsive section (line 13371+) */
/* ========================================================
   SECTION: SELL CAR WIZARD
   Multi-step sell car wizard form
            ======================================================== */
.c-sellCarWizard {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.c-sellCarWizard__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-secondary) var(--bg-gray);
}

.c-sellCarWizard__list::-webkit-scrollbar {
  height: 6px;
}

.c-sellCarWizard__list::-webkit-scrollbar-track {
  background: var(--bg-gray);
  border-radius: 3px;
}

.c-sellCarWizard__list::-webkit-scrollbar-thumb {
  background: var(--gold-secondary);
  border-radius: 3px;
}

.c-sellCarWizard__list::-webkit-scrollbar-thumb:hover {
  background: var(--gold-gradient);
}

.c-sellCarWizard__item {
  display: block;
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 220px;
}

.c-sellCarWizard__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 80px;
  background: var(--color-white);
  border: 2px solid var(--bg-gray);
  border-radius: 12px;
  color: var(--gray-700);
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  gap: 0.5rem;
}

.c-sellCarWizard__link:focus {
  border-color: var(--gold-secondary);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.15);
  transform: translateY(-2px);
  color: var(--color-black);
  text-decoration: none;
}

.c-sellCarWizard__link[aria-selected="true"] {
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-secondary) 100%);
  color: var(--color-black);
  border-color: var(--gold-secondary);
  box-shadow: 0 4px 16px rgba(198, 167, 111, 0.3);
}

.c-sellCarWizard__link[aria-selected="true"] .c-sellCarWizard__step {
  color: var(--color-black);
}

.c-sellCarWizard__link[aria-selected="true"] .c-sellCarWizard__title {
  color: var(--color-black);
  font-weight: 600;
}

.c-sellCarWizard__step {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}

.c-sellCarWizard__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  margin: 0;
  text-align: center;
}

@media (min-width: 576px) and (max-width: 768px) {
  .c-sellCarWizard__list {
    max-width: 100%;
    gap: 0.875rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 1rem 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .c-sellCarWizard__item {
    flex: 0 0 auto;
    min-width: 200px;
  }
  .c-sellCarWizard__link {
    padding: 0.875rem 1rem;
    min-height: 44px;
    border-radius: 8px;
  }
  .c-sellCarWizard__step {
    font-size: 0.8125rem;
  }
  .c-sellCarWizard__title {
    font-size: 0.8125rem;
  }
}

.c-sellCarForm__inner {
  width: 100%;
  padding: 0.25rem 0;
}

.c-sellCarForm__form {
  width: 100%;
  position: relative;
}

.c-sellCarForm__field {
  margin-bottom: 1.5rem;
  position: relative;
}

.c-sellCarForm__label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-200);
  margin-bottom: 0.25rem;
  display: block;
}

.c-sellCarForm__input {
  position: relative;
}

.c-sellCarForm__input input[type="number"] {
  height: 48px;
  min-height: 48px;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.c-sellCarForm__input textarea:disabled {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--gray-700);
  cursor: not-allowed;
}

.c-sellCarForm__input--currency {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--gray-100);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: none;
}

.c-sellCarForm__input--currency:hover:not(:focus-within) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}

.c-sellCarForm__input--currency:focus-within {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.15);
  background: var(--color-white);
}

.c-sellCarForm__input--currency-symbol {
  height: 44px;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--info-border) 100%);
  color: var(--dark-200);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.c-sellCarForm__input--currency input {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  height: 100%;
  padding: 10px 16px;
  margin: 0;
  flex: 1;
  outline: none;
  transform: none;
  width: auto;
}

.c-sellCarForm__input--currency input:focus,
.c-sellCarForm__input--currency input:hover,
.c-sellCarForm__input--currency input:active {
  border: none;
  box-shadow: none;
  transform: none;
  background: transparent;
}

.c-sellCarForm__input--phone {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--gray-100);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: none;
}

.c-sellCarForm__input--phone:hover:not(:focus-within) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}

.c-sellCarForm__input--phone:focus-within {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.15);
  background: var(--color-white);
}

.c-sellCarForm__input--phone-code {
  height: 44px;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--info-border) 100%);
  color: var(--dark-200);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0;
}

.c-sellCarForm__input--phone input {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  height: 100%;
  padding: 10px 16px;
  margin: 0;
  flex: 1;
  outline: none;
  transform: none;
}

.c-sellCarForm__input--phone input:focus,
.c-sellCarForm__input--phone input:hover,
.c-sellCarForm__input--phone input:active {
  border: none;
  box-shadow: none;
  transform: none;
  background: transparent;
}

.c-sellCarForm__help-text {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-700);
  margin-top: 0.375rem;
  line-height: 1.4;
  font-style: italic;
}

.c-sellCarForm__input--phone .error {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.375rem;
}

.c-sellCarForm__field.has-error .input-group-text {
  background: linear-gradient(135deg, var(--error-200) 0%, var(--error-300) 100%);
  color: var(--error-800);
}

.c-sellCarForm section[role="tabpanel"] {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  z-index: 1;
}

.c-sellCarForm section[role="tabpanel"].is-active {
  display: block;
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 10;
}

.c-sellCarForm:not(.wizard-initialized) section[role="tabpanel"]:first-of-type {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.c-sellCarForm .step-panel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.c-sellCarForm .is-hidden {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.wizard-navigation {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-gray);
}

.c-sellCarForm__field .error {
  display: block;
  color: var(--error-400);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.375rem;
  line-height: 1.4;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-sellCarForm__field.has-error .error {
  opacity: 1;
  transform: translateY(0);
}

.c-sellCarForm__field .success {
  display: block;
  color: var(--success-400);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.375rem;
  line-height: 1.4;
}

.c-sellCarForm__field.is-loading .c-sellCarForm__input input {
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  position: relative;
}

.c-sellCarForm__field.is-loading .c-sellCarForm__input::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold-secondary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translateY(-50%);
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.c-sellCarForm section[role="tabpanel"]:not(.is-active) {
  display: none;
}

.c-sellCarForm .step-panel {
  display: block;
}

.c-sellCarForm .is-hidden {
  display: none;
}

@media (max-height: 500px) and (orientation: landscape) {
  .c-sellCarForm {
    padding: 1rem; /* FIXED: Match edge-to-edge mobile design, removed 0.25rem 0 that was squeezing */
    margin: 0; /* FIXED: Edge-to-edge */
    border-left: none; /* FIXED: Edge-to-edge */
    border-right: none; /* FIXED: Edge-to-edge */
    border-radius: 0; /* FIXED: No rounded corners */
    box-shadow: none; /* FIXED: No shadow */
    background: transparent; /* FIXED: No background */
  }

  .c-sellCarForm__header {
    margin-bottom: 0.5rem;
  }

  .c-sellCarWizard {
    margin-bottom: 0.5rem;
  }

  .c-sellCarForm__field {
    margin-bottom: 0.75rem; /* Landscape: Compact spacing for limited vertical space */
  }

  .c-sellCarWizard__link {
    padding: 0.5rem 0.75rem;
    min-height: 44px; /* FIXED: Maintain WCAG compliance even in landscape */
  }
}

.blog-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card img {
  border-radius: 8px 8px 0 0;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-content h2 a {
  color: var(--dark-300);
  text-decoration: none;
}

.blog-content h2 a:hover {
  color: var(--gold-primary);
}

.article-meta-section {
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 2rem;
  position: relative;
}
/* ========================================================
   SECTION: ARTICLE & BLOG DETAIL
   Article pages, blog detail views, author links, metadata
            ======================================================== */
.article-meta-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold-secondary);
  border-radius: 2px;
}

.date-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.author-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
}

.author-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.author-link:hover {
  color: var(--dark-300);
  text-decoration: none;
}

.author-link:hover::after {
  width: 100%;
}

.meta-time {
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: 0.01em;
}

.article-share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.share-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.share-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: var(--color-white);
}

.share-link:hover::before {
  transform: scale(1);
}

.share-link:active {
  transform: translateY(-1px) scale(1.02);
}

.share-link.facebook {
  background-color: var(--social-facebook);
}

.share-link.twitter {
  background-color: var(--color-black);
}

.share-link.linkedin {
  background-color: var(--social-linkedin-alt);
}

.share-link.pinterest {
  background-color: var(--error-700);
}

.blog-data {
  font-size: 1rem;
  line-height: 1.6;
}

.blog-data h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.blog-data h1 {
  font-size: 2rem;
}

.blog-data h2 {
  font-size: 1.5rem;
}

.blog-data h3 {
  font-size: 1.25rem;
}

.blog-data p {
  margin-bottom: 1rem;
}

.blog-data ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.blog-data li {
  margin-bottom: 0.5rem;
}

.blog-sidebar {
  position: sticky;
  top: 2rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

.sidebar-widget {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2.5rem;
  border: 1px solid var(--bg-gray);
  transition: all 0.3s ease;
  overflow: hidden;
}

.sidebar-widget:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.widget-header {
  padding: 1.5rem 1.5rem 0;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 1.25rem;
  position: relative;
}

.widget-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-secondary), var(--gold-secondary));
  border-radius: 2px;
}

.widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--dark-300);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.widget-content {
  padding: 0 1.5rem 1.5rem;
}

.widget-footer {
  padding: 0 1.5rem 1.5rem;
}

.recent-posts-list {
  margin: 0;
}

.post-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.post-link {
  color: var(--dark-300);
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-link:hover {
  color: var(--gold-primary);
  text-decoration: none;
}

.post-date {
  font-size: 0.75rem;
  color: var(--gray-700);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.post-thumbnail-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.post-thumbnail-link:hover {
  transform: scale(1.05);
}

.post-thumbnail {
  width: 100%;
  height: 65px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-thumbnail-placeholder {
  width: 100%;
  height: 65px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-300) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--gray-700);
  font-size: 1.2rem;
}

.empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--gray-700);
}

.empty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-text {
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
  border-radius: 8px;
  transition: filter 0.2s ease;
}

.post-thumbnail:hover {
  filter: brightness(1.1);
}

.post-thumbnail-placeholder {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-300) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  font-size: 1.2rem;
}

.post-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.post-link {
  color: var(--dark-300);
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-link:hover {
  color: var(--gold-primary);
  text-decoration: none;
}

.post-date {
  font-size: 0.75rem;
  color: var(--gray-700);
  font-weight: 500;
}
/* ========================================================
   SECTION: NEWSLETTER COMPONENT
   Newsletter modal, subscription forms, email capture
            ======================================================== */
.newsletter-description {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.newsletter-form {
  margin-top: 1.5rem;
}

.newsletter-modal {
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: none;
  overflow: hidden;
  max-width: 480px;
  width: 95%;
  margin: 0 auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.newsletter-modal .newsletter-modal-close:hover {
  opacity: 1;
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.newsletter-modal-body {
  padding: 1.75rem;
  background: var(--color-white);
  position: relative;
}

.newsletter-modal-content {
  text-align: left;
}

.newsletter-benefits {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: 8px;
  border-left: 4px solid var(--gold-secondary);
  text-align: left;
  position: relative;
}

.benefits-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-300);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li:hover {
  color: var(--dark-300);
}

.benefits-list li i {
  font-size: 1rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.newsletter-privacy {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

.newsletter-privacy small {
  font-size: 0.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.375rem;
  line-height: 1.4;
}

.newsletter-privacy small i {
  font-size: 0.75rem;
  opacity: 0.8;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.newsletter-privacy small .privacy-text {
  text-align: left;
  line-height: 1.3;
}

#modal_newsletter_feedback {
  border-radius: 6px;
  font-size: 0.85rem;
  padding: 0.65rem 0.875rem;
  margin-bottom: 0.875rem;
}

.empty-state {
  text-align: center;
  padding: 2rem 0;
}

.empty-icon {
  font-size: 2.5rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.empty-text {
  color: var(--gray-700);
  font-size: 0.9rem;
  margin-bottom: 0;
}

section {
  display: block;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role="button"] {
  cursor: pointer;
}

[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
}

[type="submit"]:not(:disabled) {
  cursor: pointer;
}

[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
  appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

[hidden] {
  display: none;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
/* ========================================================
   SECTION: UTILITY EXTENSIONS
   Additional utility classes, font weights, display helpers
            ======================================================== */
/* ========================================================
   SECTION: SELECT COMPONENT
   Custom select dropdowns, select styling overrides
            ======================================================== */
.c-select:not(.c-sellCarForm__select):not(.c-tradeInForm__select):not(.c-requestCarForm__select):not(.c-financeForm__select):not(.c-consignCarForm__select) {
  border: 2px solid var(--gray-500);
  width: 100%;
  height: 48px;
  padding: 0.875rem 1.3125rem;
  background-color: var(--gray-100);
  border-radius: 12px;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
}

.c-select:not(.c-sellCarForm__select):not(.c-tradeInForm__select):not(.c-requestCarForm__select):not(.c-financeForm__select):not(.c-consignCarForm__select):focus {
  border-color: var(--dark-300);
  box-shadow: none;
  outline: none;
}

.c-select:not(.c-sellCarForm__select):not(.c-tradeInForm__select):not(.c-requestCarForm__select):not(.c-financeForm__select):not(.c-consignCarForm__select):required {
  border-left: 4px solid var(--gold-secondary);
}

.c-select {
  cursor: pointer;
}

select.c-select {
  background-image: none;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.11125rem;
  padding-right: 1rem;
}

textarea.c-select:not(.is-valid):not(.is-invalid) {
  background-image: none;
}



.box-shadow {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.c-vehicleSearch.is-n-margin {
  margin-bottom: 1rem;
  margin-top: -5rem;
}

.c-tabs__nav {
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 2px solid var(--gray-200);
  background: transparent;
}

.c-tabs__item:not(:first-child) {
  margin-left: 2px;
}

.c-tabs__content {
  background: var(--color-white);
  padding: 0;
}

.c-tabs__pane {
  border: 0;
  background: transparent;
}

.c-tabs__pane .c-vehicleSearch__form {
  margin: 0;
  padding: 0;
}

.c-newsletter {
  background-image: url("../images/newsletter-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0.75rem 0;
  margin: 0;
  position: relative;
}

.c-newsletter__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.c-newsletter__header {
  width: 100%;
}

.c-newsletter__title {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.c-newsletter__description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  font-weight: 300;
}

.c-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
}

.c-newsletter__form-group {
  width: 100%;
  margin: 0;
}

.c-newsletter__email-input {
  width: 100%;
  padding: 0.875rem 1.3125rem;
  border: 2px solid var(--gray-500);
  border-radius: 12px;
  font-size: 0.875rem;
  background: var(--color-white);
  color: var(--gray-900);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 48px;
  box-sizing: border-box;
  font-weight: 500;
}

.c-newsletter__email-input::placeholder {
  color: var(--gray-600);
}

.c-newsletter__email-input:hover:not(:focus) {
  border-color: var(--color-black);
  background: var(--color-white);
}

.c-newsletter__email-input:focus {
  outline: none;
  border-color: var(--color-black);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
  background: var(--color-white);
  color: var(--color-black);
}

.c-newsletter__submit-btn {
  width: 100%;
  background: var(--color-black);
  border: 1px solid var(--color-black);
  color: var(--color-white);
  padding: 0.875rem 1.5rem;
  border-radius: 32px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-newsletter__submit-btn:hover {
  background: var(--gold-primary);
  color: var(--color-black);
}

.c-newsletter__feedback {
  display: none;
  margin-top: 0.5rem;
  color: var(--success-400);
  font-size: 0.875rem;
  text-align: center;
}
/* Mobile - Compact spacing */
@media (max-width: 768px) {
  .c-newsletter {
    padding: 0.5rem 0;
  }

  .c-newsletter__container {
    gap: 0.375rem;
  }

  .c-newsletter__title {
    font-size: 1.125rem;
    margin-bottom: 0.1875rem;
  }

  .c-newsletter__description {
    font-size: 0.8125rem;
  }

  .c-newsletter__form {
    gap: 0.375rem;
  }
}
/* Desktop */
@media (min-width: 768px) {
  .c-newsletter__container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .c-newsletter__header {
    flex: 1 1 250px;
    text-align: left;
  }

  .c-newsletter__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .c-newsletter__description {
    font-size: 1rem;
  }

  .c-newsletter__form {
    flex-direction: row;
    flex: 1 1 500px;
    max-width: 600px;
    gap: 0.75rem;
  }

  .c-newsletter__form-group:first-child {
    flex: 1;
  }

  .c-newsletter__submit-btn {
    width: auto;
    min-width: 140px;
    height: 48px;
    border-radius: 24px;
    padding: 0.75rem 1.5rem;
  }
}
/* ========================================================
   SECTION: FOOTER COMPONENT
   Site footer, footer links, footer sections, social links
            ======================================================== */
.c-footer {
  background: var(--dark-400);
  background-color: var(--dark-400);
  color: var(--color-white);
  padding: 2.5rem 0 1rem;
  margin-top: 0;
  position: relative;
}

.c-footer__brand img {
  max-width: 180px;
  height: auto;
  margin-bottom: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  display: block;
}

.c-footer__brand img:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

.c-footer__section {
  margin-bottom: 1.5rem;
}

.c-footer__section-title {
  color: var(--gold-primary);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 0.375rem;
}

.c-footer__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-secondary) 0%, transparent 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-footer__section:hover .c-footer__section-title::after {
  width: 60px;
}

.c-footer__link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.6;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.c-footer__link::before {
  content: '�';
  position: absolute;
  left: -18px;
  opacity: 0;
  color: var(--gold-primary);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-5px);
  font-weight: 700;
  font-size: 1.1rem;
}

.c-footer__link:hover {
  color: var(--gold-primary);
  text-decoration: none;
  transform: translateX(8px);
  text-shadow: 0 0 8px rgba(198, 167, 111, 0.3);
}

.c-footer__link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.c-footer__link:focus-visible {
  outline: 2px solid var(--gold-secondary);
  outline-offset: 4px;
  border-radius: 2px;
}

.c-footer__nav-item {
  margin-bottom: 0.625rem;
  padding-left: 18px;
}

.c-footer__contact-info {
  margin-top: 0.75rem;
}

.c-footer__contact-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.c-footer__contact-text i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  min-width: 20px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.c-footer__contact-text span {
  flex: 1;
}

.c-footer__contact-text:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.c-footer__contact-text:hover i {
  transform: scale(1.15) rotate(5deg);
  color: var(--gold-primary);
}

.c-footer__contact-text a {
  color: inherit;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-footer__contact-text a:hover {
  color: var(--gold-primary);
  text-decoration: none;
  text-shadow: 0 0 8px rgba(198, 167, 111, 0.3);
}

.c-footer__general-link {
  margin-bottom: 0.5rem;
}

.c-footer__working-hours {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.c-footer__working-hours p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.c-footer__working-hours p strong {
  color: var(--gold-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-footer__working-hours p strong i {
  font-size: 1rem;
  color: var(--gold-primary);
}

.c-footer__social-media {
  margin-top: 0.75rem;
}

.c-footer__social-links {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.c-footer__social-links li {
  list-style: none;
}

.c-footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.15rem;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.c-footer__social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-gradient) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  z-index: -1;
}

.c-footer__social-links a[href*="facebook"]::before {
  background: var(--social-facebook);
}

.c-footer__social-links a[href*="instagram"]::before {
  background: linear-gradient(45deg, var(--social-reddit), var(--social-instagram-gradient-2), var(--social-instagram-gradient-1), var(--social-snapchat));
}

.c-footer__social-links a[href*="linkedin"]::before {
  background: var(--social-linkedin);
}

.c-footer__social-links a[href*="tiktok"]::before {
  background: var(--color-black);
}

.c-footer__social-links a[href*="youtube"]::before {
  background: var(--social-youtube);
}

.c-footer__social-links a[href*="pinterest"]::before {
  background: var(--social-pinterest);
}

.c-footer__social-links a:hover {
  color: var(--color-white);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(198, 167, 111, 0.35);
  border-color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.c-footer__social-links a:hover::before {
  opacity: 1;
}

.c-footer__social-links a:active {
  transform: translateY(-2px) scale(1.04);
}

.c-footer__social-links a:focus-visible {
  outline: 2px solid var(--gold-secondary);
  outline-offset: 4px;
}

.c-footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  margin-top: 2rem;
}

.c-footer__copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.c-sectionCard {
  background-color: var(--color-white);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Vehicle Gallery styles moved to vehicle-detail.css */
/* Vehicle Specs, Pricing, Actions, and Status styles moved to vehicle-detail.css */
/* Vehicle responsive styles and coverage variants moved to vehicle-detail.css */

.c-sectionCard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 0.0625rem var(--gray-500);
  padding: 1rem;
  position: relative;
}

.c-sectionCard__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold-secondary);
  border-radius: 2px;
}

.c-sectionCard__heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.c-sectionCard__heading::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-left-width: 0;
  border-right-width: 3.125rem;
  border-top-width: 3.125rem;
  border-bottom-width: 0;
  border-left-color: transparent;
  border-right-color: var(--gold-secondary);
  border-top-color: var(--gold-secondary);
  border-bottom-color: transparent;
}

.c-sectionCard__body {
  padding: 1.5rem;
}

.c-blog-detail {
  padding: 0;
}

.c-badge--sold {
  background-color: var(--error-600);
  color: var(--color-white);
  display: inline-block;
  border-radius: 24px;
  padding: 8px 32px;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(100, 0, 0, 0.12);
  opacity: 0.97;
}
/* Vehicle Watermark styles moved to vehicle-detail.css */
/* All .c-vehicleCard styles consolidated in dedicated section (lines 2120+) */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-4px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(4px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#general-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#general-text > table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--gray-900);
  border-collapse: collapse;
  background-color: var(--color-white);
  border: 1px solid var(--gray-400);
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-family: inherit;
  font-size: 1rem;
}

div#general-text table th {
  padding: 0.75rem;
  background-color: var(--gold-primary);
  color: var(--color-black);
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--gray-400);
  vertical-align: middle;
}

div#general-text table td {
  padding: 0.75rem;
  border: 1px solid var(--gray-400);
  color: var(--gray-900);
  background-color: var(--color-white);
  vertical-align: top;
}

#general-text table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

#general-text table tbody tr:hover {
  background-color: rgba(198, 167, 111, 0.1);
}

#general-text table caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: var(--gray-700);
  text-align: left;
  caption-side: top;
  font-size: 0.875em;
}

@media (max-width: 480px) {
  .blog-data table,
  .offer-data table,
  #general-text table {
    font-size: 0.75rem;
    min-width: 500px;
  }

  .blog-data table th,
  .offer-data table th,
  #general-text table th,
  .blog-data table td,
  .offer-data table td,
  #general-text table td {
    padding: 0.375rem;
    font-size: 0.7rem;
  }
}

#general-text h6 {
  font-family: var(--font-heading);
  color: var(--gray-900);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

#general-text a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

#general-text a:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

#general-text ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

#general-text li {
  margin-bottom: 0.25rem;
}

#general-text img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

#general-text blockquote {
  font-size: 1.125rem;
  border-left: 4px solid var(--gold-secondary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(198, 167, 111, 0.05);
  border-radius: 0 6px 6px 0;
}

#general-text code {
  font-size: 87.5%;
  color: var(--social-instagram);
  word-wrap: break-word;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}

#general-text pre {
  display: block;
  font-size: 87.5%;
  color: var(--gray-900);
  background-color: var(--gray-100);
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 6px;
  border: 1px solid var(--gray-300);
  overflow-x: auto;
}

#general-text hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
/* .js-similar-vehicles-slider .vehicle-price: Consolidated in responsive section (line 13281+) */

.c-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--gray-100);
  border-radius: 8px;
  margin: 20px 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}
/* Content Section - Sell Car Page */
#content-sellcar .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#content-sellcar .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#content-sellcar .c-sectionCard__body p,
#content-sellcar .c-sectionCard__body ul,
#content-sellcar .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  color: var(--text-dark);
}

#content-sellcar .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#content-sellcar .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#content-sellcar .c-sectionCard__body strong {
  font-weight: bold;
}

#content-sellcar .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#content-sellcar .c-sectionCard__body .text-center {
  text-align: center;
}
/* FAQ Section - Sell Car Page */
#faqs-sellcar .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#faqs-sellcar .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#faqs-sellcar .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

#faqs-sellcar .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#faqs-sellcar .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#faqs-sellcar .c-sectionCard__body strong {
  font-weight: bold;
}

#faqs-sellcar .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#faqs-sellcar .c-sectionCard__body .text-center {
  text-align: center;
}

/* Feature Icons Container - Properly Centered Layout */
#content-sellcar .row.justify-content-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 1rem;
  margin: 0;
}

#content-sellcar .row.justify-content-center > .col-auto {
  flex: 0 0 auto;
  width: 120px;
  padding: 0;
}

#content-sellcar .feature-icon {
  max-width: 80px;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

#content-sellcar .feature-icon:hover {
  transform: scale(1.05);
}

#content-sellcar .custom-iconhead {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-200);
  line-height: 1.3;
  margin-top: 0.5rem;
  text-align: center;
}

/* Tablet: 3-4 icons per row */
@media (max-width: 992px) {
  #content-sellcar .row.justify-content-center > .col-auto {
    width: 110px;
  }
  
  #content-sellcar .custom-iconhead {
    font-size: 0.85rem;
  }
}

/* Mobile Large: 3 icons per row */
@media (max-width: 768px) {
  #content-sellcar .row.justify-content-center {
    gap: 1.25rem 0.75rem;
  }
  
  #content-sellcar .row.justify-content-center > .col-auto {
    width: 100px;
  }
  
  #content-sellcar .feature-icon {
    max-width: 70px;
  }
}

/* Mobile Small: 2 icons per row */
@media (max-width: 575px) {
  #content-sellcar .row.justify-content-center {
    gap: 1rem 0.5rem;
  }
  
  #content-sellcar .row.justify-content-center > .col-auto {
    width: 90px;
  }
  
  #content-sellcar .feature-icon {
    max-width: 65px;
  }
  
  #content-sellcar .custom-iconhead {
    font-size: 0.8rem;
  }
}

#faqs-tradein .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#faqs-tradein .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#faqs-tradein .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

#faqs-tradein .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#faqs-tradein .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#faqs-tradein .c-sectionCard__body strong {
  font-weight: bold;
}

#faqs-tradein .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#faqs-tradein .c-sectionCard__body .text-center {
  text-align: center;
}

#content-tradein .feature-icon {
  max-width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}

#content-tradein .feature-icon:hover {
  transform: scale(1.05);
}

#content-tradein .custom-iconhead {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-200);
  line-height: 1.3;
  margin-top: 0.5rem;
}
/* Trade-In Page - Content Formatting */
#content-tradein .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#content-tradein .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#content-tradein .c-sectionCard__body p,
#content-tradein .c-sectionCard__body ul,
#content-tradein .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  color: var(--text-dark);
}

#content-tradein .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#content-tradein .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#content-tradein .c-sectionCard__body strong {
  font-weight: bold;
}

#content-tradein .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#content-tradein .c-sectionCard__body .text-center {
  text-align: center;
}

.page-title-section.c-sectionCard {
  margin-top: 0;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-title-section .c-sectionCard__body h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.3;
}

.page-title-section .c-sectionCard__body h1 span {
  color: var(--gold-primary);
}

.section-heading {
  color: var(--gray-900);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--gold-primary);
}

.section-heading span {
  color: var(--gold-primary);
}
/* ========================================================
   SECTION: PROMISES SECTION
   Company promises, value propositions, trust badges
            ======================================================== */

.why-choose-attributes-title {
  font-weight: bold;
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.c-sectionCard.c-about-us__cta-banner {
  overflow: hidden;
  background-image: url("../images/first-choice-cars-about-us-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-sectionCard.c-about-us__cta-banner .c-sectionCard__body {
  position: relative;
  z-index: 1;
  padding: 0;
}

.c-about-us__cta-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.c-about-us__cta-section {
  flex: 1;
  text-align: center;
  color: var(--color-black);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-about-us__cta-divider {
  width: 2px;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 0;
}

.c-about-us__cta-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--color-black);
}

.c-about-us__cta-description {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-black);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.c-about-us__cta-list {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  max-width: 600px;
  text-align: left;
}

.c-about-us__cta-list li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--color-black);
  padding-left: 2rem;
  position: relative;
}

.c-about-us__cta-list li:before {
  content: "?";
  color: var(--color-black);
  font-weight: bold;
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: 0;
}

.c-about-us__cta-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.core-values-accent-color {
  color: var(--gold-primary);
}

.content-bottom {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-300);
  text-align: center;
}

.content-bottom .section-heading {
  display: block;
  width: 100%;
  text-align: center;
}

.content-bottom__guarantee {
  font-weight: bold;
  text-align: center;
  color: var(--gray-900);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.content-bottom__description {
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.content-bottom__stock-info {
  font-weight: bold;
  text-align: center;
  color: var(--gray-900);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.target-icon {
  width: 123px;
  height: 111px;
}

.c-about-us__team {
  padding: 2rem 0;
  overflow: visible;
}

.c-about-us__team--tag-line {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.c-about-us__team--tag-line.customtext {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.slider-team {
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-height: 300px;
  margin-top: 20px;
  touch-action: pan-y pinch-zoom;
  padding: 0 50px;
}

.slider-team.slick-initialized {
  opacity: 1;
}

.slider-team .slick-list {
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  margin: 0 -50px;
  padding: 0 40px;
}

.slider-team .slick-track {
  display: flex;
  align-items: stretch;
}

.slider-team .slick-slide {
  height: auto;
}

.slider-team .slick-slide > div {
  height: 100%;
  width: 100%;
}
/* Navigation Arrows */
.slider-team .slick-prev,
.slider-team .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--gold-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(198, 167, 111, 0.3);
}

.slider-team .slick-prev:hover,
.slider-team .slick-next:hover {
  background: var(--dark-100);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.slider-team .slick-prev { left: 0; }

.slider-team .slick-next { right: 0; }

.slider-team .team_blk {
  margin: 0 10px;
  padding: 20px 15px;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-team .team_blk:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  border-color: var(--gold-secondary);
}

.slider-team .team_blk__avatar {
  width: 55px;
  height: 55px;
  margin: 0 auto 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-team.slick-slider .slick-slide .team_blk__avatar img {
  width: 50%;
  height: 50%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-secondary);
  display: block;
}

.slider-team .team_blk h4 {
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--gold-primary);
  font-size: 1rem;
}

.slider-team .team_blk p {
  margin: 0 0 10px;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.slider-team .team_blk hr {
  margin: 10px auto;
  width: 50%;
  border: none;
  border-top: 1px solid var(--border-dark);
}

.slider-team .team_blk a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.slider-team .team_blk a i {
  margin-right: 5px;
  font-size: 14px;
}

.slider-team .team_blk a[href^="tel:"] { color: var(--color-black); }
.slider-team .team_blk a[href^="tel:"]:hover,
.slider-team .team_blk a[href^="mailto:"]:hover { color: var(--gold-primary); }

.slider-team .team_blk a[href^="mailto:"] i { color: var(--color-black); }
/* ========================================================
   SECTION: TEAM SECTION
   Team member cards, social links, team profiles
            ======================================================== */
.team-social-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gold-primary);
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team-social-links a i {
  margin: 0;
}

.team-social-links a:hover {
  background: var(--gold-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(198, 167, 111, 0.3);
}

.team-social-links a[href*="facebook.com"] i { color: var(--social-facebook); }

.team-social-links a[href*="instagram.com"] i { color: var(--social-instagram-gradient-3); }

.team-social-links a[href*="instagram.com"]:hover i { color: var(--color-white); }

section[aria-labelledby="finance-eligibility"] .c-sectionCard__header {
  border-bottom: 0.0625rem solid var(--gray-500);
  padding-block: 0;
  padding-inline: 1rem;
  margin-bottom: 0;
  background: transparent;
}

.c-financeForm {
  position: relative;
  width: 100%;
}

.c-financeForm__header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.c-financeForm__header--title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.c-financeWizard {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.c-financeWizard__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-secondary) var(--bg-gray);
}

.c-financeWizard__list::-webkit-scrollbar {
  height: 6px;
}

.c-financeWizard__list::-webkit-scrollbar-track {
  background: var(--bg-gray);
  border-radius: 3px;
}

.c-financeWizard__list::-webkit-scrollbar-thumb {
  background: var(--gold-secondary);
  border-radius: 3px;
}

.c-financeWizard__list::-webkit-scrollbar-thumb:hover {
  background: var(--gold-gradient);
}

.c-financeWizard__item {
  display: block;
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 220px;
}

.c-financeWizard__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 80px;
  background: var(--color-white);
  border: 2px solid var(--bg-gray);
  border-radius: 12px;
  color: var(--gray-700);
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  gap: 0.5rem;
}

.c-financeWizard__link:focus {
  border-color: var(--gold-secondary);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.15);
  transform: translateY(-2px);
  color: var(--color-black);
  text-decoration: none;
}

.c-financeWizard__link[aria-selected="true"] {
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-secondary) 100%);
  color: var(--color-black);
  border-color: var(--gold-secondary);
  box-shadow: 0 4px 16px rgba(198, 167, 111, 0.3);
}

.c-financeWizard__link[aria-selected="true"] .c-financeWizard__step {
  color: var(--color-black);
}

.c-financeWizard__link[aria-selected="true"] .c-financeWizard__title {
  color: var(--color-black);
  font-weight: 600;
}

.c-financeWizard__link.is-disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: default;
}

.c-financeWizard__step {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}

.c-financeWizard__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  margin: 0;
  text-align: center;
}

.c-financeForm__inner {
  width: 100%;
  padding: 0.25rem 0;
}

.c-financeForm__form {
  width: 100%;
  position: relative;
}

.c-financeForm__field {
  margin-bottom: 1.5rem;
  position: relative;
}

.c-financeForm__label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-200);
  margin-bottom: 0.25rem;
  display: block;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

.c-financeForm__label--required {
  color: var(--error-400);
  margin-left: 2px;
}

.c-financeForm__input {
  position: relative;
}

.c-financeForm__input textarea {
  height: auto;
  min-height: 48px;
  resize: vertical;
}

.c-financeForm select:focus {
  outline: none;
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
  transform: scale(1.01);
  transition: all 0.2s ease;
}

.c-financeForm select:active {
  transform: scale(0.99);
}

.c-financeForm select:hover:not(:focus) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
}

.c-financeForm select {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 12px 1.3125rem;
  padding-right: 40px;
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--gray-100);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-200);
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  font-family: inherit;
/* NO line-height - browser calculates optimal fit */
}

.c-financeForm select:hover:not(:focus) {
  border-color: var(--gold-secondary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}

.c-financeForm select:focus {
  border-color: var(--gold-secondary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.15);
  outline: none;
}

.c-financeForm__input--currency {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--gray-100);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: none;
}

.c-financeForm__input--currency:hover:not(:focus-within) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}

.c-financeForm__input--currency:focus-within {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.15);
  background: var(--color-white);
}

.c-financeForm__input--currency-symbol {
  height: 44px;
  padding: 0.875rem 1rem; /* 14px 16px */
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--info-border) 100%);
  color: var(--dark-200);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0;
}

.c-financeForm__input--currency input,
.c-financeForm__input--currency .c-financeForm__input {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  height: 100%;
  padding: 10px 16px;
  margin: 0;
  flex: 1;
  outline: none;
  transform: none;
  width: auto;
}

.c-financeForm__input--currency input:focus,
.c-financeForm__input--currency input:hover,
.c-financeForm__input--currency input:active,
.c-financeForm__input--currency .c-financeForm__input:focus {
  border: none;
  box-shadow: none;
  transform: none;
  background: transparent;
}

.c-financeForm__input--currency .error {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.375rem;
}

.c-financeForm__input--phone {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--gray-100);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: none;
}

.c-financeForm__input--phone:hover:not(:focus-within) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}

.c-financeForm__input--phone:focus-within {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.15);
  background: var(--color-white);
}

.c-financeForm__input--phone-code {
  height: 44px;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--info-border) 100%);
  color: var(--dark-200);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0;
}

.c-financeForm__input--phone input,
.c-financeForm__input--phone .c-financeForm__input {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  height: 100%;
  padding: 0.875rem 1rem;
  margin: 0;
  flex: 1;
  outline: none;
  transform: none;
  width: auto;
}

.c-financeForm__input--phone input:focus,
.c-financeForm__input--phone input:hover,
.c-financeForm__input--phone input:active,
.c-financeForm__input--phone .c-financeForm__input:focus {
  border: none;
  box-shadow: none;
  transform: none;
  background: transparent;
}

.c-financeForm__input--phone .error {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.375rem;
}

.c-financeForm__help-text {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-700);
  margin-top: 0.375rem;
  line-height: 1.4;
  font-style: italic;
}

.c-financeForm div.error {
  color: var(--error-400);
  font-size: 0.875em;
  margin-top: 0.25rem;
  display: block;
}

.c-financeForm__input input.is-invalid {
  border-color: var(--error-400);
  border-left-color: var(--error-400);
  background: var(--color-white);
}

.c-sellCarForm label.error {
  color: var(--error-400);
  font-size: 0.875em;
  margin-top: 0.25rem;
  display: block;
}

.c-sellCarForm__input input.is-invalid {
  border-color: var(--error-400);
  border-left-color: var(--error-400);
  background: var(--color-white);
}

.c-requestCarForm div.error {
  color: var(--error-400);
  font-size: 0.875em;
  margin-top: 0.25rem;
  display: block;
}

.c-requestCarForm input[type="tel"].is-invalid {
  border-color: var(--error-400);
  border-left-color: var(--error-400);
  background: var(--color-white);
}

.wizard-navigation {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-300);
}

.with-card {
  display: none;
}

.c-financeForm section[role="tabpanel"] {
  display: block;
}

.c-financeForm section[role="tabpanel"]:not(.is-active) {
  display: none;
}

.c-financeForm__panel {
  display: block;
}
/* ========================================================
   SECTION: ELIGIBILITY MODAL
   Finance eligibility modal, approval messages
            ======================================================== */
.eligibility-modal {
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: none;
  background: var(--color-white);
  padding: 0;
  min-width: 320px;
  max-width: 400px;
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.eligibility-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--dark-300);
  margin: 0;
  text-align: center;
}

.eligibility-message {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.eligibility-close {
  width: 100%;
  max-width: 200px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 8px auto 0;
  letter-spacing: 0.3px;
  background: var(--gold-secondary);
  border: none;
  color: var(--color-white);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(198, 167, 111, 0.3);
}

.eligibility-close:hover {
  background: var(--gold-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.4);
}

.eligibility-close:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(198, 167, 111, 0.3);
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.eligibility-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.dbr-display-container {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: 16px;
  padding: 16px;
  margin: 6px 0;
  width: 100%;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

#finance-dbr-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1px;
  line-height: 1;
}

.dbr-hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  opacity: 0.9;
}

.form-section-header {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
  color: var(--dark-300);
  line-height: 1.3;
}

.form-section-header.required {
  margin-bottom: 1rem;
}

.form-section-header .c-financeForm__label--required {
  color: var(--error-400);
}

#faqs-finance .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#faqs-finance .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#faqs-finance .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

#faqs-finance .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#faqs-finance .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#faqs-finance .c-sectionCard__body strong {
  font-weight: bold;
}

#faqs-finance .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#faqs-finance .c-sectionCard__body .text-center {
  text-align: center;
}

@media (min-width: 576px) and (max-width: 768px) {
  .c-financeWizard__list {
    gap: 0.875rem;
    padding: 0 1rem 0.5rem;
  }

  .c-financeWizard__item {
    flex: 0 0 auto;
    min-width: 200px;
  }

  .c-financeWizard__link {
    padding: 0.875rem 1rem;
    min-height: 44px;
    border-radius: 8px;
  }

  .c-financeWizard__step {
    font-size: 0.8125rem;
  }

  .c-financeWizard__title {
    font-size: 0.8125rem;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .c-financeForm {
    padding: 1rem; /* FIXED: Match edge-to-edge mobile design */
    margin: 0; /* FIXED: Edge-to-edge */
    border-left: none; /* FIXED: Edge-to-edge */
    border-right: none; /* FIXED: Edge-to-edge */
    border-radius: 0; /* FIXED: No rounded corners */
    box-shadow: none; /* FIXED: No shadow */
    background: transparent; /* FIXED: No background */
  }

  .c-financeForm__header {
    margin-bottom: 0.5rem;
  }

  .c-financeWizard {
    margin-bottom: 0.5rem;
  }

  .c-financeForm__field {
    margin-bottom: 0.75rem; /* Landscape: Compact spacing for limited vertical space */
  }

  .c-financeWizard__link {
    padding: 0.5rem 0.75rem;
    min-height: 44px; /* FIXED: Maintain WCAG compliance even in landscape */
  }
}

.c-requestCarWizard {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
}

.c-requestCarWizard__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-secondary) var(--bg-gray);
}

.c-requestCarWizard__list::-webkit-scrollbar {
  height: 6px;
}

.c-requestCarWizard__list::-webkit-scrollbar-track {
  background: var(--bg-gray);
  border-radius: 3px;
}

.c-requestCarWizard__list::-webkit-scrollbar-thumb {
  background: var(--gold-secondary);
  border-radius: 3px;
}

.c-requestCarWizard__list::-webkit-scrollbar-thumb:hover {
  background: var(--gold-gradient);
}

.c-requestCarWizard__item {
  display: block;
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 220px;
}

.c-requestCarWizard__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 80px;
  background: var(--color-white);
  border: 2px solid var(--bg-gray);
  border-radius: 12px;
  color: var(--gray-700);
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  gap: 0.5rem;
}

.c-requestCarWizard__link:focus {
  border-color: var(--gold-secondary);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.15);
  transform: translateY(-2px);
  color: var(--color-black);
  text-decoration: none;
}

.c-requestCarWizard__link[aria-selected="true"] {
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-secondary) 100%);
  border-color: var(--gold-secondary);
  color: var(--color-black);
  box-shadow: 0 4px 16px rgba(198, 167, 111, 0.3);
}

.c-requestCarWizard__step {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}

.c-requestCarWizard__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  margin: 0;
  text-align: center;
}

.c-requestCarWizard__link.is-disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: default;
}

@media (min-width: 576px) and (max-width: 768px) {
  .c-requestCarWizard__list {
    max-width: 100%;
    gap: 0.875rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 1rem 0.5rem;
  }
  .c-requestCarWizard__item {
    display: block;
    flex: 0 0 auto;
    min-width: 200px;
  }
  .c-requestCarWizard__link {
    padding: 0.875rem 1rem;
    min-height: 44px;
    border-radius: 8px;
  }
  .c-requestCarWizard__step {
    font-size: 0.8125rem;
  }
  .c-requestCarWizard__title {
    font-size: 0.8125rem;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .c-requestCarForm {
    padding: 1rem;
    margin: 0;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .c-requestCarForm__header {
    margin-bottom: 0.5rem;
  }

  .c-requestCarWizard {
    margin-bottom: 0.5rem;
  }

  .c-requestCarForm__field {
    margin-bottom: 0.75rem;
  }

  .c-requestCarWizard__link {
    padding: 0.5rem 0.75rem;
    min-height: 44px;
  }
}

.c-requestCarForm {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: formSlideIn 0.4s ease-out;
}

.c-requestCarForm__inner {
  width: 100%;
  padding: 0.25rem 0;
}

.c-requestCarForm__form {
  width: 100%;
}

.c-requestCarForm__field {
  margin-bottom: 1.5rem;
  position: relative;
}

.c-requestCarForm__label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-200);
  margin-bottom: 0.25rem;
  display: block;
}

.c-requestCarForm__input {
  position: relative;
}
/* Request Car Form - Base Input Styles (matching Contact Form best practices) */
.c-input,
.c-requestCarForm__input-text {
  width: 100%;
  height: 48px;
  padding: 0 1.3125rem; /* Horizontal only - line-height centers text */
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--gray-100);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5; /* Centers text vertically */
  color: var(--dark-200);
  transition: all 0.3s ease;
  box-sizing: border-box;
  display: block;
  font-family: inherit;
}

.c-requestCarForm__input textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.c-requestCarForm__input-text:focus {
  outline: none;
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
  transform: scale(1.01);
  transition: all 0.2s ease;
}

.c-requestCarForm__input-text:hover:not(:focus) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
}

.c-requestCarForm__input-text:active {
  transform: scale(0.99);
}

.c-requestCarForm__input textarea:invalid:not(:placeholder-shown) {
  border-color: var(--error-400);
  background: var(--error-100);
}

.c-requestCarForm__input input[type="number"]:not(.c-requestCarForm__input--phone input) {
  height: 48px;
  min-height: 48px;
}

.c-requestCarForm__field.has-error .c-requestCarForm__input textarea {
  border-color: var(--error-400);
  background: var(--error-100);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.c-requestCarForm__input input::placeholder,
.c-requestCarForm__input textarea::placeholder {
  color: var(--gray-700);
  opacity: 1;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
}

.c-requestCarForm__input textarea:disabled {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--gray-700);
  cursor: not-allowed;
}

.c-requestCarForm__input--phone .c-requestCarForm__input {
  border: none;
  border-radius: 0;
  height: 44px;
  margin: 0;
  flex: 1;
  background: transparent;
  padding: 0.875rem 1rem;
}

.c-requestCarForm__input--phone .c-requestCarForm__input:focus {
  box-shadow: none;
  border: none;
  background: transparent;
  transform: none;
}

.c-requestCarForm__input--phone {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--gray-100);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: none;
}

.c-requestCarForm__input--phone:hover:not(:focus-within) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}

.c-requestCarForm__input--phone:focus-within {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.15);
  background: var(--color-white);
}

.c-requestCarForm__input--phone-code {
  height: 44px;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--info-border) 100%);
  color: var(--dark-200);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0;
}

.c-requestCarForm__input--phone input {
  flex: 1;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--dark-200);
  height: 100%;
  transition: none;
  opacity: 1;
}

.c-requestCarForm__input--phone input:focus,
.c-requestCarForm__input--phone input:hover,
.c-requestCarForm__input--phone input:active {
  border: none;
  box-shadow: none;
  background: transparent;
  outline: none;
  transform: none;
  color: var(--dark-200);
  opacity: 1;
}

.c-requestCarForm__input--phone input::placeholder {
  color: var(--gray-700);
  opacity: 1;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
}

.c-requestCarForm__help-text {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-700);
  margin-top: 0.375rem;
  line-height: 1.4;
  font-style: italic;
}

.c-requestCarForm__input--phone .error {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.375rem;
  z-index: 10;
  display: block;
  width: 100%;
}

.c-requestCarForm__input > .error {
  position: relative;
  display: block;
  margin-top: 0.375rem;
  width: 100%;
}

.c-requestCarForm__field > .error {
  position: relative;
  display: block;
  margin-top: 0.375rem;
  width: 100%;
  color: var(--error-400);
  font-size: 0.875em;
}
/* Request Car Page - Content Formatting */
#content-requestcar .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#content-requestcar .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#content-requestcar .c-sectionCard__body p,
#content-requestcar .c-sectionCard__body ul,
#content-requestcar .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  color: var(--text-dark);
}

#content-requestcar .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#content-requestcar .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#content-requestcar .c-sectionCard__body strong {
  font-weight: bold;
}

#content-requestcar .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#content-requestcar .c-sectionCard__body .text-center {
  text-align: center;
}

.c-consignCarForm {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: formSlideIn 0.4s ease-out;
}

@keyframes formSlideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.c-consignCarForm .wizard-step-header {
  display: none;
}

.c-consignCarWizard {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
}

.c-consignCarWizard__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-secondary) var(--bg-gray);
}

.c-consignCarWizard__list::-webkit-scrollbar {
  height: 6px;
}

.c-consignCarWizard__list::-webkit-scrollbar-track {
  background: var(--bg-gray);
  border-radius: 3px;
}

.c-consignCarWizard__list::-webkit-scrollbar-thumb {
  background: var(--gold-secondary);
  border-radius: 3px;
}

.c-consignCarWizard__list::-webkit-scrollbar-thumb:hover {
  background: var(--gold-gradient);
}

.c-consignCarWizard__item {
  display: block;
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 220px;
}

.c-consignCarWizard__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 80px;
  background: var(--color-white);
  border: 2px solid var(--bg-gray);
  border-radius: 12px;
  color: var(--gray-700);
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  gap: 0.5rem;
}

.c-consignCarWizard__link:focus {
  border-color: var(--gold-secondary);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.15);
  transform: translateY(-2px);
  color: var(--color-black);
  text-decoration: none;
}

.c-consignCarWizard__link[aria-selected="true"] {
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-secondary) 100%);
  border-color: var(--gold-secondary);
  color: var(--color-black);
  box-shadow: 0 4px 16px rgba(198, 167, 111, 0.3);
}

.c-consignCarWizard__step {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}

.c-consignCarWizard__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  margin: 0;
  text-align: center;
}

.c-consignCarWizard__link.is-disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: default;
}

.c-consignCarForm__header--title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-200);
  margin-top: 0;
  margin-bottom: 0.25rem;
  text-align: center;
  line-height: 1.1;
}

.c-consignCarForm__header {
  margin-bottom: 0.75rem;
  padding: 0;
}

.c-consignCarForm__label--required {
  color: var(--error-400);
  font-weight: 600;
  text-transform: none;
}

@media (min-width: 576px) and (max-width: 768px) {
  .c-consignCarWizard__list {
    max-width: 100%;
    gap: 0.875rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 1rem 0.5rem;
  }
  .c-consignCarWizard__item {
    display: block;
    flex: 0 0 auto;
    min-width: 200px;
  }
  .c-consignCarWizard__link {
    padding: 0.875rem 1rem; /* FIXED: Increased from 0.625rem 0.75rem */
    min-height: 44px;
    border-radius: 8px; /* FIXED: Match mobile for consistency */
  }
  .c-consignCarWizard__step {
    font-size: 0.8125rem; /* FIXED: Larger on tablet (13px) */
  }
  .c-consignCarWizard__title {
    font-size: 0.8125rem; /* FIXED: Larger on tablet (13px) */
  }
}

.c-consignCarForm__inner {
  width: 100%;
  padding: 0.25rem 0;
}

.c-consignCarForm__form {
  width: 100%;
}

.c-consignCarForm__field {
  margin-bottom: 1.5rem;
  position: relative;
}

.c-consignCarForm__label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-200);
  margin-bottom: 0.25rem;
  display: block;
}

.c-consignCarForm__input {
  position: relative;
}

.c-consignCarForm__input textarea {
  height: auto;
  min-height: 48px;
  resize: vertical;
}

input.c-input[type="tel"]:hover:not(:focus) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
}

input.c-input[type="tel"]:active {
  transform: scale(0.99);
}

.c-consignCarForm__input textarea:invalid:not(:placeholder-shown) {
  border-color: var(--error-400);
  background: var(--error-100);
}

  input[type="number"]:not(.c-consignCarForm__input--phone input) {
  height: 48px;
  min-height: 48px;
}

.c-consignCarForm__field.has-error .c-consignCarForm__input textarea {
  border-color: var(--error-400);
  background: var(--error-100);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.c-consignCarForm__input input::placeholder,
.c-consignCarForm__input textarea::placeholder {
  color: var(--gray-700);
  opacity: 1;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
}

.c-consignCarForm__input textarea:disabled {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--gray-700);
  cursor: not-allowed;
}

.c-consignCarForm__input--currency {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--gray-100);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: none;
}

.c-consignCarForm__input--currency:hover:not(:focus-within) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}

.c-consignCarForm__input--currency:focus-within {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.15);
  background: var(--color-white);
}

.c-consignCarForm__input--currency-symbol {
  height: 44px;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--info-border) 100%);
  color: var(--dark-200);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.c-consignCarForm__input--phone .c-consignCarForm__input {
  border: none;
  border-radius: 0;
  height: 44px;
  margin: 0;
  flex: 1;
  background: transparent;
  padding: 0.875rem 1rem;
}

.c-consignCarForm__input--phone .c-consignCarForm__input:focus {
  box-shadow: none;
  border: none;
  background: transparent;
  transform: none;
}

.c-consignCarForm__input--phone {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--gray-100);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: none;
}

.c-consignCarForm__input--phone:hover:not(:focus-within) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}

.c-consignCarForm__input--phone:focus-within {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.15);
  background: var(--color-white);
}

.c-consignCarForm__input--phone-code {
  height: 44px;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--info-border) 100%);
  color: var(--dark-200);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0;
}

.c-consignCarForm__input--phone input {
  flex: 1;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--dark-200);
  height: 100%;
  transition: none;
  opacity: 1;
}

.c-consignCarForm__input--phone input:focus,
.c-consignCarForm__input--phone input:hover,
.c-consignCarForm__input--phone input:active {
  border: none;
  box-shadow: none;
  background: transparent;
  outline: none;
  transform: none;
  color: var(--dark-200);
  opacity: 1;
}

.c-consignCarForm__input--phone input::placeholder {
  color: var(--gray-700);
  opacity: 1;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
}

.c-consignCarForm__help-text {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-700);
  margin-top: 0.375rem;
  line-height: 1.4;
  font-style: italic;
}

.c-consignCarForm__input--phone .error {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.375rem;
  z-index: 10;
  display: block;
  width: 100%;
}

.c-consignCarForm__input > .error {
  position: relative;
  display: block;
  margin-top: 0.375rem;
  width: 100%;
}

.c-consignCarForm__field > .error {
  position: relative;
  display: block;
  margin-top: 0.375rem;
  width: 100%;
  color: var(--error-400);
  font-size: 0.875em;
}

.c-consignCarForm section[role="tabpanel"] {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
}

.c-consignCarForm section[role="tabpanel"].is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

  section[role="tabpanel"]:first-of-type {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.c-consignCarForm .step-panel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.c-consignCarForm .is-hidden {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}
/* Consign Car Page - Content Formatting */
#content-consigncar .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#content-consigncar .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#content-consigncar .c-sectionCard__body p,
#content-consigncar .c-sectionCard__body ul,
#content-consigncar .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  color: var(--text-dark);
}

#content-consigncar .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#content-consigncar .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#content-consigncar .c-sectionCard__body strong {
  font-weight: bold;
}

#content-consigncar .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#content-consigncar .c-sectionCard__body .text-center {
  text-align: center;
}

.c-consignCarForm__field .error {
  display: block;
  color: var(--error-400);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.375rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-consignCarForm__field.has-error .error {
  opacity: 1;
  transform: translateY(0);
}

.c-consignCarForm__field.has-error .c-consignCarForm__input--phone .error {
  opacity: 1;
  transform: translateY(0);
}

.c-consignCarForm__field .success {
  display: block;
  color: var(--success-400);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.375rem;
  line-height: 1.4;
}

.c-consignCarForm__field.is-loading .c-consignCarForm__input input {
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  position: relative;
}

.c-consignCarForm__field.is-loading .c-consignCarForm__input::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold-secondary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translateY(-50%);
  pointer-events: none;
}

.c-consignCarForm section[role="tabpanel"]:not(.is-active) {
  display: none;
}

.c-consignCarForm .step-panel {
  display: block;
}

.c-consignCarForm .is-hidden {
  display: none;
}

@media (max-height: 500px) and (orientation: landscape) {
  .c-consignCarForm {
    padding: 1rem;
    margin: 0;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .c-consignCarForm__header {
    margin-bottom: 0.5rem;
  }

  .c-consignCarWizard {
    margin-bottom: 0.5rem;
  }

  .c-consignCarForm__field {
    margin-bottom: 0.75rem;
  }

  .c-consignCarWizard__link {
    padding: 0.5rem 0.75rem;
    min-height: 44px;
  }
}

#faqs-consigncar .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#faqs-consigncar .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#faqs-consigncar .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

#faqs-consigncar .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#faqs-consigncar .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#faqs-consigncar .c-sectionCard__body strong {
  font-weight: bold;
}

#faqs-consigncar .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#faqs-consigncar .c-sectionCard__body .text-center {
  text-align: center;
}

#faqs-requestcar .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#faqs-requestcar .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#faqs-requestcar .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

#faqs-requestcar .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#faqs-requestcar .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#faqs-requestcar .c-sectionCard__body strong {
  font-weight: bold;
}

#faqs-requestcar .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#faqs-requestcar .c-sectionCard__body .text-center {
  text-align: center;
}

#consign-steps label.error {
  color: var(--error-400);
  font-size: 0.875em;
  margin-top: 0.25rem;
  display: block;
}

@media (max-height: 500px) and (orientation: landscape) {
  .c-consignCarForm {
    padding: 1rem;
    margin: 0;
    border-left: none;
    border-right: none;
    background: transparent;
  }

  .c-consignCarWizard {
    margin-bottom: 0.5rem;
  }

  .c-consignCarForm__field {
    margin-bottom: 0.75rem;
  }
}

.c-consignCarWizard__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/** Mobile Menu Toggle Button */
.c-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 12px;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--gray-100) 100%);
  border: 2px solid var(--gold-secondary);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(198, 167, 111, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1000;
  flex-shrink: 0;
  margin-left: auto;
  touch-action: manipulation;
}

.c-nav-toggle:hover {
  background: linear-gradient(135deg, var(--warning-200) 0%, var(--warning-100) 100%);
  border-color: var(--gold-gradient);
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 4px 16px rgba(198, 167, 111, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.c-nav-toggle:active {
  transform: scale(0.95) translateY(0);
  box-shadow: 0 1px 4px rgba(198, 167, 111, 0.15), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.c-nav-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.3);
}

.c-nav-toggle:focus-visible {
  outline: 2px solid var(--gold-secondary);
  outline-offset: 3px;
  box-shadow: 0 4px 16px rgba(198, 167, 111, 0.25);
}
/** Mobile Menu Toggle Bar Animation */
.c-nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold-secondary) 0%, var(--gold-gradient) 100%);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.c-nav-toggle[aria-expanded="true"] .c-nav-toggle__bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--gold-primary);
}

.c-nav-toggle[aria-expanded="true"] .c-nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.c-nav-toggle[aria-expanded="true"] .c-nav-toggle__bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--gold-primary);
}
/** Mobile Drawer Container */
.c-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--color-white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.1),
    0 20px 48px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  overflow: hidden;
/* Flexbox Magic - Auto spacing! */
  display: flex;
  flex-direction: column;
}

.c-drawer[aria-hidden="false"] {
  transform: translateX(0);
}
/** Mobile Drawer Header */
.c-drawer__header {
  flex-shrink: 0;
  height: 80px;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--gray-50) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 16px;
}
/** Mobile Drawer Logo */
.c-drawer__logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}
/** Mobile Drawer Contact Buttons */
.c-drawer__contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-drawer__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(198, 167, 111, 0.1);
  border: 1px solid rgba(198, 167, 111, 0.2);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

.c-drawer__contact-btn:focus {
  background: var(--gold-primary);
  color: var(--color-white);
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(198, 167, 111, 0.3);
}

.c-drawer__contact-btn:active {
  transform: scale(0.95);
}

.c-drawer__contact-btn i {
  line-height: 1;
}
/** Mobile Drawer Close Button */
.c-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(198, 167, 111, 0.1);
  border: 1px solid rgba(198, 167, 111, 0.2);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

.c-drawer__close:focus {
  background: var(--error-400);
  border-color: var(--error-400);
  color: var(--color-white);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.c-drawer__close:active {
  transform: scale(0.95) rotate(90deg);
}

.c-drawer__close i {
  line-height: 1;
}
/** Mobile Drawer Navigation */
.c-drawer__nav {
  flex: 1; /* Grows to fill available space */
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  list-style: none;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(198, 167, 111, 0.3) transparent;
}

.c-drawer__nav::-webkit-scrollbar {
  width: 4px;
}

.c-drawer__nav::-webkit-scrollbar-thumb {
  background: rgba(198, 167, 111, 0.3);
  border-radius: 2px;
}

.c-drawer__nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.c-drawer__nav li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
/** Mobile Drawer Links */
.c-drawer__link {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  min-height: 56px;
  color: var(--dark-100);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.c-drawer__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold-primary);
  transform: scaleY(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-drawer__link:focus {
  background: rgba(198, 167, 111, 0.08);
  color: var(--gold-primary);
  padding-left: 28px;
}

.c-drawer__link:focus::before {
  transform: scaleY(1);
}

.c-drawer__link:active {
  background: rgba(198, 167, 111, 0.15);
  transform: scale(0.98);
}

.c-drawer__link--active {
  background: rgba(198, 167, 111, 0.12);
  color: var(--gold-primary);
  font-weight: 600;
  padding-left: 28px;
}

.c-drawer__link--active::before {
  transform: scaleY(1);
}

.c-drawer__link span {
  flex: 1;
}
/** Mobile Drawer Footer */
.c-drawer__footer {
  flex-shrink: 0; /* Don't shrink */
  background: linear-gradient(0deg, var(--gray-100) 0%, rgba(248, 249, 250, 0.95) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
}

.c-drawer__footer-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
}

.c-drawer__social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.c-drawer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  background: rgba(198, 167, 111, 0.1);
  border: 1px solid rgba(198, 167, 111, 0.2);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

.c-drawer__social-link:focus {
  background: var(--gold-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.3);
}

.c-drawer__social-link:active {
  transform: translateY(-1px);
}

.c-drawer__social-link i {
  line-height: 1;
}

.c-drawer__copyright {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
/** Mobile Drawer Overlay */
.c-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.c-drawer-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
/** Mobile Menu Body State */
/** Mobile Menu Responsive Breakpoint */
@media (max-width: 992px) {
  .c-nav-toggle {
    display: flex;
  }
}

.c-nav-toggle:focus-visible {
  outline: 2px solid var(--gold-secondary);
  outline-offset: 2px;
}
/* ============================================================================
   SECTION: MOBILE FILTER DRAWER

   Slide-in drawer component for mobile filter interface

      - buy-cars.php (Buy Car Filter)
   - commercial-vehicles.php (Commercial Vehicle Filter)
   - sold-vehicles.php (Sold Vehicle Filter)

      - .c-filterDrawer (drawer container)
   - .c-filterDrawer__toggle (open drawer button)
   - .c-filterDrawer__overlay (backdrop)
   - .c-filterDrawer__panel (drawer panel)
   - .c-filterDrawer__header (drawer header)
   - .c-filterDrawer__title (drawer title)
   - .c-filterDrawer__close (close button)
   - .c-filterDrawer__body (scrollable content area - contains .c-filter)

   States:
   - .is-active (drawer open state)
   - body.c-filterDrawer-open (prevents body scroll when drawer open)

   Integration: Works with unified .c-filter component
   ============================================================================ */

.c-filterDrawer__toggle {
  background: var(--gold-primary);
  color: var(--color-black);
  border: 2px solid var(--color-black);
  border-radius: 32px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto;
}

.c-filterDrawer__toggle:hover,
.c-filterDrawer__toggle:focus {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--gold-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.c-filterDrawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.c-filterDrawer.is-active {
  pointer-events: all;
  visibility: visible;
}

.c-filterDrawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.c-filterDrawer.is-active .c-filterDrawer__overlay {
  opacity: 1;
}

.c-filterDrawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 95%;
  max-width: 420px;
  max-height: 100%;
  background: var(--color-white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.c-filterDrawer.is-active .c-filterDrawer__panel {
  transform: translateX(0);
}

.c-filterDrawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--gold-primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.c-filterDrawer__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-filterDrawer__title i {
  font-size: 1rem;
}

.c-filterDrawer__close {
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.c-filterDrawer__close:focus {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.c-filterDrawer__close:active {
  transform: scale(0.95);
}

.c-filterDrawer__body {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.25rem;
  padding-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
  max-height: calc(100vh - 70px);
  background: var(--color-white);
  flex: 1;
}

.c-filterDrawer__body::-webkit-scrollbar {
  width: 6px;
}

.c-filterDrawer__body::-webkit-scrollbar-track {
  background: var(--gray-300);
}

.c-filterDrawer__body::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 3px;
}

.c-filterDrawer__body::-webkit-scrollbar-thumb:hover {
  background: var(--gold-gradient);
}
/* Filter inside drawer - remove bottom margin */
.c-filterDrawer__body .c-filter {
  margin-bottom: 0;
}
/* Drawer-specific filter adjustments */
.c-filterDrawer__body .c-filter .row {
  margin-bottom: 0;
  min-height: auto;
}

.c-filterDrawer__body .c-filter__field {
  margin-bottom: 0.875rem;
  min-height: 75px;
}
/* END SECTION: MOBILE FILTER DRAWER */

.c-tradeInForm__header--title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-200);
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.2;
}

.c-tradeInForm__header {
  margin-bottom: 2rem;
  padding: 0;
}

.c-tradeInForm__label--required {
  color: var(--error-400);
  font-weight: 600;
  text-transform: none;
}

.c-tradeInForm {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: formSlideIn 0.4s ease-out;
}

.c-tradeInForm .wizard-step-header {
  display: none;
}

.c-tradeInWizard {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.c-tradeInWizard__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-secondary) var(--bg-gray);
}

.c-tradeInWizard__list::-webkit-scrollbar {
  height: 6px;
}

.c-tradeInWizard__list::-webkit-scrollbar-track {
  background: var(--bg-gray);
  border-radius: 3px;
}

.c-tradeInWizard__list::-webkit-scrollbar-thumb {
  background: var(--gold-secondary);
  border-radius: 3px;
}

.c-tradeInWizard__list::-webkit-scrollbar-thumb:hover {
  background: var(--gold-gradient);
}

.c-tradeInWizard__item {
  display: block;
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 220px;
}

.c-tradeInWizard__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 80px;
  background: var(--color-white);
  border: 2px solid var(--bg-gray);
  border-radius: 12px;
  color: var(--gray-700);
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  gap: 0.5rem;
}

.c-tradeInWizard__link:focus {
  border-color: var(--gold-secondary);
  box-shadow: 0 4px 12px rgba(198, 167, 111, 0.15);
  transform: translateY(-2px);
  color: var(--color-black);
  text-decoration: none;
}

.c-tradeInWizard__link[aria-selected="true"] {
  background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-secondary) 100%);
  color: var(--color-black);
  border-color: var(--gold-secondary);
  box-shadow: 0 4px 16px rgba(198, 167, 111, 0.3);
}

.c-tradeInWizard__link[aria-selected="true"] .c-tradeInWizard__step {
  color: var(--color-black);
}

.c-tradeInWizard__link[aria-selected="true"] .c-tradeInWizard__title {
  color: var(--color-black);
  font-weight: 600;
}

.c-tradeInWizard__step {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}

.c-tradeInWizard__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  margin: 0;
  text-align: center;
}

.c-tradeInForm__inner {
  width: 100%;
  padding: 0.25rem 0;
}

.c-tradeInForm__form {
  width: 100%;
  position: relative;
}

.c-tradeInForm__field {
  margin-bottom: 1.5rem;
  position: relative;
}

.c-tradeInForm__label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-200);
  margin-bottom: 0.25rem;
  display: block;
}

.c-tradeInForm__input {
  position: relative;
}

.c-tradeInForm__input input[type="number"] {
  height: 48px;
  min-height: 48px;
}

.c-tradeInForm__input textarea:disabled {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--gray-700);
  cursor: not-allowed;
}

.c-tradeInForm__input--currency {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--gray-100);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: none;
}

.c-tradeInForm__input--currency:hover:not(:focus-within) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}

.c-tradeInForm__input--currency:focus-within {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.15);
  background: var(--color-white);
}

.c-tradeInForm__input--currency-symbol {
  height: 44px;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--info-border) 100%);
  color: var(--dark-200);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.c-tradeInForm__input--phone {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 2px solid var(--gray-500);
  border-left: 4px solid var(--gold-secondary);
  border-radius: 12px;
  background: var(--gray-100);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: none;
}

.c-tradeInForm__input--phone:hover:not(:focus-within) {
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
}

.c-tradeInForm__input--phone:focus-within {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.15);
  background: var(--color-white);
}

.c-tradeInForm__input--phone-code {
  height: 44px;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--info-border) 100%);
  color: var(--dark-200);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0;
}

.c-tradeInForm__input--phone input {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  height: 100%;
  padding: 10px 16px;
  margin: 0;
  flex: 1;
  outline: none;
  transform: none;
}

.c-tradeInForm__input--phone input:focus {
  border: none;
  box-shadow: none;
  transform: none;
}

.c-tradeInForm__help-text {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-700);
  margin-top: 0.375rem;
  line-height: 1.4;
  font-style: italic;
}

.c-tradeInForm__input--phone .error {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.375rem;
}

#tradein-steps label.error {
  display: block;
  color: var(--error-400);
  font-size: 0.75rem;
  margin-top: 0.375rem;
  font-weight: 500;
  line-height: 1.4;
}

.c-tradeInForm section[role="tabpanel"] {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  z-index: 1;
}

.c-tradeInForm section[role="tabpanel"].is-active {
  display: block;
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 10;
}

.c-tradeInForm:not(.wizard-initialized) section[role="tabpanel"]:first-of-type {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 576px) and (max-width: 768px) {
  .c-tradeInWizard__list {
    max-width: 100%;
    gap: 0.875rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 1rem 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .c-tradeInWizard__item {
    flex: 0 0 auto;
    min-width: 200px;
  }
  .c-tradeInWizard__link {
    padding: 0.875rem 1rem;
    min-height: 44px;
    border-radius: 8px;
  }
  .c-tradeInWizard__step {
    font-size: 0.8125rem;
  }
  .c-tradeInWizard__title {
    font-size: 0.8125rem;
  }
}
/* =======================================================
   CUSTOM SITE-SPECIFIC COMPONENTS
   These are unique to this site and not part of Bootstrap
   ======================================================= */
/* Responsive Icon Sizing */
@media (min-width: 768px) {
  .fa-md-3x {
    font-size: 3em;
  }
}
/* Bold Text Utility */
/* Page Top Banner Section */

@media (min-width: 768px) {
/* Author Info Component */
.author-info,
.date-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}
.meta-label {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.author-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
}
.author-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}
}
/* jQuery UI Slider & Price Filter Range */
/* Product Detail Price Components */
/* Slider Button Colors */
/* Sell Car Form Checkbox */
/* FILE UPLOAD SECTIONS */

/* Conditional Loan Sections */
.with-loan,
.with-card {
  display: none;
}

.with-loan .loan-entry,
.with-card .card-entry {
  display: none;
}

.loan-installment-input,
.card-limit-input {
  width: 100%;
  height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--color-black);
  border-radius: 12px;
  background: var(--gray-100);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-200);
  transition: all 0.3s ease;
}

.loan-installment-input:focus,
.card-limit-input:focus {
  outline: none;
  border-color: var(--gold-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(198, 167, 111, 0.1);
  transform: scale(1.01);
}
/* I) Wizard Step Panels - see line 10416 for actual styles */
/* Additional Custom Components - Final Extraction */
/* Wizard Steps Hidden */
.c-sellCarForm .steps,
.c-sellCarForm .steps ul,
.c-sellCarForm .wizard-step-header {
  display: none;
}
/* Share Column Responsive */
@media (max-width: 768px) {
  .gn-col-share {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .gn-col-share {
    text-align: right;
  }
}
/* Social Links Animation Override */
/* Price Range Slider */
/* About Us CTA Buttons */
.c-about-us__cta-actions .btn-inventory,
.c-about-us__cta-actions .btn-sell-car {
  background-color: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 32px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  min-width: 200px;
  text-align: center;
  height: 48px;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-about-us__cta-actions .btn-inventory:hover,
.c-about-us__cta-actions .btn-inventory:focus,
.c-about-us__cta-actions .btn-sell-car:hover,
.c-about-us__cta-actions .btn-sell-car:focus {
  background: var(--color-black);
  border-color: var(--gold-secondary);
  color: var(--color-white);
}
/* ABOUT US PAGE - RESPONSIVE STYLES */
/* Tablet (992px and below) */
@media (max-width: 992px) {
  .c-about-us__cta-title {
    font-size: 1.75rem;
  }

  .c-about-us__cta-section {
    padding: 1.25rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }
}
/* Mobile (768px and below) */
@media (max-width: 768px) {
  .c-about-us__cta-wrapper {
    flex-direction: column;
  }

  .c-about-us__cta-divider {
    width: 100%;
    height: 2px;
    margin: 1rem 0;
  }

  .c-about-us__cta-section {
    padding: 1.5rem 1rem;
  }

  .c-about-us__cta-title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .c-about-us__cta-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .c-about-us__cta-list {
    max-width: 100%;
    padding: 0 1rem;
  }

  .c-about-us__cta-list li {
    font-size: 0.9rem;
    padding-left: 1.5rem;
  }

  .c-about-us__cta-list li:before {
    font-size: 1.1rem;
  }

  .c-about-us__cta-actions .btn-inventory,
  .c-about-us__cta-actions .btn-sell-car {
    min-width: 180px;
    font-size: 13px;
    padding: 8px 20px;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .section-heading::after {
    width: 50px;
  }
}
/* Small Mobile (575px and below) */
@media (max-width: 576px) {
  .c-about-us__cta-section {
    padding: 1.25rem 0.75rem;
  }

  .c-about-us__cta-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .c-about-us__cta-description {
    font-size: 0.875rem;
  }

  .c-about-us__cta-list {
    padding: 0 0.5rem;
  }

  .c-about-us__cta-list li {
    font-size: 0.85rem;
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
  }

  .c-about-us__cta-actions .btn-inventory,
  .c-about-us__cta-actions .btn-sell-car {
    min-width: 160px;
    width: 100%;
    max-width: 240px;
    font-size: 12px;
    padding: 8px 16px;
    height: 44px;
  }

  .section-heading {
    font-size: 1.25rem;
  }

  .why-choose-attributes-title {
    font-size: 1.1rem;
  }
}
/* Wizard Step Responsive Styles */
/* OTP Modal Phone Responsive */
/* ========================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   Vehicle Details, Product Info, and Related Components
   ======================================================== */
/* Vehicle Details - Tablet (992px and below) */
@media (max-width: 992px) {

  .c-tabs__item {
    margin-bottom: 0.5rem;
  }
}
/* Vehicle Details - Mobile (768px and below) */
@media (max-width: 768px) {

  .c-tabs__item .c-tabs__link {
    padding: 8px 16px;
    font-size: 12px;
    margin: 0 0.15rem;
  }
/* Vehicle specs responsive styles moved to vehicle-detail.css */
}
/* Vehicle Details responsive styles for small mobile moved to vehicle-detail.css */
/* Section Cards Mobile */
@media (max-width: 768px) {
  .c-sectionCard {
    padding: 1rem;
  }

  .c-sectionCard__header {
    padding: 0.75rem 0;
  }

  .c-sectionCard__body {
    padding: 1rem 0;
  }
}
/* Image Gallery Mobile */
/* =======================================================
   EXTRACTED INLINE CSS - PROJECT COMPONENTS
   Moved from inline styles in view files to centralize
   and eliminate inline CSS for better maintainability
   ======================================================= */
/* Hero/Emphasis Text Sizing */
.hero-emphasis-text {
  font-size: 1.19rem;
  color: var(--gold-primary);
  font-weight: 600;
}
/* Trade-In Process Badges */
.tradein-step-badge {
  font-size: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 50%;
  background-color: var(--brand-gold-primary);
  color: var(--color-white);
}
/* Trade-In Step Headings */
.tradein-step-heading {
  font-size: 1.25rem;
  font-weight: 600;
}
/* Terms & Conditions Content Formatting */
#content-terms .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#content-terms .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#content-terms .c-sectionCard__body p,
#content-terms .c-sectionCard__body ul,
#content-terms .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

#content-terms .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#content-terms .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#content-terms .c-sectionCard__body strong {
  font-weight: bold;
}

#content-terms .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#content-terms .c-sectionCard__body .text-center {
  text-align: center;
}
/* Privacy Policy Content Formatting */
#content-privacy .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#content-privacy .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#content-privacy .c-sectionCard__body p,
#content-privacy .c-sectionCard__body ul,
#content-privacy .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

#content-privacy .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#content-privacy .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#content-privacy .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}
/* Finance Page - Content Formatting */
#content-finance .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#content-finance .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#content-finance .c-sectionCard__body p,
#content-finance .c-sectionCard__body ul,
#content-finance .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  color: var(--text-dark);
}

#content-finance .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#content-finance .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#content-finance .c-sectionCard__body strong {
  font-weight: bold;
}

#content-finance .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#content-finance .c-sectionCard__body .text-center {
  text-align: center;
}
/* Finance Page - Text Highlighting */
#content-finance .text-highlight-gold {
  color: var(--gold-secondary);
  font-weight: 600;
}

#content-finance .text-highlight-red {
  color: var(--error-500);
  font-weight: 600;
}

#content-finance .text-emphasis-dark {
  color: var(--dark-300);
  font-weight: 600;
}

#content-finance .text-emphasis-red-strong {
  color: var(--error-500);
  font-weight: 700;
}
/* Sell Car Form - Custom Icon Head */
.custom-iconhead {
  font-size: 0.9rem;
  font-weight: 600;
}
/* Performance Optimization - CSS Containment */
.c-sectionCard {
  contain: layout style;
}

.breadcrumb-section.c-sectionCard {
  contain: none;
}

.search_result {
  contain: layout;
}

#sold-pagination {
  contain: layout style;
}
/* Buy Cars Page - Content Formatting */
#content-buycar .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#content-buycar .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#content-buycar .c-sectionCard__body p,
#content-buycar .c-sectionCard__body ul,
#content-buycar .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

#content-buycar .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#content-buycar .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#content-buycar .c-sectionCard__body strong {
  font-weight: bold;
}

#content-buycar .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#content-buycar .c-sectionCard__body .text-center {
  text-align: center;
}
/* Commercial Vehicles Page - Content Formatting */
#content-commercial .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#content-commercial .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#content-commercial .c-sectionCard__body p,
#content-commercial .c-sectionCard__body ul,
#content-commercial .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

#content-commercial .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#content-commercial .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#content-commercial .c-sectionCard__body strong {
  font-weight: bold;
}

#content-commercial .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#content-commercial .c-sectionCard__body .text-center {
  text-align: center;
}

#commercial-pagination {
  contain: layout style;
}
/* Sold Vehicles Page - Content Formatting */
#content-sold .c-sectionCard__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gray-900);
  text-align: left;
}

#content-sold .c-sectionCard__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--gray-900);
  text-align: left;
}

#content-sold .c-sectionCard__body p,
#content-sold .c-sectionCard__body ul,
#content-sold .c-sectionCard__body li {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

#content-sold .c-sectionCard__body ul {
  padding-left: 1.4em;
  margin-bottom: 1rem;
}

#content-sold .c-sectionCard__body li {
  margin-bottom: 0.6em;
}

#content-sold .c-sectionCard__body strong {
  font-weight: bold;
}

#content-sold .c-sectionCard__body hr {
  border: none;
  border-top: 1px solid var(--border-darker);
  margin: 1.1rem -1rem 0.7rem -1rem;
}

#content-sold .c-sectionCard__body .text-center {
  text-align: center;
}
/* 404 Error Page */
#err404-body {
  height: 100%;
  margin: 0;
  min-height: 100vh;
  background-color: var(--color-white);
  overflow: hidden;
}

.bl_wrapper {
  margin: 10px auto;
}

#svg_tramp {
  display: block;
  margin: -30px auto 0;
  max-width: 95vw;
  height: auto;
}

.btn_home {
  position: relative;
  display: block;
  width: 120px;
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  padding: 10px;
  border-radius: 32px;
  background-color: var(--warning-600);
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.2s all;
  z-index: 3;
}

.btn_home:hover,
.btn_home:focus {
  color: var(--color-white);
  background-color: var(--color-black);
}
/* =======================================================
   FINANCE CALCULATOR MODAL STYLES
   Extracted from calculator_modal.php inline <style> block
   ======================================================= */

#financeCalculatorModal .slider-value-display {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#financeCalculatorModal .modal-dialog {
  max-width: 700px;
  margin: 1.75rem auto;
}

#financeCalculatorModal .modal-header {
  background-color: var(--gold-secondary);
  border-bottom: none;
}

#financeCalculatorModal .modal-title {
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 600;
}

#financeCalculatorModal .modal-header .close {
  color: var(--color-black);
  opacity: 1;
  text-shadow: none;
  transition: transform 0.2s ease;
}

#financeCalculatorModal .modal-header .close:hover,
#financeCalculatorModal .modal-header .close:focus {
  transform: scale(1.1);
  opacity: 0.8;
}

#financeCalculatorModal .modal-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
  text-align: center;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--color-white) 100%);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  margin-bottom: 30px;
  text-transform: none;
}

#financeCalculatorModal .custom-range {
  height: 48px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--color-white) 100%);
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: relative;
}

#financeCalculatorModal .custom-range:hover {
  border-color: var(--gold-secondary);
  box-shadow: 0 4px 8px rgba(198, 167, 111, 0.15);
}

#financeCalculatorModal .custom-range::-webkit-slider-track,
#financeCalculatorModal .custom-range::-moz-range-track {
  background: linear-gradient(90deg, var(--gold-secondary) 0%, var(--gray-300) 0%);
  height: 8px;
  border-radius: 4px;
  border: none;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  margin: 0;
}

#financeCalculatorModal .custom-range::-webkit-slider-thumb,
#financeCalculatorModal .custom-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-secondary);
  border: 3px solid var(--color-white);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  cursor: pointer;
}

#financeCalculatorModal .custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
}

#financeCalculatorModal .custom-range::-moz-range-thumb {
  -moz-appearance: none;
}

#financeCalculatorModal .custom-range:focus,
#financeCalculatorModal .custom-range:focus-visible {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 0.3rem rgba(198, 167, 111, 0.25);
  outline: none;
}

#financeCalculatorModal .custom-range:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: var(--gray-200);
}

#financeCalculatorModal .custom-range:disabled::-webkit-slider-thumb,
#financeCalculatorModal .custom-range:disabled::-moz-range-thumb {
  background: var(--gray-700);
  cursor: not-allowed;
}

#financeCalculatorModal .form-group {
  margin-bottom: 2rem;
  position: relative;
}

#financeCalculatorModal .cost,
#financeCalculatorModal label.cost {
  font-weight: 600;
  color: var(--dark-200);
  margin-bottom: 0.75rem;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: block;
}

#financeCalculatorModal #vehicle_price {
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-200);
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--color-white) 100%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#financeCalculatorModal #vehicle_price:focus {
  border-color: var(--gold-secondary);
  box-shadow: 0 0 0 0.3rem rgba(198, 167, 111, 0.25);
}

#financeCalculatorModal .vat-status-box {
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--color-white) 100%);
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#financeCalculatorModal .slider-value-display {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-secondary);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

#financeCalculatorModal .d-flex.justify-content-between small {
  border: 2px solid var(--gray-300);
  padding: 6px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--color-white) 100%);
  font-weight: 600;
  color: var(--gray-800);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#financeCalculatorModal .results-section {
  position: sticky;
  top: 20px;
}

#financeCalculatorModal .result-card {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--gray-100) 100%);
  border: 2px solid var(--gray-300);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

#financeCalculatorModal .emi-highlight {
  text-align: center;
  padding: 20px;
  background: var(--gold-secondary);
  border-radius: 12px;
  color: var(--color-white);
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(198, 167, 111, 0.3);
}

#financeCalculatorModal .emi-highlight > .small {
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

#financeCalculatorModal .emi-amount {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#financeCalculatorModal .result-card .table td {
  padding: 12px 0;
  border: none;
  font-size: 15px;
  vertical-align: middle;
}

#financeCalculatorModal .result-card .table tr.border-top td {
  border-top: 2px solid var(--gold-secondary);
  padding-top: 15px;
  font-weight: 700;
}

#financeCalculatorModal .btn-gold {
  border-radius: 32px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  background-color: var(--gold-secondary);
  border: 1px solid var(--gold-secondary);
  text-transform: uppercase;
  color: var(--color-black);
  transition: all 0.3s ease;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#financeCalculatorModal .btn-gold:hover,
#financeCalculatorModal .btn-gold:focus,
#financeCalculatorModal .btn-gold:active {
  background-color: var(--color-black);
  border-color: var(--gold-secondary);
  color: var(--color-white);
}

#financeCalculatorModal .disclaimer-section {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--color-white) 100%);
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

#financeCalculatorModal .disclaimer-section h6 {
  color: var(--dark-200);
  font-size: 16px;
  margin-bottom: 12px;
}

#financeCalculatorModal .disclaimer-section p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 0;
}

#financeCalculatorModal .badge {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
}

#financeCalculatorModal .badge-success,
#financeCalculatorModal .badge-warning {
  background-color: var(--gold-secondary);
  color: var(--color-white);
}

@media (max-width: 992px) {
  #financeCalculatorModal .results-section {
    position: static;
    margin-top: 40px;
  }

  #financeCalculatorModal .modal-dialog {
    margin: 10px;
  }

  #financeCalculatorModal .result-card {
    padding: 20px;
  }

  #financeCalculatorModal .emi-amount {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  #financeCalculatorModal .modal-dialog {
    margin: 5px;
    max-width: 100%;
  }

  #financeCalculatorModal .modal-header {
    padding: 12px 16px;
  }

  #financeCalculatorModal .modal-title {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  #financeCalculatorModal .modal-header .close {
    font-size: 1.5rem;
    padding: 0;
    margin-left: 10px;
  }

  #financeCalculatorModal .modal-body {
    padding: 16px;
  }

  #financeCalculatorModal .form-group {
    margin-bottom: 1.5rem;
  }

  #financeCalculatorModal .cost {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }

  #financeCalculatorModal .slider-value-display {
    font-size: 14px;
    margin-bottom: 8px;
  }

  #financeCalculatorModal .custom-range {
    height: 44px;
    padding: 10px 12px;
  }

  #financeCalculatorModal .d-flex.justify-content-between small {
    font-size: 11px;
    padding: 4px 8px;
  }

  #financeCalculatorModal #vehicle_price,
  #financeCalculatorModal .vat-status-box {
    padding: 12px 16px;
    font-size: 15px;
  }

  #financeCalculatorModal .result-card {
    padding: 16px;
  }

  #financeCalculatorModal .emi-highlight {
    padding: 16px;
  }

  #financeCalculatorModal .emi-amount {
    font-size: 22px;
  }

  #financeCalculatorModal .result-card .table td {
    font-size: 14px;
    padding: 10px 0;
  }

  #financeCalculatorModal .disclaimer-section {
    padding: 16px;
  }

  #financeCalculatorModal .disclaimer-section h6 {
    font-size: 14px;
  }

  #financeCalculatorModal .disclaimer-section p {
    font-size: 12px;
  }

  #financeCalculatorModal .btn-gold {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #financeCalculatorModal .modal-dialog {
    margin: 0;
    max-width: 100%;
    height: 100%;
  }

  #financeCalculatorModal .modal-content {
    height: 100%;
    border-radius: 0;
  }

  #financeCalculatorModal .modal-header {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  #financeCalculatorModal .modal-body {
    padding: 12px;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  #financeCalculatorModal .modal-title {
    font-size: 1rem;
    padding-right: 10px;
  }

  #financeCalculatorModal .modal-body p {
    font-size: 13px;
    padding: 10px 12px;
    margin-bottom: 20px;
  }

  #financeCalculatorModal .form-group {
    margin-bottom: 1.25rem;
  }

  #financeCalculatorModal .emi-amount {
    font-size: 20px;
  }

  #financeCalculatorModal .result-card .table td {
    font-size: 13px;
  }

  #financeCalculatorModal .btn-gold {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  #financeCalculatorModal .modal-title {
    font-size: 0.9rem;
  }

  #financeCalculatorModal .slider-value-display {
    font-size: 13px;
  }

  #financeCalculatorModal .d-flex.justify-content-between small {
    font-size: 10px;
    padding: 3px 6px;
  }

  #financeCalculatorModal .emi-amount {
    font-size: 18px;
  }
}
