* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== GLOBAL ===== */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.5;
  /* gradasi biru lembut */
  background: radial-gradient(circle at top left, #e0f2ff, #f6f7f9 40%, #e0edff 100%);
}

/* Transisi halus untuk elemen umum */
a,
button,
.btn,
.card,
.kategori-card,
.logo img {
  transition: all 0.25s ease;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(90deg, #020617, #0f172a, #1d4ed8);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* logo + gambar */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
}

.logo img {
  width: 200px;  /* logo lebih besar, tapi tidak kebesaran */
  height: auto;
  display: block;
}

/* fallback text logo (kalau tanpa img) */
.logo {
  font-weight: 700;
  font-size: 20px;
}

.nav a {
  color: #e5e7eb;
  margin-left: 18px;
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover {
  color: #ffffff;
}

/* tombol booking di header */
.btn-book {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #cac9dc;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  margin-left: 12px;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.4);
}

.btn-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.55);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #020617;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.slide.active {
  opacity: 1;
}

/* overlay konten hero */
.hero-content {
  position: relative;
  z-index: 20;
  color: #fff;
  padding: 40px;
  margin-left: 60px;
  max-width: 560px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 64, 175, 0.85)
  );
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

/* list fitur di hero */
.hero-list {
  display: flex;
  gap: 40px;
  margin-top: 18px;
}

.hero-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-list li {
  margin-bottom: 6px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.hero-list .check {
  color: #6cc24a;
  margin-right: 6px;
  font-weight: 700;
  font-size: 18px;
}

/* tombol umum */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  margin-top: 12px;
  font-size: 14px;
  border: none;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.6);
}

/* ===== SECTION GENERIC ===== */
.section {
  padding: 60px 0;
}

/* ===== SERVICES CARDS ===== */
.services .cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  width: calc(33% - 12px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card h3 {
  padding: 14px;
}

.card p {
  padding: 0 14px 18px 14px;
  color: #555;
}

/* hover card */
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

/* ===== BLOG ===== */
.blog-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.post {
  width: calc(33% - 10px);
  background: #f4f4f8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.post img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.post h3 {
  padding: 12px;
}

.post .date {
  padding: 0 12px 18px;
  color: #777;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #020617;
  color: #5883da;
  padding: 30px 0;
  margin-top: 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner a {
  color: #38bdf8;
  text-decoration: none;
}

.footer-inner a:hover {
  color: #7dd3fc;
}

.footer-bottom {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: #9ca3af;
}

/* ===== KATEGORI PILIHAN ===== */
.center {
  text-align: center;
}

.kategori-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.kategori-card {
  width: 300px; /* tidak terlalu besar */
  background: linear-gradient(180deg, #020617, #111827);
  border-radius: 20px;
  padding: 16px 16px 22px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .35);
}

.kategori-img {
  border-radius: 16px;
  overflow: hidden;
}

.kategori-img img {
  width: 100%;
  display: block;
}

.kategori-title {
  margin: 12px 0 10px;
  color: #ebebee;
  font-size: 16px;
  font-weight: 600;
}

.btn-booking:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, .65);
}

/* efek hover kategori */
.kategori-card:hover .kategori-img {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.3);
}

.kategori-card:hover .kategori-title {
  color: #38bdf8;
}

/* RESPONSIVE KATEGORI */
@media (max-width: 600px) {
  .kategori-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .kategori-card {
    width: 260px;
  }
}


/* TOMBOL BOOKING */
.btn-booking{
  display: inline-block;
  margin-top: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  background: linear-gradient(90deg,#0f337a,#7aa8ff);
  color: #5876e3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: .3s ease;
}

.btn-booking:hover{
  background: linear-gradient(90deg,#0d3278,#4f8cff);
  transform: scale(1.05);
}



/* efek hover kategori */
.kategori-card:hover .kategori-img {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.3);
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
}

.kategori-card:hover p {
  color: #1d4ed8;
}

/* ===== SERVICES (IMPROVED LIST) ===== */
.section.services {
  padding: 48px 0;
  background: #20399d;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.6rem;
}

.filters {
  display: flex;
  gap: 8px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #d4d4d8;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.filter-btn.active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.card-media {
  border: 0;
  padding: 0;
  background: none;
  width: 100%;
  height: 170px;
  display: block;
  cursor: pointer;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.muted {
  color: #666;
  font-size: 0.94rem;
  margin: 0;
}

.card-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.price {
  font-weight: 600;
  color: #111827;
}

.card-actions {
  display: flex;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: #fff;
  border: 0;
}

.btn-outline {
  background: transparent;
  color: #111827;
  border: 1px solid #111827;
}

/* ===== HIDE REQUEST QUOTE ===== */
#lbQuote {
  display: none !important;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.75);
  z-index: 1200;
  padding: 20px;
  transition: opacity 0.18s ease;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-inner {
  background: #6380f3;
  width: 100%;
  max-width: 1100px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.45);
  transform: translateY(8px);
  animation: lbShow 0.18s ease forwards;
}

@keyframes lbShow {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* media area */
.lb-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  min-height: 300px;
}

.lb-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* info panel */
.lb-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lb-info h3 {
  margin: 0 0 6px 0;
}

.lb-info p {
  margin: 0;
  color: #444;
}

.lb-price {
  font-weight: 700;
  color: #111827;
  margin-top: 8px;
}

/* close button */
.lb-close {
  position: absolute;
  right: 26px;
  top: 22px;
  z-index: 1300;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-content {
  background: #777cdf;
  width: 360px;
  max-width: calc(100% - 40px);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.32);
}

.modal .close,
.modal .btn {
  cursor: pointer;
}

/* tombol box di kartu */
.btn-box {
  display: inline-block;
  width: 220px;
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.btn-box:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.5);
}

/* modal dialog generik */
.modal-dialog {
  width: 420px;
  max-width: calc(100% - 30px);
  background: #788fc0;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.4);
  position: relative;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.room-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.modal-btn {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #1118a3;
  cursor: pointer;
  text-align: center;
}

.modal-btn.primary {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* header/body */
.modal-header h3 {
  margin: 0;
  font-size: 20px;
}

.modal-header .muted {
  margin: 4px 0 0;
  color: #7c98d1;
  font-size: 14px;
}

.modal-body {
  margin-top: 12px;
}

.modal-view {
  display: block;
}

/* package list */
#packagesList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-item {
  border: 1px solid #2f3691;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-item strong {
  display: block;
  font-size: 15px;
}

/* footer buttons */
.modal-menu-btn {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #2329a0;
  cursor: pointer;
}

.modal-menu-btn.primary {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: #fff;
  border: 0;
}

/* small UX */
.btn.primary {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: white;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .gallery .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services .cards {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  .post {
    width: 100%;
  }

  .hero-content {
    margin-left: 20px;
    max-width: 90%;
  }

  .hero {
    height: auto;
    padding: 40px 0;
  }

  .slide img {
    height: 420px;
  }

  .hero-list {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 860px) {
  .lightbox-inner {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  .lb-info {
    padding: 14px;
  }
  .lb-close {
    right: 14px;
    top: 10px;
  }
}

@media (max-width: 600px) {
  .kategori-grid {
    gap: 30px;
  }
  .kategori-img {
    width: 110px;
    height: 140px;
  }
/* responsive */
@media(max-width:900px){
  .grid-3{grid-template-columns:repeat(1,1fr)}
  .hero-inner{flex-direction:column}
  .hero-media img{width:100%}

  .icon-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.icon-card-link:hover {
  opacity: 0.9;
  transform: scale(1.02);
  transition: all 0.3s ease;
}
.slider {
  width: 100%;
  max-width: 400px; 
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  width: 300%; 
  animation: slide 9s infinite;
}

.slides img {
  width: 100%;
  object-fit: cover;
}

@keyframes slide {
  0%   { margin-left: 0%; }
  33%  { margin-left: -100%; }
  66%  { margin-left: -200%; }
  100% { margin-left: 0%; }
}

}
}

/* ===== TESTIMONIAL ===== */
#testi h2 {
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  border: 2px solid #d6d6d6;
  border-radius: 10px;
  padding: 16px 14px;
  background: #2d4f7b;
  text-align: left;
}

.stars {
  color: #facc15;
  font-size: 16px;
  margin-bottom: 6px;
}

.testi-name {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 14px;
}

.testi-card p {
  font-size: 13px;
  color: #f4f0f0;
  margin: 0;
}

/* responsive */
@media (max-width: 768px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SOCIAL ICONS ===== */
.social-links{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-item{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #38bdf8;
  text-decoration: none;
  font-size: 14px;
}

.social-item img{
  width: 18px;
  height: 18px;
}

.social-item:hover{
  text-decoration: underline;
}

.social-sep{
  color: #9ca3af;
}

.google-review-cta{
  margin-top: 24px;
  text-align: center;
  color: #e5e7eb;
}

.google-review-cta p{
  margin-bottom: 12px;
  font-size: 14px;
}

.btn-google{
  display: inline-block;
  margin: 6px 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #38bdf8;
  font-size: 13px;
  text-decoration: none;
  color: #38bdf8;
  background: transparent;
  transition: all 0.25s ease;
}

.btn-google.primary{
  background: #38bdf8;
  color: #0b1120;
  font-weight: 700;
}

.btn-google:hover{
  background: #0ea5e9;
  color: #0b1120;
}

/* ====== Judul section Layanan ====== */
.section-heading{
  text-align:center;
  font-size:2.4rem;
  font-weight:700;
  margin:0;
  color:#f9fafb;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.section-heading::after{
  content:"";
  display:block;
  width:90px;
  height:3px;
  margin:14px auto 0;
  border-radius:999px;
  background:linear-gradient(90deg,#60a5fa,#a855f7);
}

.section-subtitle{
  text-align:center;
  margin-top:10px;
  font-size:1rem;
  color:#d1d5db;
}

/* opsional: bikin background section layanan lebih halus */
#layanan.section,
#layanan{
  background:linear-gradient(180deg,#111827 0%, #1e293b 60%, #020617 100%);
  padding-top:60px;
  padding-bottom:40px;
}

/* === TESTIMONIAL GRID & CARD === */
.testi-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.testi-card {
  background: rgba(142,164,191,0.16);
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  padding: 16px;
  color: #fff;
  box-sizing: border-box;
  min-height: 86px;
}

.testi-card .top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:8px;
}
.testi-card .author { font-weight:700; font-size:0.95rem; color:#fff; }
.testi-card .stars { color:#ffd54a; font-size:14px; }
.testi-card .comment { color:#e6f0ff; line-height:1.4; margin-bottom:6px; }
.testi-card .time { font-size:0.85rem; color:#cbd6ea; }

/* CTA kecil di bawah */
.google-review-cta { text-align:center; margin-top:18px; }
.btn-google { display:inline-block; padding:10px 18px; border-radius:24px; border:1px solid rgba(255,255,255,0.12); color:#e9f6ff; text-decoration:none; margin:4px; }
.btn-google.primary { background:#12b0e8; color:#042034; border:none; }


/* OVERRIDE KHUSUS UNTUK #btnBookOrder — letakkan di akhir file CSS */
#btnBookOrder, button#btnBookOrder {
  color: #c5c8eb !important;
  -webkit-text-fill-color: #2e3c99 !important; /* untuk browser webkit */
  background: linear-gradient(135deg,#f4f4f8,#8b7aff) !important;
  border: none !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  font-size: 13px !important;
  padding: 10px 18px !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 30px rgba(110,92,232,0.18) !important;
  opacity: 1 !important;
  visibility: visible !important;
  mix-blend-mode: normal !important;
  text-shadow: none !important;
}

/* override pseudo-element jika ada */
#btnBookOrder::before,
#btnBookOrder::after {
  display: none !important;
  content: none !important;
}
#btnBookOrder * { color: inherit !important; }


/* Perbaikan visibility untuk kotak kecil di sebelah Book Order */
.btn-row input, .btn-row .small-box, .btn-row input[type="text"], .btn-row input[type="tel"] {
  -webkit-appearance: none;
  appearance: none;
  background: #d1d1e7 !important;
  color: #35425f !important;               /* pastikan teks terlihat */
  -webkit-text-fill-color: #111827 !important;
  border: 1px solid rgba(99,102,241,0.12) !important;
  padding: 8px 10px !important;
  width: 56px !important;
  height: 36px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 6px 18px rgba(99,102,241,0.08) !important;
}

/* placeholder harus terlihat juga */
.btn-row input::placeholder {
  color: #13171f !important;
  opacity: 1 !important;
}

/* kalau kotak itu tombol (button) */
.btn-reset {
  background:#e5e7eb;
  color:#111827;
}


/* lebar desain asli Anda (ubah sesuai lebar yang Anda desain) */
:root { --design-width: 1100; } /* px */

.scale-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding:10px; /* agar tidak mepet di tepi layar */
  box-sizing:border-box;
}
.scale-wrap .container{
  max-width: var(--design-width)px;
  width: 100%;
  transform: none;
}


/* Pada layar lebih besar dari desain, kembalikan skala 1 */
@media (min-width: calc(var(--design-width)px + 20px)) {
  .scale-wrap .container{ transform: scale(1); }
}

/* Pastikan teks tidak terlalu kecil: jika viewport sangat kecil, beri min-scale */
@media (max-width: 360px) {
  .scale-wrap .container{ transform: scale(0.32); } /* contoh fallback */
}
/* ===== FIX TOMBOL "UBAH DATA PEMESANAN" ===== */
#btnEditData {
  background: #e5e7eb !important;
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;

  font-size: 13px !important;
  font-weight: 600 !important;

  padding: 10px 16px !important;
  border-radius: 8px !important;
  border: 1px solid #c7d2fe !important;

  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 600px) {
  .kategori-grid {
    gap: 30px;
  }

  .kategori-img {
    width: 110px;
    height: 140px;
  }
}
/* BARIS TOMBOL */
.btn-row{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

/* TOMBOL UMUM */
.btn{
  display: inline shows; /* paksa tampil */
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #6b7280;
  line-height: 1;
}

/* RESET */
#btnClose{
  background: none;
  color: #6b7280;
}

#btnClose:hover{
  color: #111827;
  text-decoration: underline;
}

/* BOOK ORDER */
.btn.primary,
#btnBookOrder{
  background: #c7c3ff;
  color: #1f2937;
  font-weight: 600;
}

#btnBookOrder:hover{
  background: #b5b0ff;
}

/* ===== ACTION BUTTONS ===== */
.summary-actions{
  display:flex;
  gap:12px;
  margin-top:12px;
}

.btn-download{
  padding:12px 18px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.05em;
  background:#111827;
  color:#ffffff;
  border:none;
  cursor:pointer;
  white-space:nowrap;
}

.btn-download:hover{
  opacity:0.9;
}

.logo-title{
  font-size: 16px;
  font-weight: 700;
  color: #292f3c;
} 

/* ===== IMAGE ZOOM MODAL ===== */
.img-zoom-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  cursor:zoom-out;
}

.img-zoom-modal img{
  max-width:90vw;
  max-height:90vh;
  border-radius:12px;
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
}

.img-zoom-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
  user-select:none;
}

/* efek hover kecil (opsional) */
.zoomable{
  cursor:zoom-in;
  transition:transform .25s ease;
}

.zoomable:hover{
  transform:scale(1.02);
}
/* ================= MOBILE CLEAN FIX ================= */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
  }

  /* HEADER */
  .header-inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 24px 0;
  }

  .hero-content {
    margin: 0 auto;
    max-width: 92%;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-list {
    flex-direction: column;
    gap: 8px;
  }

  /* KATEGORI */
  .kategori-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .kategori-card {
    width: 90%;
    max-width: 320px;
  }

  /* SERVICES / CARDS */
  .cards,
  .services .cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .card,
  .post {
    width: 100%;
  }

  /* TESTIMONIAL */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* BUTTON */
  .btn,
  .btn-booking,
  .btn-book {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {

  /* Header tetap 1 baris */
  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  /* Menu */
  .nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }

  /* Tombol booking di header */
  .site-header .btn-book {
    width: auto !important;
    padding: 8px 16px;
    white-space: nowrap;
  }

}
/* CARD BOOKING */
.kategori-card {
  display: flex;
  flex-direction: column;
  align-items: center;   /* CENTER horizontal */
  justify-content: space-between;
}

/* WRAPPER FOTO */
.kategori-img {
  width: 100%;
  display: flex;
  justify-content: center; /* FOTO KE TENGAH */
  margin-bottom: 12px;
}

/* FOTO */
.kategori-img img {
  max-width: 220px;
  width: 100%;
  border-radius: 14px;
}

/* TOMBOL BOOKING DI CARD */
.kategori-card .btn-booking {
  margin-top: auto;
}
/* ================= FIX HEADER MOBILE ================= */
@media (max-width: 768px) {

  .site-header {
    position: relative;      /* JANGAN sticky di mobile */
    height: auto;
    overflow: visible;
  }

  .header-inner {
    flex-wrap: wrap;         /* boleh turun baris */
    row-gap: 10px;
  }

  /* tombol booking di header */
  .site-header .btn-book {
    width: 100%;
    text-align: center;
  }
}


/* ================= FIX FOOTER MOBILE ================= */
@media (max-width: 768px) {

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .social-links {
    justify-content: center;
  }

  .btn-booking {
    width: 100%;
    max-width: 280px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 14px;
  }
}
/* ===== LOGO TENGAH KHUSUS MOBILE ===== */
@media (max-width: 768px) {

  .header-inner {
    display: flex;
    flex-direction: column;     /* susun vertikal */
    align-items: center;        /* CENTER horizontal */
    gap: 10px;
  }

  .logo {
    justify-content: center;
    width: 100%;
  }

  .logo img {
    margin: 0 auto;             /* logo benar-benar di tengah */
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

}
/* ===== PROMO MODAL FIX FINAL ===== */
.promo-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;

  display: none;              /* default TIDAK muncul */
  align-items: center;
  justify-content: center;
}


/* modal hanya muncul saat class show */
.promo-modal.show{
  display: flex;
}

/* tombol close */
.promo-close{
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* gambar */
.promo-modal img{
  max-width: 520px;
  max-height: 70vh;
  border-radius: 14px;
}


/* Tombol close */
.promo-close{
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* Animasi HALUS */
@keyframes zoomSoft{
  from{
    transform: scale(.92);
    opacity: 0;
  }
  to{
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px){
  .promo-modal img{
    max-width: 90%;
    max-height: 65vh;
  }
}

/* ===== PROMO MODAL FIX MOBILE ===== */
.promo-modal{
  display: none;
  position: fixed;           /* WAJIB */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  z-index: 9999;

  /* center gambar */
  justify-content: center;
  align-items: center;
}

/* gambar di modal */
#promoModalImg{
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
}

/* tombol close */
.promo-close{
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}
