:root{
  --primary:#218648;
  --accent:#D56E00;
  --ink:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
}

/* Section */
.hexa-tour-section{ margin-top:40px; }

/* Grid 12 */
.hexa-tour-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:24px;
}
.hexa-tour-grid[data-columns="2"] .hexa-tour-card{ grid-column:span 12; }
.hexa-tour-grid[data-columns="3"] .hexa-tour-card{ grid-column:span 12; }

.hexa-tour-card{
  grid-column:span 12;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 3px 12px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
}
.hexa-tour-card:hover{ transform:translateY(-4px); box-shadow:0 6px 18px rgba(0,0,0,.1); }

@media(min-width:640px){
  .hexa-tour-grid[data-columns="2"] .hexa-tour-card{ grid-column:span 6; }
  .hexa-tour-grid[data-columns="3"] .hexa-tour-card{ grid-column:span 6; }
}
@media(min-width:1024px){
  .hexa-tour-grid[data-columns="3"] .hexa-tour-card{ grid-column:span 4; }
}

/* Gambar & Badge */
.hexa-tour-img{ position:relative; overflow:hidden; }
.hexa-tour-img img{ width:100%; height:auto; display:block; transition:transform .4s ease; }
.hexa-tour-card:hover .hexa-tour-img img{ transform:scale(1.04); }
.hexa-tour-badge{
  position:absolute; top:12px; left:12px;
  background:var(--primary); color:#fff; font-size:.8rem; padding:6px 10px; border-radius:999px; font-weight:600;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
}
.hexa-tour-badge.alt{ background:var(--accent); }

/* Body */
.hexa-tour-body{ padding:18px 16px 20px; }
.hexa-tour-title{ margin:0 0 6px; font-size:1.15rem; color:var(--primary); }
.hexa-tour-highlights{ margin:0 8px 8px 0; color:#555; font-size:.94rem; }
.hexa-tour-desc{ margin:0 0 10px; color:#374151; font-size:.95rem; line-height:1.5; }

/* Harga ringkas */
.hexa-tour-price{ font-weight:600; margin:10px 0 12px; color:var(--ink); }

/* Details */
.hexa-tour-details{
  border:1px dashed #d6d6d6; border-radius:10px; background:#fafafa; padding:10px 12px;
}
.hexa-tour-details summary{ cursor:pointer; list-style:none; font-weight:700; color:var(--primary); }
.hexa-tour-details summary::-webkit-details-marker{ display:none; }
.hexa-tour-details[open]{ background:#f6f6f6; }

/* Subheadings */
.hexa-tour-itin h4, .hexa-tour-pricing h4, .hexa-tour-inc-exc h4{
  margin:12px 0 8px; font-size:1rem; color:var(--primary);
}

/* Timeline */
.timeline{ list-style:none; margin:0; padding:0; }
.timeline li{ position:relative; padding-left:70px; margin:10px 0; }
.timeline li span{
  position:absolute; left:0; top:0; width:58px; text-align:center;
  background:var(--primary); color:#fff; border-radius:8px; padding:4px 6px; font-size:.85rem;
}

/* Termasuk / Tidak */
.hexa-tour-inc-exc{ display:grid; grid-template-columns:1fr; gap:14px; margin-top:6px; }
.hexa-tour-inc-exc ul{ margin:0; padding-left:18px; }
@media(min-width:640px){ .hexa-tour-inc-exc{ grid-template-columns:1fr 1fr; } }

/* Tabel harga */
.hexa-tour-pricing table{ width:100%; border-collapse:collapse; background:#fff; border:1px solid var(--line); border-radius:10px; overflow:hidden; }
.hexa-tour-pricing thead th{
  background:var(--primary); color:#fff; text-align:left; padding:10px; font-weight:700; font-size:.95rem;
}
.hexa-tour-pricing tbody td{
  padding:10px; border-top:1px solid #eef2f7; font-size:.95rem; color:var(--ink);
}

/* Catatan */
.hexa-note{ font-size:.85rem; color:var(--muted); margin-top:8px; }

/* CTA */
.hexa-tour-btns{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.hexa-tour-btns a{
  flex:1; text-align:center; padding:11px 14px; border-radius:10px; font-weight:800; text-decoration:none; transition:.2s;
}
.wa-btn{ background:var(--primary); color:#fff; }
.wa-btn:hover{ filter:brightness(.9); }
.outline-btn{ background:#fff; color:var(--primary); border:2px solid var(--primary); }
.outline-btn:hover{ background:var(--primary); color:#fff; }

/* Focus */
.hexa-tour-details summary:focus, .hexa-tour-btns a:focus{ outline:3px solid var(--accent); outline-offset:2px; }

/* Mobile tweaks */
@media(max-width:768px){
  .hexa-tour-title{ font-size:1.05rem; }
  .hexa-tour-btns a{ font-size:.9rem; padding:10px; }
}