#mobileNav,
#mobileNav * {
  -webkit-tap-highlight-color: transparent !important;
}

#mobileNav.collapse,
#mobileNav.collapsing {
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
}
.section-title {
  color: var(--kc-green);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Subtitle */
.section-subtitle {
  color: #6c757d;
  /* margin-bottom: 3rem; */
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* Stars */
.stars {
  font-size: 20px;
  color: #0f3c2f;
}
/* Testimonial Text */
.testimonial-text {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1.5rem;
}

/* User Info */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

/* Avatar Circle */
.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* User Name */
.user-name {
  margin: 0;
  font-weight: 700;
}
/* User Role */
.user-role {
  color: #6c757d;
}
.swiper {
  padding: 30px 30px;
}

.swiper-button-next,
.swiper-button-prev {
  color: black;
}
/* Position arrows */
.myTestimonialSlider .swiper-button-prev,
.myTestimonialSlider .swiper-button-next {
  width: 35px;
  height: 35px;
  background: #000; /* arrow background */
  color: #fff; /* arrow icon color */
  border-radius: 50%; /* round */
  transition: 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}
/* Hover effect */
.myTestimonialSlider .swiper-button-prev:hover,
.myTestimonialSlider .swiper-button-next:hover {
  background: var(--kc-green); /* green hover */
  color: #fff;
}

/* Hide default arrow icons */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Desktop spacing */
.myTestimonialSlider .swiper-button-prev {
  left: 10px;
}
.myTestimonialSlider .swiper-button-next {
  right: 10px;
}
/* contact form submit message design */
.form-success-message {
  background: #e6f7ee;
  color: #0f5132;
  border: 1px solid #badbcc;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 14px;
}

.form-error-message {
  background: #fdecea;
  color: #842029;
  border: 1px solid #f5c2c7;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
}
/* Tablet adjustments */
@media (max-width: 992px) {
  .myTestimonialSlider .swiper-button-prev {
    left: 0;
  }
  .myTestimonialSlider .swiper-button-next {
    right: 0;
  }
}

/* Mobile — arrows go inside slider */
@media (max-width: 576px) {
  .myTestimonialSlider .swiper-button-prev,
  .myTestimonialSlider .swiper-button-next {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.7);
  }

  .myTestimonialSlider .swiper-button-prev {
    left: 5px;
  }
  .myTestimonialSlider .swiper-button-next {
    right: 5px;
  }
}

:root {
  --kc-green: #194430;
  --kc-dark: #0b0b0b;
  --kc-muted: #f6f7f7;
  --card-radius: 12px;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #fff;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.brand-logo {
  height: 90px;
  object-fit: contain;
}
.footer-logo {
  height: 130px;
}
.nav-link {
  color: rgba(0, 0, 0, 0.7) !important;
  font-weight: 600;
}
.nav-link:hover {
  color: var(--kc-green) !important;
}
/* Hero carousel */
.carousel-item {
  height: 85vh;
  /* min-height: 420px; */
  background-size: cover;
  background-position: center;
  position: relative;
}
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.custom-carousel-control-prev,
.custom-carousel-control-next {
  width: 5% !important;
}
.custom-carousel-control-prev-icon,
.custom-carousel-control-next-icon {
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
}
.custom-carousel-indicators [data-bs-target] {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: #bbb;
  border: none;
  transition: all 0.3s ease;
  opacity: 1 !important;
}
.custom-carousel-indicators .active {
  border-radius: 10px;
  border: unset;
  height: 10px;
  width: 32px !important; /* Make active dot WIDER */
  background-color: #28a745; /* Green color */
}
.hero-overlay {
  position: relative;
  z-index: 2;
  left: 30%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 680px;
  padding: 120px 60px;
  border-radius: 10px;
  color: #000;
}
.hero-kicker {
  display: inline-block;
  background: var(--kc-green);
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-title {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.02;
  margin-bottom: 8px;
}
.hero-desc {
  font-size: 25px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
}

.btn-kc {
  background: var(--kc-green);
  color: #fff;
  border: none;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 8px 26px rgba(0, 154, 68, 0.15);
}
.btn-outline-kc {
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  background: transparent;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
}

/* Shop by category */
.categories {
  padding: 48px 0 18px;
}
.cat-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(12, 12, 12, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: #fff;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(12, 12, 12, 0.08);
}
.cat-img img {
  height: 330px;
  width: 100%;
}
.cat-body {
  padding: 20px 16px;
}
.cat-title {
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--kc-green);
}
.cat-sub {
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.95rem;
  margin-top: 6px;
}
.cat-icon {
  bottom: 20%;
  left: 85%;
  position: absolute;
}
.cat-link {
  color: var(--kc-green);
}
/* Featured inventory */
.featured {
  padding: 46px 0;
  background: #fff;
}
.vehicle-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  background: #fff;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(12, 12, 12, 0.06);
}
.vehicle-img img {
  height: 270px;
  width: 100%;
}
.vehicle-body {
  padding: 14px;
}
.vehicle-title {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1rem;
}
.vehicle-meta {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.vehicle-price {
  color: var(--kc-green);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.vehicle-btn {
  width: 100%;
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--kc-green);
  color: #fff;
  border: none;
  font-weight: 700;
}

.badge-featured {
  position: absolute;
  right: 12px;
  top: 12px;
  background: var(--kc-green);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 8px 28px rgba(0, 154, 68, 0.12);
}

/* Trust / Why */
.why {
  padding: 56px 0;
  background: var(--kc-muted);
}
.why .k-item {
  text-align: center;
  padding: 16px;
}
.why .k-item h5 {
  font-weight: 800;
  margin-bottom: 8px;
}
.why .k-item p {
  color: rgba(0, 0, 0, 0.6);
}

/* Testimonials */
.test-card {
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 26px rgba(12, 12, 12, 0.04);
}

/* CTA banner */
.cta-banner {
  background: var(--kc-green);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}
.cta-banner h1 {
  color: var(--kc-dark);
}
.cta-banner p {
  font-size: x-large;
  font-weight: bold;
}
.cta-banner .btn {
  margin-top: 12px;
}

/* Footer */
footer {
  background: #0b0b0b;
  color: #e9f8ee;
  padding: 36px 0;
}
.text-color {
  color: var(--kc-green);
}
.badge-new {
  position: absolute;
  left: 14px;
  top: 10px;
  background: var(--kc-green);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 8px 28px rgba(0, 154, 68, 0.12);
}
.badge-certified {
  position: absolute;
  left: 14px;
  top: 10px;
  background: rgb(5 150 105);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 8px 28px rgba(0, 154, 68, 0.12);
}
/* .heart-icon{
      position: absolute;
      right: 14px;
      top: 10px;
      background: #fff;
      color: var(--kc-green);
      padding: 6px 8px;
      border-radius: 50%;
      font-weight: 700;
      font-size: 12px;
      box-shadow: 0 8px 28px rgba(0, 154, 68, 0.12);
    } */
.padding-0 {
  padding: 0px;
}
.kc-difference-section {
  background: #0f4c3a; /* Dark green background */
  padding: 80px 0;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.kc-title {
  font-size: 42px;
  font-weight: 700;
  color: #e1ece7;
}

.kc-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.kc-item {
  text-align: center;
}

.kc-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.kc-icon i {
  font-size: 34px;
  color: #fff;
  opacity: 0.95;
}

.kc-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #d2e4dc;
}

.kc-item-text {
  font-size: 15px;
  opacity: 0.8;
  max-width: 260px;
  margin: 0 auto;
}
.icon-border {
  border: 1px solid #212529;
  border-radius: 50%;
  background: #2e2c2c;
  padding: 10px 15px;
}
.icon-border:hover {
  background: #185218;
}
/* small screens */
@media (max-width: 767px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-overlay {
    left: 4%;
    right: 4%;
    max-width: unset;
    padding: 20px;
  }
  /* .cat-img {
    height: 140px;
  } */

  /* vehical-img */
  .vehicle-img {
    /* height: 200px; */
  }
  .carousel-item {
    height: 52vh;
    min-height: 340px;
  }
}
@media (max-width: 768px) {
  /* .vehicle-btn {width: 82%;} */
  .cat-bottom {
    a {
      font-size: 14px;
    }
    .cat-icon {
      width: 24px;
      height: 32px;
    }
  }
  .hero-overlay {
    left: 10% !important;
  }
}
@media (max-width: 1024px) {
  /* .vehicle-btn {
          width: 80%;
      } */
  .vehicle-desc {
    font-size: 12px;
  }
  .cat-sub {
    font-size: 0.85rem;
  }
}
@media (max-width: 425px) {
  .custom-carousel-control-next,
  .custom-carousel-control-prev {
    display: none;
  }
  .brand-logo {
    height: 50px;
  }
  .view-inventory-btn {
    font-size: 12px;
    width: 45%;
  }
  .inventory-arrow svg {
    width: 16px;
    height: 16px;
  }
  .swiper {
    padding: 15px 30px;
  }
  .swiper-pagination {
    bottom: 15px !important;
  }
  .cat-card {
    margin: 10px;
  }
  .section-desc {
    margin: 0px 10px;
  }
  .hero-overlay {
    left: 3% !important;
  }
  .cta-banner .btn {
    height: 30px;
    font-size: 12px;
  }
  .footer-logo {
    height: 65px;
  }
  .elementor-column.elementor-col-25,
  .elementor-column[data-col="25"] {
    width: 100% !important;
  }
}
@media (max-width: 375px) {
  .featured .featured-desc {
    flex-wrap: wrap;
  }
  .custom-carousel-indicators {
    bottom: 3px !important;
  }
  .brand-logo {
    height: 50px;
  }
}
@media (max-width: 320px) {
  .btn-kc {
    margin-left: 15px;
    padding: 10px 5px;
  }
  .custom-carousel-indicators {
    bottom: -7px !important;
  }
  .vehicle-desc {
    font-size: 12px;
  }
  .brand-logo {
    height: 38px;
  }
  .swiper {
    padding: 0px 30px;
  }
}

/* Page Hero */
.page-hero {
  background: #2b2f33;
  padding: 40px 0;
  color: #fff;
}

.page-hero h1 {
  margin: 0;
  font-size: 28px;
}

.page-hero p {
  margin: 5px 0 0;
  opacity: 0.85;
}

/* About Page */
.about-section {
  padding: 60px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #1f3b2c;
}

.about-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #333;
}

.about-content strong {
  color: #1f3b2c;
}

.about-cta {
  margin-top: 25px;
  font-weight: 600;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* HERO IMAGE */
.page-hero-image {
  position: relative;
  background: url("../images/finance-hero.jpg") center/cover no-repeat;
  padding: 90px 0;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 15px 0;
  background: #f5f5f5;
  font-size: 14px;
}

/* INTRO */
.finance-intro {
  padding: 50px 0;
}

.finance-intro h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1f3b2c;
}

/* STEPS */
.finance-steps {
  background: #fafafa;
  padding: 60px 0;
}

.finance-steps h3 {
  margin-bottom: 30px;
  font-size: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.step-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

/* CREDIT SECTION */
.finance-credit {
  padding: 70px 0;
}

.finance-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.finance-text h2 {
  margin-bottom: 20px;
  color: #1f3b2c;
}

.finance-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.finance-image img {
  width: 100%;
  border-radius: 8px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  background: #1f3b2c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 15px;
}

.btn-primary:hover {
  background: #163023;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .steps-grid,
  .finance-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}
