/* ===============================
   WHY CHOOSE US SECTION
================================ */
.why-choose-us {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 60px);
  background: #E8CDA8;
  color: #111;
}

/* Section heading */
.why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.why-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-family: "Playfair Display", serif;
}

.why-header p {
  margin-top: 10px;
  color: #666;
}

/* Cards layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Single card */
.why-card {
  background:  #FAEBD7;
  padding: 32px 24px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  transition: 0.5s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  cursor: pointer;
}

/* Icon */
.why-card i {
  font-size: 30px;
  margin-bottom: 18px;
  color: #111;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.why-card p {
  color: #666;
  line-height: 1.5;
}

/* REMOVE MOBILE TAP HIGHLIGHT */

*{
    -webkit-tap-highlight-color: transparent;
}

button,
a,
input,
textarea,
select{
    outline:none;
    -webkit-tap-highlight-color: transparent;
}

html{
    -webkit-touch-callout:none;
}