/* Hero Banner Paket */
.hero-paket {
  padding: 70px 0 80px;
}

/* Section Paket Travel */
.package-section {
  padding: 70px 0 90px;
}

/* Kartu Pemberitahuan */
.notice-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid #e2e8f0;
  margin-bottom: 50px;
  text-align: center;
}

.notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  color: #b45309;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.notice-card h2 {
  font-size: 2rem;
  color: var(--primary-navy);
  font-weight: 800;
  margin-bottom: 12px;
}

.notice-card p {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 25px;
  font-size: 1.05rem;
}

/* Section Itinerary / Rencana Perjalanan */
.itinerary-example {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  margin-bottom: 50px;
}

.example-title {
  font-size: 1.4rem;
  color: var(--primary-navy);
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent-gold);
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 13px;
  height: 13px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.timeline-item strong {
  color: var(--primary-navy);
  display: block;
  font-size: 1.05rem;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Custom Form Box */
.custom-form-box {
  background: var(--primary-navy);
  color: var(--white);
  border-radius: 20px;
  padding: 40px;
}

.custom-form-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.custom-form-box p {
  color: #cbd5e1;
  margin-bottom: 25px;
}

.form-grid-custom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-custom label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-gold);
}

.form-group-custom input, 
.form-group-custom textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
}

.form-group-custom input:focus, 
.form-group-custom textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.15);
}

.btn-form-submit {
  border: none;
  cursor: pointer;
  padding: 14px 28px;
}

/* ==========================================
   RESPONSIVE LAYAR HP
   ========================================== */
@media (max-width: 768px) {
  .package-section {
    padding: 40px 0 60px;
  }

  .notice-card, 
  .itinerary-example, 
  .custom-form-box {
    padding: 24px 18px;
    border-radius: 16px;
    margin-bottom: 30px;
  }

  .notice-card h2 {
    font-size: 1.4rem;
  }

  .notice-card p {
    font-size: 0.95rem;
  }

  .example-title {
    font-size: 1.15rem;
  }

  .custom-form-box h3 {
    font-size: 1.3rem;
  }

  .form-grid-custom {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .btn-form-submit {
    width: 100%;
    justify-content: center;
  }
}