/* General Reset */
* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f4f6f8;
  padding: 20px;
  margin: 0;
  max-width: 600px;
  margin-inline: auto;
  color: #212529;
}

/* Judul Halaman */
h3 {
  font-size: 22px;
  color: #343a40;
  margin-bottom: 5px;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
}

form {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

label {
  display: block;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #495057;
}

input[type="text"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ced4da;
  border-radius: 10px;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0d6efd;
}

/* Tombol */
button {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.map-btn {
  background-color: #0d6efd;
  color: #fff;
}

.map-btn:hover {
  background-color: #0b5ed7;
}

.submit-btn {
  background-color: #198754;
  color: #fff;
}

.submit-btn:hover {
  background-color: #157347;
}

/* Harga / Estimasi */
#harga {
  margin-top: 10px;
  padding: 12px;
  background: #e9ecef;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* Map Area */
#map-container {
  display: none;
  margin-top: 20px;
}

#map {
  height: 350px;
  border-radius: 10px;
  border: 1px solid #dee2e6;
}

/* Status Info */
#statusKoordinat {
  margin-top: 10px;
  font-size: 14px;
  color: #6c757d;
  text-align: center;
}

/* Nama Usaha */
.nama-usaha {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  color: #0d6efd;
  margin-bottom: 10px;
}

/* Responsif */
@media (max-width: 480px) {
  h3 {
    font-size: 20px;
  }

  .nama-usaha {
    font-size: 20px;
  }

  input,
  select,
  textarea {
    font-size: 15px;
  }

  button {
    font-size: 16px;
  }

  #harga {
    font-size: 16px;
  }
}
