
:root{
  --trip-blue:#7ca8b1;
  --trip-blue-dark:#355f68;
  --trip-green:#285745;
  --trip-green-dark:#173c30;
  --trip-cream:#f7f1e2;
  --trip-gold:#d3a346;
  --trip-road:#5d6663;
  --trip-paper:#fffdf7;
}

body{background:var(--trip-cream)}
.site-header{background:rgba(247,241,226,.94)}
.nav-wrap{height:82px}
.brand{display:flex;align-items:center;gap:12px}
.brand img{width:58px;height:58px;object-fit:contain}
.brand-copy{display:grid;line-height:1.05}
.brand-copy strong{font-family:Georgia,"Times New Roman",serif;font-size:1.12rem;color:var(--trip-green)}
.brand-copy small{margin-top:5px;color:#70685b;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase}
.nav-link:hover,.nav-link.active{background:#e8dfcb;color:var(--trip-green-dark)}

.trip-hero{min-height:690px}
.trip-hero .hero-media:after{
  background:
    linear-gradient(90deg,rgba(19,43,35,.92) 0%,rgba(19,43,35,.62) 48%,rgba(19,43,35,.08) 100%),
    linear-gradient(0deg,rgba(18,34,29,.68),transparent 62%);
}
.trip-hero .hero-content{max-width:940px}

.trip-intro{
  max-width:920px;
  margin-inline:auto;
  text-align:center;
}
.trip-intro .eyebrow{justify-content:center}
.trip-intro .eyebrow:before{display:none}

.direction-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:30px;
}
.direction-nav a{
  min-width:180px;
  padding:13px 18px;
  border:1px solid rgba(40,87,69,.18);
  border-radius:999px;
  background:#fffdf7;
  color:var(--trip-green);
  font-weight:760;
  text-align:center;
  transition:transform .2s ease,background .2s ease,color .2s ease;
}
.direction-nav a:hover{
  transform:translateY(-2px);
  background:var(--trip-green);
  color:#fff;
}

.route-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:28px;
}
.route-card{
  flex:1 1 330px;
  max-width:380px;
  min-width:300px;
  overflow:hidden;
  border:1px solid rgba(35,75,59,.12);
  border-radius:28px;
  background:#fffdf7;
  box-shadow:0 18px 48px rgba(31,58,43,.09);
}
.route-card__image{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/10;
  background:#dce8df;
}
.route-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.route-card__badge{
  position:absolute;
  left:18px;
  top:18px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,253,247,.92);
  color:var(--trip-green-dark);
  font-size:.78rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.route-card__body{padding:26px}
.route-card__cities{color:#6f716b;font-size:.92rem}
.route-steps{
  display:grid;
  gap:0;
  margin:22px 0;
}
.route-step{
  position:relative;
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  min-height:56px;
}
.route-step:not(:last-child):before{
  content:"";
  position:absolute;
  left:16px;
  top:31px;
  bottom:-3px;
  width:2px;
  background:#cad8cf;
}
.route-step__dot{
  position:relative;
  z-index:2;
  display:grid;
  place-items:center;
  width:34px;height:34px;
  border-radius:50%;
  background:var(--trip-green);
  color:#fff;
  font-size:.8rem;
  font-weight:850;
}
.route-step span{padding-top:5px;font-weight:700;color:#3f4e47}
.route-note{
  padding:14px 16px;
  border-radius:14px;
  background:#edf3ee;
  color:#596860;
  font-size:.9rem;
}

.public-grid{
  display:grid;
  grid-template-columns:minmax(340px,.95fr) minmax(0,1.05fr);
  gap:clamp(34px,6vw,72px);
  align-items:center;
}
.public-visual{
  overflow:hidden;
  border-radius:30px;
  background:#dce8e1;
  box-shadow:0 20px 55px rgba(31,58,43,.12);
}
.public-visual img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.mode-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
  margin-top:26px;
}
.mode-card{
  flex:1 1 240px;
  max-width:310px;
  min-width:240px;
  padding:22px;
  border:1px solid #d9e1db;
  border-radius:20px;
  background:#fff;
}
.mode-icon{
  display:grid;
  place-items:center;
  width:50px;height:50px;
  border-radius:15px;
  margin-bottom:16px;
  background:#e5eee8;
  color:var(--trip-green);
}
.mode-icon svg{width:26px;height:26px}
.mode-card p{margin:0;color:#677269}

.transfer-section{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(330px,.92fr);
  gap:clamp(34px,6vw,68px);
  align-items:center;
}
.transfer-visual{
  overflow:hidden;
  border-radius:30px;
  background:#dce8e1;
  box-shadow:0 20px 55px rgba(31,58,43,.12);
}
.transfer-visual img{width:100%;aspect-ratio:4/3;object-fit:cover}
.transfer-flow{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:24px 0;
}
.transfer-stop{
  flex:1 1 145px;
  min-width:132px;
  max-width:180px;
  padding:16px 13px;
  border:1px solid rgba(40,87,69,.14);
  border-radius:16px;
  background:#fffdf7;
  text-align:center;
  font-weight:780;
}
.transfer-arrow{
  color:var(--trip-gold);
  font-size:1.35rem;
  font-weight:900;
}

.safety-banner{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:24px 26px;
  border:1px solid #e0cf9f;
  border-radius:22px;
  background:#fff7df;
}
.safety-banner svg{
  flex:0 0 34px;
  width:34px;
  color:#8d6b21;
}
.safety-banner strong{
  display:block;
  margin-bottom:5px;
  color:#70551a;
}
.safety-banner p{margin:0;color:#76643c}

.transport-table{
  display:grid;
  gap:12px;
}
.transport-row{
  display:grid;
  grid-template-columns:170px 1fr 1.35fr;
  gap:20px;
  align-items:start;
  padding:20px;
  border:1px solid #dbe2dd;
  border-radius:18px;
  background:#fffdf7;
}
.transport-row strong{color:var(--trip-green-dark)}
.transport-row span{color:#68726c}
.transport-row--head{
  background:var(--trip-green);
  color:#fff;
  font-size:.84rem;
  font-weight:820;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.transport-row--head span{color:#fff}

.destination-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:22px;
}
.destination-card{
  flex:1 1 280px;
  max-width:350px;
  min-width:260px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:26px;
  border:1px solid #d8e0db;
  border-radius:22px;
  background:#fffdf7;
}
.destination-card p{color:#69736d}
.destination-card .btn{margin-top:auto}

.tip-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}
.tip-card{
  flex:1 1 230px;
  max-width:280px;
  min-width:220px;
  padding:24px;
  border-radius:22px;
  background:#fff;
  border:1px solid #dbe2dd;
}
.tip-icon{
  display:grid;
  place-items:center;
  width:52px;height:52px;
  margin-bottom:17px;
  border-radius:16px;
  background:#e6eee8;
  color:var(--trip-green);
}
.tip-icon svg{width:27px;height:27px}
.tip-card p{margin:0;color:#68726c}

.route-cta{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  padding:50px;
  border-radius:32px;
  background:var(--trip-green-dark);
  color:#fff;
}
.route-cta:after{
  content:"";
  position:absolute;
  right:-120px;top:-160px;
  width:410px;height:410px;
  border:80px solid rgba(255,255,255,.07);
  border-radius:50%;
}
.route-cta h2,.route-cta p{position:relative;z-index:2;color:#fff}
.route-cta p{max-width:670px;margin:0;color:rgba(255,255,255,.78)}
.route-cta .button-row{position:relative;z-index:2;flex:none;margin:0}

.site-footer{background:#1c352b}
.footer-brand-row{display:flex;align-items:center;gap:14px}
.footer-brand-row img{width:55px;height:55px;object-fit:contain}
.footer-brand-row img+img{width:50px;height:50px}

.reveal{opacity:0;transform:translateY(20px);transition:opacity .65s ease,transform .65s ease}
.reveal.visible{opacity:1;transform:none}

@media(max-width:980px){
  .public-grid,.transfer-section{grid-template-columns:1fr}
  .transport-row{grid-template-columns:1fr}
  .transport-row--head{display:none}
  .route-cta{flex-direction:column;align-items:flex-start}
}
@media(max-width:700px){
  .brand-copy{display:none}
  .brand img{width:52px;height:52px}
  .trip-hero{min-height:620px}
  .route-card,.mode-card,.destination-card,.tip-card{min-width:100%;max-width:none}
  .transfer-flow{display:grid;grid-template-columns:1fr}
  .transfer-stop{max-width:none}
  .transfer-arrow{transform:rotate(90deg);text-align:center}
  .route-cta{padding:34px 24px}
  .direction-nav a{width:100%}
}
@media(prefers-reduced-motion:reduce){
  .reveal{transition:none}
}


/* =========================
   REVISI TAMPILAN
   - header lebih balance
   - quick nav 5 item rapi
   ========================= */

.site-header{
  border-bottom:1px solid rgba(27,52,41,.08);
  box-shadow:0 6px 18px rgba(29,44,36,.04);
}
.nav-wrap{
  min-height:88px;
  height:auto;
  padding:12px 0;
  gap:28px;
}
.brand{
  gap:14px;
  flex:0 0 auto;
}
.brand img{
  width:64px;
  height:64px;
}
.brand-copy{
  align-content:center;
}
.brand-copy strong{
  font-size:1.18rem;
  letter-spacing:-.02em;
}
.brand-copy small{
  margin-top:6px;
  font-size:.76rem;
  letter-spacing:.16em;
}
.main-nav{
  margin-left:auto;
}
.nav-list{
  gap:6px;
}
.nav-link{
  padding:14px 14px;
  border-radius:14px;
  font-size:.96rem;
  font-weight:720;
}
.nav-link.active{
  background:#e6ddc8;
  color:var(--trip-green-dark);
}

/* quick nav yang tadinya 4 kolom jadi 5 kolom */
.quick-nav{
  margin-top:-28px;
}
.quick-nav-inner{
  grid-template-columns:repeat(5, minmax(0, 1fr));
  align-items:stretch;
  gap:4px;
  padding:10px;
  border-radius:24px;
}
.quick-nav a{
  min-height:64px;
  padding:16px 12px;
  line-height:1.35;
  border-radius:16px;
  font-size:.96rem;
  font-weight:760;
}

/* responsif supaya tetap rapi */
@media (max-width: 1100px){
  .quick-nav-inner{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px){
  .nav-wrap{
    min-height:82px;
    padding:10px 0;
  }
  .brand img{
    width:58px;
    height:58px;
  }
  .brand-copy strong{
    font-size:1.08rem;
  }
  .quick-nav{
    margin-top:-20px;
  }
  .quick-nav-inner{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .quick-nav-inner{
    grid-template-columns:1fr;
  }
}


/* =========================
   REVISI V2
   - hapus note section head yang tidak perlu
   - alur Wonosobo dibuat lebih rapi
   ========================= */

.section-head:has(> div:only-child){
  justify-content:flex-start;
  margin-bottom:30px;
}

.transfer-flow--clean{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
  margin:26px 0 28px;
}
.transfer-flow--clean .transfer-stop{
  position:relative;
  min-width:0;
  max-width:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:12px;
  min-height:138px;
  padding:22px 16px;
  border:1px solid rgba(40,87,69,.14);
  border-radius:20px;
  background:#fffdf7;
  box-shadow:0 12px 30px rgba(30,54,43,.05);
}
.transfer-flow--clean .transfer-stop b{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--trip-green);
  color:#fff;
  font-size:.92rem;
  line-height:1;
}
.transfer-flow--clean .transfer-stop span{
  font-size:1.02rem;
  font-weight:760;
  color:var(--trip-green-dark);
  line-height:1.4;
}
.transfer-flow--clean .transfer-stop:not(:last-child)::after{
  content:"→";
  position:absolute;
  top:50%;
  right:-16px;
  transform:translateY(-50%);
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--trip-paper);
  color:var(--trip-gold);
  font-size:1rem;
  font-weight:900;
  z-index:2;
}

@media (max-width: 980px){
  .transfer-flow--clean{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .transfer-flow--clean .transfer-stop:nth-child(2)::after{
    display:none;
  }
}

@media (max-width: 700px){
  .transfer-flow--clean{
    grid-template-columns:1fr;
  }
  .transfer-flow--clean .transfer-stop:not(:last-child)::after{
    content:"↓";
    top:auto;
    right:50%;
    bottom:-16px;
    transform:translateX(50%);
  }
}
