:root{
  --blue:#0D5CFF;
  --orange:#FF7A00;
  --bg:#ffffff;
  --muted:#6B7280;
  --light:#F3F6FF;
  --light2:#EEF2FF;
  --card:#ffffff;
  --nav-h-mobile:56px;
  --nav-h-desktop:64px;
  --shadow:0 10px 30px rgba(13,92,255,.10);
  --shadow-sm:0 6px 18px rgba(16,24,40,.08);
  --radius-xl:18px;
  --radius-lg:14px;
  --radius-md:12px;
  --radius-sm:10px;
  --container:1200px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:#0f172a;
  background:linear-gradient(180deg, #ffffff 0%, #F8FAFF 100%);
}

a{color:inherit; text-decoration:none;}
button{font-family:inherit;}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

/* Navbar */
.navbar{
  position:fixed;

  /* role gating: default admin controls hidden */
  --admin-visibility: 0;

  top:0; left:0; right:0;
  height:var(--nav-h-mobile);
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(13,92,255,.08);
  z-index:50;
}
.nav-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}
.brand-mark{
  color:var(--blue);
  font-size:18px;
}
.brand-text{
  font-family:Poppins, Inter, sans-serif;
  letter-spacing:.2px;
}
.nav-links{
  display:none;
  gap:22px;
  align-items:center;
}
.nav-link{
  font-size:14px;
  color:rgba(15,23,42,.85);
  font-weight:500;
  transition:color .2s ease;
}
.nav-link:hover{color:var(--blue);}

.nav-cta{display:none;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:10px;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
  font-weight:600;
  font-size:14px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.btn:active{transform:translateY(1px);}
.btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 12px 26px rgba(13,92,255,.25);
}
.btn-primary:hover{filter:brightness(1.03);}

.btn-cta{
  background:var(--orange);
  color:#fff;
  box-shadow:0 12px 26px rgba(255,122,0,.22);
}
.btn-cta:hover{filter:brightness(1.02);}

.btn-secondary{
  background:#fff;
  border:1px solid rgba(13,92,255,.18);
  color:var(--blue);
}
.btn-secondary:hover{
  border-color:rgba(13,92,255,.35);
  box-shadow:var(--shadow-sm);
}

.btn-danger{
  background:#dc3545;
  color:#fff;
  box-shadow:0 12px 26px rgba(220,53,69,.25);
}
.btn-danger:hover{filter:brightness(1.03);}

.btn-login{
  background:#fff;
  color:var(--blue);
  border:1px solid var(--blue);
}

.btn-login:hover{
  background:var(--blue);
  color:#fff;
}

.btn-link{
  padding:0;
  border:none;
  border-radius:0;
  background:transparent;
  color:var(--blue);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
}

.btn-sm{padding:10px 12px; font-size:13px;}
.btn-lg{padding:14px 18px; font-size:15px; border-radius:12px;}
.btn-full{width:100%;}

.nav-toggle{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(13,92,255,.16);
  background:#fff;
  display:inline-flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}
.nav-toggle span{
  display:block;
  height:2px;
  width:18px;
  margin:0 auto;
  background:rgba(13,92,255,.85);
  border-radius:10px;
}

.mobile-menu{
  position:fixed;
  left:0; right:0;
  top:calc(var(--nav-h-mobile) - 6px);
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(13,92,255,.10);
  transform:translateY(-110%);
  transition:transform .22s ease;
  z-index:49;
}
.mobile-menu[data-open="true"],
.mobile-menu.open{transform:translateY(0);}
.mobile-menu-inner{
  padding:14px 20px 18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mobile-link{
  padding:10px 12px;
  border-radius:12px;
  font-weight:600;
  color:rgba(15,23,42,.85);
  border:1px solid rgba(13,92,255,.08);
  background:#fff;
}

/* Hero */
main{padding-top:var(--nav-h-mobile);}
.admin-navbar + main{padding-top:calc(var(--nav-h-mobile) + 18px);}

.hero{
  position:relative;
  width:100%;
  height:55vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  overflow:hidden;
  margin-bottom:-45px; /* Seamless transition */
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 40%, rgba(255,255,255,0.05) 80%, rgba(255,255,255,0.4) 100%);
  backdrop-filter:blur(1px);
  -webkit-backdrop-filter:blur(1px);
  z-index:1;
}
.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:600px;
  padding:0 20px;
}
.hero-badge{
  display:inline-block;
  padding:7px 14px;
  border-radius:20px;
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;
  font-weight:600;
  font-size:13px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
  margin-bottom:12px;
}
.hero-title{
  font-family:Poppins, Inter, sans-serif;
  font-weight:700;
  line-height:1.1;
  font-size:clamp(32px, 5vw, 48px);
  margin:0 0 16px;
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,0.3);
}
.hero-subtitle{
  margin:0 0 18px;
  color:rgba(255,255,255,0.95);
  font-size:1.05rem;
  line-height:1.55;
  max-width:480px;
  margin-left:auto;
  margin-right:auto;
}
.hero-actions .btn{
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.2);
  box-shadow:0 8px 32px rgba(0,0,0,0.1);
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hero-actions .btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 40px rgba(0,0,0,0.15);
}
.hero-actions .btn-primary{
  background:rgba(255,255,255,0.1);
  color:#fff;
}
.hero-actions .btn-primary:hover{
  background:rgba(255,255,255,0.2);
}
.hero-actions .btn-secondary{
  background:rgba(255,255,255,0.9);
  color:var(--blue);
}
.hero-actions .btn-secondary:hover{
  background:#fff;
}
.hero-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero{
    height:50vh;
  }
  .hero-content{
    padding:0 14px;
  }
  .hero-title{
    font-size:clamp(26px, 8vw, 38px);
  }
  .hero-subtitle{
    font-size:0.98rem;
  }
  .hero-actions{
    justify-content:center;
  }
  .hero-actions .btn{
    width:100%;
    max-width:200px;
  }
}

.placeholder-text{
  padding:16px 18px;
  border-radius:14px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(15,23,42,.08);
  color:rgba(15,23,42,.65);
  font-weight:800;
  text-align:center;
}
.placeholder-text.small{
  font-size:12px;
  padding:10px 12px;
}

/* Sections */
.section{padding:58px 0;}
.section-alt{background:linear-gradient(180deg, rgba(13,92,255,.03), rgba(13,92,255,.01));}

.section-head{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.page-hero{
  display:flex;
  align-items:center;
  padding:30px 0 24px;
}
.page-hero-card{
  margin:0 auto;
  padding:34px 30px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(13,92,255,.10), rgba(0,54,179,.05));
  box-shadow:0 22px 48px rgba(13,92,255,.08);
  max-width:780px;
}

.page-hero-banner{
  position:relative;
  display:flex;
  align-items:center;
  min-height:50vh;
  max-height:520px;
  padding:0;
  overflow:hidden;
  border-bottom-left-radius:32px;
  border-bottom-right-radius:32px;
}
.page-hero-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(10,25,60,.35) 35%, rgba(255,255,255,0) 62%),
    var(--page-hero-bg, url("https://images.unsplash.com/photo-1580587771525-78b9dba3b914?auto=format&fit=crop&w=1500&q=80"));
  background-size:cover;
  background-position:center;
  filter:contrast(1.02);
  z-index:1;
}
.page-hero-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(255,255,255,.92) 100%);
  pointer-events:none;
  z-index:2;
}
.page-hero-banner .hero-panel{
  position:relative;
  z-index:3;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100%;
}
.page-hero-banner .hero-copy{
  max-width:760px;
  width:100%;
  margin:0 auto;
  padding:56px 0 56px;
  text-align:center;
  position:relative;
  z-index:4;
}
.page-hero-banner .hero-copy.fade-in{
  opacity:1;
  transform:none;
}
.hero-eyebrow{
  margin:0 0 18px;
  color:rgba(13,92,255,.90);
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  font-weight:700;
}
.hero-title{
  margin:0;
  color:#fff;
  font-family:Poppins, Inter, sans-serif;
  font-weight:800;
  font-size:clamp(2.8rem, 5vw, 4.4rem);
  line-height:1.02;
  letter-spacing:-.04em;
  text-shadow:0 24px 60px rgba(0,0,0,.28);
}
.hero-subtitle{
  margin:18px auto 0;
  max-width:680px;
  color:rgba(255,255,255,.88);
  font-size:1.05rem;
  line-height:1.85;
}
.page-hero-banner + .section{
  padding-top:24px;
}

@media (max-width:900px) {
  .page-hero-banner{
    min-height:44vh;
    max-height:460px;
  }
  .page-hero-banner .hero-copy{
    padding:48px 0 42px;
  }
}

@media (max-width:640px) {
  .page-hero-banner{
    min-height:38vh;
    max-height:420px;
    border-bottom-left-radius:24px;
    border-bottom-right-radius:24px;
  }
  .page-hero-banner .hero-copy{
    padding:40px 0 36px;
  }
  .hero-title{
    font-size:clamp(2.2rem, 8vw, 3rem);
  }
}

.page-hero-card .section-title{
  font-size:36px;
}
.page-hero-card .section-subtitle{
  margin-top:12px;
  color:rgba(15,23,42,.75);
}
.section-title{
  font-family:Poppins, Inter, sans-serif;
  margin:0;
  font-size:26px;
  font-weight:700;
}
.section-subtitle{
  margin:0;
  color:rgba(15,23,42,.70);
  line-height:1.7;
  max-width:720px;
}
.section-intro{
  margin:8px 0 0;
  color:rgba(15,23,42,.65);
  line-height:1.6;
  font-size:15px;
  max-width:680px;
}
.section-head-actions{margin-top:12px;}

/* Cards */
.card-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
  position:relative;
  padding:6px 0 0;
}

.card-grid::before{
  content:'';
  position:absolute;
  top:-32px;
  right:-10%;
  width:320px;
  height:320px;
  background:radial-gradient(circle at top, rgba(13,92,255,.18), transparent 58%);
  filter:blur(32px);
  opacity:.55;
  pointer-events:none;
  z-index:0;
}

/* Card Styling */
.card{
  background:#FFFFFF;
  border:1px solid rgba(13,92,255,.08);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(13,92,255,.06);
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display:flex;
  flex-direction:column;
  position:relative;
  z-index:1;
}

.card:hover{
  border-color:rgba(13,92,255,.16);
  box-shadow:0 24px 60px rgba(13,92,255,.12);
  transform:translateY(-2px);
}

.card-image{
  width:100%;
  height:220px;
  background-color:#E0E7FF;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#888;
  font-size:14px;
  font-weight:600;
  overflow:hidden;
  position:relative;
}

.card-body{
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:14px;
  flex:1;
}

.card-badge{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:0;
}

.card-title{
  margin:0;
  font-size:20px;
  font-weight:700;
  color:#0F172A;
  line-height:1.3;
}

.card-desc{
  margin:0;
  color:rgba(15,23,42,.72);
  font-size:14px;
  line-height:1.6;
  flex:1;
}

.card-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding-top:8px;
  border-top:1px solid rgba(13,92,255,.08);
  margin-top:auto;
}

.meta-item{
  font-size:14px;
  font-weight:600;
  color:#0F172A;
}

.property-grid{
  margin-top:0px;
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

.pagination{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.pagination-btn,
.pagination-page{
  min-width:96px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(13,92,255,.18);
  background:#fff;
  color:var(--blue);
  font-weight:700;
  cursor:pointer;
  transition:background .2s ease, transform .15s ease, border-color .2s ease;
}

.pagination-btn:disabled,
.pagination-page[disabled]{
  opacity:.45;
  cursor:not-allowed;
}

.pagination-btn:hover:not(:disabled),
.pagination-page:hover:not(.pagination-page-active){
  background:rgba(13,92,255,.04);
}

.pagination-page-active{
  background:var(--blue);
  color:#fff;
  border-color:rgba(13,92,255,.35);
}

.empty-state{
  padding:40px 24px;
  border-radius:18px;
  background:rgba(13,92,255,.05);
  border:1px solid rgba(13,92,255,.12);
  color:rgba(15,23,42,.75);
  text-align:center;
  font-weight:700;
}


.room-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:420px;
  background:var(--card);
  border-radius:22px;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:var(--shadow-sm);
  padding:24px;
  position:relative;
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  outline:none;
  z-index:1;
}

.room-media{
  height:240px;
  border-radius:22px;
  background:linear-gradient(135deg, rgba(13,92,255,.08), rgba(255,255,255,.92));
  border:1px solid rgba(13,92,255,.12);
  box-shadow:0 20px 40px rgba(13,92,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.room-image-placeholder{
  position:relative;
  padding:0;
  border-radius:18px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.06);
  color:rgba(15,23,42,.62);
  font-weight:900;
  font-size:13px;
  text-align:center;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.room-image-placeholder .placeholder-text{
  padding:14px 16px;
  width:100%;
}

.room-image-placeholder img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
}

.room-card:hover,
.room-card:focus{
  transform:translateY(-4px);
  box-shadow:0 22px 48px rgba(16,24,40,.14);
  border-color:rgba(13,92,255,.18);
}

.room-detail{
  transition:transform .15s ease, box-shadow .15s ease;
}
.slider-controls{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:24px;
}

.slider-btn{
  background:#fff;
  border:2px solid rgba(13,92,255,.18);
  color:var(--blue);
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:700;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.slider-btn:hover{
  border-color:rgba(13,92,255,.35);
  box-shadow:var(--shadow-sm);
  transform:translateY(-2px);
}

.slider-btn:active{transform:translateY(0);}

.notification{
  position:fixed;
  top:20px;
  right:20px;
  padding:16px 20px;
  border-radius:12px;
  color:#fff;
  font-weight:600;
  font-size:14px;
  z-index:1000;
  opacity:0;
  transform:translateY(-10px);
  transition:opacity .3s ease, transform .3s ease;
  max-width:300px;
  word-wrap:break-word;
}

.notification-show{
  opacity:1;
  transform:translateY(0);
}

.notification-success{
  background:#22c55e;
  box-shadow:0 8px 24px rgba(34,197,94,.3);
}

.notification-error{
  background:#ef4444;
  box-shadow:0 8px 24px rgba(239,68,68,.3);
}

.room-title{margin:14px 0 6px; font-size:20px; font-weight:800; font-family:Poppins, Inter, sans-serif;}
.room-desc{margin:0; color:rgba(15,23,42,.70); line-height:1.6; font-size:14.5px;}
.room-price{
  margin-top:18px;
  font-family:Poppins, Inter, sans-serif;
  font-weight:800;
  color:var(--blue);
  font-size:22px;
}
.room-price span{font-size:13px; color:rgba(13,92,255,.75); font-weight:800;}
.room-rating{margin-top:6px; font-weight:800; color:rgba(15,23,42,.65);}
.room-card-footer{margin-top:auto; display:flex; justify-content:flex-end;}
.room-card-footer .btn{min-width:120px;}

/* Admin controls gating (simulasi role) */
.navbar .admin-ctrl{display:none;}
body[data-role="admin"] .navbar .admin-ctrl{display:inline-flex;}
body[data-role="admin"] .admin-only{display:block;}
body[data-role="user"] .admin-only{display:none;}

@media screen and (min-width: 640px){
  .card-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
}

@media screen and (min-width: 900px){
  .card-grid{grid-template-columns:repeat(3, minmax(0, 1fr));}
}

/* About */
.about-grid{display:grid; grid-template-columns:1fr; gap:18px; align-items:center;}
.about-image-placeholder{
  height:320px;
  border-radius:var(--radius-xl);
  background:linear-gradient(135deg, rgba(13,92,255,.10), rgba(255,255,255,.7));
  border:1px dashed rgba(13,92,255,.24);
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
}

.about-points{margin-top:16px; display:flex; flex-direction:column; gap:12px;}
.point{
  display:flex;
  gap:12px;
  padding:12px 14px;
  background:#fff;
  border:1px solid rgba(13,92,255,.10);
  border-radius:16px;
}
.point-icon{
  width:34px; height:34px;
  border-radius:12px;
  background:rgba(13,92,255,.10);
  border:1px solid rgba(13,92,255,.18);
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}
.point-title{font-weight:900; font-family:Poppins, Inter, sans-serif;}
.point-desc{color:rgba(15,23,42,.68); font-weight:600; font-size:13.5px; margin-top:2px;}

/* Facilities (berdasarkan kamar) */
.facility-hero{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-top:14px;
  align-items:center;
}

.facility-preview-image{
  height:210px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(13,92,255,.10), rgba(255,122,0,.06));
  border:1px dashed rgba(13,92,255,.26);
  box-shadow:var(--shadow-sm);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}

.facility-preview-content{
  background:rgba(255,255,255,.85);
  border:1px solid rgba(13,92,255,.12);
  border-radius:18px;
  padding:16px;
  box-shadow:var(--shadow-sm);
}

.facility-preview-badge{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12.5px;
  letter-spacing:.2px;
  background:rgba(13,92,255,.08);
  border:1px solid rgba(13,92,255,.15);
  color:rgba(13,92,255,.95);
}

.facility-preview-title{
  margin:12px 0 6px;
  font-family:Poppins, Inter, sans-serif;
  font-weight:900;
  font-size:20px;
}

.facility-preview-desc{
  margin:0;
  color:rgba(15,23,42,.70);
  line-height:1.7;
  font-weight:650;
}

.facility-preview-actions{margin-top:14px;}

.facility-grid{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.facility-pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(13,92,255,.16);
  background:rgba(255,255,255,.9);
  box-shadow:0 10px 26px rgba(13,92,255,.08);
  font-weight:800;
  color:rgba(15,23,42,.78);
  font-size:13.5px;
}

/* Gallery */
.gallery-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.gallery-item{
  height:150px;
  border-radius:16px;
  border:1px dashed rgba(13,92,255,.24);
  background:linear-gradient(135deg, rgba(13,92,255,.08), rgba(255,122,0,.05));
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow-sm);
}

.detail-layout{
  display:flex;
  flex-direction:column;
  gap:32px;
}
.detail-main{
  display:flex;
  flex-direction:column;
  gap:28px;
}
.detail-gallery{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(2, 1fr);
}
.detail-gallery.gallery-single{
  grid-template-columns:1fr;
}
.detail-gallery .gallery-item{
  min-height:400px;
  border-radius:26px;
  border:1px solid rgba(15,23,42,.08);
  background:rgba(255,255,255,.92);
  overflow:hidden;
}
.detail-gallery.gallery-single .gallery-item{
  min-height:500px;
}
.detail-gallery .gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.detail-gallery .gallery-item .placeholder-text{
  padding:20px;
  font-size:15px;
  color:rgba(15,23,42,.62);
  text-align:center;
}
.gallery-single{
  display:block;
}
.gallery-single .gallery-item{
  min-height:500px;
  width:100%;
}
.detail-summary{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.detail-topline{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.detail-badge,
.detail-status{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
}
.detail-badge{
  background:rgba(13,92,255,.10);
  color:var(--blue);
  border:1px solid rgba(13,92,255,.16);
}
.detail-status{
  background:rgba(15,23,42,.08);
  color:rgba(15,23,42,.9);
  border:1px solid rgba(15,23,42,.12);
}
.detail-title{
  margin:0;
  font-size:2.35rem;
  line-height:1.05;
  font-family:Poppins, Inter, sans-serif;
  font-weight:900;
}
.detail-desc{
  margin:0;
  color:rgba(15,23,42,.72);
  line-height:1.75;
  max-width:760px;
  font-size:1rem;
}
.detail-meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
}
.detail-price-large{
  font-size:2.5rem;
  font-weight:900;
  color:var(--blue);
}
.detail-price-note{
  margin-left:8px;
  color:rgba(13,92,255,.75);
  font-weight:700;
}
.detail-section{
  background:var(--card);
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow-sm);
}
.detail-section h2{
  margin:0 0 16px;
  font-size:1.35rem;
  font-family:Poppins, Inter, sans-serif;
  font-weight:900;
}
.detail-sidebar{
  position:sticky;
  top:100px;
  align-self:start;
}
.detail-card{
  display:flex;
  flex-direction:column;
  gap:18px;
  background:var(--card);
  border:1px solid rgba(15,23,42,.08);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow-sm);
}
.detail-card-title{
  margin:0;
  font-size:1rem;
  text-transform:uppercase;
  color:rgba(13,92,255,.85);
  letter-spacing:.15em;
  font-weight:900;
}
.detail-card-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid rgba(15,23,42,.08);
  color:rgba(15,23,42,.75);
}
.detail-card-row:last-child{border-bottom:none;}
.detail-card-row strong{
  color:rgba(15,23,42,.95);
  font-weight:900;
}
.detail-actions{
  display:grid;
  gap:14px;
}
.detail-actions .btn{width:100%;}
.detail-action-note{
  margin:0;
  color:rgba(15,23,42,.68);
  font-size:.96rem;
  line-height:1.6;
}
.detail-spec-grid{
  display:grid;
  gap:14px;
  grid-template-columns:1fr;
}
.detail-grid-row{
  display:grid;
  gap:24px;
  grid-template-columns:1fr;
}
.detail-sections-stack{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.detail-spec-card{
  padding:18px 20px;
  border-radius:22px;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(13,92,255,.12);
  box-shadow:var(--shadow-sm);
}
.detail-spec-card h3{
  margin:0 0 10px;
  font-size:1rem;
  font-weight:900;
}
.detail-spec-card p{
  margin:0;
  color:rgba(15,23,42,.75);
  font-weight:700;
}

@media (min-width: 768px){
  .detail-layout{display:flex; flex-direction:column; gap:32px;}
  .detail-gallery{grid-template-columns:repeat(2, minmax(0,1fr));}
  .gallery-single{display:block;}
  .gallery-single .gallery-item{width:100%; min-height:500px;}
  .detail-grid-row{grid-template-columns:1.5fr .95fr;}
  .detail-spec-grid{grid-template-columns:repeat(2, minmax(0,1fr));}
}

@media (max-width: 900px){
  .detail-sidebar{position:static; top:auto;}
}

/* Testimoni */
.testimoni{background:rgba(13,92,255,.05);}
.testi-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.testi-card{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(13,92,255,.12);
  padding:18px;
  box-shadow:var(--shadow-sm);
}
.stars{font-size:14px; letter-spacing:.5px;}
.testi-quote{margin:12px 0 0; color:rgba(15,23,42,.75); line-height:1.7; font-weight:600;}
.testi-footer{margin-top:14px; display:flex; gap:12px; align-items:center;}
.avatar{width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg, rgba(13,92,255,.14), rgba(255,122,0,.10)); border:1px solid rgba(13,92,255,.16);}
.testi-name{font-weight:900; font-family:Poppins, Inter, sans-serif;}
.testi-role{color:rgba(15,23,42,.65); font-weight:700; font-size:13px; margin-top:2px;}

/* Contact */
.contact-intro{max-width:720px; margin-bottom:28px;}
.contact-intro .section-title{font-size:34px;}
.contact-intro .section-subtitle{margin-top:14px; color:rgba(15,23,42,.72);}
.contact-grid{display:grid; grid-template-columns:1fr; gap:28px; align-items:flex-start;}
.contact-info{display:grid; gap:20px;}
.contact-card{display:grid; gap:18px; padding:28px; border-radius:28px; background:#fff; border:1px solid rgba(13,92,255,.12); box-shadow:var(--shadow-sm);}
.contact-card-icon{width:52px; height:52px; border-radius:18px; display:inline-flex; align-items:center; justify-content:center; background:rgba(13,92,255,.10); color:var(--blue); font-size:22px;}
.contact-card-title{margin:0; font-size:20px; font-weight:900;}
.contact-card-text{margin:0; color:rgba(15,23,42,.72); line-height:1.8;}
.contact-card-link{display:inline-flex; margin-top:8px; color:var(--blue); font-weight:700;}
.contact-form{background:#fff; border:1px solid rgba(13,92,255,.12); border-radius:28px; padding:32px; box-shadow:var(--shadow-sm);}
.contact-form h3{margin:0 0 18px; font-size:26px; font-weight:900;}
.contact-form .field{margin-bottom:18px;}
.contact-form .field-label{font-weight:700; color:rgba(15,23,42,.85); font-size:14px;}
.contact-form .field-input,
.contact-form textarea{width:100%; min-height:52px; border-radius:18px; border:1px solid rgba(13,92,255,.14); background:rgba(243,246,255,.95); padding:14px 16px; color:rgba(15,23,42,.95); outline:none; transition:border-color .2s ease, box-shadow .2s ease;}
.contact-form .field-input:focus,
.contact-form textarea:focus{border-color:rgba(13,92,255,.4); box-shadow:0 0 0 4px rgba(13,92,255,.08);}
.contact-form textarea{min-height:160px; resize:vertical;}
.contact-form-note{margin-top:14px; color:rgba(15,23,42,.72); line-height:1.75; font-size:14px;}
.contact-message{margin:0; color:var(--blue); font-weight:700;}
.contact-form .btn-cta{width:100%;}
.map-section{margin-top:40px;}
.map-card{position:relative; overflow:hidden; border-radius:28px; background:var(--card); border:1px solid rgba(13,92,255,.12); box-shadow:var(--shadow-sm); min-height:420px;}
.map-overlay-card{position:absolute; left:24px; top:24px; z-index:1; max-width:340px; padding:22px; border-radius:22px; background:rgba(255,255,255,.96); border:1px solid rgba(13,92,255,.14); box-shadow:var(--shadow-sm);}
.map-label{margin:0 0 8px; font-size:12px; font-weight:900; letter-spacing:.16em; text-transform:uppercase; color:rgba(13,92,255,.82);}
.map-title{margin:0; font-size:20px; font-weight:900;}
.map-address{margin:10px 0 0; color:rgba(15,23,42,.72); line-height:1.75; font-size:14px;}
.map-frame{width:100%; min-height:420px; border:0; display:block;}
@media (min-width: 900px){
  .contact-grid{grid-template-columns:1.05fr .95fr;}
}
@media (max-width: 900px){
  .contact-form{padding:24px;}
  .map-overlay-card{position:static; margin:0 20px 20px; max-width:none;}
}

/* Footer */
.footer{padding:40px 0 20px; background:#0b2a66; color:#fff; margin-top:18px;}
.footer-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
.footer-col{padding:4px 0;}
.footer-col-brand{display:flex; flex-direction:column;}
.footer-top-cta{margin-bottom:10px;}
.btn-footer-cta{padding:12px 14px; border-radius:12px; width:fit-content;}
.footer-brand{font-family:Poppins, Inter, sans-serif; font-weight:800; font-size:18px; margin-bottom:10px;}
.footer-title{font-weight:900; font-family:Poppins, Inter, sans-serif; margin-bottom:10px;}
.footer-text{color:rgba(255,255,255,.82); line-height:1.7; margin:0; font-weight:600;}
.footer-link{display:block; color:rgba(255,255,255,.85); font-weight:700; padding:6px 0;}
.footer-link:hover{color:#fff;}

.newsletter{display:flex; flex-direction:column; gap:10px; margin-top:12px;}
.input{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.08);
  padding:12px 14px;
  color:#fff;
  outline:none;
}
.input::placeholder{color:rgba(255,255,255,.65);}

.footer-bottom{margin-top:20px; padding-top:18px; border-top:1px solid rgba(255,255,255,.14); color:rgba(255,255,255,.78); font-weight:700; font-size:13px;}



/* Animations */
.fade-in{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .6s ease, transform .6s ease;
}
.fade-in.is-visible{opacity:1; transform:translateY(0);}

/* Responsive */
@media (max-width: 767px){
  .hero{min-height:75vh;}
  .hero-title{font-size:32px;}
  .hero-subtitle{font-size:1rem;}
}

@media (min-width: 768px){
  .nav-links{display:flex;}
  .nav-cta{display:block;}
  .nav-toggle{display:none;}
  .mobile-menu{display:none;}

  main{padding-top:var(--nav-h-desktop);}
  .admin-navbar + main{padding-top:calc(var(--nav-h-desktop) + 20px);}
  .navbar{height:var(--nav-h-desktop);}

  .hero{min-height:70vh; padding:40px 0;}
  .hero-grid{grid-template-columns:1.15fr .85fr; gap:22px;}
  .hero-title{font-size:42px;}
  .hero-metrics{grid-template-columns:repeat(3, 1fr);} 

  .card-grid{grid-template-columns:repeat(2, 1fr);} 
  .property-grid{grid-template-columns:repeat(2, 1fr);} 
  .facility-hero{grid-template-columns:.9fr 1.1fr;}
  .gallery-grid{grid-template-columns:repeat(2, 1fr);} 
  .testi-grid{grid-template-columns:repeat(2, 1fr);} 

  .about-grid{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:2fr 1fr 1fr 2fr;}
  .footer{padding:48px 0 20px;}
}


@media (min-width: 1024px){
  .card-grid{grid-template-columns:repeat(3, 1fr);} 
  .property-grid{grid-template-columns:repeat(3, 1fr);} 
  .facility-hero{grid-template-columns:.8fr 1.2fr;}
  .facility-grid{gap:12px;}
  .gallery-grid{grid-template-columns:repeat(3, 1fr);} 

  .testi-grid{grid-template-columns:repeat(3, 1fr);} 
  .contact-grid{grid-template-columns:1.1fr .9fr;}
}

/* Admin dashboard */
.admin-shell{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:24px;
  padding:28px 20px 36px;
}
.admin-sidebar{
  background:#fff;
  border:1px solid rgba(13,92,255,.12);
  border-radius:22px;
  box-shadow:var(--shadow-sm);
  padding:24px 18px;
}
.admin-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:28px;
  font-weight:900;
  font-family:Poppins, Inter, sans-serif;
}
.admin-brand .brand-mark{font-size:20px;}
.admin-brand .brand-text{font-size:18px;}
.admin-label{margin:0 0 6px; font-size:13px; color:rgba(13,92,255,.82); font-weight:900; letter-spacing:.1em; text-transform:uppercase;}
.admin-nav{display:flex; flex-direction:column; gap:10px;}
.admin-nav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px;
  border-radius:16px;
  text-decoration:none;
  color:rgba(15,23,42,.85);
  background:rgba(13,92,255,.03);
  border:1px solid transparent;
  font-weight:700;
}
.admin-nav a.active,
.admin-nav a:hover{background:rgba(13,92,255,.10); border-color:rgba(13,92,255,.16);}
.admin-main{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.admin-topbar{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.admin-topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.admin-title{margin:0; font-size:28px; font-family:Poppins, Inter, sans-serif; font-weight:900;}
.admin-subtitle{margin:0; color:rgba(15,23,42,.70); max-width:640px; line-height:1.7;}
.admin-actions{display:flex; gap:12px; flex-wrap:wrap;}
.admin-card-grid{display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:16px;}
.admin-card{
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(13,92,255,.12);
  padding:22px;
  box-shadow:var(--shadow-sm);
}
.admin-card-title{margin:0 0 8px; font-size:14px; font-weight:900; color:rgba(15,23,42,.70); text-transform:uppercase; letter-spacing:.08em;}
.admin-card-value{margin:0; font-size:28px; font-family:Poppins, Inter, sans-serif; font-weight:900; color:var(--blue);}
.report-summary-grid{display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:16px; margin-top:16px;}
.report-list{display:grid; gap:18px;}
.report-card{
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(13,92,255,.12);
  box-shadow:var(--shadow-sm);
  padding:22px;
  display:grid;
  gap:16px;
}
.report-card-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  flex-wrap:wrap;
}
.report-title{margin:0; font-size:18px; font-weight:900; color:rgba(15,23,42,.95);}
.report-meta{margin-top:8px; color:rgba(15,23,42,.68); font-size:14px;}
.report-detail-grid{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin-top:12px;}
.report-detail-grid div{display:grid; gap:6px;}
.report-image-row{display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:12px;}
.status-pill{display:inline-flex; align-items:center; gap:6px; padding:6px 12px; border-radius:999px; font-size:12px; font-weight:700; color:#0f172a; background:rgba(15,23,42,.06);}
.status-pending{background:rgba(251,146,60,.14); color:#7c2d12; border:1px solid rgba(251,146,60,.20);}
.status-diproses{background:rgba(59,130,246,.14); color:#1d4ed8; border:1px solid rgba(59,130,246,.20);}
.status-selesai{background:rgba(34,197,94,.14); color:#15803d; border:1px solid rgba(34,197,94,.20);}
.toast-notification{position:fixed; right:24px; bottom:24px; background:#fff; color:#0f172a; border:1px solid rgba(13,92,255,.16); box-shadow:var(--shadow-md); border-radius:16px; padding:16px 18px; z-index:1000; min-width:240px; opacity:0; transform:translateY(16px); transition:opacity .25s ease, transform .25s ease; pointer-events:none;}
.toast-notification.show{opacity:1; transform:translateY(0); pointer-events:auto;}
.toast-notification.success{background:rgba(16,185,129,.12); border-color:rgba(16,185,129,.28); color:#065f46;}
.toast-notification.error{background:rgba(248,113,113,.13); border-color:rgba(248,113,113,.28); color:#7f1d1d;}
.image-modal{position:fixed; inset:0; background:rgba(15,23,42,.72); display:flex; align-items:center; justify-content:center; padding:20px; z-index:1100; opacity:0; pointer-events:none; transition:opacity .2s ease;}
.image-modal.open{opacity:1; pointer-events:auto;}
.image-modal-content{position:relative; max-width:900px; width:100%; border-radius:22px; overflow:hidden; background:#fff;}
.image-modal-content img{width:100%; height:auto; display:block;}
.image-modal-close{position:absolute; top:14px; right:14px; border:none; background:rgba(15,23,42,.08); color:#0f172a; border-radius:999px; width:38px; height:38px; cursor:pointer;}
.image-modal-caption{padding:16px; font-size:14px; color:rgba(15,23,42,.78);}
.confirm-modal{position:fixed; inset:0; background:rgba(15,23,42,.72); display:flex; align-items:center; justify-content:center; padding:20px; z-index:1100; opacity:0; pointer-events:none; transition:opacity .2s ease;}
.confirm-modal.open{opacity:1; pointer-events:auto;}
.confirm-modal-content{position:relative; max-width:400px; width:100%; border-radius:22px; overflow:hidden; background:#fff; padding:24px; text-align:center;}
.confirm-modal-content h3{margin:0 0 12px; font-size:18px; font-weight:700; color:#0f172a;}
.confirm-modal-content p{margin:0 0 24px; font-size:14px; color:rgba(15,23,42,.78);}
.confirm-modal-actions{display:flex; gap:12px; justify-content:center;}
.testimonials-list{display:grid; gap:16px;}
.testimonial-card{background:#fff; border:1px solid rgba(13,92,255,.08); border-radius:22px; padding:24px; box-shadow:0 18px 45px rgba(13,92,255,.06);}
.testimonial-card-header{display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:12px;}
.testimonial-name{margin:0; font-size:18px; font-weight:700; color:#0f172a;}
.testimonial-meta{margin:4px 0 0; font-size:14px; color:rgba(15,23,42,.72);}
.testimonial-stars{color:#f59e0b; font-size:16px;}
.testimonial-display-label{display:flex; align-items:center; gap:8px; font-size:14px; font-weight:600; color:#0f172a;}
.testimonial-display-checkbox{transform:scale(1.2);}
.testimonial-actions{margin-top:16px; display:flex; justify-content:flex-end;}
.star-rating{display:flex; gap:4px; font-size:24px; cursor:pointer;}
.star{color:#ddd; transition:color 0.2s;}
.star:hover, .star.active{color:#f59e0b;}



@media (max-width:900px){ .report-detail-grid{grid-template-columns:1fr;} }
.admin-panel{
  display:grid;
  gap:20px;
}
.admin-section{
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(13,92,255,.12);
  box-shadow:var(--shadow-sm);
  padding:24px;
}
.admin-section-title{margin:0 0 16px; font-size:22px; font-family:Poppins, Inter, sans-serif; font-weight:900;}
.room-list{
  display:grid;
  gap:16px;
}
.room-item{
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:center;
  background:rgba(13,92,255,.03);
  border:1px solid rgba(13,92,255,.12);
  border-radius:18px;
  padding:16px;
}
.room-item-active{
  border-color:rgba(13,92,255,.35);
  background:rgba(13,92,255,.11);
}
.room-item-info{display:flex; flex-direction:column; gap:6px;}
.room-item-title{margin:0; font-weight:900;}
.room-item-meta{color:rgba(15,23,42,.72); font-size:13px;}
.room-item-actions{display:flex; gap:10px;}
.admin-form{display:grid; gap:16px;}
.admin-form .field{margin:0;}
.admin-form .field-input,
.admin-form select,
.admin-form textarea{width:100%;}
.room-image-preview{
  min-height:180px;
  border-radius:18px;
  border:1px dashed rgba(13,92,255,.24);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  color:rgba(15,23,42,.72);
  background:rgba(13,92,255,.05);
}
.account-table{
  width:100%;
  border-collapse:collapse;
  min-width:720px;
}
.account-table th,
.account-table td{
  padding:16px 14px;
  text-align:left;
  border-bottom:1px solid rgba(15,23,42,.08);
  font-size:14px;
  color:rgba(15,23,42,.82);
}
.account-table th{
  font-size:12px;
  text-transform:uppercase;
  color:rgba(15,23,42,.64);
  letter-spacing:.08em;
}
.account-avatar{
  width:42px;
  height:42px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(59,130,246,.1);
  color:rgba(30,64,175,.95);
  font-weight:800;
  font-size:13px;
  overflow:hidden;
}
.account-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.account-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-start;
}
.account-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}
.account-badge-active{
  background:rgba(16,185,129,.12);
  color:#047857;
}
.account-badge-nonaktif{
  background:rgba(249,115,22,.12);
  color:#C2410C;
}
.inline-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.form-footer{display:flex; justify-content:flex-end; gap:12px; flex-wrap:wrap; margin-top:8px;}
@media (max-width: 1024px){
  .admin-shell{grid-template-columns:1fr;}
  .admin-card-grid{grid-template-columns:1fr;}
  .admin-nav{flex-direction:row; flex-wrap:wrap;}
  .admin-nav a{flex:1 1 45%;}
  .inline-row{grid-template-columns:1fr;}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .fade-in{opacity:1; transform:none; transition:none;}
  .btn{transition:none;}
  .room-card{transition:none;}
  .facility-card{transition:none;}
}

