/* ===============================
   LOCATION SECTION STYLE
=============================== */

.location-section {
  background: #ffffff;
}

.location-section h3 {
  font-weight: 700;
  color: #222;
}

.location-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  border: 1px solid #eee;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.location-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.location-box i {
  font-size: 28px;
  color: #f4b400;
  margin-bottom: 12px;
}

.location-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.location-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}