:root {
  --red: #d95d39;
  --dark-red: #0000FF;
  --dark: #111111;
  --gray: #444444;
  --light-gray: #f5f5f5;
  --mid-gray: #e0e0e0;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
}

/* ===== TOPBAR ===== */
.topbar {
  background: #1a1a1a;
  color: #aaa;
  font-size: 12px;
  padding: 6px 0;
}

.topbar a {
  color: #aaa;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--red);
}

/* ===== NAVBAR ===== */
.main-navbar {
  background: #fff;
  /* border-bottom: 3px solid var(--red); */
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.12); */
}

.main-navbar .navbar-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
}

.main-navbar .navbar-brand span {
  color: var(--red);
}

.main-navbar .nav-link {
  /* font-family: 'Oswald', sans-serif; */
  font-size: 16px;
  color: #333 !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--red) !important;
}

.btn-nav-cta {
  background: var(--red);
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 23px !important;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-nav-cta:hover {
  background: var(--dark-red);
  color: #fff !important;
}

/* ===== HERO ===== */
.hero-section {
  /* background: linear-gradient(135deg, #111 0%, #1e1e1e 50%, #2a0000 100%); */
  min-height: 520px;
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=60') center/cover no-repeat;
  opacity: 0.08;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.hero-section h1 {
  font-size: 62px;
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-section h1 span {
  color: var(--red);
}

.hero-section p {
  color: #000000;
  font-size: 15px;
  max-width: 460px;
  line-height: 1.7;
  margin-top: 12px;
}

.vin-form-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 26px 10px;
  margin-top: 8px;
}

.vin-form-box label {
  color: #000000;
  font-size: 13px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  padding: 13px 0 3px;
}

.vin-form-box input {
  background: #fff;
  border: none;
  border-radius: 3px;
  height: 48px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 2px;
  padding: 0 16px;
  color: #111;
  width: 100%;
}

.vin-form-box select {
  background: #fff;
  border: none;
  border-radius: 3px;
  height: 48px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 2px;
  padding: 0 16px;
  color: #111;
  width: 100%;
}

.vin-form-box button {
  padding: 12px 23px !important;
  background: #cc0000;
  color: #fff;
  border: none;
  margin: 20px 0 0 0;
  border-radius: 100px;
  font-size: 16px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-weight: 600;
}

.vin-form-box input:focus {
  outline: 2px solid var(--red);
}

.btn-hero-cta {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 13px 36px;
  border: none;
  border-radius: 3px;
  margin-top: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-hero-cta:hover {
  background: var(--dark-red);
}

.hero-car-img {
  position: relative;
  z-index: 1;
}

.hero-car-img img {
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 20px 40px rgba(200, 0, 0, 0.3));
  animation: floatCar 4s ease-in-out infinite;
}

@keyframes floatCar {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
}

.hero-stat .lbl {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== COUNTRY FLAGS STRIP ===== */
.flags-strip {
  background: #f9f9f9;
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 0;
}

.flags-strip .flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.flags-strip img {
  width: 44px;
  height: 30px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid #ddd;
}

.flags-strip .flag-label {
  font-size: 10px;
  color: #666;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

/* ===== PARTNER LOGOS ===== */
.partners-section {
  background: #fff;
  padding: 50px 0;
  border-bottom: 1px solid #eee;
}

.partners-section .partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  /* opacity: 0.65; */
  transition: opacity 0.2s;
}

.partners-section .partner-logo img {
  /* object-fit: cover; */
  height: 50px;
  width: 100%;
}

.partners-section .row {
  padding: 30px 0;
}

.partners-section .partner-logo:hover {
  opacity: 1;
}

.partners-section .partner-logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partners-section .partner-logo .partner-icon {
  width: 32px;
  height: 32px;
  background: #111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

/* ===== SECTION TITLES ===== */
.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  /* border-bottom: 2px solid var(--red); */
  padding-bottom: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  line-height: 1.15;
}

.section-title span {
  color: var(--red);
}

.section-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  max-width: 560px;
}

.title-underline {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 14px 0 20px;
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
  background: #f8f9fa;
  padding: 90px 0;
}

.package-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(204, 0, 0, 0.1);
}

.package-card.featured {
  border: 2px solid var(--red);
  transform: scale(1.03);
  z-index: 2;
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.package-header {
  background: linear-gradient(135deg, #2a2a2a 0%, #111 100%);
  color: #fff;
  padding: 30px 24px;
  position: relative;
  text-align: center;
}

.package-header.red {
  background: linear-gradient(135deg, #ff1a1a 0%, #aa0000 100%);
}

.package-name {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.package-price {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1;
}

.package-price small {
  font-size: 24px;
  font-weight: 400;
  opacity: 0.7;
  vertical-align: super;
}

.best-value {
  position: absolute;
  top: 0;
  right: 24px;
  background: #ffcc00;
  color: #000;
  font-size: 11px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.package-body {
  padding: 30px 24px;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

.package-feature:last-child {
  border-bottom: none;
}

.package-feature i {
  color: var(--red);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.package-feature i.fa-times {
  color: #d0d0d0;
}

.btn-package {
  background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px;
  border: none;
  border-radius: 50px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(204, 0, 0, 0.2);
}

.btn-package:hover {
  background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 100%);
  box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-package-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  box-shadow: none;
}

.btn-package-outline:hover {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 15px rgba(204, 0, 0, 0.2);
}

/* ===== CHOOSE REPORT SECTION ===== */
.choose-section {
  background: #040435;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1200&q=50') center/cover no-repeat;
  opacity: 0.06;
}

.choose-section .section-title {
  color: #fff;
  font-size: 60px;
}

.choose-section .section-label {
  color: #ff4444;
  border-color: #ff4444;
}

.choose-section .section-desc {
  color: #aaa;
}

.choose-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.choose-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.choose-icon i {
  color: #fff;
  font-size: 20px;
}

.choose-item-text h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}

.choose-item-text p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 70px 0;
  background: #fff;
}

.service-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid #eee;
  border-radius: 4px;
  transition: all 0.25s;
  height: 100%;
}

.service-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(204, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon-circle {
  width: 64px;
  height: 64px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.25s;
}

.service-card:hover .service-icon-circle {
  background: var(--red);
}

.service-icon-circle i {
  font-size: 26px;
  color: var(--red);
  transition: color 0.25s;
}

.service-card:hover .service-icon-circle i {
  color: #fff;
}

.service-card h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== AV LEARN SECTION ===== */
.av-section {
  background: #040435;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.av-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=50') center/cover no-repeat;
  opacity: 0.07;
}

.av-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.25s;
}

.av-card:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px);
}

.av-card i {
  font-size: 32px;
  color: var(--red);
  margin-bottom: 14px;
  transition: color 0.25s;
}

.av-card:hover i {
  color: #fff;
}

.av-card h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.av-card p {
  font-size: 12px;
  color: #aaa;
  margin: 0;
  transition: color 0.25s;
}

.av-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.av-section .section-title {
  color: #fff;
}

.av-section .section-desc {
  color: #aaa;
}

/* ===== WHAT INFO SECTION ===== */
.info-section {
  background: #fff;
  padding: 70px 0;
}

.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.info-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.info-list-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.info-list-item strong {
  color: #111;
}

.info-image-box {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.info-image-box img {
  width: 100%;
  border-radius: 4px;
}

.info-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: #040435;
  padding: 50px 0;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-item .num span {
  font-size: 28px;
}

.stat-item .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  height: 60px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
  background: var(--light-gray);
  padding: 70px 0;
}

.testimonial-card {
  background: #fff;
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 80px;
  color: #eee;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 13px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.author-role {
  font-size: 12px;
  color: #999;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #fff;
  padding: 70px 0;
}

.accordion-item {
  border: none !important;
  border-bottom: 1px solid #e5e5e5 !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

.accordion-button {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111 !important;
  background: #fff !important;
  padding: 18px 6px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--red) !important;
}

.accordion-button::after {
  filter: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cc0000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  padding: 0 6px 18px;
}

/* ===== ENQUIRE FORM ===== */
.enquire-section {
  background: #040435;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.enquire-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--red);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.08;
}

.enquire-section .section-title {
  color: #fff;
}

.form-control-dark {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 3px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.form-control-dark::placeholder {
  color: #9f9e9e;
}

.form-control-dark:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(204, 0, 0, 0.25);
}

.btn-submit-enquire {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 40px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit-enquire:hover {
  background: var(--dark-red);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #fffefe;
  padding: 60px 0 0;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--red);
}

.footer-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

.footer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 1px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  /* display: flex; */
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #777;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 2px solid var(--red);
  border-top: 2px solid var(--red);
  transform: rotate(45deg);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--red);
  width: 16px;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  margin-top: 40px;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 12px;
  color: #555;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  justify-content: start;
}

.social-btn {
  width: 34px;
  height: 34px;
  background: #cd2027;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social-btn:hover {
  background: var(--red);
}

.social-btn i {
  color: #ffffff;
  font-size: 13px;
  transition: color 0.2s;
}

.social-btn:hover i {
  color: #fff;
}

/* ===== UTILITIES ===== */
.text-red {
  color: var(--red);
}

.bg-red {
  background: var(--red);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 38px;
  }

  .hero-car-img {
    margin-top: 40px;
    text-align: center;
  }

  .hero-car-img img {
    max-width: 420px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 50px 0 40px;
  }

  .hero-section h1 {
    font-size: 30px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .num {
    font-size: 22px;
  }
}

a.navbar-brand img {
  width: 150px;
}

/* ===== BREADCRUMB SECTION ===== */
.breadcrump-section {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.breadcrump-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=40') center/cover no-repeat;
  opacity: 0.1;
}

.breadcrump-section .container {
  position: relative;
  z-index: 2;
}

.breadcrump-section h1 {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.breadcrump-section h1 span {
  color: var(--red);
}

.breadcrump-desc {
  color: #bbb;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.breadcrumb-nav {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb-nav a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.breadcrumb-nav a:hover {
  color: #fff;
}

.breadcrumb-nav span {
  color: #555;
}

.breadcrumb-nav .current {
  color: #fff;
}

/* ===== INFINITE MARQUEE CAROUSEL ===== */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.flags-strip .marquee-wrapper::before,
.flags-strip .marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.flags-strip .marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f9f9f9 0%, rgba(249, 249, 249, 0) 100%);
}

.flags-strip .marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f9f9f9 0%, rgba(249, 249, 249, 0) 100%);
}

.partners-section .marquee-wrapper::before,
.partners-section .marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-section .marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-section .marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-content {
  display: inline-flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

.marquee-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.footer-logo a img {
  width: 190px;
}

.site-footer .row {
  justify-content: center;
  /* align-items: center; */
  text-align: center;
}

/* ==========================================================================
   Car Verify Hub - CYBER AUTOMOTIVE THEME OVERHAUL
   ========================================================================== */

:root {
  --red: #d95d39 !important;
  --dark-red: #070786 !important;
  --cyber-crimson: #0000FF !important;
  --dark: #0f172a !important;
  --bg-navy: #0b1120 !important;
  --card-navy: #1e293b !important;
  --border-slate: #334155 !important;
  --text-primary: #ffffff !important;
  --text-secondary: #cbd5e1 !important;
  --text-muted: #94a3b8 !important;
  --glow-red: 0 0 25px #0000FF !important;
  --gradient-red: linear-gradient(135deg, #0000FF 0%, #070786 100%) !important;
  --gradient-dark: linear-gradient(180deg, #0b1120 0%, #0f172a 100%) !important;
  --font-sans: 'Outfit', 'Inter', sans-serif !important;
  --font-heading: 'Oswald', sans-serif !important;
}

body {
  font-family: var(--font-sans);
  /* background-color: var(--bg-navy) !important; */
  color: var(--text-secondary) !important;
  line-height: 1.7 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-section h1 {
  font-family: var(--font-heading) !important;
  letter-spacing: 0.5px !important;
}

::selection {
  background: var(--red);
  color: #ffffff;
}

/* NAVBAR REDESIGN */
.main-navbar {
  background: rgb(15 23 42 / 0%) !important;
  /* backdrop-filter: blur(16px) !important; */
  -webkit-backdrop-filter: blur(16px) !important;
  position: absolute;
  width: 100%;
  top: 0 !important;
  z-index: 9999 !important;
  padding: 16px 0 !important;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important; */
}

.main-navbar .nav-link {
  color: #f8fafc !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  padding: 8px 16px !important;
  transition: all 0.3s ease !important;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--red) !important;
  text-shadow: var(--glow-red) !important;
}

.btn-nav-cta {
  background: #d95d39;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  letter-spacing: 1.5px !important;
  box-shadow: 0 8px 25px rgba(244, 63, 94, 0.4) !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.btn-nav-cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 35px rgba(244, 63, 94, 0.6) !important;
  color: #ffffff !important;
}

/* HERO REDESIGN */
.hero-section {
  background: radial-gradient(circle at 75% 25%, rgba(244, 63, 94, 0.2) 0%, rgba(11, 17, 32, 0) 60%),
    linear-gradient(180deg, #0b1120 0%, #0f172a 100%) !important;
  padding: 90px 0 70px !important;
}

.hero-badge {
  background: rgba(244, 63, 94, 0.15) !important;
  color: var(--red) !important;
  border: 1px solid rgba(244, 63, 94, 0.3) !important;
  border-radius: 30px !important;
  padding: 6px 18px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  margin-bottom: 20px !important;
  display: inline-block !important;
}

.hero-section h1 {
  font-size: 60px !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
}

.hero-section h1 span {
  background: linear-gradient(135deg, #ffffff 0%, #fda4af 40%, #f43f5e 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hero-section p {
  color: #94a3b8 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

/* VIN FORM BOX REDESIGN */
.vin-form-box {
  background: rgba(30, 41, 59, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1.5px solid rgba(244, 63, 94, 0.3) !important;
  border-radius: 20px !important;
  padding: 32px 28px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5) !important;
  margin-top: 24px !important;
}

.vin-form-box label {
  color: #f8fafc !important;
  font-size: 13px !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  margin-bottom: 8px !important;
}

.vin-form-box input,
.vin-form-box select {
  background: #0f172a !important;
  border: 1.5px solid #334155 !important;
  border-radius: 10px !important;
  height: 52px !important;
  color: #ffffff !important;
  padding: 0 18px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.vin-form-box input:focus,
.vin-form-box select:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.25) !important;
  outline: none !important;
  background: #1e293b !important;
}

.vin-form-box button {
  background: var(--gradient-red) !important;
  color: #ffffff !important;
  height: 54px !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  width: 100% !important;
  margin-top: 24px !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.45) !important;
  transition: all 0.35s ease !important;
  cursor: pointer !important;
}

.vin-form-box button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 40px rgba(244, 63, 94, 0.65) !important;
}

/* HERO STATS */
.hero-stats {
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  gap: 20px !important;
  justify-content: space-around !important;
  margin-top: 30px !important;
}

.hero-stat .num {
  color: var(--red) !important;
  font-size: 30px !important;
  text-shadow: var(--glow-red) !important;
}

.hero-stat .lbl {
  color: #94a3b8 !important;
  font-size: 11px !important;
}

/* CAROUSEL & STRIPS */
.flags-strip {
  background: #0f172a !important;
  border-bottom: 1px solid #1e293b !important;
}

.flags-strip .flag-label {
  color: #cbd5e1 !important;
}

.partners-section {
  background: #0b1120 !important;
  border-bottom: 1px solid #1e293b !important;
}

.partners-section .partner-logo span {
  color: #ffffff !important;
}

/* SECTION TITLES & CARDS */
.section-title {
  color: #000000 !important;
  font-size: 44px !important;
}

.section-title span {
  color: var(--red) !important;
}

.section-desc {
  color: #94a3b8 !important;
}

.packages-section {
  background: #0b1120 !important;
  padding: 100px 0 !important;
}

.package-card {
  background: #1e293b !important;
  border: 1px solid #334155 !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

.package-card.featured {
  border: 2px solid var(--red) !important;
  box-shadow: 0 20px 50px rgba(244, 63, 94, 0.3) !important;
}

.package-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  color: #ffffff !important;
}

/* SITE FOOTER */
.site-footer {
  background: #070c18 !important;
  color: #94a3b8 !important;
  border-top: 1px solid rgba(244, 63, 94, 0.2) !important;
  padding-top: 80px !important;
}

.footer-desc {
  color: #cbd5e1 !important;
  font-size: 15px !important;
}

.footer-links li a {
  color: #cbd5e1 !important;
  transition: color 0.3s ease !important;
}

.footer-links li a:hover {
  color: var(--red) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 24px 0 !important;
  margin-top: 40px !important;
}

.social-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.social-btn:hover {
  background: var(--gradient-red) !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
}

/* ==========================================================================
   REFERENCE DESIGN MATCHING STYLESHEET (BLUE & RED ACCENTS)
   ========================================================================== */

.text-blue,
.text-blue-glow {
  color: #d95d39 !important;
}

.text-blue-glow {
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.5) !important;
}

.font-oswald {
  font-family: 'Oswald', sans-serif !important;
}

/* HERO SECTION */
.hero-section-custom {
  background: linear-gradient(273deg, rgb(11 17 32 / 0%) 0%, #1c3144 100%), url(../images/hero-bg-bmw.jpg) center center / cover no-repeat !important;
  padding: 170px 0 70px !important;
  color: #ffffff !important;
  position: relative !important;
}

.hero-title {
  font-family: 'Oswald', sans-serif !important;
  font-size: 49px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
}

.hero-subtitle {
  color: #ffffff !important;
  font-size: 16px !important;
  max-width: 520px !important;
}

/* BUTTONS */
.btn-red-pill {
  background: #d95d39 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-family: 'Oswald', sans-serif !important;
  letter-spacing: 1px !important;
  padding: 13px 34px !important;
  border: none !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4) !important;
}

.btn-red-pill:hover {
  background: #be123c !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 35px rgba(225, 29, 72, 0.6) !important;
}

.btn-glass-pill {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-family: 'Outfit', sans-serif !important;
  padding: 13px 30px !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(8px) !important;
}

.btn-glass-pill:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: #d95d39 !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
}

.btn-blue-decode {
  background: #d95d39 !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-family: 'Oswald', sans-serif !important;
  letter-spacing: 1.5px !important;
  padding: 14px 32px !important;
  border: none !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45) !important;
  cursor: pointer !important;
}

.btn-blue-decode:hover {
  background: #1d4ed8 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.65) !important;
}

.btn-blue-pill {
  background: #d95d39 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-family: 'Oswald', sans-serif !important;
  letter-spacing: 1px !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  border: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35) !important;
}

.btn-blue-pill:hover {
  background: #1d4ed8 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* VIN SEARCH BAR STRIP */
.vin-search-strip-box {
  background: rgba(30, 41, 59, 0.92) !important;
  backdrop-filter: blur(20px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 16px !important;
  padding: 24px 32px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5) !important;
}

.vin-box-heading {
  font-family: 'Oswald', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  color: #ffffff !important;
}

.secure-tag {
  color: #94a3b8 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

/* HOW IT WORKS */
.section-heading-custom {
  font-family: 'Oswald', sans-serif !important;
  font-size: 40px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #0f172a !important;
  padding: 0 0 40px 0;
}

.step-card-custom {
  transition: all 0.35s ease !important;
  border: 1px solid #e2e8f0 !important;
}

.step-card-custom:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
}

.step-icon-circle {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  background: #d95d39 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.4) !important;
}

.step-number-badge {
  position: absolute !important;
  top: 16px !important;
  left: 20px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #d95d39 !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* REPORT TYPES CARDS */
.report-type-card {
  transition: all 0.35s ease !important;
}

.report-type-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
}

/* WHY CHOOSE & WHAT YOU GET */
.feature-box-white {
  transition: all 0.3s ease !important;
}

.feature-box-white:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.15) !important;
  border-color: #d95d39 !important;
}

.why-choose-left-box {
  background: url('../images/why-choose-bg.png') center right / cover no-repeat !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
  min-height: 330px !important;
  position: relative !important;
  padding: 30px;
}

.why-bullets li {
  display: flex !important;
  align-items: center !important;
  gap: 0px;
  padding: 0px 0;
}

/* CUSTOM ACCORDION */
.custom-accordion .accordion-item {
  border-radius: 10px !important;
  overflow: hidden !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(37, 99, 235, 0.08) !important;
  color: #d95d39 !important;
}

/* EXACT VIN SEARCH BOX SNIPPET MATCH */
.vin-search-outer-pill {
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
}

.vin-label-text {
  font-family: 'Oswald', sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
}

.vin-exact-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  height: 52px !important;
  color: #ffffff !important;
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  padding: 0 20px !important;
  transition: all 0.3s ease !important;
}

.vin-exact-input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.vin-exact-input:focus {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: #d95d39 !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3) !important;
  outline: none !important;
  color: #ffffff !important;
}

.btn-exact-decode {
  background: #d95d39 !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  height: 52px !important;
  padding: 0 32px !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-exact-decode:hover {
  background: #1d4ed8 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.65) !important;
}

.secure-exact-tag {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.report-type-card span {
  font-size: 25px !IMPORTANT;
  font-weight: 800;
  color: #cd2027 !IMPORTANT;
}

.stats-counter-bar {
  margin: 0 30px;
  border-radius: 30px;
}

/* OUR SERVICES GRID STYLES */
.service-grid-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(204, 0, 0, 0.12) !important;
  border-color: rgba(204, 0, 0, 0.25) !important;
}
.service-grid-card:hover .service-grid-icon-circle {
  background: #cc0000 !important;
  transition: background 0.3s ease;
}
.service-grid-card:hover .service-grid-icon-circle i {
  color: #ffffff !important;
  transition: color 0.3s ease;
}

/* SERVICES PAGE DETAILED CARDS */
.service-detail-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}
.service-img-wrapper img {
  transition: transform 0.5s ease;
}
.service-detail-card:hover .service-img-wrapper img {
  transform: scale(1.04);
}
.text-primary {
    --bs-text-opacity: 1;
    color: #d95d39 !important;
}
.rounded-circle {
    border-radius: 50% !important;
    background: #d95d39 ! IMPORTANT;
    width: 64px !important;
    height: 64px !important;
    color: #fff !IMPORTANT;
}
.bred-banner {
    text-align: center;
    padding: 120px 0 40px 0;
}