

.features-section hr {
  border: none;
  height: 4px;
  background-color: #e5e5e5;
  margin: 20px 0;
  border-radius: 10px;
}

/* === Grid Layout === */
.features-section .features-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  text-align: center;
  align-items: stretch;
  grid-auto-rows: 90px; /* equal height for all boxes */
}

@media (max-width: 1200px) { .features-section .features-list { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 992px)  { .features-section .features-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .features-section .features-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .features-section .features-list { grid-template-columns: repeat(1, 1fr); } }

/* === Feature Card === */
.features-section .features-list > div {
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  padding: 6px 6px; /* small vertical padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-section .features-list > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 165, 0, 0.25);
}

/* === Icon === */
.features-section .features-list i {
  font-size: 20px;
  color: #ff7a00; /* bright orange icon */
  margin-bottom: 3px;
}

/* === Feature Title === */
.features-section .features-list p {
  font-size: 11px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

/* === Feature Value === */
.features-section .features-list .fvalue {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-top: 1px;
  line-height: 1.1;
}
 
/* --- Common Section Heading with Orange Icon --- */
.heading-with-icon.realtedcars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.heading-with-icon.realtedcars img {
  width: 1.14rem;
  height: auto;
}

.heading-with-icon.realtedcars h2 {
  font-size: 24px;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  letter-spacing: 0.4px;
  line-height: 2.1rem;
}

/* --- Body Paragraphs --- */
.leasing-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* --- Subheadings (Interior Features, Safety, etc.) --- */
.leasing-content h3 {
  font-size: 20px;
  font-weight: 800;
  margin-top: 35px;
  margin-bottom: 10px;
  color: #000;
}

/* --- Bullet Points --- */
.leasing-content ul {
  list-style: none;
  padding-left: 0;
}

.leasing-content ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.leasing-content ul li::before {
  content: "•";
  color: #ff7a00;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
/* --- Toggle FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mt-6 { margin-top:4rem; }
.mt-5 { margin-top: 3rem; }
.mt-3 { margin-top: 2rem; }
.mb-3 { margin-bottom: 2rem; }
/* === FAQ GRID LAYOUT === */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr; /* single column on mobile */
  }
}

/* === FAQ ITEM === */
.faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.25);
}

/* === QUESTION BUTTON === */
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.faq-question span {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  flex: 1;
  line-height: 1.4;
}

.faq-question i {
  font-size: 18px;
  color: #ff7a00;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* === ANSWER CONTENT === */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fff;
  padding: 0 16px;
}

.faq-answer p {
  font-size: 14px;
  color: #444;
  margin: 10px 0 15px;
  line-height: 1.5;
}

/* === ACTIVE STATE === */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 16px 15px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* READ MORE button (for description) */
.read-more-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: #ff5a00;
  color: #fff;
}

.read-more-btn-wrapper {
  text-align: center;
  margin-top: 29px;
}

/* VIEW ALL button (for FAQs heading) */
/* View All button styling */
.view-all-btn {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background-color: #ff5a00;
  color: #fff;
}

/* Fix layout: view all button inline with heading */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .faq-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .view-all-btn {
    margin-top: 10px;
  }
}


@media (max-width: 768px) {
  .view-all-wrapper {
    text-align: center;
  }
}



@media (max-width: 576px) {
  .read-more-btn,
  .view-all-btn {
    font-size: 12px;
    padding: 8px 18px;
  }
}



.feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #000;
  line-height: 1.6;
}

.feature-list li::before {
  content: "•";
  color: #ff6f00;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.4;
}
 