/* Base Style CSS Start */

/* Fonts (DM Sans, Bebas Neue & Inter) */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Colors */
:root {
  --primary: #dc3545;
  --black: #121212;
  --white: #ffffff;
  --gray: #d1d5db;
}

body {
  font-family: "DM Sans", sans-serif;
  font-family: "Inter", sans-serif;
  background: #121212;
  scroll-behavior: smooth;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  max-width: 100%;
}

.section__spacing {
  padding-top: 150px;
}

.section__top {
  max-width: 750px;
  margin: auto;
  text-align: center;
}

.section__title::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--primary);
}

.animated__title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(270deg, #ffffff, #dc3545, #ffffff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientColor 8s ease infinite;
}

@keyframes gradientColor {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.section__title h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 122.222%;
  letter-spacing: -0.72px;
  color: var(--white);
  margin-bottom: 15px;
}

.section__top p {
  font-size: 18px;
  line-height: 150%;
  color: var(--gray);
  padding-top: 20px;
  margin-bottom: 0;
}

.fill__btn a {
  font-size: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border: 1px solid var(--primary);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.fill__btn a:hover {
  background: var(--black);
}

.outline__btn a {
  font-size: 16px;
  padding: 12px 18px;
  color: var(--white);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border: 1px solid var(--white);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.outline__btn a:hover {
  background: var(--white);
  color: var(--primary);
}

#CarLookup,
#Pricing,
#Reviews,
#Contact {
  scroll-margin-top: 5vh;
}

/* Base Style CSS End */

/* Header Part CSS Start */

/* Navigation Section CSS Start */

nav.navbar {
  background: var(--black);
  padding: 22px 0;
  z-index: 999;
}

.logo {
  max-width: 100px;
}

.navbar .nav-item {
  padding: 0 18px !important;
}

.navbar .nav-link {
  position: relative;
  font-size: 16px;
  color: var(--white);
  padding: 0 !important;
}

.nav-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 0.125rem;
  width: 0;
  background: var(--primary);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.navbar-toggler {
  border: 0 !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.toggler-icon {
  width: 25px;
  height: 2px;
  background-color: #e74c3c;
  display: block;
  transition: all 0.2s;
}

.middle-bar {
  margin: 5px auto;
}

.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .toggler-icon {
  background-color: var(--white);
}

@media (max-width: 1200px) {
  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-nav {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .navbar .nav-item {
    padding: 5px 0 !important;
  }
}

/* Navigation Section CSS End */

/* Hero Section CSS Start */

.hero__wrapper {
  height: 85vh;
}

.hero__slide {
  position: relative;
  height: 85vh;
  background-size: cover;
  background-position: center;
}

.hero__slide1 {
  background-image: url(../images/hero-slide1.webp);
}

.hero__slide2 {
  background-image: url(../images/hero-slide2.webp);
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 700px;
}

.hero__content h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
}

.hero__content h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  color: var(--white);
}

.hero__content p {
  font-size: 16px;
  color: var(--white);
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 3;
}

.owl-carousel .owl-dots {
  width: 100%;
  position: absolute;
  text-align: center;
  bottom: 20px;
}

.owl-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
}

.owl-carousel .owl-dot.active span {
  background: var(--primary) !important;
}

/* Hero Section CSS End */

/* Header Part CSS End */

/* Main Part CSS Start */

/* Car Lookup Section CSS Start */

.carlookup_form__container {
  padding: 2rem;
  margin-top: 60px;
  border: 1px solid #444;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  border-radius: 0.5rem;
}

.form-label {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.form-select {
  color: var(--white);
  background: #222222;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  border: 1px solid #555;
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.submit__btn button {
  font-size: 16px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border: 1px solid var(--primary);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.submit__btn button:hover {
  background: var(--black);
}

/* Car Lookup Section CSS End */

/* Pricing Table Section CSS Start */

.pricing__table-container {
  overflow-x: auto;
  margin-top: 60px;
}

.pricing__table {
  min-width: 800px;
  background-color: #111;
  border-collapse: collapse;
}

.pricing__table th,
.pricing__table td {
  padding: 1rem;
  color: var(--white);
  border: 1px solid #333;
  text-align: center;
}

.pricing__table th {
  background-color: #222;
  color: #fff;
  text-transform: uppercase;
}

.pricing__table .service-cell {
  position: sticky;
  left: 0;
  background-color: #111;
  text-align: left;
  z-index: 2;
  min-width: 180px;
}

.pricing__table .free {
  color: #28a745;
}

.pricing__table-footer p {
  font-size: 15px;
  text-align: center;
  color: var(--gray);
}

/* Pricing Table Section CSS End */

/* Testimonial Section CSS Start */

.testimonial__wrapper {
  background: #121826;
  padding: 80px 0 150px;
  margin-top: 80px;
}

.testimonial__slider {
  margin-top: 60px;
}

.testimonial__card {
  height: 100%;
  padding: 24px;
  background: var(--black);
  border: 1px solid #202936;
  border-radius: 8px;
}

.testimonial__user__info {
  gap: 20px;
}

.testimonial__card p {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0;
}

.user__rating li i {
  color: #f5cb3d;
}

.testimonial__user-avatar {
  width: 52px;
  height: 52px;
}

.testimonial__user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px;
}

.testimonial__user-content {
  width: calc(100% - 52px);
}

.testimonial__user-content h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}

.testimonial__user-content span {
  font-size: 15px;
  font-weight: 500;
  color: #747474;
}

.testimonial__slider .owl-stage {
  display: flex;
  padding: 0 10px;
}

.owl-nav.disabled {
  display: block;
  top: inherit;
  bottom: -130px;
}

.owl-nav button {
  width: 50px;
  height: 50px;
  background: #dc3545 !important;
  color: var(--white) !important;
  border: none;
  border-radius: 100% !important;
  transition: background 0.3s;
}

.owl-nav button:hover {
  color: var(--black) !important;
  background: var(--white) !important;
}

/* Testimonial Section CSS End */

/* Contact Section CSS Start */

.contact__container {
  margin-top: 60px;
}

.contact__form__container {
  padding: 30px;
  background: #090909;
  border: 1px solid #202936;
  border-radius: 10px;
}

.contact__form__container h4,
.contact__information h4 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 30px;
}

.form__input__field {
  padding-bottom: 10px;
}

.form__input__field input,
.form__input__field textarea,
.newsletter__input input {
  color: var(--white) !important;
  background: transparent;
  padding: 10px 12px;
  border: 1px solid #202936;
}

.form__input__field input:focus,
.form__input__field textarea:focus,
.newsletter__input input:focus {
  outline: none;
  background: transparent;
  border: 1px solid var(--primary);
  box-shadow: none;
}

.contact__form ::placeholder {
  color: var(--gray);
}

.google__map iframe {
  border-radius: 10px !important;
}

.contact__information {
  padding: 20px;
  background: #090909;
  border: 1px solid #202936;
  border-radius: 10px;
}

.info__list li,
.info__list li a {
  font-size: 16px;
  color: var(--white) !important;
}

.info__list li i {
  padding-right: 12px;
  margin-top: 5px;
}

/* Contact Section CSS End */

/* Main Part CSS End */

/* Footer Part CSS Start */

.footer__wrapper {
  margin-top: 100px;
  background: #090909;
}

.footer__copyright p {
  font-size: 16px;
  color: var(--white);
  text-align: center;
  padding: 20px 0;
  margin-bottom: 0;
}

.footer__copyright p a {
  color: var(--primary);
}

/* Footer Part CSS End */
