/* ===== Royal Cars · Why Choose Us ===== */
.rc-why {
  background: var(--main-light);
  padding: 80px 15px 50px;
}

.rc-why__container {
  max-width: 94%;
  margin: 0 auto;
  padding: 0 16px;
  
}

.rc-why__head {
  text-align: center;
  margin-bottom: 40px;
}

.rc-why__head h2 {
  font-weight: 800;
  font-size: clamp(24px, 2.5vw, 36px);
  color: #aa792f;
}

.rc-why__head p {
  color: #7a7a7a;
  margin-top: 8px;
}

.rc-why__underline {
  display: inline-block;
  width: 140px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, #c28a3a, #a6742e);
  border-radius: 2px;
}

.rc-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.rc-why__item {
  background: var(--main-light);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  border:1px dashed      #a08254;
overflow:hidden; box-shadow:0 6px 18px #f5bd5e54;
  transition:transform .2s ease, box-shadow .2s ease;
  

}

.rc-why__item:hover {
transform:translateY(-3px); box-shadow:0 14px 28px #e6ab4785;
}

.rc-why__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: #fff6e8;
  border-radius: 50%;
  border: 2px solid #f0d9b5;
  font-size: 28px;
  color: #aa792f;
}

.rc-why__item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.rc-why__item p {
  font-size: 14px;
  color: #7a7a7a;
  line-height: 1.4;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .rc-why {
    padding: 40px 0;
  }
}
