/* Updated UI: Toska green palette, serif fonts, improved responsive layout */
:root{
  --primary:#1fb09a; /* toska green */
  --primary-600:#17a885;
  --accent:#0f766e;
  --muted:#6b7280;
  --bg:#f6fbfa;
  --card:#ffffff;
  --radius:12px;
}
*{box-sizing:border-box}
body { font-family: 'Merriweather', serif; margin:0; padding:0; background:var(--bg); color:#052b2a; -webkit-font-smoothing:auto; -moz-osx-font-smoothing:grayscale;}
.container { max-width:100%; margin:10px auto; padding:0 5px; }
.container_footer { max-width:100%; margin:1px auto; padding:0 1px; }
.site-header { background:linear-gradient(90deg,var(--primary),var(--primary-600)); color:#fff; padding:14px 0; box-shadow:0 4px 18px rgba(11,80,74,0.08);}
.site-header .container { display:flex; align-items:center; justify-content:space-between;}
.site-header .brand { font-weight:600; color:#fff; text-decoration:none; font-size:22px; font-family:'Playfair Display', serif; }
.nav a { color:#e8fffb; margin-left:16px; text-decoration:none; font-weight:200; }
main h1 { margin-top:18px; font-family:'Playfair Display', serif; font-size:28px; color:#073b36; min-height: auto;
  overflow: visible;}
.grid { display:grid; grid-template-columns: 1fr 360px; gap:20px; align-items:start;}
@media (max-width:900px){ .grid{grid-template-columns:1fr} .side-map{order:2} .main-form{order:1} }

.card{background:var(--card); padding:18px; border-radius:var(--radius); box-shadow:0 6px 20px rgba(11,80,74,0.04);}

.form-row{display:flex; gap:12px;}
.form-row .col{flex:1}
label{display:block;font-size:14px;color:var(--muted);margin-bottom:6px}
input[type=text], input[type=date], input[type=time], textarea, select, input[type=file] {
  width:100%; padding:10px 12px; border:1px solid #e6f4f2; border-radius:8px; background:#fbfffe;
  font-size:15px; color:#052b2a;
}
textarea{min-height:100px; resize:vertical}
button{ background:var(--primary); color:#fff; border:0; padding:11px 16px; cursor:pointer; border-radius:10px; font-weight:700; font-size:15px; }
.button-outline{ background:transparent; border:1px solid rgba(5,43,42,0.08); color:var(--accent); padding:10px 14px; border-radius:10px; }
.small{font-size:13px;padding:8px 10px}

.stepper{display:flex; gap:8px; margin-bottom:12px}
.stepper .step{flex:1;padding:8px;border-radius:10px;background:linear-gradient(180deg,#f1f9f7,#ffffff); text-align:center; font-weight:600; color:var(--muted); border:1px solid #eef7f6}
.stepper .step.active{background:linear-gradient(90deg,var(--primary),var(--primary-600)); color:#fff; box-shadow:0 6px 18px rgba(11,80,74,0.08)!important}

.services { display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}
.service-item{flex:1 1 48%; background:#fbfffe;border:1px solid #e6f4f2;padding:10px;border-radius:10px; display:flex; gap:10px; align-items:center; cursor:pointer}
.service-item svg{width:36px;height:36px;flex:0 0 36px}
.service-item.selected{border-color:var(--primary); box-shadow:0 6px 16px rgba(31,176,154,0.08)}

.summary{background:#fafefc;border:1px solid #e8f6f4;padding:12px;border-radius:8px}

.table{width:100%; border-collapse:collapse; margin-top:10px}
.table th,.table td{border:1px solid #eef7f6;padding:8px;text-align:left}

.info{background:transparent;padding:0;margin-top:12px;color:var(--muted)}

.site-footer {
  background: #052b2a;
  color: #d9fff7;
  padding: 2px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  width: 100%;
  position: static !important;
  height: auto !important;
  left: 0;
  bottom: 0;
  z-index: 1000;
}


.whatsapp-btn{display:inline-block;background:#25D366;color:#fff;padding:10px 14px;border-radius:10px;text-decoration:none;font-weight:700}
.upload-thumb{max-width:120px;border-radius:8px;margin-top:8px;}

/* small screens */
@media (max-width:480px){
  .site-header .container{flex-direction:column;gap:10px;align-items:flex-start}
  .site-header .nav a{margin-left:8px}
}
/* Kontainer slider */
.final-slider-area {
  width: 100vw;                 /* paksa selebar viewport */
  margin-left: calc(50% - 50vw);/* keluar dari container */
  margin-right: calc(50% - 50vw);

  height: 55vh;
  max-height: 480px;
  min-height: 260px;

  position: relative;
  overflow: hidden;
}

.final-slide-active {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Slide */
.final-single-slider {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.final-single-slider.active {
  opacity: 1;
  z-index: 1;
}

/* Image */
.final-single-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* isi layar, potong sedikit */
}


/* Overlay content */
.final-slider-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35),
    rgba(0,0,0,.55)
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* Text */
.final-slider-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  margin-bottom: 10px;
}

.final-slider-content p {
  font-size: clamp(14px, 2.5vw, 18px);
  max-width: 600px;
  margin-bottom: 20px;
}

/* Button */
.final-btn {
  padding: 12px 28px;
  background: #ec4899;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .25s ease, background .25s ease;
}

.final-btn:hover {
  background: #db2777;
  transform: translateY(-2px);
}

/* Dots */
.final-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.final-slider-dots span {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
  cursor: pointer;
}

.final-slider-dots span.active {
  background: #fff;
}

/* ?? MOBILE */
@media (max-width: 768px) {
  .final-slider-area {
    height: 42vh;
    max-height: 360px;
  }
}

/* ================================
   SPA FOOTER – LUXURY ULTRA COMPACT (ELEGANT)
================================ */

.spa-footer {
  position: relative;
  width: 100%;
  display: block;
  isolation: isolate;
  color: #e6fffa;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; /* base font naik */
}

.spa-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #041f1e 0%, #031514 100%);
  z-index: -1;
}

.spa-footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 18px;
}

/* ================================
   NEWSLETTER
================================ */

.footer-newsletter {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; /* naik */
  margin-bottom: 2px;
  color: #baf7ee;
  letter-spacing: .3px;
}

.footer-newsletter p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #c6f2ec;
}

/* FORM */
.footer-newsletter form {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 360px;
}

.footer-input {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 999px;
  border: none;
  outline: none;
  background: #ffffff;
  color: #033b36;
  font-family: 'Cormorant Garamond', serif;
}

.footer-input::placeholder {
  color: #8bcfc6;
}

/* BUTTON */
.footer-btn {
  background: linear-gradient(135deg, #1fb09a, #17a885);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.footer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31,176,154,.35);
}

/* ================================
   MAIN FOOTER CONTENT
================================ */

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 34px;
  margin-bottom: 32px;
}

.footer-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: #baf7ee;
}

.footer-main p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #c6f2ec;
}

/* ================================
   LINK GRID
================================ */

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  font-size: 14.5px;
  color: #c6f2ec;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #1fb09a;
}

/* ================================
   CONTACT
================================ */

.footer-contact p,
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14.5px;
  color: #c6f2ec;
  text-decoration: none;
  margin-bottom: 6px;
}

/* ================================
   FOOTER BOTTOM
================================ */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 14px 0;
  font-size: 13.5px;
  color: #9feee4;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .footer-newsletter {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
    max-width: 100%;
  }

  .footer-input,
  .footer-btn {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-link-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   FOOTER SOCIAL MEDIA – AUTO SWITCH
================================ */

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

/* ===== DESKTOP (default) ===== */
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-social img {
  width: 20px;
  height: 20px;
  display: block;
}

/* Hover desktop */
@media (hover: hover) {
  .footer-social a:hover {
    background: #1fb09a;
    transform: scale(1.1);
  }
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
  .footer-social a {
    width: 32px;
    height: 32px;
  }

  .footer-social img {
    width: 16px;
    height: 16px;
  }
}

/* ===== MOBILE MINI ===== */
@media (max-width: 480px) {
  .footer-social {
    gap: 8px;
  }

  .footer-social a {
    width: 24px;
    height: 24px;
  }

  .footer-social img {
    width: 12px;
    height: 12px;
  }
}

/* Mobile UX improvement */
.footer-social a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
p, .description {
  font-weight: 400;
}
h1, h2, h3 {
  font-weight: 600;
}
.description,
.card p,
.price-name {
  color: #0b3d3b;
}

