.why-varanasi-section {
  background: linear-gradient(104deg, var(--color-bg-2) 60%, var(--color-bg-5) 100%);
  padding: 80px 0 72px 0;
}

.why-varanasi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-header {
  text-align: center;
  margin-bottom: 3.2rem;
}

.why-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-warning);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffdc85 60%, #b39116 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 24px #dbc16d38;
}

.why-subtitle {
  font-size: 1.18rem;
  color: var(--color-primary);
  opacity: 0.96;
  font-weight: 500;
  margin: 0 auto;
}

.why-grid {
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.why-card {
  flex: 1 1 320px;
  min-width: 270px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(84, 67, 5, 0.06), 0 2px 8px rgba(51, 44, 6, 0.08);
  padding: 2rem 1.3rem 1.3rem 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: box-shadow 0.22s, transform 0.19s;
  border: 1.5px solid var(--color-card-border);
  color: var(--color-text);
}

.why-card:hover, .why-card:focus-within {
  box-shadow: 0 10px 40px 0 rgba(49, 40, 16, 0.13), 0 2px 12px rgba(37, 28, 12, 0.1);
  transform: translateY(-7px) scale(1.032);
}

.why-card h3 {
  font-size: var(--font-size-xl);
  color: #e2b333;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 5px #ffe29b40;
}

.why-card p {
  font-size: var(--font-size-base);
  color: #fff;
  line-height: 1.6;
  opacity: 1;
  margin-bottom: 0.22rem;
}

@media (max-width: 900px) {
  .why-grid { flex-direction: column; gap: 1.25rem; }
  .why-card { margin-bottom: 0.1rem; }
}