:root {
  --bs-border-radius: 0.5rem;
  --main-red: #e60000;
  --main-red2: #cc0000;
  --main-secondary: #181a31;
  --main-tertiary: #f7663f;
  --box-shadow-05: rgba(24, 27, 66, 0.5);
  --text-gray: #b0b0b0;

  --heading-font: 'Barlow Condensed', sans-serif;
  --body-font: 'Manrope', sans-serif;

  --fs-xxs: 0.45rem;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-xxl: 2rem;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  color: #fff;
  overflow-x: clip;
}
body {
  font-size: 1rem;
  background-color: #0f1025;
  /* background-color: #181b42; */
  transition: opacity 0.15s ease;
  color: #fff;
  width: 100%;
}
a, .default-link {
  cursor: pointer;
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.default-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, #e60000, #f7663f);
  transition: width 0.3s ease;
}
.default-link:hover {
  color: #fff;
}
.default-link:hover::after {
  width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
}
/* Webkit-based browsers: Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background-color: var(--main-secondary); /* Dark background */
  border-radius: var(--bs-border-radius);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--main-red2), var(--main-red));
  border-radius: var(--bs-border-radius);
  border: 2px solid var(--main-secondary);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.05),
              0 0 4px var(--box-shadow-05);
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff1a1a, var(--main-red));
}
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--main-red) var(--main-secondary);
}
header.scroll {
  z-index: 1000;
  background: rgb(9 11 25 / 70%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* background: rgba(16, 14, 72, 0.7); */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  box-shadow: 0px 5px 15px rgb(0 0 0 / 39%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header img {
  width: 8rem;
  height: auto;
}
.text-gray {
  color: var(--text-gray);
}
.nav .nav-link {
  color: #fff;
  text-decoration: none;
  padding: 10px;
}
.btn {
    padding: 0.5rem 2rem;
    border-radius: var(--bs-border-radius);
}
.btn-main {
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--bs-border-radius);
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-main:hover {
  box-shadow: 0 0 12px rgba(230, 0, 0, 0.5);
  transform: scale(1.05);
}
.btn-main-outline {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: var(--main-red);
  font-weight: bold;
  border-radius: var(--bs-border-radius);
  z-index: 1;
  overflow: hidden;
  background: transparent;
  border: none;
}
.btn-main-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* Ketebalan border */
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.btn-main-outline:hover {
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  color: white;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(230, 0, 0, 0.5);
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 10px 0px #128C7B;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px #25D366aa;
}
.custom-model-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  height: 400px;
  background: rgba(24, 26, 49, 0.95);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 1rem;
  display: none;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}
/* Show when hover */
.nav-item.dropdown:hover .custom-model-dropdown {
  display: block;
}
.dropdown-category {
  margin-bottom: 1rem;
}
.dropdown-category-title {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}
.dropdown-submenu {
  padding: 0;
}
.dropdown-submenu li {
  list-style: none;
}
.dropdown-submenu a {
  color: #ccc;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 0.7rem 0;
  padding-left: 1rem;
}
.dropdown-submenu a:hover {
  color: white;
  transform: translateX(4px);
  background: #2f3162;
}
.dropdown-model-link img {
  width: 80px;
  height: auto;
  margin-right: 8px;
  border-radius: 4px;
}
#hero-section .slider .slick-list {
  padding: 0 !important;
}
#hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgb(17 18 39 / 30%), rgba(24, 27, 66, 0) 80px),
              linear-gradient(to right, rgb(15 16 37 / 30%), rgba(24, 27, 66, 0) 600px),
              linear-gradient(to left, rgba(24, 27, 66, 0.3), rgba(24, 27, 66, 0) 100px),
              linear-gradient(to top, rgba(24, 27, 66, 0.1), rgba(24, 27, 66, 0) 100px);
  z-index: 1;
  pointer-events: none;
}
.hero-overlay {
  background: rgb(15 16 37 / 10%);
}
.social-media__list li a {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.social-media__list li a:hover {
  color: #e60000;
  text-shadow: 0 0 5px rgba(230, 0, 0, 0.5);
}
.left-line {
  border-left: 2px solid #fff;
  height: 0;
  width: 2px;
  animation: drawToBottom 2s forwards;
}
.line-right {
  border-right: 2px solid #fff;
  height: 0;
  width: 2px;
  animation: drawToBottom 2s forwards;
}
@keyframes drawToBottom {
  to {
    height: 100%;
  }
}
.bottom-line__left, .bottom-line__right {
  border-top: 2px solid #fff;
  width: 0;
  animation: drawToRight 2s forwards;
}
.bottom-line__left {
  margin-left: .75rem!important;
}
@keyframes drawToRight {
  to {
    width: 40%;
  }
}
.text-red {
  color: var(--main-red) !important;
}
.hero-content {
  padding-left: 5rem !important;
}
.title-hero {
  text-shadow: 0 2px 6px rgba(24, 27, 66, 0.45);
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  animation: zoomIn 0.8s ease-out forwards;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeLeft 1s ease-out forwards;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-up,
.fade-left,
.zoom-in {
  animation-delay: var(--delay, 0s);
}
.card-main, .card-color {
  background: var(--main-secondary);
  backdrop-filter: blur(10px);
  border-radius: var(--bs-border-radius);
  padding: 1rem 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  /* border: 1px solid #2b2f70; */
  border: 1px solid rgb(72 73 97);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.card-main:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  border-color: var(--main-tertiary);
}

/* HERO Slider styles */
#hero-section .slick-dots {
  bottom: 2.8rem;
  display: flex !important;
  justify-content: center;
  z-index: 10;
}
#hero-section .slick-dots li {
  width: 15px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
}
#hero-section .slick-dots li.slick-active {
  width: 30px;
  background-color: var(--main-red);
  box-shadow: 0 0 6px rgba(230, 0, 0, 0.4);
}
#hero-section .slick-dots li button:before {
  content: '';
}
#hero-section .slick-prev,
#hero-section .slick-next {
  position: absolute;
  top: 50%;
  z-index: 11;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
/* Icons */
#hero-section .slick-prev::before,
#hero-section .slick-next::before {
  font-family: 'slick';
  font-size: 20px;
  color: white;
  opacity: 0.8;
  top: 1px;
  position: relative;
}
/* Hover Effects */
#hero-section .slick-prev:hover,
#hero-section .slick-next:hover {
  background: #e60000;
  border-color: #e60000;
  box-shadow: 0 0 12px rgba(230, 0, 0, 0.4);
}
#hero-section .slick-prev:hover::before,
#hero-section .slick-next:hover::before {
  color: white;
  opacity: 1;
}
/* Position */
#hero-section .slick-prev {
  left: 1%;
}
#hero-section .slick-next {
  right: 1%;
}
/* END HERO Slider styles */

/* OUR MODELS styles */
.title-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.title-text {
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(255, 80, 50, 0.3);
  margin-bottom: 0;
}
.title-line {
  flex: 1;
  height: 4px;
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  width: 100%;
  top: 0.5rem;
  position: relative;
}
.model-tilte-selected {
  color: #ffffff;
  font-weight: bolder;
  text-align: center;
  font-size: 40vw;
  width: 100%;
  top: 0;
  line-height: 0.8;
  font-style: italic;
}
.model-tilte-selected.aos-animate {
  /* opacity: 0.1 !important; */
  filter: opacity(0.1);
}
.model-list__radio {
  position: relative;
  padding: 1rem 2rem;
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: border 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
  width: 100%;
  justify-items: center;
}
.model-list__radio img {
  display: unset;
  height: auto;
  width: 100%;
  max-height: 3rem;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.9);
}
.model-list__radio input[type="radio"] {
  display: none;
}
/* ✨ WHEN SELECTED ✨ */
.model-list__radio:has(input[type="radio"]:checked), .model-list__radio.active {
  background: rgba(240, 27, 15, 0.34);
  border-radius: var(--bs-border-radius);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.6px);
  -webkit-backdrop-filter: blur(4.6px);
  border: 1px solid var(--main-red);
  /* box-shadow: 0 0 15px var(--main-red); */
  transform: scale(1.1);
}
.model-list__radio:has(input[type="radio"]:checked) img {
  transform: scale(1.1);
  filter: brightness(1.1);
}
.model-list__radio:hover {
  border: 1px solid var(--main-tertiary);
  transform: scale(1.2);
}
.model-showcase__car {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.model-showcase__car__image {
  width: 100%;
  height: 350px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.4s ease;
  z-index: 1;
  position: relative;
}
.model-showcase__lightning {
  height: 300px;
  width: 100%;
  background-color: var(--main-red);
  border-radius: 50%;
  filter: blur(100px);
  display: inline-block;
  opacity: .3;
  pointer-events: none;
  z-index: 0;
}
.modal-color__item {
  width: 30px;
  height: 30px;
  background: gray;
  border-radius: 50%;
}
.modal-color__item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s;
  box-shadow: 0 0 8px rgba(24, 27, 66, 0.5);
}
.modal-color__item:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(74, 81, 162, 0.3);
}
.modal-color__item.active {
  outline: 3px solid rgb(72 73 97);
  box-shadow: 0 0 8px 3px rgba(74, 81, 162, 0.35);
}
.model-type__radio {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.05);
}
.model-type__radio:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.model-type__radio input[type="radio"] {
  display: none;
}
.model-showcase__car__price::before {
  content: "";
  display: block;
  width: 150px;
  height: 4px;
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  margin-bottom: 1rem;
}
.model-showcase__car__price h1 {
  font-size: 4rem;
}

/* ✨ WHEN SELECTED ✨ */
.model-list__radio:has(input[type="radio"]:checked), .model-type__radio.active {
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  color: white;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(230, 0, 0, 0.4);
  border: none;
}
.model-type__radio.radio-detail.active {
  background: var(--main-secondary);
  border: 2px solid var(--main-red);
}
/* END OUR MODELS styles */

/* BRAND VALUES styles */
.flip-card {
  width: 100%;
  height: 400px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--bs-border-radius);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.flip-card-front {
  background: var(--main-secondary);
  border: 1px solid rgb(72 73 97);
  color: white;
}

.flip-card-back {
  justify-content: center;
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  color: white;
  transform: rotateY(180deg);
  border: 1px solid #a00000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.gradient-icon {
  background: linear-gradient(to bottom, var(--main-red), #323988);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
/* END BRAND VALUES styles */
.explore__img-left, .explore__img-right {
  height: 400px;
  position: relative;
}

.explore__img-left img,
.explore__img-right img {
  border-radius: var(--bs-border-radius);
  width: 60%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255,255,255,0.05);
}
.explore__img-left img {
  left: 0;
  z-index: 2;
}
.explore__img-right img {
  right: 0;
  z-index: 2;
}
.explore__title::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  margin-bottom: 1rem;
}
.text-gradient {
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.icon-wrapper {
  width: 90px;
  height: 90px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  font-size: 3rem;
  color: white;
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  flex-shrink: 0;
}
#site-footer {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(15, 16, 37, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  background: linear-gradient(to top, rgba(15, 16, 37, 0.75), rgba(15, 16, 37, 0.45));

}
.footer__logo {
  width: 10rem;
}
.accordion-button {
  padding: 2.5rem 0;
  color: white;
  background: none;
  border: none !important;
}
.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}
.accordion-item {
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-top-left-radius: none !important;
  border-top-right-radius: none !important;
  border-bottom-right-radius: none !important;
  border-bottom-left-radius: none !important;
}
.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background-color: unset !important;
  color: white !important;
}
.accordion {
  --bs-accordion-border-radius: 0 !important;
}
.accordion-button::after {
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: invert(27%) sepia(93%) saturate(2100%) hue-rotate(348deg) brightness(100%) contrast(130%);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  filter: invert(52%) sepia(96%) saturate(530%) hue-rotate(342deg) brightness(105%) contrast(110%);
}
.table.bg-transparent > :not(caption) > * > * {
  border-top: none !important;
  background-color: unset !important;
  padding: 1rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}
.timeline-nav {
  position: relative;
  padding-left: 20px;
}
.base-line,
.progress-line {
  position: absolute;
  left: 0;
  width: 5px;
  border-radius: 5px;
}
.base-line {
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2); /* abu-abu */
  z-index: 1;
}
.progress-line {
  top: 0;
  height: 0;
  background-color: var(--main-red);
  z-index: 2;
  transition: height 0.3s ease;
}
.timeline-nav ul {
  margin: 0;
  padding: 0 0 0 15px;
  list-style: none;
  position: relative;
  z-index: 3;
}
.timeline-nav li {
  position: relative;
  margin: 2rem 0;
}
.timeline-nav li::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 6px;
  width: 12px;
  height: 12px;
  background-color: #888;
  border-radius: 50%;
  z-index: 4;
  transition: background-color 0.3s ease;
}
.timeline-nav li.active::before {
  background-color: var(--main-red);
}
.timeline-nav a {
  font-family: var(--body-font);
  color: #aaa;
  text-decoration: none;
  padding-left: 10px;
  display: block;
  transition: color 0.3s ease;
  position: relative;
  z-index: 4;
}
.timeline-nav a.active {
  color: var(--main-red);
  font-weight: bold;
}
.gallery-slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  border: var(--bs-border-radius);
}
.preview-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  animation: fadeInBackdrop 0.3s ease;
}
.preview-content {
  position: relative;
  z-index: 1;
  max-width: 90%;
  max-height: 90%;
  animation: zoomInPreview 0.3s ease;
}
.preview-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.close-preview {
  position: absolute;
  top: -20px;
  right: -40px;
  transform: translateX(-50%);
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.can-preview {
  cursor: pointer;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomInPreview {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
#section-news-detail .model-showcase__car__price h1 {
  font-size: 4rem;
}
#section-news-detail .model-showcase__car__price::before {
  content: "";
  display: block;
  width: 100% !important;
  height: 4px;
  background: linear-gradient(to right, var(--main-red), var(--main-tertiary));
  margin-bottom: 1rem;
}
.error-container {
  height: 100vh;
  background: linear-gradient(to bottom, #111, transparent); /* Cocok dengan tema elegan */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.error-illustration {
  max-width: 100px;
  width: 80%;
  margin-bottom: 1rem;
  animation: float-error 4s ease-in-out infinite;
}

@keyframes float-error {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}
.main-form {
  max-width: 600px;
  background: rgba(24, 26, 49, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}
.main-form input,
.main-form select,
.main-form textarea {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}
.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
  border-color: var(--main-red);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  border-color: var(--main-tertiary);
  background-color: rgba(255,255,255,0.08);
}
.main-form input,
.main-form select,
.main-form textarea {
  color: white !important;
}
.main-form select option {
  background-color: var(--main-secondary);
  color: white;
  padding: 0.5rem 1rem;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #46444d !important;
  opacity: 1; 
  transition: color 0.3s ease;
}
#section-test-drive img {
  width: 100%;
  height: auto;
}
.features-1 img {
  object-fit: contain !important;
}