body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10; /* Pastikan header ada di atas */
}


.logo-text {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c3e50;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #555;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background 0.3s;
}

nav a.active,
nav a:hover {
  background-color: #eeeeee;
  color: #000;
}

.login {
  font-size: 0.9rem;
  cursor: pointer;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #00434E;;

  padding: 3rem 5%;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin: 0;
}

.hero-text p {
  font-size: 1rem;
  color: #f0f0f0;
  margin: 1rem 0;
  max-width: 500px;
}

.hero-text button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 20px;
  background-color: white;
  color: #444;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-text button:hover {
  background-color: #ddd;
}

.hero-image {
  margin-top: -300px;            /* naikkan gambar sedikit */
  display: flex;
  justify-content: center;      /* agar gambar ke tengah */
  align-items: center;
}

.hero-image img {
  width: 700px;                 /* ukuran besar */
  max-width: 100%;              /* agar tetap responsif */
  height: auto;
  display: block;
}

.icon-box i {
  font-size: 30px;
  color: #008080; /* atau warna biru lainnya */
}


.icon-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: -20px;
}

.icon-box {
  background: #f6f6f6;
  border-radius: 20px;
  padding: 0.8rem;
  width: 80px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.icon-box:hover {
  transform: translateY(-5px);
  background-color:#e0e0e0;
}

.icon-box img {
  width: 30px;
  height: 30px;
}

.icon-box p {
  margin-top: 0.3rem;
  font-size: 0.8rem;
}
#lokasi {
  background-color: rgba(0, 128, 128, 0.1); /* biru transparan */
  margin: 0;
  padding: 0;
}

.lokasi-header {
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(0, 128, 128, 0.1);
}

.lokasi-header h2 {
  font-size: 32px;
  color: #008080;
  margin-bottom: 10px;
}

.lokasi-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 0;
}

.lokasi-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 0;
}

.map-frame {
  width: 100%;
  height: 300px; /* ini tinggi standar */
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

