* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #e0f2fe;
  min-height: 100vh;
  padding: 20px;
  color: #1f2937;
  line-height: 1.4;
}

.logo-img{
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADER */
header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.logo i {
  font-size: 3rem;
  color: #2563eb;
}

.logo h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.logo span {
  color: #22c55e; /* kalau mau hijau, ganti ke #22c55e */
}

.tagline {
  color: #6b7280;
  font-size: 1.1rem;
}

/* ORDER CARD */
.order-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.order-card h2 {
  color: #1f2937;
  margin-bottom: 10px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* FORM */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #1f2937;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #22c55e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.hint {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: 0.85rem;
}

/* PACKAGE OPTIONS */
.package-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.package-card {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.package-card:hover {
  border-color: #22c55e;
  transform: translateY(-3px);
}

.package-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.package-card label {
  display: block;
  cursor: pointer;
  margin: 0 !important;
}

.package-card strong {
  font-size: 1.1rem;
  color: #1f2937;
}

.duration {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-left: 10px;
}

.price {
  display: block;
  font-size: 1.3rem;
  color: #22c55e;
  margin: 8px 0;
  font-weight: 700;
}

.desc {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 6px;
}

/* SUMMARY */
.summary {
  background: #f8fafc;
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
  border: 2px dashed #e5e7eb;
}

.summary h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #1f2937;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.summary-item span {
  color: #6b7280;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.note {
  text-align: center;
  margin-top: 20px;
  color: #6b7280;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


/*contoh negara*/
.country-select { position: relative; }

.country-btn{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 18px;
  border:2px solid #e5e7eb;
  border-radius:8px;
  background:#fff;
  cursor:pointer;
}

.country-left{
  display:flex;
  align-items:center;
  gap:10px;
}

.country-btn img{
  width:24px;
  height:18px;
  object-fit:cover;
  border-radius:3px;
}

.country-menu{
  position:absolute;
  left:0; right:0;
  top:calc(100% + 8px);
  background:#fff;
  border:2px solid #e5e7eb;
  border-radius:10px;
  list-style:none;
  padding:8px;
  margin:0;
  display:none;
  z-index:50;
  max-height:260px;
  overflow:auto;
  box-shadow:0 10px 25px -5px rgba(0,0,0,.1);
}

.country-select.open .country-menu{ display:block; }

.country-menu li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:8px;
  cursor:pointer;
}

.country-menu li:hover{ background:#f8fafc; }

.country-menu img{
  width:24px;
  height:18px;
  object-fit:cover;
  border-radius:3px;
}





/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  color: #6b7280;
  font-size: 0.95rem;
}

footer p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.copyright {
  font-size: 0.85rem;
  color: #000000;
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .order-card {
    padding: 25px;
  }

  .package-options {
    grid-template-columns: 1fr;
  }

  .logo h1 {
    font-size: 2rem;
  }
}
