/* ============================================================
   BBN CATERERS — WHY US FEATURE TILE (Premium Dark Version)
   Override for feature tiles inside dark section
   ============================================================ */

/* Disable default bottom indicator line for these tiles */
.why-us .feature-tile::before {
  display: none;
}

/* Dark section overrides for feature tiles */
.why-us .feature-tile {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(137, 120, 92, 0.20);
  border-top: 3px solid rgba(137, 120, 92, 0.35);
  border-radius: 8px;
  padding: var(--space-10) var(--space-8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  height: 100%;
}

/* Hover transitions inside dark cards */
.why-us .feature-tile:hover {
  background: linear-gradient(135deg, rgba(137, 120, 92, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(184, 173, 155, 0.35);
  border-top-color: var(--color-beige-light);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

/* Icon wrap styling inside why-us section */
.why-us .feature-tile__icon-wrap {
  background: rgba(137, 120, 92, 0.15) !important;
  border: 1px solid rgba(184, 173, 155, 0.15);
  color: var(--color-beige-light) !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-us .feature-tile:hover .feature-tile__icon-wrap {
  background: var(--color-taupe) !important;
  border-color: var(--color-beige-light);
  color: var(--color-cream-light) !important;
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 0 15px rgba(184, 173, 155, 0.25);
}

/* Typography polish */
.why-us .feature-tile__title {
  color: var(--color-cream) !important;
  font-family: var(--font-heading);
  font-size: 1.15rem !important;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  line-height: 1.35;
  margin: 0;
}

.why-us .feature-tile__desc {
  color: rgba(184, 173, 155, 0.70) !important;
  font-size: 0.88rem !important;
  line-height: 1.75;
  margin: 0;
}

/* Responsive padding tweaks */
@media (max-width: 900px) {
  .why-us .feature-tile {
    padding: var(--space-8) var(--space-6);
  }
}
