/* ===============================
   WHY CHOOSE US SECTION
================================ */
.why-us {
  padding: 90px 0;
     background: #ccd2d7 !important;
}

/* ===============================
   FEATURES GRID
================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* ===============================
   FEATURE CARD
================================ */
.feature {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Accent glow on hover */
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature:hover::before {
  opacity: 0.06;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.15);
}

/* ===============================
   FEATURE ICON
================================ */
.feature-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  color: #0f172a;
  font-size: 32px;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}

.feature:hover .feature-icon {
  transform: scale(1.08) rotate(4deg);
}

/* ===============================
   FEATURE CONTENT
================================ */
.feature h3 {
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature p {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-us {
    padding: 60px 0;
        background: #ccd2d7;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature {
    padding: 32px 24px;
  }
}
