
/* ===================================================
   JAKALELANA TOUR & TRAVEL - CUSTOM PAKET (PREMIUM)
   =================================================== */

.produk-jl-wisata {
  --primary: var(--accent, #0ea5a4);
  --secondary: var(--accent-700, #0b8b8a);
  --dark: var(--text-color-light, #333);
  --text-muted: #666;
  --bg-gradient: linear-gradient(135deg, var(--bg) 0%, var(--panel) 100%);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-soft: 0 8px 32px rgba(0, 119, 182, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 119, 182, 0.15);
  --radius-lg: 20px;
  --radius-md: 12px;
  
  padding: 60px 20px;
  background: var(--bg-gradient);
  min-height: 100vh;
}

.custom-tour-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.custom-tour-hero h1 {
  margin-bottom: 15px;
  font-weight: 700;
}

.custom-tour-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.custom-tour-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .custom-tour-wrapper {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  }
}

/* ---------- Form Sections (Kiri) ---------- */
.form-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-section {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-section:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.form-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px dashed var(--border-light);
}

.form-section h2 i {
  color: var(--secondary);
  font-size: 1.5rem;
}

/* Input Styles */
.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
  font-size: 0.95rem;
}

.produk-jl-wisata input[type="number"],
.produk-jl-wisata select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid #cddc39;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  background: #f8fafc;
  color: #334155;
  transition: all 0.3s ease;
}

.produk-jl-wisata input[type="number"]:focus,
.produk-jl-wisata select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.hint {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 6px;
  font-style: italic;
}

/* Grid for multiple inputs */
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Editable List */
.editable-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.editable-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid #e2e8f0;
}

.editable-list span[contenteditable="true"] {
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  min-width: 100px;
  text-align: right;
  transition: all 0.3s;
}

.editable-list span[contenteditable="true"]:focus {
  background: #bae6fd;
  outline: 2px solid #38bdf8;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkbox-label:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Attractions */
.attractions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.attractions div {
  background: #e0f2fe;
  color: #0284c7;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #bae6fd;
}

.attractions div:hover {
  background: #bae6fd;
  transform: translateY(-2px);
}

.attractions div.selected {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

/* ---------- Sticky Summary (Kanan) ---------- */
.summary-panel-wrapper {
  position: relative;
}

.summary-panel {
  background: linear-gradient(145deg, #1e3c72 0%, #2a5298 100%);
  border-radius: var(--radius-lg);
  padding: 30px;
  color: #fff;
  box-shadow: 0 15px 35px rgba(30, 60, 114, 0.3);
  position: sticky;
  top: 100px;
}

.summary-panel h2 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-panel h2 i {
  color: var(--secondary);
}

.summary-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  font-size: 0.95rem;
}

.summary-panel ul li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.summary-panel ul li span {
  font-weight: 700;
  color: #e2e8f0;
}

.total-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.total-box p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.total-box p:last-child {
  margin-bottom: 0;
}

.total-box span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.actions button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-700);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--accent-light);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.produk-jl-wisata {
  animation: fadeIn 0.6s ease;
}

