
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }
a { text-decoration: none; }
section { overflow-x: hidden; }

:root {
  --ink: #1b1816;
  --muted: rgba(27, 24, 22, .65);
  --ivory: #fbf7ef;
  --beige: #eee4d1;
  --paper: #ffffff;
  --espresso: #14110f;
  --gold: #d6b77a;
  --gold2: #ead7b0;
  --line: rgba(27, 24, 22, .12);
  --line2: rgba(27, 24, 22, .08);
  --shadow: 0 18px 55px rgba(0, 0, 0, .12);
  --shadow2: 0 10px 30px rgba(0, 0, 0, .10);
  --r: 18px;
  --r2: 26px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--beige);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: .3px;
}

h1, h2 {
  font-weight: 700;
}

p {
  color: rgba(27, 24, 22, .72);
}

.sub {
  color: rgba(27, 24, 22, .62);
}

.sub.light {
  color: rgba(255, 255, 255, .72);
}

.eyebrow {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .80);
  margin-bottom: 10px;
}

.eyebrow.dark {
  color: rgba(27, 24, 22, .62);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(27, 24, 22, .12);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #1a1512;
  border-color: rgba(214, 183, 122, .55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.btn-gold:hover {
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}

.btn.btn-dark {
  background: linear-gradient(135deg, #e0b96a, #c89b45);
  color: #1b1816;
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  letter-spacing: .18em;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .4);
  transition: all .25s ease;
}

.btn.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .5);
}

.btn-outline {
  background: rgba(251, 247, 239, .70);
  color: rgba(27, 24, 22, .86);
  border-color: rgba(27, 24, 22, .12);
}

.btn.full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(27, 24, 22, .78);
}

.text-link i {
  color: var(--gold);
}

.text-link.light {
  color: rgba(255, 255, 255, .78);
}

.text-link.light i {
  color: var(--gold2);
}

.text-link:hover {
  opacity: .92;
}

.top-bar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:68px;
  z-index:1002;

  background: rgba(251,247,239,.92) !important;
  border-bottom:1px solid rgba(27,24,22,.10) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(0,0,0,.06) !important;

  display:grid;
  grid-template-columns: 220px 1fr 220px;
  align-items:center;
  padding:0 18px;

  transform: none !important;
  opacity: 1 !important;
}

.nav-left,
.nav-right{ width:220px; }

.nav-left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.nav-mid.nav-mid-grid{
  display:grid;
  grid-template-columns: 1fr 140px 1fr;
  align-items:center;
}

.nav-links{
  display:flex;
  align-items:center;
  margin:0;
  padding:0;
  gap:34px;
}

.nav-links-left{
  justify-content:flex-end;
  padding-right:28px;
}

.nav-links-right{
  justify-content:flex-start;
  padding-left:28px;
}

.nav-links a,
.nav-dd-toggle{
  display:inline-flex;            
  align-items:center;
  justify-content:center;

  height:44px;                    /* sama level semua */
  line-height:1;                  /* buang baseline “naik” */

  font-family:'Cinzel',serif;
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(27,24,22,.92) !important;

  padding:0 12px;                 /* konsisten */
  min-width:80px;
  text-align:center;

  border-radius:999px;
  border:1px solid transparent;

  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.nav-links a:hover,
.nav-dd-toggle:hover{
  color: rgba(27,24,22,.98) !important;
  background: rgba(27,24,22,.06);
  border-color: rgba(214,183,122,.22);
}

.nav-links a.active{
  color: rgba(251,247,239,.96) !important;
  background: rgba(27,24,22,.92);
  border-color: rgba(27,24,22,.10);
}

/* logo */
.logo.logo-center{
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo.logo-center a{
  background: transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}

.logo.logo-center img{
  height:40px;
  width:auto;
  display:block;
}

/* hamburger */
.hamburger{
  width:44px;
  height:44px;
  background: transparent !important;
  border:none !important;
  box-shadow:none !important;
  border-radius:14px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:22px;
  height:2px;
  margin:0 auto;
  border-radius:2px;
  background: rgba(27,24,22,.82);
  transition: all .3s ease;
}

.hamburger:hover{
  background: rgba(27,24,22,.06) !important;
}

/* right */
.nav-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.nav-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:44px;
  padding:0 16px;
  border-radius:999px;

  background: rgba(27,24,22,.92);
  color: rgba(251,247,239,.96);
  border:1px solid rgba(233,212,168,.22);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);

  font-family:'Cinzel',serif;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.nav-pill i{display:none;}
.hide-sm{display:inline;}

/* =====================================================
   DROPDOWN (Services)
===================================================== */
.nav-dd{ position:relative; }

/* bridge area supaya hover tak putus */
.nav-dd::after{
  content:"";
  position:absolute;
  left:-10px;
  right:-10px;
  top:100%;
  height:18px;
}

/* chevron jangan kacau height */
.nav-dd-toggle i{
  font-size:11px;
  opacity:.65;
  line-height:1;
  margin-left:6px;
  transform:none;        /* ✅ buang translateY */
  position:relative;
  top:1px;               /* optional: bagi nampak center cantik */
}

/* dropdown menu */
.nav-dd-menu{
  position:absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;

  background: rgba(251,247,239,.96);
  border: 1px solid rgba(27,24,22,.10);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0,0,0,.14);

  padding: 10px;
  display:none;
  z-index:1200;

  animation: dropdownFade .22s ease;
}

.nav-dd:hover .nav-dd-menu{ display:block; }

.nav-dd-menu::before{
  content:"";
  position:absolute;
  top:-8px;
  left:50%;
  transform: translateX(-50%);
  border-width:0 9px 9px 9px;
  border-style:solid;
  border-color:transparent transparent rgba(251,247,239,.96) transparent;
}

.nav-dd-menu a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;

  font-family:'Cinzel',serif;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;

  color: rgba(27,24,22,.86);
  border: 1px solid transparent;

  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.nav-dd-menu a:hover{
  background: rgba(27,24,22,.06);
  border-color: rgba(214,183,122,.22);
  transform: translateX(2px);
}

@keyframes dropdownFade{
  from{ opacity:0; transform: translateX(-50%) translateY(-6px); }
  to{ opacity:1; transform: translateX(-50%) translateY(0); }
}



/* =========================================================
   SIDEBAR (PREMIUM v2)
   - Better hierarchy (Profile row + Logout outline)
   - "Need help?" brown card + Call/WhatsApp buttons
========================================================= */

.sidebar{
  position: fixed;
  top: 0;
  left: -320px;
  width: 305px;
  height: 100vh;
  z-index: 1003;

  background: rgba(251, 247, 239, .98);
  border-right: 1px solid rgba(27, 24, 22, .08);
  box-shadow: 16px 0 60px rgba(0, 0, 0, .12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: left .35s ease;
  border-radius: 0 26px 26px 0;
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.sidebar.active{
  left: 0;
}

/* Header */
.sidebar-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(27, 24, 22, .07);
}

.sidebar-title .s-eyebrow{
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(27, 24, 22, .52);
  margin-bottom: 4px;
}

.sidebar-title .s-brand{
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: .08em;
  color: rgba(27, 24, 22, .92);
  line-height: 1;
}

.close-sidebar{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(27, 24, 22, .10);
  background: rgba(255, 255, 255, .72);
  color: rgba(27, 24, 22, .78);
  font-size: 22px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.close-sidebar:hover{
  transform: translateY(-1px);
  background: rgba(27, 24, 22, .05);
  border-color: rgba(27, 24, 22, .14);
}

/* Links area (scrollable) */
.sidebar-links{
  padding: 8px 18px 12px;
  max-height: calc(100vh - 300px);   /* ruang untuk help + actions */
  overflow-y: auto;
}

.sidebar-links li{
  border-bottom: 1px solid rgba(27, 24, 22, .08);
}

.sidebar-links li:last-child{
  border-bottom: none;
}

.sidebar-links a{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 4px;
  background: transparent;
  border: none;
  border-radius: 0;

  font-family: 'Cinzel', serif;
  letter-spacing: .18em;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(27, 24, 22, .82);

  transition: color .22s ease, transform .22s ease;
}

.sidebar-links a i{
  color: rgba(194, 161, 94, .85);
  font-size: 13px;
  transition: transform .22s ease, color .22s ease;
}

.sidebar-links a:hover{
  color: rgba(27, 24, 22, .96);
  transform: translateX(2px);
}

.sidebar-links a:hover i{
  transform: translateX(1px);
  color: rgba(214, 183, 122, .95);
}

.sidebar-links a.active{
  color: rgba(27, 24, 22, .96);
}

.sidebar-links a.active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(214, 183, 122, 0) 0%,
    rgba(214, 183, 122, .95) 18%,
    rgba(214, 183, 122, .95) 82%,
    rgba(214, 183, 122, 0) 100%
  );
  opacity: .9;
}

/* Dropdown */
.has-dropdown > a.dropdown-toggle{
  justify-content: space-between;
}

.dropdown-icon{
  margin-left: auto;
  color: rgba(214, 183, 122, .95);
  opacity: .85;
  transition: transform .25s ease, opacity .2s ease;
}

.has-dropdown.open .dropdown-icon{
  transform: rotate(-180deg);
  opacity: 1;
}

.dropdown-menu{
  display: none;
  margin: 10px 0 2px 38px;
  padding-left: 12px;
  border-left: 1px solid rgba(214, 183, 122, .28);
}

.has-dropdown.open .dropdown-menu{
  display: block;
}

.dropdown-menu li{
  border-bottom: none;
  margin: 8px 0;
}

.dropdown-menu a{
  padding: 10px 10px;
  border-radius: 12px;

  font-family: 'Cinzel', serif;
  letter-spacing: .16em;
  font-size: 12px;
  text-transform: uppercase;

  color: rgba(27, 24, 22, .74);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.dropdown-menu a:hover{
  background: rgba(27, 24, 22, .05);
  color: rgba(27, 24, 22, .94);
  transform: translateX(2px);
}

.dropdown-menu a.active{
  background: rgba(214, 183, 122, .14);
  color: rgba(27, 24, 22, .94);
}

/* =========================================================
   NEED HELP CARD (BROWN BOX)
========================================================= */
.sidebar-help{
  margin: 10px 18px 12px;
  padding: 12px 14px;
  border-radius: 18px;

  background: linear-gradient(180deg, rgba(27,24,22,.92), rgba(27,24,22,.82));
  color: rgba(251,247,239,.95);

  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;

  border: 1px solid rgba(233,212,168,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.sidebar-help .help-icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(233,212,168,.14);
  border: 1px solid rgba(233,212,168,.22);
  color: rgba(233,212,168,.95);
}

.help-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: .04em;
  margin-bottom: 2px;
}

.help-sub{
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(251,247,239,.78);
  margin-bottom: 10px;
}

.help-actions{
  display: flex;
  justify-content: flex-start;   /* ke kiri */
  align-items: center;
  gap: 10px;
}


.help-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;

  height: 36px;
  padding: 0 12px;
  border-radius: 999px;

  background: rgba(233,212,168,.92);
  color: rgba(27,24,22,.95);
  margin-left: 0;

  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  justify-content: center;
  width: 100%;

  border: 1px solid rgba(233,212,168,.35);
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}

.help-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.help-btn.ghost{
  background: transparent;
  color: rgba(251,247,239,.92);
  border-color: rgba(233,212,168,.24);
}

.help-btn.ghost:hover{
  background: rgba(233,212,168,.10);
}

/* =========================================================
   ACCOUNT / ACTIONS (BOTTOM)
========================================================= */
.sidebar-actions{
  margin-top: auto;              /* push to bottom */
  padding: 12px 18px 18px;
  border-top: 1px solid rgba(27, 24, 22, .07);
  background: rgba(251, 247, 239, .96);
  display: grid;
  gap: 10px;
}

.sidebar-account{
  display:flex;
  align-items:center;
  gap: 12px;

  padding: 12px 12px;
  border-radius: 18px;

  background: rgba(27,24,22,.04);
  border: 1px solid rgba(27,24,22,.08);
  color: rgba(27,24,22,.92);

  text-decoration:none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.sidebar-account:hover{
  transform: translateY(-1px);
  background: rgba(27,24,22,.06);
  border-color: rgba(214,183,122,.22);
}

.acc-ico{
  width: 38px;
  height: 38px;
  border-radius: 14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(214,183,122,.16);
  border: 1px solid rgba(214,183,122,.26);
  color: rgba(27,24,22,.86);
}

.acc-text{
  display:flex;
  flex-direction:column;
  gap: 2px;
}

.acc-title{
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.acc-sub{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(27,24,22,.62);
}

.acc-go{
  margin-left:auto;
  color: rgba(27,24,22,.45);
}

/* Logout (secondary) */
.sidebar-logout{
  height: 42px;
  border-radius: 999px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  opacity: .85;

  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;

  background: transparent;
  color: rgba(27,24,22,.85);
  border: 1px solid rgba(27,24,22,.16);

  text-decoration:none;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.sidebar-logout:hover{
  background: rgba(27,24,22,.06);
  border-color: rgba(214,183,122,.26);
  transform: translateY(-1px);
}

/* Login (primary) */
.sidebar-login{
  height: 44px;
  border-radius: 999px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;

  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;

  background: rgba(27,24,22,.92);
  color: rgba(251,247,239,.96);
  border: 1px solid rgba(233,212,168,.22);

  text-decoration:none;
}

/* =========================================================
   OVERLAY
========================================================= */
.overlay{
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, .30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
}

.overlay.active{
  display: block;
}

/* Scrollbar */
.sidebar-links::-webkit-scrollbar{
  width: 6px;
}

.sidebar-links::-webkit-scrollbar-track{
  background: transparent;
}

.sidebar-links::-webkit-scrollbar-thumb{
  background: rgba(27, 24, 22, .18);
  border-radius: 10px;
}

.sidebar-links::-webkit-scrollbar-thumb:hover{
  background: rgba(27, 24, 22, .28);
}

/* =========================================================
   RESPONSIVE — BASE + TOP BAR + SIDEBAR ONLY
   ========================================================= */

/* small safety: prevent side scroll from fixed elements */
html, body { overflow-x: hidden; }

/* ---------- <= 1024px (tablet) ---------- */
@media (max-width: 1024px){

  /* container breathing room */
  .container{ padding: 0 16px; }

  /* TOP BAR: shrink side columns so mid has space */
  .top-bar{
    grid-template-columns: 160px 1fr 160px;
    padding: 0 14px;
    height: 64px;
  }

  .nav-left,
  .nav-right{ width: 160px; }

  .nav-mid.nav-mid-grid{
    grid-template-columns: 1fr 120px 1fr;
  }

  .logo.logo-center img{ height: 38px; }

  /* slightly tighter links */
  .nav-links{ gap: 22px; }
  .nav-links-left{ padding-right: 16px; }
  .nav-links-right{ padding-left: 16px; }

  /* dropdown menu size */
  .nav-dd-menu{ min-width: 210px; }
}


/* ---------- <= 900px (tablet portrait) ---------- */
@media (max-width: 900px){

  /* TOP BAR: make it "mobile mode" */
  .top-bar{
    grid-template-columns: 64px 1fr 64px;
    padding: 0 10px;
    height: 62px;
  }

  .nav-left,
  .nav-right{ width: auto; }

  /* hide desktop nav links, keep logo center */
  .nav-mid.nav-mid-grid{
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-links-left,
  .nav-links-right{
    display: none;
  }

  /* hamburger tap target */
  .hamburger{
    width: 44px;
    height: 44px;
  }

  /* right pill becomes icon-only (keep your .hide-sm rule) */
  .nav-pill{
    height: 42px;
    padding: 0 12px;
  }

}


/* ---------- <= 600px (phone) ---------- */
@media (max-width: 600px){

  .container{ padding: 0 14px; }

  .top-bar{
    height: 58px;
    padding: 0 8px;
  }

  .logo.logo-center img{
    height: 34px;
  }

  /* SIDEBAR: full-height, responsive width */
  .sidebar{
    width: min(88vw, 320px);
    left: calc(-1 * min(88vw, 320px));
    border-radius: 0 22px 22px 0;
  }

  .sidebar.active{ left: 0; }

  /* links scroll area more usable on phone */
  .sidebar-links{
    padding: 6px 14px 10px;
    max-height: calc(100vh - 280px);
  }

  .sidebar-help{
    margin: 10px 14px 10px;
  }

  .sidebar-actions{
    padding: 10px 14px 14px;
  }

  /* help buttons stack nicely */
  .help-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .help-btn{ width: 100%; }
}


/* ---------- <= 360px (very small phones) ---------- */
@media (max-width: 360px){

  .top-bar{
    grid-template-columns: 54px 1fr 54px;
  }

  .hamburger{ width: 42px; height: 42px; }
  .nav-pill{ height: 40px; padding: 0 10px; }

  .sidebar{
    width: 92vw;
    left: -92vw;
  }
}

/* =========================================================
   FIX MOBILE TOP BAR (logo center + right pill correct)
   ========================================================= */

@media (max-width: 900px){

  /* Make top-bar a stable positioning context */
  .top-bar{
    height: 62px;
    padding: 0 10px;

    /* important: stable center */
    position: fixed;
  }

  /* Keep left & right at edges */
  .nav-left,
  .nav-right{
    width: auto;
    min-width: 56px;
  }

  .nav-left{ justify-content: flex-start; }
  .nav-right{ justify-content: flex-end; }

  /* Force logo truly centered regardless of side widths */
  .nav-mid.nav-mid-grid{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    display: block; /* ignore inner grid on mobile */
  }

  .logo.logo-center{ justify-content: center; }
  .logo.logo-center img{ height: 34px; }

  /* Hide desktop nav links on mobile (confirm) */
  .nav-links-left,
  .nav-links-right{ display: none; }

  /* Right pill sizing so it doesn't become weird oval */
  .nav-pill{
    height: 42px;
    padding: 0 12px;
    min-width: 44px;
    justify-content: center;
  }


  /* BUT when logged in (Logout link has NO icon), keep text visible */
  body[data-logged-in="true"] .nav-pill i{ display: none; }
  body[data-logged-in="true"] .nav-pill .hide-sm{ display: inline; }
}

/* Extra small phones */
@media (max-width: 360px){
  .top-bar{ height: 58px; padding: 0 8px; }
  .logo.logo-center img{ height: 32px; }
  .nav-pill{ height: 40px; padding: 0 10px; }
}

/* =========================================================
   FORCE NAV RIGHT TO TRUE EDGE (mobile)
   ========================================================= */
@media (max-width: 900px){

  .top-bar{
    position: fixed;
  }

  .nav-right{
    position: absolute;
    right: 10px;     /* rapat ke tepi */
    top: 50%;
    transform: translateY(-50%);
    width: auto;     /* buang 220px / grid width */
  }

  .nav-left{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
  }
}


/* =====================================================
   HERO SECTION home
===================================================== */
.hero {
  position: relative;
  margin-top: 72px;
  min-height: 94vh;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: url("../images/111.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(850px 500px at 50% 42%, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .42) 55%, rgba(0, 0, 0, 0) 75%), linear-gradient(180deg, rgba(0, 0, 0, .70) 0%, rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, .78) 100%);
}

.hero-center {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 18px 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-center::before {
  content: "";
  position: absolute;
  inset: -40px -80px;
  background: radial-gradient(560px 280px at 50% 44%, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .40) 45%, rgba(0, 0, 0, 0) 75%);
  z-index: -1;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(233, 212, 168, .92);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 6.0rem;
  line-height: .90;
  letter-spacing: .03em;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .96);
  text-shadow: 0 26px 80px rgba(0, 0, 0, .55);
}

.hero-title .accent {
  color: rgba(233, 212, 168, .96);
}

.hero-sub {
  max-width: 760px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .84);
  margin-bottom: 38px;
  text-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-actions .btn {
  height: 52px;
  padding: 0 28px;
  font-size: 13px;
  letter-spacing: .16em;
  border-radius: 999px;
}

.hero-actions .btn-gold {
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}

.hero-actions .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

.hero-actions .btn-ghost {
  height: 52px;
  padding: 0 28px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(233, 212, 168, .96);
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(233, 212, 168, .55);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.hero-actions .btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(233, 212, 168, .14);
  border-color: rgba(233, 212, 168, .82);
  color: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

/* =========================================================
   RESPONSIVE — HERO (REBALANCED, BIGGER ON PHONE)
   Replace your existing responsive hero block with this.
   ========================================================= */

/* <= 1024px */
@media (max-width: 1024px){
  .hero{
    margin-top: 68px;
    min-height: 88vh;
  }

  .hero-center{
    min-height: calc(100vh - 68px);
    padding: 76px 18px 60px;
    max-width: 980px;
  }

  .hero-title{
    font-size: clamp(3.8rem, 6.6vw, 5.4rem);
    line-height: .94;
    margin-bottom: 16px;
  }

  .hero-sub{
    max-width: 680px;
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 32px;
  }
}

/* <= 600px (PHONE) */
@media (max-width: 600px){
  /* keep your full-bleed hero but avoid 100vw quirks */
  .hero{
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;

    margin-top: 58px;
    min-height: 88svh;     /* bigger than before */
  }

  .hero-center{
    min-height: calc(88svh - 58px);
    padding: 72px 18px 54px;
    max-width: 680px;
  }

  .hero-eyebrow{
    font-size: 11px;
    letter-spacing: .30em;
    margin-bottom: 16px;
  }

  /* BIGGER headline, nicer wrap */
  .hero-title{
    font-size: clamp(3.05rem, 12.2vw, 4.15rem);
    line-height: .93;
    margin-bottom: 14px;
  }

  /* subtext slightly bigger */
  .hero-sub{
    max-width: 36ch;       /* premium readable width */
    font-size: 1.02rem;
    line-height: 1.78;
    margin-bottom: 26px;
  }

  .hero-actions{
    gap: 12px;
  }

  .hero-actions .btn,
  .hero-actions .btn-ghost{
    height: 50px;
    padding: 0 20px;
    font-size: 12px;
    letter-spacing: .14em;
  }

  .hero-center::before{
    inset: -28px -20px;
  }
}

/* <= 360px */
@media (max-width: 360px){
  .hero-title{
    font-size: clamp(2.75rem, 12.8vw, 3.6rem);
  }

  .hero-sub{
    font-size: .98rem;
    max-width: 40ch;
  }

  .hero-actions .btn,
  .hero-actions .btn-ghost{
    width: 100%;
  }
}

/* =====================================================
   ABOUT SECTION
===================================================== */
.about {
  background: var(--ivory);
  padding: 150px 0;
  border-top: 1px solid rgba(27, 24, 22, .07);
}

.about-grid-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-frame {
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid rgba(27, 24, 22, .10);
  box-shadow: var(--shadow2);
  background: #fff;
}

.about-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-text {
  max-width: 560px;
}

.about-text .eyebrow {
  font-size: 11px;
  letter-spacing: .26em;
  color: rgba(27, 24, 22, .55);
  margin-bottom: 14px;
}

.about-text h2 {
  font-size: 3.1rem;
  line-height: 1.07;
  letter-spacing: .01em;
  color: rgba(27, 24, 22, .92);
  text-shadow: 0 1px 0 rgba(233, 215, 176, .35);
  margin: 0 0 28px;
}

.about-text h2 span {
  display: block;
}

.about-text p {
  font-size: 1.08rem;
  line-height: 1.95;
  color: rgba(27, 24, 22, .72);
  margin: 0 0 14px;
  max-width: 520px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   RESPONSIVE — ABOUT (REWRITE)
   Goal: keep premium editorial split even on mobile
   ========================================================= */

/* <= 1024px (tablet) */
@media (max-width: 1024px){
  .about{
    padding: 110px 0;
  }

  .about-grid-simple{
    gap: 36px;
    align-items: center;
  }

  .about-frame img{
    height: 380px;
  }

  .about-text{
    max-width: 520px;
  }

  .about-text h2{
    font-size: clamp(2.4rem, 4.2vw, 3.0rem);
    line-height: 1.10;
    margin: 0 0 22px;
  }

  .about-text p{
    font-size: 1.03rem;
    line-height: 1.9;
    max-width: 520px;
  }
}

/* <= 900px (keep split, tighter) */
@media (max-width: 900px){
  .about{
    padding: 90px 0;
  }



  /* keep 2 columns but smaller ratio */
  .about-grid-simple{
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    align-items: center;
  }

  .about-frame{
    border-radius: 22px;
  }

  .about-frame img{
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 55%;
  }

  .about-text{
    max-width: none;
  }

  .about-text .eyebrow{
    margin-bottom: 10px;
  }

  .about-text h2{
    font-size: clamp(2.0rem, 4.8vw, 2.6rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .about-text p{
    font-size: .98rem;
    line-height: 1.85;
    margin-bottom: 10px;
    max-width: 100%;
  }
}



/* <= 420px (very small phones: still split but safer) */
@media (max-width: 420px){
  .about-grid-simple{
    grid-template-columns: 1fr;  /* at this point, stack is cleaner */
    gap: 14px;
  }

  .about-frame img{
    height: 240px;
  }

  .about-text h2{
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }

  .about-text p{
    font-size: .96rem;
  }
}

/* =========================================================
   ABOUT — optical center (mobile)
   ========================================================= */
@media (max-width: 600px){

  /* center columns vertically */
  .about-grid-simple{
    align-items: center;
    gap: 22px;
  }

  /* optical lift for the text block */
  .about-text{
    padding-top: 8px;     /* bagi rasa align cantik dengan image */
  }

}
/* =========================================================
   ABOUT — MOBILE (TEXT FIRST, IMAGE AFTER) — NO HTML CHANGE
   ========================================================= */
@media (max-width: 600px){
  .about{
    padding: 64px 0;
  }

  .about-grid-simple{
    grid-template-columns: 1fr;   /* stack */
    gap: 16px;
    align-items: start;
  }

  /* reorder without changing HTML */
  .about-text{ order: 1; max-width: none; }
  .about-media{ order: 2; }

  .about-text .eyebrow{
    font-size: 10px;
    letter-spacing: .28em;
    margin-bottom: 10px;
  }

  .about-text h2{
    font-size: clamp(2.05rem, 9.2vw, 2.7rem);
    line-height: 1.06;
    margin: 0 0 14px;
  }

  .about-text p{
    font-size: .98rem;
    line-height: 1.82;
    max-width: 100%;
    margin: 0 0 12px;
  }

  .about-frame{
    border-radius: 20px;
  }

  .about-frame img{
    height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 58%;
  }
}

@media (max-width: 360px){
  .about-frame img{ height: 240px; }
}

/* =====================================================
   FLEET SECTION
===================================================== */
.fleet {
  padding: 110px 0 150px;
  background: linear-gradient(180deg, rgba(251, 247, 239, 1) 0%, rgba(251, 247, 239, 1) 30%, rgba(243, 235, 222, 1) 100%);
  border-top: 1px solid rgba(27, 24, 22, .06);
  border-bottom: 1px solid rgba(27, 24, 22, .06);
}

.fleet-head {
  text-align: center;
  margin-bottom: 22px;
}

.fleet-head h2 {
  font-size: 3.1rem;
  line-height: 1.07;
  letter-spacing: .01em;
  color: rgba(27, 24, 22, .92);
  text-shadow: 0 1px 0 rgba(233, 215, 176, .35);
  margin: 8px 0 14px;
}

.fleet-head .sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(27, 24, 22, .72);
}

.fleet-arrows-inline {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.fleet-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  background: rgba(251, 247, 239, .92);
  color: rgba(27, 24, 22, .92);
  border: 1px solid rgba(27, 24, 22, .18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.fleet-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
}

.fleet-arrow i {
  font-size: 14px;
}

.fleet-slider-wrapper {
  width: 100%;
  margin: 26px 0 40px;
  overflow: hidden;
  padding: 0 90px;
}

.fleet-slider {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  will-change: transform;
  transition: transform .45s ease;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

.vehicle-card {
  min-width: 312px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(27, 24, 22, .10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .08);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
  border-color: rgba(214, 183, 122, .35);
}

.vehicle-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgba(251, 247, 239, .70);
  border-bottom: 1px solid rgba(27, 24, 22, .06);
  min-height: 52px;
}

.fleet-badge {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(27, 24, 22, .72);
  white-space: nowrap;
}

.fleet-price-tag.inside {
  position: absolute;
  bottom: 8px;
  right: 18px;

  background: rgba(251,247,239,.96);
  color: rgba(27,24,22,.88);

  border: 1px solid rgba(214,183,122,.45);
  border-radius: 999px;

  padding: 9px 18px;

  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;

   box-shadow: 0 14px 30px rgba(0,0,0,.16);

  white-space: nowrap;
}

.fleet-price-tag.inside{
  z-index: 2;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.vehicle-media {
  height: 200px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  position: relative;
}

.vehicle-media.cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 58%;
  transform: scale(1.06);
  filter: none;
  transition: transform .35s ease;
}

.vehicle-card:hover .vehicle-media.cutout img {
  transform: scale(1.10);
}

.vehicle-body {
  padding: 16px 18px 18px;
  text-align: left;
}

.vehicle-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: .01em;
  color: rgba(27, 24, 22, .92);
  margin: 0 0 12px;
  font-weight: 600;
}

.vehicle-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.vehicle-specs span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(251,247,239,.82);
  border: 1px solid rgba(214,183,122,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  font-size: .85rem;
  color: rgba(27, 24, 22, .68);
  font-weight: 600;
  white-space: nowrap;
  text-transform: capitalize;
}

.vehicle-specs i {
  color: rgba(214, 183, 122, 1);
}

.fleet-footer {
  display: flex;
  letter-spacing: .18em;
  justify-content: center;
}

.fleet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 12.5px;
  letter-spacing: .20em;
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(224, 185, 106, 1), rgba(200, 155, 69, 1));
  color: rgba(27, 24, 22, .92);
  border: 1px solid rgba(214, 183, 122, .55);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .45);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.fleet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .55);
  filter: brightness(1.02);
}

/* =========================================================
   RESPONSIVE — FLEET (CLEAN REBUILD)
   Match hero/about rhythm + keep center alignment
   ========================================================= */

/* <= 1024px (tablet) */
@media (max-width: 1024px){
  .fleet{
    padding: 95px 0 125px;
  }

  .fleet-head{
    text-align: center;     /* keep desktop feel */
  }

  .fleet-head h2{
    font-size: clamp(2.4rem, 4.2vw, 3.0rem);
  }

  .fleet-slider-wrapper{
    padding: 0 28px;        /* reduce from 90px */
  }

  .fleet-slider{
    padding: 0 10px;
  }

  .vehicle-card{
    min-width: 300px;
  }
}


/* <= 900px (tablet portrait) */
@media (max-width: 900px){
  .fleet{
    padding: 82px 0 110px;
  }

  /* keep everything centered */
  .fleet-head{
    text-align: center;
  }

  
  .fleet-head .sub{
    margin: 0 auto;
  }
.fleet-head h2{
    font-size: clamp(2.0rem, 6.4vw, 2.55rem);
    line-height: 1.08;
    max-width: 720px;   /* stop super wide line */
    margin-left: auto;
    margin-right: auto;
  }
  .fleet-arrows-inline{
    justify-content: center;
  }

  .fleet-slider-wrapper{
    padding: 0 18px;    /* align with container rhythm */
  }

  .fleet-slider{
    padding: 0;
    gap: 16px;
  }

  .vehicle-card{
    min-width: 290px;
  }
}


/* <= 600px (PHONE) */
@media (max-width: 600px){
  .fleet{
    padding: 68px 0 92px;
  }

  

  .fleet-head h2{
    font-size: clamp(1.85rem, 7.8vw, 2.25rem);
    line-height: 1.10;
    max-width: 22ch;    /* forces nicer wrap for long title */
    margin-left: auto;
    margin-right: auto;
  }

  .fleet-head .sub{
    max-width: 100%;
    font-size: .98rem;
    line-height: 1.8;
  }

  .fleet-arrows-inline{
    margin-top: 18px;
    gap: 12px;
  }

  .fleet-slider-wrapper{
    padding: 0 18px;     /* IMPORTANT: same as hero/about */
    margin: 20px 0 34px;
  }

  .fleet-slider{
    gap: 14px;
  }

  /* one-card premium focus */
  .vehicle-card{
    min-width: 84vw;
    border-radius: 22px;
  }

  .vehicle-media{
    height: 190px;
  }

  .fleet-price-tag.inside{
    right: 14px;
    bottom: 10px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .vehicle-body h3{
    font-size: 1.45rem;
  }
}


/* <= 360px (very small) */
@media (max-width: 360px){
  .vehicle-card{
    min-width: 88vw;
  }

  .vehicle-media{
    height: 175px;
  }
}


/* =====================================================
   SERVICES SECTION
===================================================== */
.services {
  position: relative;
  padding: 140px 0 130px;
  background: url("../images/200.jpg") center 35%/cover no-repeat;
  border-top: 1px solid rgba(27, 24, 22, .08);
  border-bottom: 1px solid rgba(27, 24, 22, .08);
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 50% 22%, rgba(214, 183, 122, .14) 0%, rgba(0, 0, 0, 0) 55%), radial-gradient(1100px 680px at 50% 60%, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .72) 70%, rgba(0, 0, 0, .82) 100%), linear-gradient(180deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .44) 45%, rgba(0, 0, 0, .82) 100%);
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-head {
  text-align: left;
  max-width: none;
  margin: 0 0 28px;
  width: 100%;
}

.services-head .eyebrow {
  color: rgba(233, 212, 168, .90);
}

.services-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 3.05rem;
  line-height: 1.05;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .96);
  margin: 10px 0 12px 0;
  text-shadow: 0 26px 80px rgba(0, 0, 0, .55);
}

.services-head .sub.light {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.services-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.svc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: rgba(255, 255, 255, .92);
  min-height: 260px;
  padding: 22px 18px 20px;
  background: rgba(251, 247, 239, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r2);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.svc-card:nth-child(1) { animation-delay: 0.1s; }
.svc-card:nth-child(2) { animation-delay: 0.2s; }
.svc-card:nth-child(3) { animation-delay: 0.3s; }

.svc-card:hover {
  transform: translateY(-6px);
  background: rgba(251, 247, 239, .14);
  border-color: rgba(214, 183, 122, .38);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .32);
}

.svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 183, 122, .18);
  border: 1px solid rgba(214, 183, 122, .28);
  color: rgba(233, 212, 168, .96);
  margin-bottom: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: 10px;
  color: rgba(233, 212, 168, .96);
  letter-spacing: .01em;
}

.svc-card p {
  color: rgba(255, 255, 255, .74);
  line-height: 1.85;
  margin-bottom: 14px;
}

.svc-card .text-link.light {
  color: rgba(255, 255, 255, .86);
}

.svc-card .text-link.light:hover {
  opacity: .92;
}

.svc-card:hover .svc-link {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(214, 183, 122, .55);
}

.svc-link {
  margin-top: auto;
  padding-top: 10px;
}

.svc-card:hover .svc-link i {
  transform: translateX(2px);
  transition: transform .2s ease;
}

.services-footer {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.svc-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(214, 183, 122, .22), 0 28px 90px rgba(0, 0, 0, .32);
  border-color: rgba(214, 183, 122, .45);
}

/* =========================================================
   RESPONSIVE — SERVICES ONLY
   ========================================================= */

/* <= 1024px (tablet) */
@media (max-width: 1024px){
  .services{
    padding: 110px 0 105px;
    background-position: center 40%;
  }

  .services-head h2{
    font-size: clamp(2.4rem, 4.6vw, 3.0rem);
    line-height: 1.08;
  }

  .services-head .sub.light{
    max-width: 640px;
  }

  .services-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .svc-card{
    min-height: 240px;
    padding: 20px 16px 18px;
    border-radius: 24px;
  }

  .svc-card h3{
    font-size: 1.6rem;
  }
}

/* <= 600px (phone) */
@media (max-width: 600px){
  .services{
    padding: 78px 0 76px;
    background-position: center 42%;
  }

  

  .services-head{
    text-align: left; /* premium + readable on phone */
    margin-bottom: 18px;
  }

  .services-head h2{
    font-size: clamp(2.05rem, 9vw, 2.55rem);
    line-height: 1.08;
    margin: 8px 0 10px;
  }

  .services-head .sub.light{
    font-size: .98rem;
    line-height: 1.75;
    max-width: 100%;
  }

  .services-grid{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .svc-card{
    min-height: auto;         /* biar ikut content */
    padding: 18px 16px 18px;
    border-radius: 22px;
  }

  .svc-icon{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 10px;
  }

  .svc-card h3{
    font-size: 1.55rem;
    margin-bottom: 8px;
  }

  .svc-card p{
    margin-bottom: 12px;
    line-height: 1.8;
  }
}

/* <= 360px (very small phones) */
@media (max-width: 360px){
  .services-head h2{
    font-size: clamp(1.9rem, 10vw, 2.3rem);
  }

  .svc-card{
    padding: 16px 14px 16px;
  }
}

@media (max-width: 600px){

  .services-head h2{
    line-height: 1.12;                 /* bagi nafas */
    letter-spacing: .005em;
    max-width: 20ch;                   /* wrap cantik, tak jadi panjang */
  }

  .services-head .sub.light{
    margin-top: 8px;
    line-height: 1.78;
    max-width: 38ch;
  }

  .svc-card{
    border-radius: 24px;
  }

  .svc-card h3{
    line-height: 1.12;
  }

  .svc-card p{
    line-height: 1.75;
  }
}

/* =====================================================
   WHY CHOOSE US SECTION
===================================================== */
.why {
  position: relative;
  padding: 160px 0 180px;
  background: linear-gradient(180deg, rgba(251, 247, 239, 1) 0%, rgba(251, 247, 239, 1) 45%, rgba(243, 235, 222, 1) 100%);
  border-top: 1px solid rgba(27, 24, 22, .06);
}

.why-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.why-head h2 {
  font-size: 3.05rem;
  line-height: 1.06;
  letter-spacing: .01em;
  color: rgba(27, 24, 22, .92);
  margin: 10px 0 12px;
  text-shadow: 0 1px 0 rgba(233, 215, 176, .35);

}

.why-head .sub {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(27, 24, 22, .70);
}

.why-grid {
  margin-top: 26px;
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.why-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(27, 24, 22, .10);
  border-radius: var(--r2);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .08);
  padding: 22px 18px 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 183, 122, .40);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: rgba(214, 183, 122, .18);
  border: 1px solid rgba(214, 183, 122, .28);
  color: rgba(194, 161, 94, .95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
}

.why-card h3 {
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 10px;
  color: rgba(27, 24, 22, .92);
}

.why-card p {
  margin: 0;
  color: rgba(27, 24, 22, .68);
  line-height: 1.85;
}

.why-strip {
  margin: 26px auto 0;
  max-width: 860px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(27, 24, 22, .10);
  border-radius: 999px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .08);
}

.why-metric {
  display: grid;
  gap: 2px;
  text-align: center;
  min-width: 120px;
}

.why-num {
  font-family: 'Cinzel', serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  color: rgba(96, 20, 28, .92);
}

.why-label {
  font-size: .95rem;
  color: rgba(27, 24, 22, .62);
  font-weight: 700;
}

.why-divider {
  width: 1px;
  height: 28px;
  background: rgba(27, 24, 22, .12);
}

.why-actions {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.why-actions .btn {
  font-family: 'Cinzel', serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12.5px;
}

/* =========================================================
   RESPONSIVE — WHY ONLY
   ========================================================= */

/* <= 1024px */
@media (max-width: 1024px){
  .why{
    padding: 120px 0 140px;
  }

  .why-head{
    margin-bottom: 28px;
  }

  .why-head h2{
    font-size: clamp(2.4rem, 4.2vw, 3.0rem);
    line-height: 1.08;
  }

  .why-head .sub{
    font-size: 1.02rem;
    max-width: 620px;
  }

  .why-grid-4{
    gap: 18px;
    max-width: 900px;
  }

  .why-card{
    padding: 20px 16px 18px;
    border-radius: 24px;
  }

  .why-card h3{
    font-size: 1.55rem;
  }

  .why-actions{
    margin-top: 38px;
  }
}

/* <= 600px (phone) */
@media (max-width: 600px){
  .why{
    padding: 78px 0 96px;
  }

  .why-head{
    margin-bottom: 20px;
    max-width: none;
  }

  .why-head h2{
    font-size: clamp(2.0rem, 8.8vw, 2.5rem);
    line-height: 1.10;
  }

  .why-head .sub{
    font-size: .98rem;
    line-height: 1.78;
    max-width: 100%;
  }

  /* 2 columns -> 1 column */
  .why-grid-4{
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 520px;     /* keeps cards from feeling too wide */
  }

  .why-card{
    padding: 18px 16px 18px;
    border-radius: 22px;
  }

  .why-icon{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 10px;
  }

  .why-card h3{
    font-size: 1.5rem;
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .why-card p{
    line-height: 1.75;
  }

  .why-actions{
    margin-top: 26px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .why-actions .btn{
    height: 46px;
    padding: 0 18px;
    font-size: 12px;
  }
}

/* <= 360px */
@media (max-width: 360px){
  .why-grid-4{
    max-width: 100%;
  }

  .why-actions .btn{
    width: 100%; /* buttons stack */
  }
}

/* =====================================================
   REVIEWS SECTION
===================================================== */
.reviews {
  background: var(--ivory);
  padding: 110px 0 120px;
  border-top: 1px solid rgba(27, 24, 22, .06);
}

.reviews-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 26px;
}

.reviews-head h2 {
  font-size: 3.05rem;
  line-height: 1.06;
  letter-spacing: .01em;
  color: rgba(27, 24, 22, .92);
  text-shadow: 0 1px 0 rgba(233, 215, 176, .35);
  margin: 8px 0 12px;
}

.reviews-head .sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(27, 24, 22, .70);
}

.reviews-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(27, 24, 22, .10);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  padding: 18px 18px 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 183, 122, .30);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 14px;
}

.review-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: rgba(251, 247, 239, .86);
  color: rgba(27, 24, 22, .72);
  border: 1px solid rgba(27, 24, 22, .10);
  opacity: .92;
}

.review-text {
  color: rgba(27, 24, 22, .74);
  font-size: 1.03rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.review-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 24, 22, .08);
}

.review-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 215, 176, .45);
  border: 1px solid rgba(214, 183, 122, .30);
  color: rgba(27, 24, 22, .82);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .10em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .70);
}

.who-meta .who {
  font-weight: 800;
  color: rgba(27, 24, 22, .92);
  font-size: 1.02rem;
  line-height: 1.2;
}

.who-meta .meta {
  margin-top: 4px;
  color: rgba(27, 24, 22, .58);
  font-size: .95rem;
}

/* =========================================================
   RESPONSIVE — REVIEWS ONLY
   (tak kacau desktop)
   ========================================================= */

/* penting: elak grid overflow / iOS squeeze pelik */
.reviews-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* <= 1024px (tablet / ipad) */
@media (max-width: 1024px){
  .reviews{
    padding: 92px 0 100px;
  }

  .reviews-head{
    margin-bottom: 22px;
  }

  .reviews-head h2{
    font-size: clamp(2.35rem, 4.6vw, 3.0rem);
    line-height: 1.08;
  }

  .reviews-head .sub{
    font-size: 1.02rem;
    max-width: 620px;
  }

  /* 3 -> 2 columns */
  .reviews-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .review-card{
    padding: 18px 16px 16px;
    border-radius: 24px;
  }

  .review-text{
    font-size: 1.0rem;
    line-height: 1.85;
  }
}

/* <= 600px (phone) */
@media (max-width: 600px){
  .reviews{
    padding: 72px 0 88px;
  }

  .reviews-head{
    max-width: none;
    margin-bottom: 18px;
  }

  .reviews-head h2{
    font-size: clamp(2.0rem, 8.8vw, 2.55rem);
    line-height: 1.10;
  }

  .reviews-head .sub{
    font-size: .98rem;
    line-height: 1.78;
    max-width: 100%;
  }

  /* 2 -> 1 column (ini yang akan settle iPhone 13 Pro Max) */
  .reviews-grid{
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 520px;
    margin: 20px auto 0;
  }

  .review-card{
    padding: 16px 16px 14px;
    border-radius: 22px;
  }

  .review-top{
    margin-bottom: 12px;
  }

  .review-pill{
    height: 28px;
    padding: 0 12px;
    font-size: 10.5px;
    letter-spacing: .18em;
  }

  .review-stars{
    font-size: 13px;
    letter-spacing: 2px;
  }

  .review-text{
    font-size: .98rem;
    line-height: 1.78;
    margin-bottom: 14px;
  }

  .avatar{
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .who-meta .who{
    font-size: 1.0rem;
  }

  .who-meta .meta{
    font-size: .93rem;
  }
}

/* <= 360px */
@media (max-width: 360px){
  .reviews-grid{
    max-width: 100%;
  }
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  background: var(--ivory);
}

.contact-image-full {
  position: relative;
  background: url("../images/206.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 136px;
  color: #fff;
  padding-left: clamp(48px, 8vw, 136px);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 500px at 40% 45%, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .35) 45%, rgba(0, 0, 0, .55) 100%), linear-gradient(180deg, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .45) 100%);
}

.contact-text {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.contact-text h2 {
  font-size: 3.2rem;
  line-height: 1.05;
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, .96);
  text-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

.contact-text .sub.light {
  line-height: 1.9;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.contact-info {
  display: grid;
  gap: 12px;
}

.contact-info.light .c-item {
  color: rgba(255, 255, 255, .88);
}

.c-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
}

.c-item:nth-child(1) { animation-delay: 0.2s; }
.c-item:nth-child(2) { animation-delay: 0.3s; }
.c-item:nth-child(3) { animation-delay: 0.4s; }

.c-item i {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 183, 122, .22);
  border: 1px solid rgba(214, 183, 122, .35);
  color: rgba(233, 212, 168, 1);
}

.contact-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 64px;
  background: linear-gradient(180deg, rgba(251, 247, 239, 1) 0%, rgba(251, 247, 239, 1) 45%, rgba(243, 235, 222, 1) 100%);
  border-top: 1px solid rgba(27, 24, 22, .06);
}

.contact-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(27, 24, 22, .10);
  border-radius: var(--r2);
  padding: 22px 20px 24px;
  box-shadow: var(--shadow2);
}

.card-title {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(27, 24, 22, .70);
  margin-bottom: 14px;
}

.contact-form .fg {
  margin-bottom: 12px;
}

.contact-form label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(27, 24, 22, .72);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(27, 24, 22, .14);
  background: rgba(251, 247, 239, .92);
  color: rgba(27, 24, 22, .88);
  padding: 12px 14px;
  outline: none;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
}

.contact-form textarea {
  resize: none;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tiny-note {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(27, 24, 22, .62);
}

.contact-error {
  background: rgba(160, 40, 40, 0.08);
  border: 1px solid rgba(160, 40, 40, 0.35);
  color: rgba(120, 20, 20, 0.95);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* =========================================================
   RESPONSIVE — CONTACT ONLY
   ========================================================= */

/* <= 1024px */
@media (max-width: 1024px){
  .contact-split{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-image-full{
    padding: 96px 18px;
    padding-left: 18px;
  }

  .contact-text{
    max-width: 720px;
  }

  .contact-text h2{
    font-size: clamp(2.35rem, 4.6vw, 3.0rem);
    line-height: 1.08;
  }

  .contact-form-side{
    padding: 56px 18px;
    border-top: none;
  }

  .contact-card{
    max-width: 720px;
    padding: 22px 20px 24px;
  }
}

/* <= 600px (phone) */
@media (max-width: 600px){
  .contact-image-full{
    padding: 72px 18px;
    padding-left: 18px;
  }

  .contact-text{
    max-width: 100%;
  }

  .contact-text h2{
    font-size: clamp(2.05rem, 9vw, 2.6rem);
    line-height: 1.10;
    margin: 8px 0 12px;
  }

  .contact-text .sub.light{
    line-height: 1.78;
    margin-bottom: 18px;
  }

  .c-item{
    font-size: .98rem;
    gap: 10px;
  }

  .c-item i{
    width: 36px;
    height: 36px;
    border-radius: 14px;
  }

  .contact-form-side{
    padding: 26px 18px 56px;
  }

  .contact-card{
    max-width: 100%;
    border-radius: 24px;
    padding: 18px 16px 18px;
  }

  /* form row -> single column */
  .contact-form .form-row{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form input,
  .contact-form textarea{
    border-radius: 14px;
    padding: 12px 12px;
  }

  .contact-form textarea{
    min-height: 140px;
  }
}

/* <= 360px */
@media (max-width: 360px){
  .contact-image-full{
    padding: 64px 18px;
  }

  .contact-text h2{
    font-size: clamp(1.9rem, 10vw, 2.35rem);
  }
}

/* =========================================================
   CONTACT left panel padding — match site rhythm
   ========================================================= */

/* desktop kecil / laptop */
@media (max-width: 1280px){
  .contact-image-full{
    padding-left: clamp(24px, 4vw, 72px);
    padding-right: clamp(24px, 4vw, 72px);
  }
}

/* tablet */
@media (max-width: 1024px){
  .contact-image-full{
    padding: 96px 34px;              /* top/btm 96, left/right 18 */
  }
}

/* phone */
@media (max-width: 600px){
  .contact-image-full{
    padding: 72px 34px;              /* top/btm 72, left/right 18 */
  }
}

/* very small */
@media (max-width: 360px){
  .contact-image-full{
    padding: 64px 34px;
  }
}

/* =====================================================
   FOOTER
===================================================== */
.footer-minimal {
  background: #0a0504;
  color: rgba(255, 255, 255, .82);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.footer-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(214, 183, 122, .35), transparent);
}

.footer-logo {
  height: 64px;
  margin-bottom: 22px;
  opacity: .95;
}

.footer-brand p {
  max-width: 420px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .7);
  margin-top: 6px;
}

.footer-title {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(214, 183, 122, .9);
  margin-bottom: 16px;
  display: block;
}

.footer-nav {
  justify-self: end;
  text-align: right;
}

.footer-nav a {
  display: block;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 10px;
  transition: color .2s ease, transform .2s ease;
}

.footer-nav a:hover {
  color: rgba(214, 183, 122, 1);
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

/* =========================================================
   RESPONSIVE — FOOTER
   ========================================================= */

/* <= 1024px */
@media (max-width: 1024px){
  .footer-grid{
    gap: 36px;
  }

  .footer-logo{
    height: 56px;
  }
}

/* <= 700px */
@media (max-width: 700px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* buang divider tengah */
  .footer-grid::after{
    display: none;
  }

  .footer-nav{
    justify-self: start;
    text-align: left;
  }
}

/* <= 600px (phone) */
@media (max-width: 600px){
  .footer-minimal{
    padding: 56px 0 22px;
  }

  .footer-brand p{
    max-width: 100%;
    line-height: 1.8;
  }

  .footer-title{
    margin-bottom: 12px;
  }

  .footer-nav a{
    margin-bottom: 8px;
  }

  .footer-bottom{
    margin-top: 32px;
    padding-top: 14px;
    font-size: 12px;
  }
}

/* =====================================================
   MODAL
===================================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  padding: 20px;
  overflow: auto;
  opacity: 0;
  transition: opacity .22s ease;
  background: radial-gradient(900px 520px at 50% 35%, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .68) 65%, rgba(0, 0, 0, .72) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal.active {
  display: grid;
  place-items: center;
  opacity: 1;
}

.modal-content {
  width: min(1040px, 96vw);
  border-radius: 30px;
  overflow: hidden;
  background: radial-gradient(900px 520px at 16% 0%, rgba(255, 242, 207, .60) 0%, transparent 58%), radial-gradient(900px 520px at 92% 10%, rgba(255, 232, 176, .42) 0%, transparent 56%), linear-gradient(180deg, rgba(251, 247, 239, .98) 0%, rgba(239, 230, 211, .92) 100%);
  border: 1px solid rgba(27, 24, 22, .12);
  box-shadow: 0 44px 140px rgba(0, 0, 0, .52), 0 16px 60px rgba(0, 0, 0, .18);
  transform: translateY(16px) scale(.985);
  opacity: 0;
  transition: transform .28s cubic-bezier(.2, .9, .2, 1), opacity .22s ease;
}

.modal.active .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-content::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 183, 122, 0) 0%, rgba(214, 183, 122, .55) 18%, rgba(214, 183, 122, .55) 82%, rgba(214, 183, 122, 0) 100%);
  opacity: .85;
}

.modal-header {
  position: relative;
  padding: 22px 28px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: radial-gradient(820px 260px at 20% 0%, rgba(255, 242, 207, .55) 0%, rgba(255, 242, 207, 0) 60%), linear-gradient(180deg, rgba(251, 247, 239, .96) 0%, rgba(244, 236, 223, .92) 100%);
  border-bottom: 1px solid rgba(27, 24, 22, .10);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

.modal-header .mh-left {
  padding-right: 16px;
}

.modal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: .02em;
  line-height: 1.05;
  margin: 0;
  color: rgba(27, 24, 22, .94);
  text-shadow: 0 1px 0 rgba(233, 215, 176, .45);
}

.mh-sub {
  margin: 8px 0 0;
  color: rgba(27, 24, 22, 0.658);
  font-size: 1.02rem;
  line-height: 1.55;
}

.modal-header::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 183, 122, 0) 0%, rgba(214, 183, 122, .60) 18%, rgba(214, 183, 122, .60) 82%, rgba(214, 183, 122, 0) 100%);
  opacity: .9;
  pointer-events: none;
}

.close-modal {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(27, 24, 22, .14);
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(251, 247, 239, .72));
  color: rgba(27, 24, 22, .78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .10), inset 0 1px 0 rgba(255, 255, 255, .75);
  font-size: 28px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.close-modal:hover {
  transform: translateY(-2px);
  border-radius: 18px;
  color: rgba(27, 24, 22, .92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14), inset 0 1px 0 rgba(255, 255, 255, .85);
}

.close-modal:active {
  transform: translateY(0) scale(.99);
}

.modal-body {
  padding: 18px 22px 22px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 18px;
  background: linear-gradient(180deg, rgba(251, 247, 239, .60), rgba(251, 247, 239, .30));
}

@media (min-width: 901px) {
  .modal-body {
    position: relative;
  }
  .modal-body::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, rgba(214, 183, 122, 0), rgba(214, 183, 122, .28), rgba(214, 183, 122, 0));
    opacity: .9;
    pointer-events: none;
    transform: translateX(-9px);
  }
}

.car-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#modalCarImage {
  width: 100%;
  height: 255px;
  object-fit: contain;
  object-position: center 58%;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(27, 24, 22, .12);
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .14), inset 0 1px 0 rgba(255, 255, 255, .85);
  padding: 12px 16px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.car-preview:hover #modalCarImage {
  transform: translateY(-2px);
  box-shadow: 0 28px 78px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .90);
}

.car-details{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(27,24,22,.10);
  border-radius: 22px;
  padding: 14px 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

.car-details p{
  margin: 0;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(27,24,22,.08);
}


.car-details p:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.car-details strong{
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(27,24,22,.60);
  font-weight: 800;
}

.car-details .cd-val{
  font-weight: 600;
  line-height: 1.65;
  color: rgba(27,24,22,.85);
}
.cd-row-price .cd-val{
  color: rgba(96,20,28,.92);
}

.cd-row-total .cd-val{
  font-size: 1.05rem;
  color: rgba(27,24,22,.92);
}
.cd-unit{
  font-weight: 700;
  color: rgba(27,24,22,.55);
  margin-left: 4px;
}

/* Special fix for long description row only */
.cd-row-desc{
  align-items: flex-start !important;
}

.cd-row-desc .cd-val{
  text-align: left;
  max-width: 58ch;
  line-height: 1.65;
  font-weight: 600;
}

/* Description row only - jangan kacau row lain */
.car-details p.cd-row-desc{
  justify-content: flex-start;     /* buang space-between utk row ni */
  gap: 12px;                        /* jarak cantik antara label & text */
  align-items: flex-start;
}

.car-details p.cd-row-desc strong{
  flex: 0 0 auto;
  white-space: nowrap;              /* "DESCRIPTION:" tak wrap */
}

.car-details p.cd-row-desc .cd-val{
  flex: 1 1 auto;                   /* text ambil ruang baki */
  min-width: 0;                     /* penting untuk wrap elok */
  text-align: left !important;
  display: block;
}


#bookingForm {
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(27, 24, 22, .12);
  border-radius: 26px;
  min-height: 100%;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .70);
}

.login-note {
  margin: 8px 0 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(160, 40, 40, 0.08);
  border: 1px solid rgba(160, 40, 40, 0.35);
  color: rgba(120, 20, 20, 0.95);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}


.form-group {
  margin-bottom: 12px;
}

.btn-confirm[aria-busy="true"] {
  opacity: .92;
  cursor: progress;
  filter: saturate(.95);
}

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgb(27, 24, 22);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  height: 48px;
  border-radius: 16px;
  padding: 0 14px;
  background: rgba(251, 247, 239, .92);
  color: rgba(27, 24, 22, .88);
  border: 1px solid rgba(27, 24, 22, .14);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.form-group input:hover {
  border-color: rgba(27, 24, 22, .18);
}

.form-group input:focus {
  border-color: rgba(214, 183, 122, .80);
  box-shadow: 0 0 0 6px rgba(214, 183, 122, .22);
  transform: translateY(-1px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-confirm {
  margin-top: 8px;
  width: 100%;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(214, 183, 122, .62);
  background: linear-gradient(135deg, rgba(224, 185, 106, 1), rgba(200, 155, 69, 1));
  color: rgba(27, 24, 22, .92);
  font-family: 'Cinzel', serif;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .55);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .65);
  filter: brightness(1.02);
}

.btn-confirm:active {
  transform: translateY(0) scale(.99);
}

.whatsapp-section {
  margin-top: auto;
  padding-top: 12px;
}

.whatsapp-divider-text {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 10px;
}

.whatsapp-divider-text::before,
.whatsapp-divider-text::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(27, 24, 22, .14);
}

.whatsapp-divider-text span {
  color: rgba(27, 24, 22, .60);
  font-weight: 800;
  font-size: .95rem;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, #26d36a, #18b956);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  font-family: 'Cinzel', serif;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .20);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .26);
  filter: brightness(1.03);
}

.btn-whatsapp:active {
  transform: translateY(0) scale(.99);
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  opacity: .85;
}

.close-modal:focus-visible,
.btn-confirm:focus-visible,
.btn-whatsapp:focus-visible,
.form-group input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(214, 183, 122, .22);
  border-color: rgba(214, 183, 122, .80);
}

.modal::-webkit-scrollbar {
  width: 10px;
}

.modal::-webkit-scrollbar-track {
  background: transparent;
}

.modal::-webkit-scrollbar-thumb {
  background: rgba(251, 247, 239, .22);
  border: 1px solid rgba(214, 183, 122, .25);
  border-radius: 999px;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: rgba(251, 247, 239, .30);
}

/* =========================================
   MODAL SCROLL FIX (ALL SIZES)
========================================= */

.modal{
  overflow-y: auto;          /* allow scroll */
}

.modal.active{
  align-items: start;        /* jangan center vertical */
  padding-top: 40px;        /* breathing room atas */
  padding-bottom: 40px;
}

.modal-content{
  max-height: none;         /* jangan lock height */
}

/* =========================================================
   RESPONSIVE — MODAL (BOOKING)
   ========================================================= */

@media (max-width: 1024px){
  .modal-body{
    grid-template-columns: 1fr;   /* stack dah */
    gap: 16px;
  }

  .modal-body::before{
    display: none;               /* buang divider */
  }

  #modalCarImage{
    height: 240px;
  }

  .modal-header h2{
    font-size: 2.1rem;
  }
}

/* <= 900px : stack layout */
@media (max-width: 900px){
  .modal{
    padding: 16px;
  }

  .modal-content{
    width: min(980px, 96vw);
    border-radius: 26px;
  }

  .modal-header{
    padding: 18px 18px 14px;
  }

  .modal-header h2{
    font-size: 2.0rem;
    line-height: 1.10;
  }

  .mh-sub{
    font-size: .98rem;
  }

  .modal-body{
    grid-template-columns: 1fr;   /* stack */
    gap: 14px;
    padding: 16px 16px 18px;
  }

  .modal-body::before{
    display: none;               /* remove vertical divider */
  }

  #modalCarImage{
    height: 230px;
    border-radius: 22px;
  }

  #bookingForm{
    border-radius: 22px;
  }
}

/* <= 600px : near-fullscreen */
@media (max-width: 600px){
  .modal{
    padding: 12px;
  }

  .modal-content{
    width: 100%;
    border-radius: 22px;
  }

  .modal-header{
    padding: 16px 14px 12px;
    gap: 10px;
  }

  .modal-header .mh-left{
    padding-right: 10px;
  }

  .modal-header h2{
    font-size: 1.65rem;
    line-height: 1.12;
  }

  .mh-sub{
    font-size: .95rem;
    line-height: 1.5;
  }

  .close-modal{
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 26px;
  }

  .modal-body{
    padding: 14px 14px 16px;
    gap: 12px;
  }

  #modalCarImage{
    height: 200px;
    padding: 10px 12px;
  }

  .car-details{
    border-radius: 20px;
    padding: 12px 14px;
  }

  .car-details p{
    padding: 9px 0;
  }

  /* form row -> single column */
  .form-row{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #bookingForm{
    padding: 16px 14px 16px;
  }

  .form-group input{
    height: 46px;
    border-radius: 14px;
  }

  .btn-confirm,
  .btn-whatsapp{
    height: 48px;
    letter-spacing: .14em;
  }
}

/* <= 360px */
@media (max-width: 360px){
  .modal{
    padding: 10px;
  }

  .modal-header h2{
    font-size: 1.5rem;
  }

  #modalCarImage{
    height: 185px;
  }
}

/* =====================================================
   FLEET (Cinematic Hero + In-Hero Floatbar + Sticky)
   CLEAN: no duplicates, no conflicts
===================================================== */

/* a11y helper */
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* =========================
   HERO
========================= */
.fleet-hero{
  position: relative;
  margin-top: 72px;
  min-height: 74vh;

  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background: url("../images/452.jpg") center/cover no-repeat;
  overflow: hidden;
}

.fleet-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(850px 500px at 50% 42%, rgba(0,0,0,.65) 0%, rgba(0,0,0,.42) 55%, rgba(0,0,0,0) 75%),
    linear-gradient(180deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.78) 100%);
}

.fleet-hero-inner{
  position: relative;
  z-index: 1;

  min-height: calc(74vh - 68px);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;

  /* rapatkan sikit supaya tak “bawah kosong” */
  padding: 78px 18px 52px;

  max-width: 1100px;
  margin: 0 auto;
}

/* glow subtle macam Home */
.fleet-hero-inner::before{
  content:"";
  position:absolute;
  inset: -40px -80px;
  background: radial-gradient(560px 280px at 50% 44%, rgba(0,0,0,.66) 0%, rgba(0,0,0,.38) 45%, rgba(0,0,0,0) 75%);
  z-index: -1;
  pointer-events:none;
}

.fleet-hero-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 5.1rem;
  line-height: .90;
  letter-spacing: .03em;
  margin: 10px 0 22px;
  color: rgba(255,255,255,.96);
  text-shadow: 0 26px 80px rgba(0,0,0,.55);
}

.fleet-hero-title .accent{
  color: rgba(233,212,168,.96);
}

.fleet-hero-sub{
  max-width: 760px;
  font-size: 1.10rem;
  line-height: 1.85;
  color: rgba(255,255,255,.84);
  text-shadow: 0 16px 40px rgba(0,0,0,.45);
  margin: 0;
  margin-bottom: 25px;
}

/* =========================
   FLOATBAR (IN HERO, BESAR & KEMAS)
   - IMPORTANT: pakai selector spesifik supaya tak conflict dengan .fleet-search lain
========================= */
/* FLOATBAR: paksa full lebar ikut hero-inner */
.fleet-floatbar-wrap{
  width: 100%;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.fleet-floatbar{
  width: 100%;
  max-width: 900px;     /* ikut hero-inner */
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 10px;
  border-radius: 999px;

  background: rgba(255,255,255,.78);
  border: 1px solid rgba(27,24,22,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fleet-floatbar .fleet-float-search{
  flex: 1 1 auto;
  min-width: 0;
  height: 47px;

  display:flex;
  align-items:center;
  gap: 10px;

  padding: 0 18px;
  border-radius: 999px;
  font-size: 1rem;

  background: rgba(251,247,239,.92);
  border: 1px solid rgba(27,24,22,.12);
}

.fleet-floatbar .fleet-float-search input{
  width: 100%;
  min-width: 0;
  border:none;
  outline:none;
  background:transparent;

  color: rgba(27,24,22,.88);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
}

.fleet-floatbar .fleet-float-search input::placeholder{
  color: rgba(27,24,22,.45);
}

.fleet-floatbar .fleet-float-search:focus-within{
  border-color: rgba(214,183,122,.85);
  box-shadow: 0 0 0 6px rgba(214,183,122,.16), inset 0 1px 0 rgba(255,255,255,.65);
}

/* FILTER BTN (ikut btn-gold kau) */
.fleet-floatbar .fleet-filter-btn{
  height: 47px;
  padding: 0 18px;
  border-radius: 999px;

  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fleet-floatbar .fleet-filter-btn i{
  margin-right: 8px;
}

/* =========================
   STICKY BAR
========================= */
.fleet-sticky{
  position: fixed;
  left: 0;
  right: 0;
  top: 68px;
  z-index: 1001;

  padding: 10px 0;
  background: rgba(251,247,239,.86);
  border-bottom: 1px solid rgba(27,24,22,.10);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.fleet-sticky.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fleet-sticky-inner{
  display:flex;
  align-items:center;
  gap: 12px;
}

/* sticky search */
.fleet-sticky .fleet-search-sticky{
  flex: 1;
  min-width: 0;

  height: 50px;
  padding: 20px 16px;
  border-radius: 999px;

  display:flex;
  align-items:center;
  gap: 10px;

  background: rgba(255,255,255,.78);
  border: 1px solid rgba(27,24,22,.12);
  box-shadow: 0 14px 34px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.75);
}
.fleet-search-sticky{
 padding: 0 16px;
}
.fleet-sticky .fleet-search-sticky i{
  color: rgba(27,24,22,.55);
  font-size: 14px;
}

.fleet-sticky .fleet-search-sticky input{
  width:100%;
  min-width: 0;
  border:none;
  outline:none;
  background:transparent;

  color: rgba(27,24,22,.88);
  font-size: .98rem;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}


/* =====================================================
   FLEET PAGE — HERO (match index hero feel)
===================================================== */
.fleet-hero{
  position: relative;
  margin-top: 72px;
  min-height: 88vh;

  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background: url("../images/452.jpg") center/cover no-repeat;
  overflow: hidden;
}

.fleet-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(850px 500px at 50% 42%, rgba(0,0,0,.65) 0%, rgba(0,0,0,.42) 55%, rgba(0,0,0,0) 75%),
    linear-gradient(180deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.78) 100%);
}

.fleet-hero-inner{
  position: relative;
  z-index: 1;

  min-height: calc(88vh - 68px);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;

  padding: 80px 18px 64px;

  max-width: 1100px;
  margin: 0 auto;
}

.fleet-hero-inner::before{
  content:"";
  position:absolute;
  inset: -40px -80px;
  background: radial-gradient(560px 280px at 50% 44%, rgba(0,0,0,.68) 0%, rgba(0,0,0,.40) 45%, rgba(0,0,0,0) 75%);
  z-index: -1;
  pointer-events:none;
}

/* eyebrow reuse */
.fleet-hero .hero-eyebrow{
  font-family: 'Cinzel', serif;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(233, 212, 168, .92);
  margin-bottom: 18px;
}

.fleet-hero-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 5.6rem;
  line-height: .90;
  letter-spacing: .03em;
  margin: 0 0 16px;
  color: rgba(255,255,255,.96);
  text-shadow: 0 26px 80px rgba(0,0,0,.55);
}

.fleet-hero-title .accent{
  color: rgba(233,212,168,.96);
}

.fleet-hero-sub{
  max-width: 760px;
  font-size: 1.12rem;
  line-height: 1.85;
  color: rgba(255,255,255,.84);
  text-shadow: 0 16px 40px rgba(0,0,0,.45);
  margin: 0 0 26px;
}

/* =====================================================
   FLEET HERO FLOATBAR
===================================================== */
.fleet-floatbar-wrap{
  width: 100%;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.fleet-floatbar{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 10px;
  border-radius: 999px;

  background: rgba(255,255,255,.78);
  border: 1px solid rgba(27,24,22,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* search pill */
.fleet-floatbar .fleet-float-search{
  flex: 1 1 auto;
  min-width: 0;
  height: 50px;

  display:flex;
  align-items:center;
  gap: 10px;

  padding: 0 18px;
  border-radius: 999px;

  background: rgba(251,247,239,.92);
  border: 1px solid rgba(27,24,22,.12);
}

.fleet-floatbar .fleet-float-search i{
  color: rgba(27,24,22,.55);
  font-size: 14px;
}

.fleet-floatbar .fleet-float-search input{
  width: 100%;
  min-width: 0;
  border:none;
  outline:none;
  background:transparent;
  color: rgba(27,24,22,.88);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
}

.fleet-floatbar .fleet-float-search input::placeholder{
  color: rgba(27,24,22,.45);
}

.fleet-floatbar .fleet-float-search:focus-within{
  border-color: rgba(214,183,122,.85);
  box-shadow: 0 0 0 6px rgba(214,183,122,.16), inset 0 1px 0 rgba(255,255,255,.65);
}

/* filter button */
.fleet-floatbar .fleet-filter-btn{
  height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  white-space: nowrap;

  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.fleet-floatbar .fleet-filter-btn i{
  margin-right: 8px;
}

/* =====================================================
   RESPONSIVE — FLEET HERO
===================================================== */

/* <= 1024px */
@media (max-width: 1024px){
  .fleet-hero{
    margin-top: 68px;
    min-height: 84vh;
  }

  .fleet-hero-inner{
    min-height: calc(84vh - 68px);
    padding: 76px 18px 58px;
    max-width: 980px;
  }

  .fleet-hero-title{
    font-size: clamp(3.7rem, 6.6vw, 5.2rem);
    line-height: .94;
  }

  .fleet-hero-sub{
    max-width: 680px;
    font-size: 1.06rem;
  }

  .fleet-floatbar{
    max-width: 820px;
  }
}

/* <= 600px */
@media (max-width: 600px){
  /* avoid 100vw overflow quirks */
  .fleet-hero{
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;

    margin-top: 58px;
    min-height: 88svh;
  }

  .fleet-hero-inner{
    min-height: calc(88svh - 58px);
    padding: 72px 18px 54px;
    max-width: 680px;
  }

  .fleet-hero .hero-eyebrow{
    font-size: 11px;
    letter-spacing: .30em;
    margin-bottom: 16px;
  }

  .fleet-hero-title{
    font-size: clamp(3.0rem, 12vw, 4.1rem);
    line-height: .93;
    margin-bottom: 12px;
  }

  .fleet-hero-sub{
    max-width: 36ch;
    font-size: 1.02rem;
    line-height: 1.78;
    margin-bottom: 22px;
  }

  /* floatbar stack */
  .fleet-floatbar{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
  }

  .fleet-floatbar .fleet-float-search{
    height: 50px;
  }

  .fleet-floatbar .fleet-filter-btn{
  width: 100%;
  height: 50px;

  /* ✅ THIS IS THE MAGIC */
  flex: 0 0 50px;      /* jangan bagi dia shrink */
  display: flex;
  align-items: center;
  justify-content: center;
}

}

/* <= 360px */
@media (max-width: 360px){
  .fleet-hero-title{
    font-size: clamp(2.7rem, 12.8vw, 3.6rem);
  }
}

/* =========================
   FLEET PAGE SECTION (RESULTS)
========================= */
.fleet-page{
  background: linear-gradient(180deg, rgba(251,247,239,1) 0%, rgba(251,247,239,1) 45%, rgba(243,235,222,1) 100%);
  padding: 70px 0 120px;
  border-top: 1px solid rgba(27,24,22,.06);
}

/* meta row */
.fleet-results-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;

  padding: 14px 0 16px;              /* ikut container (no extra left/right) */
  border-bottom: 1px solid rgba(27,24,22,.08);
  margin-bottom: 10px;
}

.fleet-count{
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(27,24,22,.72);
}

.fleet-clear{
  border: 1px solid rgba(27,24,22,.14);
  background: rgba(214,183,122,.18);
  color: rgba(27,24,22,.88);

  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;

  padding: 9px 14px;
  border-radius: 999px;
  cursor:pointer;

  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.fleet-clear:hover{
  background: rgba(214,183,122,.28);
  border-color: rgba(214,183,122,.35);
  transform: translateY(-1px);
}

/* grid */
.fleet-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fleet-card{ min-width: unset; }

/* =========================
   RESPONSIVE — FLEET GRID
========================= */

/* <= 1024px: 2 columns */
@media (max-width: 1024px){
  .fleet-page{
    padding: 56px 0 96px;
  }

  .fleet-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* <= 600px: 1 column + meta stack */
@media (max-width: 600px){
  .fleet-page{
    padding: 44px 0 80px;
  }

  .fleet-results-meta{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0 14px;
  }

  .fleet-clear{
    width: 100%;
    text-align: center;
    padding: 10px 14px;
  }

  .fleet-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* =========================
   RESPONSIVE — FLEET GRID (ALL DEVICES)
========================= */

/* big desktop */
@media (min-width: 1281px){
  .fleet-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

/* laptop / desktop kecil */
@media (max-width: 1280px){
  .fleet-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

/* tablet landscape */
@media (max-width: 1024px){
  .fleet-page{
    padding: 56px 0 96px;
  }

  .fleet-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* tablet/phone */
@media (max-width: 768px){
  .fleet-grid{
    gap: 16px;
  }
}

/* phone: 1 column + center + max width */
@media (max-width: 600px){
  .fleet-page{
    padding: 44px 0 80px;
  }

  .fleet-results-meta{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0 14px;
  }

  .fleet-clear{
    width: 100%;
    text-align: center;
    padding: 10px 14px;
  }

  .fleet-grid{
    grid-template-columns: 1fr;
    justify-items: center;          /* ✅ center card */
    gap: 14px;
  }

  .fleet-card{
    width: 100%;
    max-width: 520px;               /* ✅ premium width */
  }
}

/* very small phones */
@media (max-width: 360px){
  .fleet-card{
    max-width: 100%;
  }
}


/* =====================================================
   FILTER DRAWER (Luxury) - FULL + FIX CLICK PILLS
===================================================== */

/* overlay */
.filter-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;

  /* ✅ fix: layering + click */
  z-index: 9998;
  pointer-events: auto;
}
.filter-overlay.active{ display:block; }

/* drawer */
.filter-drawer{
  position: fixed;
  top: 0px;
  right: -460px;
  width: 410px;
  max-width: calc(100vw - 32px);
  height: calc(100vh - 32px);

  border-radius: 26px;
  overflow: hidden;

  background:
    radial-gradient(880px 360px at 20% 0%, rgba(255,242,207,.55) 0%, rgba(255,242,207,0) 62%),
    linear-gradient(180deg, rgba(251,247,239,.98) 0%, rgba(244,236,223,.95) 100%);

  border: 1px solid rgba(27,24,22,.10);
  box-shadow: -18px 18px 80px rgba(0,0,0,.18);

  display:flex;
  flex-direction:column;
  transition: right .35s ease;

  /* ✅ fix: on top + clickable */
  z-index: 9999;
  pointer-events: auto;
}
.filter-drawer.active{ right: 0; }

/* ✅ force all inside clickable (fix “pill tak jalan”) */
.filter-drawer,
.filter-drawer *{
  pointer-events: auto;
}

.filter-head{
  padding: 18px 18px 14px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;

  background:
    radial-gradient(720px 260px at 10% 0%, rgba(255,242,207,.45) 0%, rgba(255,242,207,0) 70%),
    linear-gradient(180deg, rgba(251,247,239,.96) 0%, rgba(244,236,223,.92) 100%);

  border-bottom: 1px solid rgba(27,24,22,.08);
}

.filter-title .eyebrow.dark{
  display:inline-block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(27,24,22,.58);
}

.filter-title h3{
  margin: 8px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.05rem;
  letter-spacing: .01em;
  color: rgba(27,24,22,.92);
}

.close-filter{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(27,24,22,.12);
  background: rgba(255,255,255,.72);
  color: rgba(27,24,22,.78);
  font-size: 26px;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.close-filter:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}
.close-filter:active{ transform: translateY(0) scale(.99); }

.filter-body{
  padding: 14px 18px 18px;
  overflow:auto;
}

.filter-section{ margin-bottom: 14px; }

.filter-label{
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(27,24,22,.62);
  margin: 6px 0 10px;
}

.filter-divider{
  height: 1px;
  background: linear-gradient(90deg,
    rgba(214,183,122,0) 0%,
    rgba(214,183,122,.42) 22%,
    rgba(214,183,122,.42) 78%,
    rgba(214,183,122,0) 100%);
  margin: 14px 0;
  opacity:.9;
}

/* theme tokens */
:root{
  --fd-bg: rgba(251,247,239,.92);
  --fd-border: rgba(27,24,22,.14);
  --fd-text: rgba(27,24,22,.84);
}

/* price range */
.price-range{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items:end;
}
.pr-dash{
  padding-bottom: 12px;
  color: rgba(27,24,22,.45);
  font-weight: 600;
}
.pr-field label{
  display:block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(27,24,22,.55);
  margin-bottom: 8px;
}
.pr-field input{
  width:100%;
  height: 48px;
  border-radius: 16px;
  padding: 0 14px;
  background: var(--fd-bg);
  color: var(--fd-text);
  border: 1px solid var(--fd-border);
  outline:none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.pr-field input:focus{
  border-color: rgba(214,183,122,.85);
  box-shadow: 0 0 0 6px rgba(214,183,122,.20);
  transform: translateY(-1px);
}

/* pills */
.filter-pills{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.pill{
  appearance: none;
  border: 1px solid var(--fd-border);
  background: var(--fd-bg);
  color: rgba(27,24,22,.74);
  padding: 10px 14px;
  border-radius: 999px;

  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .01em;

  cursor:pointer;
  user-select:none;

  box-shadow: inset 0 1px 0 rgba(255,255,255,.70);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.pill:hover{
  transform: translateY(-1px);
  border-color: rgba(214,183,122,.55);
  box-shadow: 0 12px 24px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.80);
}
.pill.active{
  background: rgba(27,24,22,.92);
  color: rgba(251,247,239,.96);
  border-color: rgba(27,24,22,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}

/* select */
.filter-sort-select{
  width:100%;
  height: 48px;
  border-radius: 16px;
  padding: 0 48px 0 14px;
  background: var(--fd-bg);
  color: var(--fd-text);
  border: 1px solid var(--fd-border);
  outline:none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.70);

  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .01em;

  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  background-image:
    linear-gradient(45deg, transparent 50%, rgba(27,24,22,.55) 50%),
    linear-gradient(135deg, rgba(27,24,22,.55) 50%, transparent 50%),
    linear-gradient(to right, rgba(27,24,22,.10), rgba(27,24,22,0));
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    calc(100% - 44px) 50%;
  background-size:
    6px 6px,
    6px 6px,
    1px 22px;
  background-repeat:no-repeat;

  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.filter-sort-select:focus{
  border-color: rgba(214,183,122,.85);
  box-shadow: 0 0 0 6px rgba(214,183,122,.20);
  transform: translateY(-1px);
}

/* footer buttons */
.filter-foot{
  margin-top:auto;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(27,24,22,.08);
  background: rgba(251,247,239,.96);
  display:grid;
  gap: 10px;
}

/* scrollbar */
.filter-body::-webkit-scrollbar{ width: 10px; }
.filter-body::-webkit-scrollbar-track{ background: transparent; }
.filter-body::-webkit-scrollbar-thumb{
  background: rgba(27,24,22,.10);
  border: 1px solid rgba(214,183,122,.22);
  border-radius: 999px;
}
.filter-body::-webkit-scrollbar-thumb:hover{
  background: rgba(27,24,22,.14);
}

/* ===== HARD FIX: overlay sidebar jangan kacau filter ===== */
.overlay{
  pointer-events: none;           /* default jangan block click */
}
.overlay.active{
  pointer-events: auto;           /* hanya bila sidebar betul-betul open */
}

/* bila filter overlay aktif, pastikan dia paling atas */
.filter-overlay{ z-index: 99998 !important; }
.filter-drawer{ z-index: 99999 !important; }

/* =====================================================
   RESPONSIVE — FILTER DRAWER (RIGHT, FULL ON PHONE)
===================================================== */

/* <= 1024px */
@media (max-width: 1024px){
  .filter-drawer{
    width: 380px;
    right: -430px;
    height: calc(100vh - 24px);
    max-width: calc(100vw - 24px);
    border-radius: 24px;
  }

  .filter-title h3{ font-size: 1.95rem; }
}

/* <= 768px */
@media (max-width: 768px){
  .filter-drawer{
    width: 360px;
    right: -410px;
    height: calc(100vh - 20px);
    max-width: calc(100vw - 20px);
    border-radius: 22px;
  }

  .filter-head{ padding: 16px 16px 12px; }
  .filter-body{ padding: 12px 16px 16px; }
  .filter-foot{ padding: 12px 16px 16px; }

  .filter-title h3{ font-size: 1.85rem; }

  .filter-sort-select{ height: 46px; border-radius: 14px; }
  .pr-field input{ height: 46px; border-radius: 14px; }

  .pill{ padding: 10px 12px; }
}

/* <= 600px (PHONE: full screen, still from RIGHT) */
@media (max-width: 600px){
  .filter-drawer{
    top: 0;
    right: -100%;
    left: auto;

    width: 100vw;
    max-width: 100vw;
    height: 100vh;

    border-radius: 0;
    box-shadow: -18px 0 80px rgba(0,0,0,.22);
  }

  .filter-drawer.active{
    right: 0;
  }

  .filter-head{
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 16px 18px 12px;
  }

  .filter-body{
    padding: 12px 18px 18px;
  }

  .filter-foot{
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding: 12px 18px 18px;
  }

  /* bigger tap targets */
  .filter-pills{ gap: 8px; }
  .pill{ padding: 11px 14px; }

  /* price range stack for small width */
  .price-range{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pr-dash{ display:none; }
}

/* <= 360px */
@media (max-width: 360px){
  .filter-title h3{ font-size: 1.65rem; }
  .pill{ padding: 10px 12px; }
}



/* =========================
   SERVICE CARD: replace specs pills with description
========================= */
.service-card .service-desc{
  margin-top: 6px;
  font-size: .98rem;
  line-height: 1.55;
  color: rgba(27,24,22,.70);

  display: -webkit-box;
  -webkit-line-clamp: 2;          /* 2 line max */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em; /* 2 lines × line-height */
}
.service-desc {
  overflow: hidden;
  line-height: 1.4;
  max-height: 2.8em;
}



/* optional: different hero bg for services (still same class) */
.service-hero{
  background: url("../images/200.jpg") center/cover no-repeat;
}

/* =========================================================
   PROFILE / SETTINGS (Luxury) - CLEAN VERSION
========================================================= */

.profile-wrap{
  margin-top: 84px;
  padding: 70px 0 120px;
  background: linear-gradient(180deg,
    rgba(247,242,232,1) 0%,
    rgba(243,235,222,1) 55%,
    rgba(234,220,199,1) 100%);
  border-top: 1px solid rgba(27,24,22,.06);
}

.profile-head{
  text-align: left;
  margin-bottom: 22px;
}

.profile-title{
  font-size: 2.85rem;
  line-height: 1.05;
  margin: 6px 0 10px;
  color: rgba(27,24,22,.94);
  text-shadow: 0 1px 0 rgba(233,215,176,.35);
  letter-spacing: -0.01em;
}

.profile-sub{
  max-width: 760px;
  color: rgba(27,24,22,.68);
  font-size: 1.05rem;
}

.profile-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}

.profile-col{
  display:grid;
  gap: 16px;
}

/* =========================================================
   RESPONSIVE — PROFILE / SETTINGS (ALL DEVICES)
========================================================= */

/* <= 1024px */
@media (max-width: 1024px){
  .profile-wrap{
    margin-top: 74px;
    padding: 56px 0 96px;
  }

  .profile-title{
    font-size: clamp(2.1rem, 4.2vw, 2.6rem);
  }

  .profile-sub{
    font-size: 1.0rem;
  }

  .profile-grid{
    gap: 16px;
  }
}

/* <= 900px (switch to single column sooner for comfort) */
@media (max-width: 900px){
  .profile-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* <= 600px */
@media (max-width: 600px){
  .profile-wrap{
    margin-top: 62px;          /* ikut topbar mobile */
    padding: 44px 0 78px;
  }

  .profile-head{
    margin-bottom: 16px;
  }

  .profile-title{
    font-size: clamp(1.85rem, 7.2vw, 2.25rem);
    line-height: 1.08;
  }

  .profile-sub{
    font-size: .98rem;
    line-height: 1.75;
  }

  .profile-col{
    gap: 14px;
  }
}

/* <= 360px */
@media (max-width: 360px){
  .profile-title{
    font-size: 1.75rem;
  }
}

/* =========================
   SETTINGS CARD
========================= */
.set-card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(27,24,22,.08);
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  overflow: hidden;
}

.set-top{
  padding: 22px 22px 16px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(27,24,22,.08);
  background: radial-gradient(820px 260px at 20% 0%, rgba(255,242,207,.50) 0%, rgba(255,242,207,0) 60%),
              linear-gradient(180deg, rgba(251,247,239,.96) 0%, rgba(244,236,223,.92) 100%);
}

.set-label{
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(27,24,22,.58);
  margin-bottom: 6px;
}

.set-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.05rem;
  color: rgba(27,24,22,.92);
  line-height: 1.05;
}

.set-chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(27,24,22,.92);
  color: rgba(251,247,239,.96);
  border: 1px solid rgba(27,24,22,.12);
  font-family:'Cinzel',serif;
  font-size: 10px;
  letter-spacing:.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.set-chip.soft{
  background: rgba(214,183,122,.16);
  color: rgba(27,24,22,.86);
  border-color: rgba(214,183,122,.28);
}

.set-body{
  padding: 18px 22px 22px;
}

.set-row{
  margin-bottom: 12px;
}
.set-row label{
  display:block;
  font-family:'Cinzel',serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(27,24,22,.72);
  margin-bottom: 8px;
}

.set-row input{
  width:100%;
  height: 48px;
  border-radius: 16px;
  padding: 0 14px;
  background: rgba(251,247,239,.92);
  color: rgba(27,24,22,.88);
  border: 1px solid rgba(27,24,22,.14);
  outline:none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.set-row input:focus{
  border-color: rgba(214,183,122,.80);
  box-shadow: 0 0 0 6px rgba(214,183,122,.18);
  transform: translateY(-1px);
}

.is-readonly{
  opacity: .92;
  cursor: not-allowed;
  background: rgba(251,247,239,.70);
}

.set-inline{
  display:flex;
  gap: 10px;
  align-items:center;
}

.set-mini{
  height: 48px;
  padding: 0 16px;
  font-size: 11px;
  letter-spacing: .18em;
  white-space: nowrap;
  border-radius: 999px;
}

.set-note{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(27,24,22,.60);
}

/* ✅ ONE set-alert only */
.set-alert{
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: .95rem;
  font-weight: 700;
  display:none;
  border: 1px solid rgba(27,24,22,.10);
  background: rgba(27,24,22,.04);
  color: rgba(27,24,22,.85);
}
.set-alert.ok{
  display:block;
  background: rgba(30, 120, 70, 0.10);
  border-color: rgba(30, 120, 70, 0.30);
  color: rgba(20, 90, 55, 0.95);
}
.set-alert.err{
  display:block;
  background: rgba(160, 40, 40, 0.08);
  border-color: rgba(160, 40, 40, 0.35);
  color: rgba(120, 20, 20, 0.95);
}

/* =========================================================
   RESPONSIVE — SETTINGS CARD
========================================================= */

/* <= 1024px */
@media (max-width: 1024px){
  .set-top{
    padding: 18px 18px 14px;
  }
  .set-body{
    padding: 16px 18px 18px;
  }

  .set-title{
    font-size: clamp(1.65rem, 3.2vw, 1.95rem);
  }

  .set-note{
    font-size: 12.5px;
  }
}

/* <= 900px (tablet portrait sweet spot) */
@media (max-width: 900px){
  .set-top{
    padding: 16px 16px 12px;
  }

  .set-body{
    padding: 14px 16px 16px;
  }

  .set-title{
    font-size: 1.8rem;
    line-height: 1.08;
  }

  .set-chip{
    padding: 8px 10px;
    font-size: 9.5px;
  }

  .set-row input{
    height: 46px;
  }

  .set-mini{
    height: 46px;
  }

  .set-note{
    font-size: 12.5px;
  }
}

/* <= 600px */
@media (max-width: 600px){
  .set-card{
    border-radius: 22px;
  }

  .set-top{
    padding: 16px 16px 12px;
    gap: 10px;
  }

  .set-label{
    font-size: 10px;
    letter-spacing: .24em;
  }

  .set-title{
    font-size: 1.7rem;
    line-height: 1.08;
  }

  .set-chip{
    padding: 8px 10px;
    font-size: 9.5px;
  }

  .set-body{
    padding: 14px 16px 16px;
  }

  .set-row label{
    font-size: 10.5px;
    letter-spacing: .20em;
  }

  .set-row input{
    height: 46px;
    border-radius: 14px;
  }

  .set-mini{
    height: 46px;
    padding: 0 14px;
    font-size: 10px;
  }

  /* IMPORTANT: prevent overflow input+button */
  .set-inline{
    flex-wrap: wrap;
    gap: 10px;
  }

  .set-inline input{
    flex: 1 1 100%;
    min-width: 0;
  }

  .set-inline .set-mini{
    width: 100%;
  }

  .set-note{
    font-size: 12px;
    line-height: 1.6;
  }
}

/* <= 360px */
@media (max-width: 360px){
  .set-title{ font-size: 1.55rem; }
  .set-row input{ height: 44px; }
  .set-mini{ height: 44px; }
}


/* =========================
   TABS
========================= */
.tabs{
  display:flex;
  gap: 10px;
  margin-bottom: 14px;
}

.tab{
  flex: 1;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(27,24,22,.12);
  background: rgba(251,247,239,.85);
  cursor:pointer;

  font-family:'Cinzel',serif;
  font-size: 11px;
  letter-spacing:.18em;
  text-transform: uppercase;
  color: rgba(27,24,22,.78);

  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

.tab.active{
  background: rgba(27,24,22,.92);
  color: rgba(251,247,239,.96);
  border-color: rgba(27,24,22,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}
.phone-row{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.tab-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 28px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(214,183,122,.20);
  border: 1px solid rgba(214,183,122,.30);
  color: rgba(27,24,22,.88);
  font-weight: 900;
  letter-spacing: .08em;
}
.tab.active .tab-badge{
  background: rgba(233,212,168,.18);
  border-color: rgba(233,212,168,.26);
  color: rgba(251,247,239,.96);
}

.tab-panel{ display:none; }
.tab-panel.active{ display:block; }

/* =========================
   BOOKING CARD
========================= */
.bk-card{
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(27,24,22,.08);
  border-radius: 22px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.07);
  margin-bottom: 12px;
}

.bk-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.bk-ref{
  font-family:'Cinzel',serif;
  font-size: 11px;
  letter-spacing:.18em;
  text-transform: uppercase;
  color: rgba(27,24,22,.82);
  opacity: .78;
}

.bk-status{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(27,24,22,.06);
  border: 1px solid rgba(27,24,22,.10);
  color: rgba(27,24,22,.78);
  font-family:'Cinzel',serif;
  font-size: 10px;
  letter-spacing:.16em;
  text-transform: uppercase;
}
.bk-status.on{
  background: rgba(214,183,122,.18);
  border-color: rgba(214,183,122,.28);
  color: rgba(27,24,22,.86);
}

.bk-mid{
  display:grid;
  gap: 6px;
}

.bk-type{
  font-family:'Cormorant Garamond',serif;
  font-size: 1.35rem;
  color: rgba(27,24,22,.92);
  font-weight: 700;
}

.bk-dt{
  color: rgba(27,24,22,.66);
  font-size: .98rem;
}
.bk-dt strong{
  font-family:'Cinzel',serif;
  font-size: 10px;
  letter-spacing:.18em;
  text-transform: uppercase;
  color: rgba(27,24,22,.62);
}

.bk-foot{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(27,24,22,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.bk-amt{
  font-weight: 900;
  color: rgba(96,20,28,.92);
  letter-spacing: .02em;
  font-size: 1.05rem;
}

.empty{
  padding: 22px 10px;
  text-align:center;
  color: rgba(27,24,22,.64);
  display:grid;
  gap: 8px;
}
.empty i{
  font-size: 24px;
  color: rgba(214,183,122,.95);
}
.bk-top-actions{
  display:flex;
  align-items:center;
  gap:10px;
}


.bk-viewall{
  height: 38px;
  padding: 0 14px;
  font-size: 10px;
  letter-spacing: .18em;
}


/* Modal small helper */
.modal-small{ width: min(720px, 96vw); }
.modal-one{
  display:block !important;
  grid-template-columns: 1fr !important;
}
/* PHONE ROW - make select match input style */
.phone-row{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.phone-row select,
.phone-row input{
  height: 48px;
  border-radius: 16px;
  background: rgba(251,247,239,.92);
  border: 1px solid rgba(27,24,22,.14);
  color: rgba(27,24,22,.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.phone-row select{
  padding: 0 44px 0 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* custom dropdown arrow */
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(27,24,22,.55) 50%),
    linear-gradient(135deg, rgba(27,24,22,.55) 50%, transparent 50%),
    linear-gradient(to right, rgba(27,24,22,.10), rgba(27,24,22,0));
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    calc(100% - 44px) 50%;
  background-size:
    6px 6px,
    6px 6px,
    1px 22px;
  background-repeat: no-repeat;
}

.phone-row select:focus,
.phone-row input:focus{
  outline: none;
  border-color: rgba(214,183,122,.80);
  box-shadow: 0 0 0 6px rgba(214,183,122,.18);
  transform: translateY(-1px);
}

@media (max-width: 900px){

  /* Tabs jadi compact */
  .tabs{
    gap: 8px;
    margin-bottom: 12px;
  }
  .tab{
    height: 44px;
    font-size: 10.5px;
    letter-spacing: .16em;
    gap: 8px;
  }
  .tab-badge{
    min-width: 26px;
    height: 26px;
    padding: 0 9px;
  }

  /* Booking cards compact */
  .bk-card{
    padding: 12px 12px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  .bk-ref{
    font-size: 10.5px;
  }
  .bk-status{
    padding: 6px 10px;
    font-size: 9.5px;
  }
  .bk-type{
    font-size: 1.25rem;
  }
  .bk-dt{
    font-size: .95rem;
  }
  .bk-foot{
    margin-top: 10px;
    padding-top: 10px;
  }
  .bk-amt{
    font-size: 1.0rem;
  }

  /* View all button */
  .bk-viewall{
    height: 36px;
    padding: 0 12px;
    font-size: 9.5px;
  }
}
@media (max-width: 600px){

  /* Tabs: allow wrap */
  .tabs{
    flex-wrap: wrap;
    gap: 10px;
  }
  .tab{
    flex: 1 1 100%;
    height: 46px;
    justify-content: center;
  }

  /* Phone row: stack (select atas, input bawah) */
  .phone-row{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .phone-row select,
  .phone-row input{
    width: 100%;
  }

  /* Booking card layout */
  .bk-top{
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
  }
  .bk-status{
    margin-left: auto; /* stay right when possible */
  }
  .bk-foot{
    flex-wrap: wrap;
    gap: 10px;
  }
  .bk-amt{
    width: 100%;
    text-align: left;
  }

  /* Empty state */
  .empty{
    padding: 18px 8px;
  }
}
@media (max-width: 360px){
  .bk-type{ font-size: 1.18rem; }
  .bk-dt{ font-size: .92rem; }
  .tab{ font-size: 10px; letter-spacing: .14em; }
}


/* =========================
   MOTION
========================= */
.scroll-animate{
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity .62s ease-in-out,
    transform .62s cubic-bezier(.25, .8, .25, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.scroll-animate.active{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fade-up{ transform: translate3d(0, 16px, 0); }
.fade-up.active{ transform: translate3d(0,0,0); }

@media (prefers-reduced-motion: reduce){
  .scroll-animate{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}



/* =========================
   LUXURY MOTION (SMOOTH + NOT SLOW)
========================= */
.scroll-animate{
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity .62s ease-in-out,
    transform .62s cubic-bezier(.25, .8, .25, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.scroll-animate.active{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Optional variants (jarak kecil supaya tak tajam) */
.fade-up    { transform: translate3d(0, 16px, 0); }
.fade-left  { transform: translate3d(16px, 0, 0); }
.fade-right { transform: translate3d(-16px, 0, 0); }
.zoom-in    { transform: translate3d(0, 10px, 0) scale(.985); }

.fade-up.active,
.fade-left.active,
.fade-right.active,
.zoom-in.active{
  transform: translate3d(0,0,0) scale(1);
}

/* =========================
   HERO INTRO (SUBTLE)
========================= */
.hero .hero-eyebrow,
.hero .hero-title,
.hero .hero-sub,
.hero .hero-actions{
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity .75s ease-in-out,
    transform .75s cubic-bezier(.25,.8,.25,1);
  will-change: transform, opacity;
}

body.is-ready .hero .hero-eyebrow{ transition-delay: 120ms; opacity:1; transform:none; }
body.is-ready .hero .hero-title  { transition-delay: 220ms; opacity:1; transform:none; }
body.is-ready .hero .hero-sub    { transition-delay: 340ms; opacity:1; transform:none; }
body.is-ready .hero .hero-actions{ transition-delay: 460ms; opacity:1; transform:none; }

/* Reduce Motion */
@media (prefers-reduced-motion: reduce){
  .scroll-animate,
  .hero .hero-eyebrow,
  .hero .hero-title,
  .hero .hero-sub,
  .hero .hero-actions{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   GLOBAL HEADING SCALE (mobile/tablet)
   Applies to: about, fleet, services, why
   ========================================================= */

/* tablet */
@media (max-width: 1024px){
  .about-text h2,
  .fleet-head h2,
  .services-head h2,
  .why-head h2,
  .contact-text h2{
    font-size: clamp(2.35rem, 4.4vw, 2.9rem);
    line-height: 1.08;
  }
}

/* phone */
@media (max-width: 600px){
  .about-text h2,
  .fleet-head h2,
  .services-head h2,
  .why-head h2,
  .contact-text h2{
    font-size: clamp(2.05rem, 9vw, 2.6rem);
    line-height: 1.10;
  }
}

/* very small phones */
@media (max-width: 360px){
  .about-text h2,
  .fleet-head h2,
  .services-head h2,
  .why-head h2,
  .contact-text h2{
    font-size: clamp(1.9rem, 10vw, 2.3rem);
  }
}

/* =========================================================
   GLOBAL MOBILE RHYTHM (applies to ALL sections)
   ========================================================= */
@media (max-width: 600px){
  .container{
    padding-left: 34px;
    padding-right: 34px;
  }

  section{
    padding-left: 0;
    padding-right: 0;
  }

}

@media (max-width: 1024px){
  .container{
    padding-left: 34px;
    padding-right: 34px;
  }

  section{
    padding-left: 0;
    padding-right: 0;
  }

}
@media (max-width: 900px){
  .container{
    padding-left: 34px;
    padding-right: 34px;
  }

  section{
    padding-left: 0;
    padding-right: 0;
  }

}
@media (max-width: 360px){
  .container{
    padding-left: 34px;
    padding-right: 34px;
  }

  section{
    padding-left: 0;
    padding-right: 0;
  }

}

@media (max-width: 900px){
  /* always show text on mobile */
  .nav-pill .hide-sm{ display: inline !important; }

  /* and hide the icon */
  .nav-pill i{ display: none !important; }
}
