/* ========================= */
/* SECTION */
/* ========================= */
.safety-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #041d54, #13398d);
  color: #fff;
}

.safety-card h3,
.facility-card h4 {
  color: #ffffff;
}
/* ========================= */
/* HEADER */
/* ========================= */
.safety-header {
  text-align: center;
  margin-bottom: 40px;
}

.safety-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #ffffff;
}

.safety-header p {
  color: #ddd;
  font-size: 16px;
}

.safety-card p,
.facility-card p {
  color: #d1d5db;
}
/* ========================= */
/* HERO */
/* ========================= */
.safety-hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
}

/* ========================= */
/* GRID EDUKASI */
/* ========================= */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.safety-card {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

.safety-card:hover {
  transform: translateY(-6px);
}

.safety-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.safety-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ========================= */
/* FASILITAS */
/* ========================= */
.section-title {
  color: #fff;
  margin: 50px 0 20px;
  font-size: 22px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.facility-card {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.facility-card:hover {
  transform: translateY(-5px);
}

.facility-card h4 {
  margin-bottom: 10px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.facility-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
}

.facility-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.facility-content {
  padding: 20px;
}

.facility-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.facility-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* TABLET */
@media (max-width: 992px) {
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-header h2 {
    font-size: 26px;
  }
}

/* HP */
@media (max-width: 768px) {
  .safety-section {
    padding: 40px 15px;
  }

  .safety-grid,
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .safety-header h2 {
    font-size: 22px;
  }

  .safety-header p {
    font-size: 14px;
  }
}

/* HP KECIL */
@media (max-width: 480px) {
  .safety-card,
  .facility-card {
    padding: 15px;
  }

  .safety-card h3 {
    font-size: 16px;
  }

  .safety-card p {
    font-size: 13px;
  }
}