:root{
  --orange:#F26A1E; --orange-d:#D9560F; --orange-soft:#FFF2E9;
  --navy:#0F1E3D; --navy-2:#152A4F;
  --ink:#15233D; --muted:#6A7488; --line:#E7EAF0;
  --bg:#FFFFFF; --bg-2:#F5F7FA;
  --shadow:0 18px 40px -20px rgba(15,30,61,.28);
  --shadow-sm:0 6px 20px -10px rgba(15,30,61,.25);
  --r:16px; --r-sm:10px;
  --wa:#25D366;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',system-ui,sans-serif;color:var(--ink);background:var(--bg);line-height:1.6;-webkit-font-smoothing:antialiased}
h1,h2,h3,h4,.dspl{font-family:'Poppins',system-ui,sans-serif;line-height:1.15;letter-spacing:-.01em}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.wrap{width:min(1180px,92%);margin-inline:auto}
.orange{color:var(--orange)}
button{font-family:inherit;cursor:pointer;border:none;background:none}

/* buttons */
.btn{display:inline-flex;align-items:center;gap:.55rem;font-family:'Poppins';font-weight:600;font-size:.95rem;padding:.85rem 1.5rem;border-radius:12px;transition:.2s;white-space:nowrap}
.btn svg{width:18px;height:18px}
.btn-o{background:var(--orange);color:#fff;box-shadow:0 10px 22px -10px rgba(242,106,30,.7)}
.btn-o:hover{background:var(--orange-d);transform:translateY(-2px)}
.btn-white{background:#fff;color:var(--ink);border:1px solid var(--line)}
.btn-white:hover{border-color:var(--orange);color:var(--orange)}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{background:var(--navy-2);transform:translateY(-2px)}
.btn-wa{background:var(--wa);color:#fff}
.btn-wa:hover{filter:brightness(.94);transform:translateY(-2px)}
.btn-ghost{background:#fff;color:var(--navy);border:1px solid rgba(255,255,255,.6)}

/* header */
header{position:fixed;top:0;left:0;right:0;z-index:60;background:transparent;border-bottom:1px solid transparent;transition:background .28s ease,border-color .28s ease,box-shadow .28s ease}
header.scrolled{background:rgba(255,255,255,.92);backdrop-filter:blur(10px);border-bottom-color:var(--line);box-shadow:0 8px 26px -20px rgba(15,30,61,.5)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1rem;height:86px;transition:height .28s ease}
header.scrolled .nav{height:74px}
.logo{height:62px;width:auto;transition:height .28s ease}
header.scrolled .logo{height:52px}
nav.menu{display:flex;gap:1.6rem;font-weight:500;font-size:.94rem;color:#33405a}
nav.menu a{position:relative;padding:.2rem 0}
nav.menu a:hover,nav.menu a.active{color:var(--orange)}
nav.menu a.active::after{content:"";position:absolute;left:0;right:0;bottom:-6px;height:2px;background:var(--orange);border-radius:2px}
.head-cta{display:flex;align-items:center;gap:.7rem}
.phone-pill{display:inline-flex;align-items:center;gap:.5rem;font-family:'Poppins';font-weight:600;font-size:.9rem;padding:.7rem 1.15rem;border:1px solid var(--line);border-radius:999px}
.phone-pill svg{width:16px;height:16px;color:var(--orange)}
.burger{display:none;flex-direction:column;gap:5px;padding:.4rem}
.burger span{width:24px;height:2px;background:var(--ink);border-radius:2px;transition:.25s}

/* hero */
.hero{position:relative;overflow:hidden;padding:8.5rem 0 8.5rem;
  background:
   radial-gradient(120% 90% at 78% 8%,rgba(255,196,120,.55),transparent 55%),
   linear-gradient(160deg,#fdf3ea 0%,#f4f7fb 46%,#eef2f8 100%);
}
.hero-scenery{position:absolute;inset:0;z-index:0;opacity:.9}
.hero .wrap{position:relative;z-index:2}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:2rem}
.eyebrow{font-family:'Poppins';font-weight:700;letter-spacing:.18em;font-size:.74rem;color:var(--orange);text-transform:uppercase;margin-bottom:1rem}
.hero h1{font-size:clamp(2.3rem,5vw,3.7rem);font-weight:800;color:var(--navy)}
.hero p.lead{margin:1.2rem 0 1.8rem;color:#41506b;font-size:1.06rem;max-width:30rem}
.hero-actions{display:flex;gap:.9rem;flex-wrap:wrap}
.hero-cars{position:relative}
.hero-cars svg{width:100%;height:auto;filter:drop-shadow(0 30px 30px rgba(15,30,61,.22))}

/* search card */
.search-wrap{position:relative;z-index:5;margin-top:-6.2rem}
.search{background:#fff;border-radius:var(--r);box-shadow:var(--shadow);padding:1.4rem}
.tabs{display:flex;gap:.4rem;flex-wrap:wrap;margin-bottom:1.15rem}
.tab{display:inline-flex;align-items:center;gap:.5rem;font-family:'Poppins';font-weight:600;font-size:.9rem;padding:.6rem 1.1rem;border-radius:10px;color:#55607a;transition:.18s}
.tab svg{width:16px;height:16px}
.tab.active{background:var(--orange);color:#fff}
.tab:not(.active):hover{background:var(--bg-2)}
.fields{display:grid;grid-template-columns:1.3fr 1.3fr 1fr 1fr auto;gap:1rem;align-items:end}
.field label{display:block;font-size:.78rem;font-weight:600;color:var(--muted);margin-bottom:.4rem}
.field .ctrl{display:flex;align-items:center;gap:.55rem;border:1px solid var(--line);border-radius:10px;padding:.7rem .8rem;background:#fff}
.field .ctrl svg{width:16px;height:16px;color:var(--orange);flex:none}
.field select,.field input{border:none;outline:none;width:100%;font-family:inherit;font-size:.9rem;color:var(--ink);background:transparent}
.field .ctrl:focus-within{border-color:var(--orange)}
.search .btn-o{justify-content:center;height:100%;padding-block:.85rem}

/* trust strip */
.trust{padding:2.6rem 0}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem}
.trust-item{display:flex;gap:.9rem;align-items:flex-start}
.trust-item .ic{width:44px;height:44px;flex:none;border-radius:12px;background:var(--orange-soft);color:var(--orange);display:grid;place-items:center}
.trust-item .ic svg{width:22px;height:22px}
.trust-item h4{font-size:.98rem;font-weight:600;margin-bottom:.15rem}
.trust-item p{font-size:.83rem;color:var(--muted);line-height:1.45}
.trust-item+.trust-item{border-left:1px solid var(--line);padding-left:1.4rem}

/* section */
section.block{padding:3.2rem 0}
.block.alt{background:var(--bg-2)}
.sec-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.8rem;gap:1rem}
.sec-head h2{font-size:clamp(1.5rem,3vw,2rem);font-weight:700;color:var(--navy);position:relative;padding-bottom:.7rem}
.sec-head h2::after{content:"";position:absolute;left:0;bottom:0;width:56px;height:4px;background:var(--orange);border-radius:3px}
.see-all{font-family:'Poppins';font-weight:600;font-size:.9rem;color:var(--orange);display:inline-flex;align-items:center;gap:.35rem}
.see-all svg{width:15px;height:15px}

/* fleet cards */
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:1.3rem}
.vcard{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;transition:.22s;display:flex;flex-direction:column}
.vcard:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:transparent}
.vcard .photo{background:linear-gradient(180deg,#f7f9fc,#eef2f7);padding:1.1rem 1rem .4rem;display:grid;place-items:center}
.vcard .photo svg{width:100%;max-width:210px;height:auto}
.vcard .body{padding:1rem 1.15rem 1.25rem;display:flex;flex-direction:column;gap:.55rem;flex:1}
.vcard h3{font-size:1.06rem;font-weight:700;color:var(--navy)}
.spec{display:flex;gap:1.1rem;color:var(--muted);font-size:.83rem}
.spec span{display:inline-flex;align-items:center;gap:.35rem}
.spec svg{width:15px;height:15px;color:#9aa3b4}
.price small{display:block;color:var(--muted);font-size:.75rem}
.price b{font-family:'Poppins';color:var(--orange);font-size:1.22rem;font-weight:700}
.vcard .body .btn-white{margin-top:auto;justify-content:center;font-size:.88rem;padding:.7rem}

/* package cards */
.pcard{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;transition:.22s;display:flex;flex-direction:column}
.pcard:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.pthumb{height:150px;position:relative;overflow:hidden}
.pthumb svg{width:100%;height:100%;display:block}
.pcard .body{padding:1rem 1.15rem 1.2rem;display:flex;flex-direction:column;gap:.5rem;flex:1}
.pcard h3{font-size:1.02rem;font-weight:700;color:var(--navy)}
.meta{display:inline-flex;align-items:center;gap:.4rem;color:var(--muted);font-size:.82rem}
.meta svg{width:14px;height:14px;color:var(--orange)}
.pcard .btn-navy{margin-top:auto;justify-content:center;font-size:.88rem;padding:.7rem}

/* dots */
.dots{display:flex;gap:.4rem;justify-content:center;margin-top:1.6rem}
.dots span{width:8px;height:8px;border-radius:99px;background:#d6dbe4}
.dots span.on{width:22px;background:var(--orange)}

/* CTA band */
.cta-band{background:linear-gradient(120deg,var(--navy),var(--navy-2));border-radius:20px;color:#fff;padding:1.8rem 2rem;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;box-shadow:var(--shadow)}
.cta-left{display:flex;align-items:center;gap:1.1rem}
.cta-left .ring{width:56px;height:56px;flex:none;border-radius:50%;background:rgba(255,255,255,.1);display:grid;place-items:center}
.cta-left .ring svg{width:26px;height:26px;color:#fff}
.cta-band h3{font-size:1.35rem;font-weight:700}
.cta-band p{color:#c3ccdd;font-size:.92rem}
.cta-right{display:flex;gap:.8rem;flex-wrap:wrap}

/* bottom features */
.bf-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;padding:2.6rem 0}
.bf{display:flex;gap:.8rem;align-items:flex-start}
.bf .ic{width:38px;height:38px;flex:none;border-radius:10px;border:1.5px solid var(--orange);color:var(--orange);display:grid;place-items:center}
.bf .ic svg{width:18px;height:18px}
.bf h4{font-size:.94rem;font-weight:600}
.bf p{font-size:.8rem;color:var(--muted)}

/* footer */
footer{background:var(--navy);color:#c7d0e0;padding:3rem 0 1.4rem}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2rem;padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,.1)}
.foot-brand .fname{font-family:'Poppins';font-weight:800;font-size:1.5rem;color:#fff}
.foot-brand .fname .b{color:#3E8FE0}
.foot-brand .tag{font-size:.72rem;letter-spacing:.14em;color:#8ea0c0;text-transform:uppercase;margin:.2rem 0 .9rem}
.foot-brand p{font-size:.86rem;max-width:20rem}
footer h5{font-family:'Poppins';color:#fff;font-size:.98rem;margin-bottom:1rem}
footer ul{list-style:none;display:flex;flex-direction:column;gap:.55rem;font-size:.88rem}
footer ul a:hover{color:var(--orange)}
.foot-contact li{display:flex;gap:.55rem;align-items:flex-start;font-size:.88rem;margin-bottom:.6rem}
.foot-contact svg{width:15px;height:15px;color:var(--orange);flex:none;margin-top:.2rem}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:1.3rem;font-size:.82rem;color:#8ea0c0;flex-wrap:wrap;gap:.6rem}
.foot-bottom a{color:#3E8FE0;font-weight:600}

/* whatsapp float */
.wa-float{position:fixed;right:20px;bottom:22px;z-index:70;width:58px;height:58px;border-radius:50%;background:var(--wa);display:grid;place-items:center;box-shadow:0 12px 26px -8px rgba(37,211,102,.7);animation:pulse 2.4s infinite}
.wa-float svg{width:30px;height:30px;color:#fff}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(37,211,102,.45)}70%{box-shadow:0 0 0 16px rgba(37,211,102,0)}100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}}

/* modal */
.modal{position:fixed;inset:0;z-index:90;display:none;align-items:center;justify-content:center;padding:1rem;background:rgba(15,23,42,.55);backdrop-filter:blur(3px)}
.modal.show{display:flex}
.modal-box{background:#fff;border-radius:18px;max-width:560px;width:100%;max-height:90vh;overflow:auto;box-shadow:var(--shadow)}
.modal-head{position:relative;padding:1.2rem 1.4rem;border-bottom:1px solid var(--line);display:flex;align-items:center;gap:1rem}
.modal-head svg.mcar{width:120px;height:auto;flex:none}
.modal-head h3{font-size:1.2rem;color:var(--navy)}
.modal-head .spec{margin-top:.3rem}
.mclose{position:absolute;right:1rem;top:1rem;width:32px;height:32px;border-radius:8px;background:var(--bg-2);display:grid;place-items:center;font-size:1.1rem;color:var(--muted)}
.modal-body{padding:1.3rem 1.4rem}
.modal-body h4{font-size:.82rem;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);margin-bottom:.7rem}
.plist{list-style:none;display:flex;flex-direction:column;gap:.1rem;margin-bottom:1.2rem}
.plist li{display:flex;justify-content:space-between;padding:.6rem 0;border-bottom:1px dashed var(--line);font-size:.92rem}
.plist li b{font-family:'Poppins';color:var(--orange)}
.feat-chips{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.3rem}
.chip{font-size:.78rem;background:var(--bg-2);color:#48546c;padding:.35rem .7rem;border-radius:99px}
.modal-body .btn-wa{width:100%;justify-content:center}

/* toast */
.toast{position:fixed;left:50%;bottom:26px;transform:translateX(-50%) translateY(16px);opacity:0;visibility:hidden;pointer-events:none;background:var(--navy);color:#fff;padding:.8rem 1.1rem;border-radius:12px;font-size:.88rem;line-height:1.35;z-index:100;box-shadow:var(--shadow);width:max-content;max-width:min(420px,90vw);display:flex;align-items:center;gap:.6rem;transition:opacity .28s ease,transform .28s ease,visibility .28s}
.toast::before{content:"";width:18px;height:18px;flex:none;border-radius:50%;background:var(--wa);background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M20 6 9 17l-5-5'/></svg>");background-size:12px;background-repeat:no-repeat;background-position:center}
.toast.show{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);pointer-events:auto}
@media(prefers-reduced-motion:reduce){.toast{transition:opacity .2s ease,visibility .2s}}

@media(max-width:960px){
  .fields{grid-template-columns:1fr 1fr}
  .search .btn-o{grid-column:1/-1}
  .trust-grid,.cards,.bf-grid{grid-template-columns:1fr 1fr}
  .foot-grid{grid-template-columns:1fr 1fr}
  .trust-item+.trust-item{border-left:none;padding-left:0}
}
@media(max-width:820px){
  nav.menu,.phone-pill{display:none}
  .burger{display:flex}
  .hero-grid{grid-template-columns:1fr}
  .hero-cars{order:-1}
  .mobile-menu{display:flex}
  .cards,.pkg-cards{grid-template-columns:1fr}
}
@media(max-width:560px){
  .trust-grid,.bf-grid,.foot-grid{grid-template-columns:1fr}
  .cta-band{flex-direction:column;align-items:flex-start}
}
/* mobile menu panel */
.mobile-menu{display:none;position:fixed;inset:0;z-index:80;background:rgba(15,23,42,.5)}
.mobile-menu .panel{position:absolute;right:0;top:0;height:100%;width:min(300px,80%);background:#fff;padding:1.5rem;display:flex;flex-direction:column;gap:.3rem;box-shadow:var(--shadow)}
.mobile-menu.open{display:block}
.mobile-menu a{padding:.85rem .4rem;border-bottom:1px solid var(--line);font-weight:500}
.mobile-menu .btn-o{margin-top:1rem;justify-content:center}
.mm-close{align-self:flex-end;font-size:1.6rem;color:var(--muted);margin-bottom:.5rem}

/* ===== Sub-page components ===== */
.page-hero{padding:8rem 0 2.6rem;background:
  radial-gradient(120% 90% at 88% 0%,rgba(255,196,120,.4),transparent 55%),
  linear-gradient(160deg,#fdf3ea,#f4f7fb)}
.page-hero .eyebrow{margin-bottom:.7rem}
.page-hero h1{font-size:clamp(2rem,4vw,2.9rem);font-weight:800;color:var(--navy)}
.page-hero .lead{margin-top:.9rem;color:#41506b;max-width:40rem}

/* steps (cara sewa) */
.steps{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.step{display:flex;gap:1rem;background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:1.3rem;transition:.2s}
.step:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.step .num{width:44px;height:44px;flex:none;border-radius:12px;background:var(--orange);color:#fff;font-family:'Poppins';font-weight:700;font-size:1.15rem;display:grid;place-items:center}
.step h3{font-size:1.05rem;color:var(--navy);margin-bottom:.25rem}
.step p{font-size:.9rem;color:var(--muted)}

/* contact page */
.contact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:2rem;align-items:start}
.contact-info h2{font-size:1.6rem;color:var(--navy);margin-bottom:1.2rem}
.contact-info .foot-contact li{color:var(--ink);align-items:center;margin-bottom:1rem}
.contact-info .foot-contact li b{color:var(--navy)}
.contact-info .foot-contact svg{width:20px;height:20px}
.contact-info .btn-wa{margin-top:.6rem}
.booking-card{background:#fff;border:1px solid var(--line);border-radius:var(--r);box-shadow:var(--shadow-sm);padding:1.6rem}
.booking-card h3{font-size:1.2rem;color:var(--navy)}
.booking-card .muted{color:var(--muted);font-size:.88rem}
.booking-card .field{margin-top:.9rem}

@media(max-width:820px){
  .steps,.contact-grid{grid-template-columns:1fr}
}

/* ===== Foto dari DB (situs) ===== */
.hero.has-photo{min-height:620px;display:flex;align-items:center}
.hero.has-photo .hero-scenery{display:none}
.hero.has-photo .hero-cars{display:none}
.hero.has-photo .hero-grid{grid-template-columns:1fr}
.vcard .photo.has-photo{padding:0;background:none}
.vcard .photo .veh-photo{width:100%;height:160px;object-fit:cover;display:block}
.pthumb img{width:100%;height:100%;object-fit:cover;display:block}
.pthumb-fallback{width:100%;height:100%;background:linear-gradient(135deg,#e7eef7,#dfe6ef)}
