/* =====================
   WHY SERVICE
===================== */
.why-service-section {
  background: radial-gradient(circle at right, rgba(212, 175, 55, .13), transparent 35%), #050505;
  padding: 110px 25px;
}

.why-service-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.why-service-content h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 25px;
}

.why-service-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #bdbdbd;
}

.why-service-content strong {
  color: #fff;
}

/* HIGHLIGHT */
.why-service-highlight {
  margin-top: 35px;
  padding: 28px;
  display: flex;
  gap: 18px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(212, 175, 55, .30);
}

.why-service-highlight div {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d4af37;
  color: #050505;
  font-weight: 900;
}

/* GRID */
.why-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-service-card {
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(212, 175, 55, .20);
  transition: .35s;
}

.why-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212, 175, 55, .6);
}

.why-service-card span {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #d4af37;
  margin-bottom: 20px;
}

.why-service-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
}

.why-service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #aaa;
}

.why-service-card strong {
  color: white;
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .why-service-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 600px) {
  .why-service-section {
    padding: 80px 20px;
  }
  
  .why-service-grid {
    grid-template-columns: 1fr;
  }
}