/* ==============================
   WHY CHOOSE / BUILT FOR SECTION
   ============================== */

.whychoose-section {
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600') center/cover no-repeat fixed;
  padding: 80px 0;
  position: relative;
}

.whychoose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
}

.whychoose-section .container {
  position: relative;
  z-index: 1;
}

.featured-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 70px 0;
}

.whychoose-heading {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}

.whychoose-subtext {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.whychoose-content {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.whychoose-img-col {
  flex: 0 0 320px;
}

.whychoose-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.whychoose-cards-col {
  flex: 1;
}

.whychoose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.whychoose-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 22px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whychoose-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.whychoose-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.whychoose-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .whychoose-content {
    flex-direction: column;
  }
  .whychoose-img-col {
    flex: none;
    width: 100%;
    height: 300px;
  }
  .whychoose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .whychoose-heading {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .whychoose-grid {
    grid-template-columns: 1fr;
  }
}
